@charset "UTF-8";
@font-face {
  font-family: "DM Sans Variable";
  src: url("../assets/fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2-variations"), url("../assets/fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk Variable";
  src: url("../assets/fonts/SpaceGrotesk-VariableFont_wght.woff2") format("woff2-variations"), url("../assets/fonts/SpaceGrotesk-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-main: "DM Sans Variable", system-ui, sans-serif;
  --font-sec: "Space Grotesk Variable", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main), sans-serif;
  background: #111114;
  color: #111114;
  line-height: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #111114;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, 1248px);
  margin-inline: auto;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(10px);
}
.header__wrapper {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  min-height: 100vh;
  background: #161719;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
  border-radius: 20px 0 0 20px;
  z-index: 95;
}
.nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 1rem 1rem;
  gap: 0.4rem;
  min-height: 100vh;
  justify-content: center;
}
.nav__list li {
  width: 100%;
  text-align: center;
}
.nav__list li.access {
  margin-top: auto;
}
.nav__list li.access a {
  margin-left: 0;
}
.nav__list li.social-media {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: center;
}
.nav__list li.social-media a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3d3d41;
  border-radius: 8px;
  transition: all 0.35s ease;
}
.nav__list li.social-media a img {
  transition: all 0.35s ease;
}
.nav__list li.social-media a:hover {
  background: #f2a014;
}
.nav__list li.social-media a:hover img {
  filter: brightness(0.2);
}
.nav__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 14px;
}
.nav__link:hover {
  color: #e89b17;
}
.nav__link.free-access {
  background: #f2a014;
  padding: 12px 20px;
  color: #111114;
  border-radius: 5px;
  font-weight: 500;
}
.nav__link.free-access:hover {
  background: #f2a014;
  color: #111114;
}

.menu-toggle {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}
.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f2a014;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 6px auto;
}

.nav.is-open ~ .menu-toggle .menu-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #ffffff;
}
.nav.is-open ~ .menu-toggle .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  background: #ffffff;
}
.nav.is-open ~ .menu-toggle .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #ffffff;
}

