:root {
  --eko-red: #f52d2d;
  --eko-black: #050505;
  --eko-ink: #111111;
  --eko-white: #ffffff;
  --eko-muted: #727272;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--eko-black);
  color: var(--eko-white);
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 10px 40px;
  background: #ffffff;
  color: #050505;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.site-logo-image {
  display: block;
  width: clamp(130px, 12vw, 180px);
  height: auto;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-navigation a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: pointer;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--eko-red);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 70px;
}

.nav-dropdown-trigger i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001;
  display: grid;
  min-width: 282px;
  padding: 26px 42px 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown-menu a {
  min-height: 0;
  padding: 8px 0;
  color: #050505;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i,
.nav-dropdown.is-open .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--eko-red);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-button,
.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid #050505;
  border-radius: 50%;
  background: #ffffff;
  color: #050505;
  font-size: 1rem;
}

.site-menu-toggle {
  display: none;
}

.home-page {
  overflow: hidden;
  background: #050505;
}

.home-page ~ .whatsapp-float {
  display: none;
}

.highway-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(120px, 18vh, 190px) 96px 70px;
  background: #050505;
}

.highway-hero-video,
.highway-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.highway-hero-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.15) brightness(0.55);
}

.highway-hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.42) 48%,
      rgba(0, 0, 0, 0.94)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.9));
}

.highway-content {
  max-width: 900px;
  text-align: center;
  text-transform: uppercase;
}

.hero-kicker,
.section-kicker {
  margin: 0;
  color: var(--eko-red);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1;
}

.title-white-banner-video {
  margin: 0;
  font-size: 100px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;

  color: #fff;
  text-align: center;
  text-shadow: 0 4px 28.6px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
  font-style: normal;
  font-weight: 400;
}
.small-title-red-banner-video {
  color: #ea2d2d;
  margin-bottom: -10px;
  font-size: 35px;
}
.small-note-offre {
  font-size: 13px !important;
  color: #777;
  margin-top: 22px;
  max-width: 360px;
}
.store-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
p.all-description {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  text-transform: none;
}
.store-badges a {
  display: inline-block;
  width: 126px;
  height: 40px;
  line-height: 0;
}

.store-badges img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.video-fallback .highway-hero-video,
.video-fallback video {
  display: none;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  margin-top: 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-socials {
  position: fixed;
  right: 30px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
  z-index: 998;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 2px solid #f41e1e;
  border-radius: 50%;
  color: #f41e1e;
  background: rgba(0, 0, 0, 0.86);
  box-shadow:
    0 0 0 1px rgba(244, 30, 30, 0.18),
    0 0 18px rgba(244, 30, 30, 0.7),
    0 0 42px rgba(244, 30, 30, 0.45),
    0 0 86px rgba(120, 23, 120, 0.42);
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  font-size: 25px;
}

.hero-socials a svg {
  display: none;
}

.hero-socials a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.hero-socials a[aria-label="Questions"]::before {
  content: "\3f";
}

.hero-socials a[aria-label="Instagram"]::before {
  content: "\f16d";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.hero-socials a[aria-label="Phone"]::before {
  content: "\f095";
}

.hero-socials a:hover {
  transform: translateY(-2px);
  background: rgba(244, 30, 30, 0.16);
  box-shadow:
    0 0 0 1px rgba(244, 30, 30, 0.28),
    0 0 24px rgba(244, 30, 30, 0.85),
    0 0 56px rgba(244, 30, 30, 0.58),
    0 0 100px rgba(120, 23, 120, 0.5);
}

.experience-section {
  min-height: 430px;
  margin-right: 0;
  margin-left: 0;
  background: #ffffff;
  color: #050505;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 82px) clamp(28px, 6vw, 74px);
}

.experience-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.experience-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.experience-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.experience-actions p {
  max-width: 260px;
  margin: 0;
  color: var(--eko-red);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.22;
}

.experience-copy small {
  max-width: 340px;
  margin-top: 14px;
  color: #6d6d6d;
  font-size: 0.62rem;
  line-height: 1.25;
}

.experience-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(245, 45, 45, 0.18), transparent 34%),
    linear-gradient(180deg, #2f4448, #171717);
}

.experience-media img,
.experience-media video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.82);
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 45%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.34));
}

