/* Variables */
:root {
    --br-full: 100px;
    --br-reg: .5rem;
    --color-dark-gradient: linear-gradient(#14181D 0%, #07080D 100%);
    --color-red: #CF0A2C;
    --color-dk-blue: #14181D;
    --color-blur: rgba(255,255,255,0.1);
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-xs: .875rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html, body {
    -webkit-font-smoothing: antialiased;
    background: var(--color-background);
    color: var(--color-foreground);
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: .015em;
    line-height: 1.5;
    scroll-behavior: smooth;
    width: 100dvw;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a, a:visited {
    color: white;
    cursor: pointer;
    text-decoration: none; 
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      -webkit-animation-duration: 0.01ms !important;
              animation-duration: 0.01ms !important;
      -webkit-animation-iteration-count: 1 !important;
              animation-iteration-count: 1 !important;
      -webkit-transition-duration: 0.01ms !important;
           -o-transition-duration: 0.01ms !important;
              transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
}

/* General */
.page-wrapper {
    margin: 0 auto;
    max-width: 1728px;
    width: 100%;
}

.section-padding {
    padding-left: 3rem;
    padding-right: 3rem;
}

.section-margins {
    margin-bottom: 8rem;
    margin-top: 8rem;
}

.lg-pad-top {
    padding-top: 8rem;
}

.lg-pad-bt {
    padding-bottom: 8rem;
}

.hidden {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.no-gap {
    gap: 0;
}

.gap-xl {
    gap: 30rem;
}

.gap-s {
    gap: 1.25rem;
}

.gap-xs {
    gap: .5rem;
}

.horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
}

.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
}

.justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.justify-spaced {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.align-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.align-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.align-self-end {
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fixed {
    position: fixed;
}

.abs-center {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.top-layer {
    z-index: 1;
}

.top-layer-2 {
    z-index: 2;
}

.bottom-layer {
    z-index: 0;
}

.full-screen {
    height: 100dvh;
    width: 100dvw;
}

.double-screen {
    min-height: 200dvh;
}

.divider-skew {
    background: currentColor;
    -webkit-box-shadow: .5rem 0 0 currentColor;
            box-shadow: .5rem 0 0 currentColor;
    display: inline-block;
    height: 1.5rem;
    margin-left: .5rem;
    margin-right: 1rem;
    -webkit-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
            transform: skewX(-20deg);
    width: 1.5px;
}

.mar-top-sm {
    margin-top: 2rem;
}

.mar-top-md {
    margin-top: 5rem;
}

.mar-top-lg {
    margin-top: 8rem;
}

.glass {
    background: rgba(255, 255, 255, 0.10);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    -webkit-filter: drop-shadow(0 0 2px red);
            filter: drop-shadow(0 0 2px red);
}

/* Buttons */
.btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: var(--br-reg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.btn-primary {
    background: var(--color-red);
    border: 1px solid var(--color-red);
    color: white;
    height: 5rem;
    gap: 1.25rem;
    outline: none;
    width: 20rem;
}

.btn-label {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.btn-secondary {
    background: none;
    border: none;
    color: white;
    height: 5rem;
    gap: 1.25rem;
    outline: none;
    padding: .8125rem 3.125rem .875rem;
}

.btn-icon {
    height: .8125rem;
    width: .8125rem;
}

.btn-icon-s {
    height: .65rem;
    width: .65rem;
}

/* Font */
h1 {
    color: rgba(255, 255, 255, 0.01);
    font-family: var(--font-heading);
    font-size: 18rem;
    font-style: normal;
    line-height: 100%;
}

h2 {
    font-family: var(--font-body);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 0;
}

.h1 {
    color: white;
    font-family: var(--font-heading);
    font-size: 12rem;
    font-style: normal;
    line-height: 100%;
}

.h1-sm {
    font-size: 4rem;
    line-height: 90%;
}

.h2 {
    color: white;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-style: normal;
    line-height: 100%;
}

.sm-h2 {
    font-size: 5rem;
}

.h1-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 2rem;
}

.txt-white {
    color: white;
}

.txt-red {
    color: var(--color-red);
}

.txt-outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
    white-space: nowrap;
}

.txt-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .5rem;
}

.txt-jumbo {
    font-size: 15rem;
}

.txt-right {
    text-align: right;
}

.dk-bg {
    background: var(--color-dark-gradient);
}

.blue-bg {
    background: var(--color-dk-blue);
}

/* Header */
header {
    left: 0;
    position: absolute;
    right: 0;
    top: 1.5rem;
    z-index: 10;
}

.header-wrapper {
    background: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--br-full);
    height: 4.25rem;
}

.nav {
    height: 100%;
    gap: 1.25rem;
}

.nav-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: var(--font-xs);
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 100%;
    padding: .5rem 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.nav-btn {
    gap: 0 !important;
}

/* Content */
main {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 5rem;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 6rem;
    padding-top: 6rem;
    width: 100%;
}

.hero-bg {
    background: var(--color-dark-gradient);
    height: 100dvh;
    position: fixed;
    top: 0;
    width: 100dvw;
    z-index: 0;  
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-full-img-bottom {
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    width: 100dvw;
}

.letras {
    margin-top: 10rem;
    margin-bottom: -12rem;
    overflow: hidden;
    width: 100%;
}

.line {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.track {
    -webkit-text-stroke: 1px white;
    color: transparent;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 9rem;
    line-height: 90%;
    white-space: nowrap;
    will-change: transform;
}

.bg-video {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.card-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -5rem;
}

.card {
    height: 30rem;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.left {
    border-radius: 1.25rem 0 0 1.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin-right: -1rem;
}

.center {
    border-radius: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    -webkit-transform: skew(-10deg, 0deg);
        -ms-transform: skew(-10deg, 0deg);
            transform: skew(-10deg, 0deg);
}

.right {
    border-radius: 0 1.25rem 1.25rem 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin-left: -1rem;
}

.left .card-bg {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    height: 100%;
    left: -11%;
    overflow: hidden;
    position: absolute;
    -webkit-transform: skew(-10deg, 0deg);
        -ms-transform: skew(-10deg, 0deg);
            transform: skew(-10deg, 0deg);
    width: 100%;
}

.center .card-bg {
    background: url(assets/nb-flagship-store.jpeg) center / cover;
    height: 100%;
    left: -10%;
    position: absolute;
    overflow: hidden;
    width: 120%;
}

.counter-skew {
    -webkit-transform: skew(10deg, 0deg);
        -ms-transform: skew(10deg, 0deg);
            transform: skew(10deg, 0deg);
}

.card.center:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 8, 13, 0.00)), color-stop(86.05%, #07080D));
    background: -o-linear-gradient(top, rgba(7, 8, 13, 0.00) 0%, #07080D 86.05%);
    background: linear-gradient(180deg, rgba(7, 8, 13, 0.00) 0%, #07080D 86.05%);
}

.right .card-bg {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: -11%;
    -webkit-transform: skew(-10deg, 0deg);
        -ms-transform: skew(-10deg, 0deg);
            transform: skew(-10deg, 0deg);
    width: 100%;
}

.form-wrapper {
    background: var(--color-red);
    max-width: 40rem;
    padding: 5rem 3rem;
    border-radius: var(--br-reg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
}

form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    max-width: 32rem;
    width: 100%;
}

::-webkit-input-placeholder {
    color: white;
}

::-moz-placeholder {
    color: white;
}

:-ms-input-placeholder {
    color: white;
}

::-ms-input-placeholder {
    color: white;
}

::placeholder {
    color: white;
}

.success {
    color: white;
    margin-top: 1rem;
}

.flex-order-1 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.col-left, .col-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30dvw;
            flex: 0 0 30dvw;
}

.parallax-section {
    height: 250vh;
    position: relative;
}

.parallax-title {
    margin-bottom: 8rem;
    pointer-events: none;
    position: sticky;
    text-align: center;
    top: 10%;
    z-index: 1;
}

.parallax-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 10vh;
    position: relative;
}

.parallax-col {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}

.parallax-item {
  max-width: 40rem;
}

.parallax-item h3 {
  color: #e1062c;
  margin-bottom: 10px;
}

.parallax-item h2 {
  margin-bottom: 10px;
}

.parallax-item video,
.parallax-item img {
  width: 90%;
  border-radius: 12px;
}

.parallax-item video.right,
.parallax-item img.right {
    margin-left: 10%;
}

.parallax-item video.left,
.parallax-item img.left {
    margin-right: 10%;
}

h2.subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 5%;
    line-height: 1;
}

.full-w {
    width: 100%;
}

.full-h {
    height: 100%;
}

.inner-padding {
    padding: 2rem;
}

.card-icon {
    height: 100%;
    margin-bottom: 2rem;
    max-height: 2rem;
    max-width: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
}

.card.center .inner-padding {
    padding-left: 3rem;
}

.top-60 {
    top: 60%;
}

.left-80 {
    left: 80%;
}

.timeline-section {
  position: relative;
  height: auto;
  min-height: 200vh;
  padding-bottom: 12rem;
  overflow: visible;
}

.timeline {
    margin-top: 0;
    padding-bottom: 6rem;
    margin-left: auto;
    margin-right: 0;
    max-width: 50dvw;
    position: relative;
    width: 100%;
}

.timeline-item {
    margin: 120px 0;
    opacity: 0;
    -webkit-transform: translateY(80px);
        -ms-transform: translateY(80px);
            transform: translateY(80px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    will-change: transform, opacity;
}

.timeline-item h3 {
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 3rem;
}

.timeline-item h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: normal;
    line-height: 100%;
    margin: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.timeline-item.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.timeline-bg {
    bottom: 0;
    height: 50%;
    left: 0;
    width: 100%;
}

.timeline-bg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: .1;
    width: 100%;
}

.cta-section {
  position: relative;
  height: 120vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: -o-radial-gradient(30% 30%, circle, #e1062c, #0d0d0f 60%);
  background: radial-gradient(circle at 30% 30%, #e1062c, #0d0d0f 60%);
  -webkit-animation: moveBg 12s infinite alternate ease-in-out;
          animation: moveBg 12s infinite alternate ease-in-out;
}

@-webkit-keyframes moveBg {
  0% { -webkit-transform: scale(1) translate(0,0); transform: scale(1) translate(0,0); }
  100% { -webkit-transform: scale(1.2) translate(-40px, -40px); transform: scale(1.2) translate(-40px, -40px); }
}

@keyframes moveBg {
  0% { -webkit-transform: scale(1) translate(0,0); transform: scale(1) translate(0,0); }
  100% { -webkit-transform: scale(1.2) translate(-40px, -40px); transform: scale(1.2) translate(-40px, -40px); }
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-title {
  font-size: 72px;
  margin-bottom: 10px;
}

.cta-sub {
  opacity: 0.7;
  margin-bottom: 40px;
}

/* GLASS CARD */
.cta-card {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 20px;
  width: 360px;

  -webkit-transition: -webkit-transform 0.4s ease;

  transition: -webkit-transform 0.4s ease;

  -o-transition: transform 0.4s ease;

  transition: transform 0.4s ease;

  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.cta-card:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

input, select {
    background: #ba0b28;
    border: none;
    border-radius: 3px;
    color: white;
    height: 4rem;
    outline: none;
    padding: 10px 20px;
}

.checkbox {
  font-size: 12px;
  opacity: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid {
    display: -ms-grid;
    display: grid;
    gap: 0;
}

.grid-2-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bt-layer {
    height: 100%;
    width: 100%;
    z-index: 0;
}

.bg-red {
    background: var(--color-red);
}

.bg-img-full {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}

.error {
    color: black;
    font-size: .85rem;
}

.talla-group {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    gap: .5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: .5rem;
}

.swatch {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.swatch input {
  display: none;
}

.swatch span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ba0b28;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid;
  border-color: #ba0b28;
}

.swatch input:checked + span {
    border-color: white;
}

form .btn-primary {
    background: black;
    border: 1px solid black;
    margin-top: 3rem;
}

.bg-black {
    background: black;
}

.semi-transparent {
    opacity: 0.65;
}

.txt-sm {
    font-size: .85rem;
}

footer {
    background: black;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.max-w-50 {
    max-width: 50%;
}

.left {
    margin-left: 0;
}

@media screen and (min-width: 769px) {
    .hide-dt {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hide-mb {
        display: none;
    }

    .vertical-mb {
        flex-flow: column;
        gap: 1rem;
    }

    .txt-center-mb {
        text-align: center;
    }

    .grid-1-col-mb {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    header {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content {
        gap: 0;
        padding: 30px;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .hero-content svg {
        max-height: 90px;
        width: auto;
    }

    .parallax-title svg {
        max-height: 80px;
        width: auto;
    }

    .track {
        font-size: 6rem;
    }

    .hero-img-center {
        min-width: 800px;
    }

    h2 {
        font-size: 18px;
    }

    .align-left-mb {
        align-items: flex-start;
        gap: .5rem;
    }

    .btn-primary, .btn-secondary {
        height: 65px;
        gap: 30px;
        outline: none;
        padding: 20px 30px;
        width: 100%;
    }

    .btn-label {
        font-size: 16px;
    }

    main {
        overflow-x: hidden;
    }

    .h1-flex {
        width: 100%;
        gap: 20px;
        margin-bottom: 30px;
    }

    .mar-top-md {
        margin-top: 50px;
    }

    .card-wrapper {
                display: block;
        align-items: flex-start;
        margin-top: -100px;
        padding: 0 30px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }
    
    .card {
        height: 450px;
        padding: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .left, .center, .right {
        border-radius: 20px;
        margin-right: 0;
        margin-left: 0;
        transform: none;
    }

    .left .card-bg {
        left: 0;
        transform: none;
    }

    .counter-skew {
        transform: none;
    }

    .card .inner-padding {
        padding: 50px 30px;
    }

    .right .card-bg {
       right: 0;
        transform: none;
    }

    .txt-left-mb {
        text-align: left;
    }

    .align-start-mb {
        align-items: flex-start;
    }

    .timeline {
        max-width: unset;
        width: 100%;
        padding: 0 30px;
    }

    .parallax-title {
        margin-bottom: 50px;
        pointer-events: none;
        position: static;
        text-align: left;
        padding: 0 30px;
    }

    .timeline-item {
        margin: 50px 0;
        opacity: 1;
        will-change: unset;
        transform: none !important;
    }

    .timeline-section {
        height: auto;
        min-height: 0;
        padding-bottom: 80px;
        overflow: visible;
    }

    .mb-padding {
        padding: 50px 30px;
    }

    footer {
        padding: 0;
    }

    .section-padding {
        padding-left: 30px;
        padding-right: 30px;
    }

    .mar-top-lg {
        margin-top: 60px;
    }

    .full-w-mb {
        width: 100%;
        max-width: none !important;
    }
}
/* Selector de horario y clase */
#horario,
#clase {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 20px) 27px, calc(100% - 14px) 27px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

#horario:disabled,
#clase:disabled {
  opacity: .65;
  cursor: not-allowed;
}

#horario option,
#clase option {
  color: #111;
  background: #fff;
}

/* Hero partner branding */
.hero-carpe-logo {
    display: block;
    width: min(21rem, 58%);
    height: auto;
    margin: 0 auto 1.35rem;
    object-fit: contain;
}

.hero-name-logo {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .hero-carpe-logo {
        width: min(17rem, 72%);
        margin-bottom: 1rem;
    }
}