.hero {
  height: calc(100vh - 65px);
  min-height: 700px;
  display: flex;
  align-items: end;
  background: radial-gradient(#ff9800, #f28601);
  position: relative;
  overflow: hidden;
}
.hero__content {
  align-items: center;
  padding: 5rem 0 3rem;
}
.hero__text {
  color: #ffffff;
  max-width: 100%;
  position: relative;
  z-index: 10;
}
.hero__text h1 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-sec), sans-serif;
}
.hero__text p {
  color: #111114;
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.25;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
.hero__image-1, .hero__image-2 {
  position: absolute;
  inset: 0;
}
.hero__image-1 img, .hero__image-2 img {
  position: absolute;
}
.hero .hero-img-1 {
  right: 0;
  top: 80px;
  transform: none;
  width: auto;
  max-width: 152%;
}
.hero .hero-img-2 {
  bottom: 0;
  right: -10%;
  max-width: 660px;
}
.hero .hero-img-2-label {
  padding: 10px;
  border-top: 1px solid rgba(242, 242, 242, 0.63);
  border-radius: 20px;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  line-height: 1;
  position: absolute;
  font-size: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 4;
}
.hero .hero-img-2-label span {
  display: flex;
  height: 36px;
  width: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.hero .hero-img-2-label span svg {
  max-height: 20px;
  max-width: 20px;
}
.hero .hero-img-2-label svg {
  fill: currentColor;
}
.hero .hero-img-2-label:nth-child(2) {
  background: linear-gradient(45deg, rgba(242, 3, 3, 0.2), rgba(186, 186, 186, 0.3));
  top: 11%;
  right: 54%;
}
.hero .hero-img-2-label:nth-child(2) span {
  background: #af2c2e;
}
.hero .hero-img-2-label:nth-child(3) {
  background: linear-gradient(45deg, rgba(0, 157, 255, 0.2), rgba(186, 186, 186, 0.3));
  top: 21%;
  right: 45%;
}
.hero .hero-img-2-label:nth-child(3) span {
  background: #026eb2;
}
.hero .hero-img-2-label:nth-child(4) {
  background: linear-gradient(45deg, rgba(242, 95, 3, 0.2), rgba(186, 186, 186, 0.3));
  top: 31%;
  right: 15%;
}
.hero .hero-img-2-label:nth-child(4) span {
  background: #dd7a24;
}
.hero .hero-img-2-label:nth-child(5) {
  background: linear-gradient(45deg, rgba(3, 242, 158, 0.2), rgba(186, 186, 186, 0.3));
  top: 41%;
  right: 16%;
}
.hero .hero-img-2-label:nth-child(5) span {
  background: #00a45d;
}
.hero:after {
  content: "";
  height: calc(80% - 65px);
  width: 100%;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  background: linear-gradient(0, #f2a014, 80%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 10px;
  gap: 10px;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 18px);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 0;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 768px) {
  .btn {
    max-width: 240px;
  }
}
.btn svg {
  fill: currentColor;
  flex-shrink: 0;
}
.btn--primary {
  background: #f2a014;
  color: #111114;
  border: 1px solid #111114;
}
.btn--primary:hover {
  background: #f9b136;
}
.btn--primary.top {
  background: transparent;
}
.btn--primary.top:hover {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn--secondary {
  background: #111114;
  color: #ffffff;
  border: 1px solid #111114;
}
.btn--secondary:hover {
  background: #f2a014;
  color: #111114;
  border: 1px solid #111114;
}
.btn--border {
  background: transparent;
  color: #f2a014;
  border: 1px solid #f2a014;
}
.btn--border:hover {
  background: #f2a014;
  color: #111114;
}

.section {
  padding: 5rem 0;
  padding: 4rem 0;
  overflow: hidden;
}
.section-dark {
  background: #161719;
}
.section-light {
  background: #252528;
}
.section-orange {
  background: #f2a014;
}
.section__heading {
  margin-bottom: 2rem;
}
.section__heading h2 {
  font-size: clamp(1.8rem, 4vw, 48px);
  margin-bottom: 0.75rem;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}
.section__heading p {
  max-width: 590px;
  color: #c9ced6;
  text-align: center;
  font-size: clamp(15px, 2vw, 20px);
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.35;
}
.section__heading.dark h2,
.section__heading.dark p {
  color: #111114;
}
.section__heading.dark h2 {
  font-weight: 700;
}
.section__video {
  min-height: 280px;
  border-radius: 24px;
  background: black;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.section__box, .section__box-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.section__box.center, .section__box-3.center {
  text-align: center;
}
.section__box.center .box, .section__box-3.center .box {
  align-items: center;
}
.section .box {
  background: #252528;
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  align-items: baseline;
}
.section .box img {
  width: fit-content;
  max-width: 65px;
}
.section .box .title {
  color: #ffffff;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}
.section .box .description {
  color: #c9ced6;
  font-weight: 200;
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 10px;
  line-height: 1.45;
}
.section .box a {
  color: #e89b17;
  text-decoration: none;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
.section .box.top {
  border: 1px solid #252528;
  transition: all 0.2s ease-in-out;
}
.section .box.top:has(.know-more:hover) {
  border-color: #e89b17;
}
.section .box.bottom {
  border: 1px solid #3d3d41;
  transition: all 0.2s ease-in-out;
}
.section .box.bottom:has(.know-more:hover) {
  border-color: #e89b17;
}
.section.section-light .box {
  background: #3d3d41;
  gap: 5px;
}
.section.section-light .box img {
  margin-bottom: 5px;
}
.section .base-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.section .base-wrapper h3 {
  color: #ffffff;
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.15;
}
.section .base-wrapper p {
  max-width: 760px;
  color: #c9ced6;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
}
.section .base-wrapper .text-box {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}
.section .base-wrapper .image-box img {
  margin: 0 auto;
  border-radius: 20px;
}
.section .base-wrapper.reverse {
  flex-direction: column-reverse;
}
.section .carousel-wrapper .text-box {
  text-align: center;
}
.section#designedForYou {
  padding-bottom: 0;
}
.section.middle-bg {
  min-height: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  background: top/cover no-repeat url("/assets/img/bg-girl-mobile.webp");
  position: relative;
}
.section.middle-bg:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(19, 19, 19, 0.9), rgba(0, 0, 0, 0));
  width: 100%;
  height: 60%;
  z-index: 4;
}
.section.middle-bg .middle-bg-block {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text h3 {
  color: #ffffff;
  font-size: clamp(32px, 3vw, 36px);
  letter-spacing: 1px;
  font-weight: 600;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text p {
  max-width: 760px;
  color: #ffffff;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text .rating-wrapper {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text .rating-wrapper > div {
  background: url("/assets/icons/icon-stars.png") center bottom/cover no-repeat;
  background-size: initial;
  padding-bottom: 25px;
  text-align: center;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text .rating-wrapper span {
  color: #ffffff;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 600;
}
.section.middle-bg .middle-bg-block .middle-bg-block-text .rating-wrapper p {
  color: #c9ced6;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
  margin-top: 5px;
}

.slider-container-wrapper {
  position: relative;
  width: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}
.slider-container-wrapper .coverflow {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(60px);
}
.slider-container-wrapper .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.slider-container-wrapper .slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  background: transparent;
  opacity: 1;
}
.slider-container-wrapper .slide img {
  display: block;
  width: calc(100% + 1px);
  height: auto;
  max-width: 420px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 9;
  padding-left: 0 !important;
  transform: translateX(-1px);
}
.slider-container-wrapper .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #161719;
  opacity: var(--overlay, 0);
  transition: opacity 0.65s ease;
  pointer-events: none;
  z-index: 10;
}
.slider-container-wrapper .slide.is-active::after {
  opacity: 0;
}

#testimonials-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#testimonials-carousel .section__mask {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  touch-action: pan-y;
}
#testimonials-carousel .testimonials-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  will-change: transform;
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
#testimonials-carousel .testimonials-track.no-transition {
  transition: none !important;
}
#testimonials-carousel .testimonial {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  padding: 25px;
  background: #111114;
  border-radius: 12px;
}
#testimonials-carousel .testimonial .testimonial-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
#testimonials-carousel .testimonial .testimonial-info p.name {
  color: #ffffff;
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 5px;
  padding-top: 8px;
}
#testimonials-carousel .testimonial .testimonial-info p.role {
  color: #959599;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.1;
}
#testimonials-carousel .testimonial .instagram {
  display: flex;
  color: #f2a014;
  text-decoration: none;
  font-weight: 300;
  margin-bottom: 7px;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 2vw, 16px);
  background: url("/assets/icons/icon-instagram.svg") no-repeat left 5px;
  padding-left: 28px;
}
#testimonials-carousel .testimonial .testimonial-review {
  font-size: clamp(14px, 2vw, 16px);
  color: #dbdbdf;
  font-weight: 300;
  margin-top: 20px;
  line-height: 1.7;
}
#testimonials-carousel .testimonials-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
#testimonials-carousel .bullet {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
#testimonials-carousel .bullet.is-active {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.2);
}