.training-rooms {
  padding: clamp(54px, 6vw, 82px) clamp(24px, 8vw, 96px);
  background:
    linear-gradient(rgba(238, 235, 228, 0.88), rgba(238, 235, 228, 0.9)),
    url("../images/pic-accueil.jpg") center / cover,
    #e8e5dc;
  color: #050505;
  text-align: center;
}

.rooms-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.rooms-heading span,
.social-club-copy span {
  color: var(--eko-red);
}

.rooms-heading p {
  max-width: 600px;
  margin: 9px auto 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.rooms-slider {
  display: grid;
  grid-template-columns: 34px repeat(3, minmax(220px, 1fr)) 34px;
  align-items: center;
  gap: 20px;
  max-width: 1500px;
  margin: 42px auto 0;
}

.rooms-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 45, 45, 0.55);
  background: transparent;
  color: var(--eko-red);
  font-size: 0.7rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92 / 1;
  border-radius: 0;
  background: #111111;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.room-card:hover,
.room-card:focus-within {
  transform: translateY(-6px);
}

.room-card.is-changing {
  opacity: 0.25;
  transform: scale(0.98);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.72) contrast(1.1);
  transform: scale(1.02);
  transition:
    filter 0.28s ease,
    transform 0.28s ease;
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 18%, rgba(0, 0, 0, 0.78) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.room-card-red img {
  filter: grayscale(1) sepia(1) hue-rotate(315deg) saturate(5) brightness(0.82)
    contrast(1.08);
}

.room-card-purple img {
  filter: grayscale(1) sepia(1) hue-rotate(225deg) saturate(4) brightness(0.74)
    contrast(1.12);
}

.room-card:hover img,
.room-card:focus-within img {
  filter: grayscale(0.15) brightness(0.78) contrast(1.14);
  transform: scale(1.07);
}

.room-card-red:hover img,
.room-card-red:focus-within img {
  filter: sepia(1) hue-rotate(315deg) saturate(5.6) brightness(0.82)
    contrast(1.12);
}

.room-card-purple:hover img,
.room-card-purple:focus-within img {
  filter: sepia(1) hue-rotate(225deg) saturate(4.8) brightness(0.78)
    contrast(1.14);
}

.room-card:hover::after,
.room-card:focus-within::after {
  opacity: 1;
}

.room-card-overlay {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.room-card:hover .room-card-overlay,
.room-card:focus-within .room-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.room-card-overlay h3 {
  margin: 0 0 22px;
  font-size: 35px;
  font-weight: 900;
  line-height: 0.85;
}

.room-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.room-card-details p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: none;
}

.room-card-details strong {
  display: inline-block;
  margin-bottom: 4px;
  font-size: clamp(0.9rem, 1.6vw, 1.16rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eko-way {
  gap: 0;
  max-width: min(1180px, calc(100% - 90px));
  min-height: 340px;
  margin: clamp(46px, 6vw, 74px) auto;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(245, 45, 45, 0.98), rgba(245, 45, 45, 0.9)),
    #f52d2d;
  color: #ffffff;
  box-shadow: 0 0 0 70px rgba(91, 0, 0, 0.76);
}

.eko-way::before {
  content: "";
  position: absolute;
  inset: -70px;
  z-index: -1;
  background:
    linear-gradient(rgba(92, 0, 0, 0.78), rgba(92, 0, 0, 0.78)),
    url("../images/pic-accueil.jpg") center / cover;
  filter: grayscale(1) contrast(1.1);
}

.eko-way {
  position: relative;
  isolation: isolate;
}

.eko-way-copy h2,
.social-club-copy h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.eko-way-copy h2 {
  font-size: 40px;
}

.eko-way-copy h3 {
  margin: 13px 0 0;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eko-way-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
  text-align: justify;
}

.eko-way-copy {
  padding: clamp(36px, 5vw, 58px) clamp(28px, 5vw, 70px);
  background: #ea2d2d;
}

.eko-way-copy a {
}

.eko-way-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.eko-way-media img,
.social-club-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eko-way-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.95) brightness(0.78);
}