#customers-carousel .customers-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  user-select: none;
  padding: 50px 0;
}
#customers-carousel .customers-carousel-wrapper:after, #customers-carousel .customers-carousel-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, #161719, rgba(23, 23, 26, 0));
  z-index: 5;
}
#customers-carousel .customers-carousel-wrapper:after {
  background: linear-gradient(270deg, #161719, rgba(23, 23, 26, 0));
  left: initial;
  right: 0;
}
#customers-carousel .customers-carousel-wrapper .customers-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
#customers-carousel .customers-carousel-wrapper .img-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  transition: all 0.5s ease;
}
#customers-carousel .customers-carousel-wrapper .img-container:hover {
  filter: brightness(1.6);
}
#customers-carousel .customers-carousel-wrapper img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

#offers .switcher-container {
  text-align: center;
}
#offers .switcher-container .switcher-wrapper {
  display: inline-block;
  padding: 6px;
  background: #3d3d41;
  border-radius: 8px;
}
#offers .switcher-container .switcher-wrapper button.switcher-button {
  all: unset;
  cursor: pointer;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: clamp(14px, 2vw, 16px);
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
#offers .switcher-container .switcher-wrapper button.switcher-button.active {
  background: #f2a014;
  color: #111114;
}
#offers .switcher-container .switcher-wrapper button.switcher-button:not(.active) {
  color: #ffffff;
}
#offers .switcher-container .switcher-wrapper button.switcher-button:not(.active):hover {
  background: rgb(80.7523809524, 80.7523809524, 86.0476190476);
}
#offers .offers-container {
  position: relative;
  min-height: 610px;
  margin-top: 30px;
  margin-bottom: 40px;
  display: grid;
}
#offers .offers-wrapper {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}
#offers .offers-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
#offers .offer-item {
  padding: 34px 30px;
  border-radius: 16px;
  background: #3d3d41;
  border: 2px solid #3d3d41;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.5s ease;
  position: relative;
}
#offers .offer-item.most-popular {
  border: 2px solid #f2a014;
}
#offers .offer-item.most-popular:before {
  content: "Más Popular";
  position: absolute;
  top: 0;
  left: 50%;
  background: #f2a014;
  padding: 4px 15px;
  border-radius: 50px;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 300;
  font-size: clamp(14px, 2vw, 15px);
  text-align: center;
  min-width: 88px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
#offers .offer-item.most-popular .offer-button {
  background: #f2a014;
  color: #111114;
}
#offers .offer-item .offer-info {
  color: #ffffff;
  text-align: center;
  font-size: clamp(20px, 2vw, 22px);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.25;
}
#offers .offer-item .offer-price {
  color: #ffffff;
  font-size: clamp(34px, 3vw, 40px);
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
}
#offers .offer-item .offer-price span {
  color: #959599;
  font-size: 18px;
  letter-spacing: normal;
  font-weight: 300;
  margin-left: -5px;
}
#offers .offer-options li {
  color: #c9ced6;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 16px);
  padding: 5px 0 8px 30px;
  background: no-repeat center left url("/assets/icons/icon-check.svg");
  line-height: 1.4;
}
#offers .offer-button {
  padding: 9px 15px;
  margin-top: auto;
  min-width: 100%;
  max-width: 100%;
}

#contact {
  background: no-repeat left center url("/assets/img/bg-contact-mobile.webp");
  min-height: 900px;
  background-size: cover;
  position: relative;
}
#contact h3 {
  color: #ffffff;
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.15;
}
#contact p {
  font-size: clamp(17px, 2vw, 19px);
  color: #c9ced6;
  font-weight: 300;
  margin: 30px 0;
  line-height: 1.4;
}
#contact .contact-information {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
  align-items: flex-start;
}
#contact .contact-information a {
  font-size: clamp(17px, 2vw, 19px);
  color: #c9ced6;
  font-weight: 300;
  text-decoration: none;
  padding-left: 30px;
  transition: color 0.35s ease;
}
#contact .contact-information a.phone {
  background: no-repeat left center url("/assets/icons/icon-phone.svg");
}
#contact .contact-information a.email {
  background: no-repeat left center url("/assets/icons/icon-mail.svg");
}
#contact .contact-information a:hover {
  color: #f2a014;
}
#contact .contact-button {
  position: absolute;
  bottom: 50px;
  width: calc(100% - 40px);
  border: 1px solid #f2a014;
}