.eko-way-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(ellipse at center 78%, rgba(0, 0, 0, 0.48), transparent 44%);
  pointer-events: none;
}

.eko-way-quote {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 7vw, 56px);
  width: min(86%, 430px);
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.social-club-section {
  margin-right: 0;
  margin-left: 0;
  background: #ffffff;
  color: #050505;
}

.social-club-copy {
  padding: clamp(46px, 6vw, 82px) clamp(28px, 6vw, 74px);
}

.social-club-copy h3 {
  margin: 42px 0 0;
  color: var(--eko-red);
  font-size: 30px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.social-club-media {
  min-height: 390px;
  overflow: hidden;
}

.bootcamp-fit-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 850px;
  padding: clamp(76px, 9vw, 118px) clamp(18px, 5vw, 64px);
  background: #050505;
  color: #ffffff;
}

.bootcamp-fit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(28, 0, 0, 0.94),
      rgba(5, 5, 5, 0.86) 44%,
      rgba(8, 0, 0, 0.98)
    ),
    url("../images/pic-train.jpg") left center / 58% auto no-repeat,
    #050505;
  filter: grayscale(0.25) contrast(1.08);
}

.bootcamp-fit-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 48%, rgba(245, 45, 45, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.bootcamp-fit-copy {
  position: relative;
  z-index: 1;
}

.bootcamp-fit-copy h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.bootcamp-fit-copy h2 span,
.fit-card h3 span {
  color: var(--eko-red);
}

.bootcamp-fit-copy p {
  max-width: 430px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  line-height: 1.55;
}

.bootcamp-fit-progress {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 380px;
  margin-top: 34px;
}

.bootcamp-fit-progress span {
  display: block;
  flex: 1;
  height: 2px;
  background: var(--eko-red);
}

.bootcamp-fit-progress small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.bootcamp-fit-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    #000 14%,
    #000 86%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 14%,
    #000 86%,
    transparent
  );
}

.bootcamp-fit-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: bootcampCardsUp 36s linear infinite;
}

.bootcamp-fit-carousel:hover .bootcamp-fit-track {
  animation-play-state: paused;
}

.bootcamp-fit-group {
  display: grid;
  gap: 18px;
}

.fit-card {
  position: relative;
  min-height: 160px;
  padding: 34px 36px;
  border: 1px solid rgba(245, 45, 45, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(245, 45, 45, 0.26),
      transparent 2px
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(245, 45, 45, 0.08)),
    rgba(5, 5, 5, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.fit-card small {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.fit-card h3 {
  max-width: 600px;
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

@keyframes bootcampCardsUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 9px));
  }
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 96px);
  background: #111111;
}

.video-feature h2,
.home-band h2 {
  margin: 10px 0 0;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.video-feature p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #d0d0d0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.video-panel {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050505;
}

.video-panel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-band {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 7vw, 96px);
  background: #050505;
}

.home-band-light {
  background: #f3f3f3;
  color: #050505;
}

/* footer */

.form-hero {
  min-height: 100vh;

  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.form-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 3%);
}

.form-title {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.form-title h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 55px;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 10px;
  font-weight: 400;
}

.form-title h1 span {
  color: #ff2b2b;
}

.form-title p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.form-card {
  position: relative;
  z-index: 2;
  background: white;
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(255, 0, 0, 0.2),
    0 25px 80px rgba(0, 0, 0, 0.5);
}

.form-side {
  background: #f52a2a;
  padding: 45px 35px;
  height: 100%;
}

.form-logo {
  display: block;
  margin: auto;
  width: 160px;
  margin-bottom: 35px;
}

.form-custom-label {
  font-size: 11px;

  color: #fff;
  font-family: Calibri;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.form-custom-control,
.form-custom-select {
  width: 100%;
  border: none;
  border-radius: 0;
  height: 48px;
  font-size: 13px;
  padding: 0 15px;
  outline: none;
}

.form-custom-control:focus,
.form-custom-select:focus {
  border: 2px solid #111;
}

.form-consent {
  margin-top: 15px;
  margin-bottom: 20px;
}

.form-consent .form-check-label {
  color: white;
  font-size: 11px;
  line-height: 1.5;
}

.form-register-btn {
  width: 100%;
  background: white;
  color: #f52a2a;
  border: none;
  height: 55px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.3s;
}

.form-register-btn:hover {
  background: #111;
  color: white;
}

.form-small-text {
  text-align: center;
  color: white;
  font-size: 10px;
  margin-top: 20px;
}

.form-image-side {
  height: 100%;
}

.form-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 650px;
}