.footer {
  background: #111114;
  color: #959599;
  text-align: center;
  padding: 4rem 0;
  font-weight: 300;
}
.footer .top-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer .top-container .grid-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
}
.footer .top-container .grid-1 a {
  transition: all 0.25s;
}
.footer .top-container .grid-1 a:hover {
  filter: brightness(1.4);
}
.footer .top-container .grid-1 a img {
  max-width: initial;
}
.footer .top-container .grid-1 p {
  color: #959599;
  text-align: center;
  line-height: 1.4;
  padding: 0 15px;
}
.footer .top-container .grid-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .top-container .grid-2 nav ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .top-container .grid-2 nav ul li a {
  color: #959599;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.35s ease;
  padding: 5px;
}
.footer .top-container .grid-2 nav ul li a:hover {
  color: #f2a014;
}
.footer .top-container .grid-3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .top-container .grid-3 .social-media {
  display: flex;
  gap: 15px;
}
.footer .top-container .grid-3 .social-media a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3d3d41;
  border-radius: 8px;
  transition: all 0.35s ease;
}
.footer .top-container .grid-3 .social-media a img {
  transition: all 0.35s ease;
}
.footer .top-container .grid-3 .social-media a:hover {
  background: #f2a014;
}
.footer .top-container .grid-3 .social-media a:hover img {
  filter: brightness(0.2);
}

@media (min-width: 577px) {
  .section__box, .section__box-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero .hero-img-2-label:nth-child(2) {
    right: 60%;
  }
  .hero .hero-img-2-label:nth-child(3) {
    right: 68%;
  }
  .hero .hero-img-2-label:nth-child(4) {
    right: 40%;
  }
  .hero .hero-img-2-label:nth-child(5) {
    right: 56%;
  }
}
@media (min-width: 768px) {
  .hero {
    align-items: center;
    min-height: 650px;
  }
  .hero__actions {
    flex-direction: row;
  }
  .hero__content {
    padding-bottom: 5rem;
  }
  .hero__text {
    max-width: 420px;
  }
  .hero__text h1 {
    font-size: clamp(2.3rem, 5vw, 64px);
    margin-bottom: 35px;
  }
  .hero__text p {
    color: #ffffff;
    margin-bottom: 40px;
  }
  .hero .hero-img-1 {
    top: 52%;
    right: -28%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 960px;
  }
  .hero .hero-img-2-label {
    z-index: auto;
    padding: 16px;
    border-radius: 28px;
    font-size: 18px;
    transform: scale(0.95);
  }
  .hero .hero-img-2-label span {
    height: 55px;
    width: 55px;
  }
  .hero .hero-img-2-label span svg {
    max-height: none;
    max-width: none;
  }
  .hero .hero-img-2-label:nth-child(2) {
    right: 23%;
    top: 160px;
  }
  .hero .hero-img-2-label:nth-child(3) {
    right: 34%;
    top: 260px;
  }
  .hero .hero-img-2-label:nth-child(4) {
    right: 12%;
    top: 270px;
  }
  .hero .hero-img-2-label:nth-child(5) {
    right: 16%;
    top: 380px;
  }
  .hero:after {
    content: none;
  }
  .section {
    padding: 5rem 0;
  }
  .section__heading {
    margin-bottom: 4rem;
  }
  .section__video {
    min-height: 420px;
    max-width: 720px;
    margin: 0 auto;
  }
  .section .base-wrapper {
    flex-direction: row !important;
    gap: 0;
    padding: 0 30px;
  }
  .section .base-wrapper .text-box {
    padding: 0 50px 50px;
    flex: 0 0 55%;
    text-align: left;
    margin-bottom: 0;
  }
  .section .base-wrapper .image-box {
    flex: 0 0 45%;
  }
  .section .base-wrapper .image-box img {
    margin: auto 0 0 0;
    padding-left: 50px;
  }
  .section .base-wrapper.reverse .image-box img {
    margin: 0 0 0 auto;
    padding-right: 50px;
    padding-left: initial;
  }
  .section .carousel-wrapper .text-box {
    flex: 0 0 40%;
  }
  .section .carousel-wrapper .image-box {
    flex: 0 0 60%;
  }
  .section.middle-bg {
    min-height: 540px;
    background: center/cover no-repeat url("/assets/img/bg-girl.webp");
  }
  .section.middle-bg:after {
    content: "";
    top: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(19, 19, 19, 0.9), rgba(0, 0, 0, 0));
    width: 60%;
    height: 100%;
  }
  .section.middle-bg .middle-bg-block {
    justify-content: end;
    margin-right: 80px;
  }
  .section.middle-bg .middle-bg-block .middle-bg-block-text {
    max-width: 460px;
  }
  .section.middle-bg .middle-bg-block .middle-bg-block-text .rating-wrapper {
    flex-direction: row;
  }
  #testimonials-carousel .section__mask {
    width: 680px;
  }
  #offers .offers-container {
    margin-top: 60px;
  }
  #offers .offers-wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 5%;
  }
  #offers .offer-item {
    gap: 30px;
  }
  #offers .offer-item:hover {
    border: 2px solid #f2a014;
  }
  #offers .offer-options li {
    padding: 8px 0 8px 30px;
  }
  #contact {
    background: no-repeat center top fixed url("/assets/img/bg-contact.webp");
    background-size: cover;
    min-height: initial;
  }
  #contact .contact-button {
    position: initial;
  }
  .footer .top-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
  }
  .footer .top-container .grid-1 {
    flex-direction: row;
  }
  .footer .top-container .grid-1 p {
    text-align: left;
    padding: 0;
  }
  .footer .top-container .grid-3 {
    justify-content: end;
  }
}
@media (min-width: 992px) {
  .nav {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    min-height: auto;
    background: transparent;
    border-top: 0;
    transform: none;
    transition: none;
    pointer-events: auto;
    border-radius: 0;
  }
  .nav__list {
    flex-direction: row;
    padding: 0;
    gap: 12px;
    margin-top: 0;
    min-height: initial;
  }
  .nav__list li {
    width: initial;
  }
  .nav__list li.access {
    margin-top: initial;
  }
  .nav__list li.access a {
    margin-left: 20px;
  }
  .nav__list li.social-media {
    display: none;
  }
  .nav__link {
    display: block;
    width: auto;
    padding: 10px;
    color: #111114;
    font-size: 15px;
    font-weight: 600;
  }
  .nav__link.free-access {
    background: #111114;
    padding: 12px 20px;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 500;
  }
  .nav__link.free-access:hover {
    background: #f2a014;
    color: #111114;
  }
  .menu-toggle {
    display: none;
  }
  .hero__text {
    max-width: 540px;
  }
  .hero .hero-img-1 {
    right: -10%;
    max-width: 820px;
  }
  .hero .hero-img-2-label:nth-child(2) {
    right: 23%;
    top: 160px;
  }
  .hero .hero-img-2-label:nth-child(3) {
    right: 34%;
    top: 260px;
  }
  .hero .hero-img-2-label:nth-child(4) {
    right: 12%;
    top: 270px;
  }
  .hero .hero-img-2-label:nth-child(5) {
    right: 16%;
    top: 380px;
  }
  .section__box {
    grid-template-columns: repeat(4, 1fr);
  }
  .section__box-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .footer .top-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1201px) {
  .nav__list {
    gap: 15px;
  }
  .nav__list li.access a {
    margin-left: 150px;
  }
  .hero .hero-img-1 {
    right: 0;
    max-width: 950px;
  }
  .hero .hero-img-2-label:nth-child(2) {
    right: 23%;
    top: 160px;
  }
  .hero .hero-img-2-label:nth-child(3) {
    right: 36%;
    top: 260px;
  }
  .hero .hero-img-2-label:nth-child(4) {
    right: 12%;
    top: 270px;
  }
  .hero .hero-img-2-label:nth-child(5) {
    right: 28%;
    top: 380px;
  }
  #offers .offers-wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10%;
  }
}
@media (min-width: 1581px) {
  .hero .hero-img-1 {
    max-width: 1270px;
  }
  .hero .hero-img-2 {
    max-width: 660px;
  }
}
@media (min-width: 1921px) {
  .hero .hero-img-2 {
    max-width: none;
  }
}

/*# sourceMappingURL=style.css.map */