@media (max-width: 991px) {
  .form-title h1 {
    font-size: 60px;
  }

  .form-image-side img {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .form-hero {
    padding: 40px 15px;
  }

  .form-title {
    margin-bottom: 30px;
  }

  .form-title h1 {
    font-size: 42px;
    line-height: 1;
  }

  .form-title p {
    font-size: 13px;
  }

  .form-side {
    padding: 30px 20px;
  }

  .form-logo {
    width: 130px;
  }

  .form-image-side img {
    min-height: 280px;
  }
}

.form-input-group {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.form-custom-control {
  width: 100%;
  height: 48px;
  border: none;
  background: #fff;
  padding-left: 50px;
  font-size: 13px;
  outline: none;
}

.form-custom-control::placeholder {
  color: #8f96a3;
}

.form-custom-control,
.form-custom-select {
  width: 100%;
  height: 48px;
  padding-left: 50px;
  border: none;
  background: #fff;
}

.form-input-group {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.form-consent {
  margin-top: 15px;
  margin-bottom: 20px;
}

.form-consent .form-check-input {
  margin-top: 4px;
}

.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
}

.form-consent-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-top {
  background: #000;
  padding: 20px 0;
}

.footer-top-logo {
  width: 110px;
}

.footer-top-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-top-info span {
  color: #fff;
  font-size: 13px;
}

.footer-top-info a {
  color: #fff;
  text-decoration: none;
}

.footer-top-info a:hover {
  color: #ff2b2b;
}

.footer-top-store {
  display: inline-block;
  margin-left: 8px;
}

.footer-top-store img {
  height: 42px;
}

.title-white-banner-video,
.small-title-red-banner-video,
.title-black-card,
.btn-red-inscription,
.btn-white-inscription,
.title-white-card,
.title-footer,
.title-black-hover-small-card,
.highway-number,
.highway-benefit-item,
.title-white-card {
  font-family: "Bebas Neue", sans-serif;
}
.site-navigation a,
.nav-dropdown-trigger {
  color: #020202;
  font-family: "Bebas Neue";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 123.077% */
  text-transform: uppercase;
}
.title-white-card {
  font-size: 40px;
  line-height: 40px;
}

.title-footer {
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 45px;
}
.title-red-card {
  color: red;
}
h3.title-black-hover-small-card {
  font-size: 20px;
  letter-spacing: 0.5px;
}
.number-red-hover-small-card {
  font-size: 34px;
  line-height: 1;
  color: #ff2333;
  flex-shrink: 0;
  transition: all 0.7s ease;
  font-family: "Bebas Neue", sans-serif;
}
.title-black-card {
  margin: 0;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.under-title-white-card {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 6px 0px;
}

.btn-red-inscription {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 226px;
  min-height: 48px;
  padding: 13px 24px;
  background: var(--eko-red);
  color: #ffffff;

  text-align: center;
  font-family: "Bebas Neue";
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 123.077% */
  text-transform: uppercase;
}

.btn-white-inscription {
  color: #ea2d2d;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 23px;
  font-style: normal;
  line-height: 32px; /* 123.077% */
  text-transform: uppercase;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 48px;
  margin-top: 28px;

  background: #ffffff;
  font-weight: 500;
}
.text-black-bold {
  color: #020202;
  font-family: "Bebas Neue";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  width: 79%;
  margin: 15px 0px;
}
.text-black-card {
  font-family: "Poppins", sans-serif;
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.45;
  text-align: justify;
  margin-bottom: 11px;
}

@media (max-width: 991px) {
  .footer-top {
    text-align: center;
  }

  .footer-top-logo {
    margin-bottom: 20px;
  }

  .footer-top-info {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer-top-store {
    margin: 5px;
  }
}
