@import url(./variables.css);

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bgColorBody);
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--titleFontFamily);
  color: var(--textColor);
}

.h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 66px */
  letter-spacing: -1.8px;
}

.h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 52.8px */
  letter-spacing: -0.48px;
}

.h6 {
  font-size: 36px;
  font-style: normal;
  letter-spacing: -0.12px;
  font-weight: 700;
  line-height: 115%; /* 41.4px */
  margin: 0 0 24px 0;
}

p {
  font-family: var(--bodytextFontFamily);
  color: var(--textColor);
}

.container {
  max-width: var(--container1440);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.logo {
  text-align: center;
  margin: 16px auto;
  font-size: 32px;
  font-family: dream_avenueregular;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  font-family: var(--btnFont);
  font-size: var(--btnTextSize);
  font-weight: var(---btnWeight);
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: 300ms;
}

/* --- */
.btn_primary {
  background-color: var(--bgColorCTA);
  color: var(--textColorInverse);
}

.btn_primary:hover {
  background-color: var(--textColor);
  transition: 300ms;
}

.btn_primary::after {
  content: url(../images/icons/phone-white.svg);
  transition: 300ms;
  opacity: 0;
  position: absolute;
  left: 115px;
}

.btn_primary:hover::after {
  content: url(../images/icons/phone-white.svg);
  transition: 300ms;
  opacity: 1;
  position: absolute;
  left: 122px;
}

/* --- */
.btn_inverse {
  background-color: var(--textColorInverse);
  color: var(--bgColorCTA);
  transition: 300ms;
}

.btn_inverse:hover {
  background-color: #fffcf3;
  transition: 300ms;
}

/* --- */
.btn_consultation {
  text-transform: none;
}

.btn_consultation::after {
  left: 115px;
  content: url(../images/icons/phone.svg);
  transition: 300ms;
  opacity: 0;
  position: absolute;
}
.btn_consultation:hover::after {
  left: 122px;
  content: url(../images/icons/phone.svg);
  transition: 300ms;
  opacity: 1;
  position: absolute;
}

/* Utility bar */
.utility_bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  background-color: #303235;
  /* background-image: linear-gradient(#303235, hsla(220, 6%, 20%, 0.899)); */
}

.utility_text,
.utility_bar_link {
  margin: 8px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.utility_bar_link {
  color: #e0a60e;
  cursor: pointer;
}

.utility_bar_price {
  font-weight: 600;
}

/* Hero */

.hero {
  display: flex;
  justify-content: center;
}
.hero_content {
  width: var(--container1440);
  margin: 80px 0 64px 0;
  display: flex;
  justify-content: space-between;
}

.hero_text {
  max-width: 611px;
}

.hero_title {
  font-size: 88px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 88px */
  letter-spacing: -3.52px;
  margin: 0 0 32px 0;
}

.text_yellow {
  color: var(--textColorExpression);
}

/* --- */
.hero_subtitle {
  font-size: var(--subTitleSize1440);
  font-weight: var(--subTitleWeight1440);
  letter-spacing: var(--subTitleLetter1440);
  line-height: var(--subTitleLine1440);
  margin-bottom: 64px;
}

/* --- */
.hero_img {
  border-radius: 16px;
  max-width: 486px;
  height: auto;
}

/* --- */
.hero_cta {
  display: flex;
}

/* --- */
.hero_btn {
  color: #fff;

  /* Bold 4 Helvetica */
  font-family: Helvetica Neue;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background-color: black;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-right: 20px;
  transition: 300ms;
}

.hero_btn:hover {
  background-color: rgb(33, 33, 33);
  scale: 1.01;
  transition: 300ms;
}

.phone-icon {
  margin-left: 10px;
  width: 14px;
  height: auto;
}

/* --- */
.rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- */
.rating_text {
  font-size: 14px;
  margin: 4px 0;
}

/* --- */
.hero_celebrity {
  width: 325px;
  font-size: 13px;
  line-height: 130%;
  opacity: 0.6;
}

/* ====== Media ===== */

/* ----- 1440px --------- */
@media (max-width: 1440px) {
  .container {
    max-width: var(--containerMax1440);
  }

  .hero_text {
    max-width: 554px;
  }

  .hero_title {
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -3.2px;
  }
}

/* ----- 1200px --------- */

@media (max-width: 1200px) {
  .container {
    max-width: var(--container1200);
  }

  .hero_text {
    max-width: 520px;
  }

  /* --- */
  .hero_title {
    font-size: var(--h1Size1024);
    letter-spacing: var(--h1Letter1024);
    margin: 0 0 32px 0;
  }

  /* --- */
  .hero_img {
    max-width: 432px;
    height: 531px;
  }
}

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .container {
    max-width: var(--containerMax1024);
  }

  .hero_title {
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1.68px;
  }

  .hero_subtitle {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 24.3px */
    letter-spacing: -0.36px;
  }

  .hero_text {
    max-width: 440px;
  }

  /* --- */
  .hero_img {
    max-width: 383px;
    height: 463px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .container {
    max-width: var(--containerMax900);
  }

  .logo {
    font-size: 24px;
  }

  .hero_content {
    flex-direction: column;
    align-items: center;
    margin: 48px auto;
  }
  .hero_text {
    text-align: center;
    margin-bottom: 20px;
  }

  .hero_title {
    text-align: center;
    font-size: 56px;
    font-style: normal;
    letter-spacing: -1.68px;
    margin: 0 0 24px 0;
  }

  .hero_subtitle {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.32px;
    margin-bottom: 48px;
  }

  .hero_cta {
    flex-direction: column;
    align-items: center;
  }

  .hero_btn {
    margin: 0 0 20px 0;
  }

  .rating {
    margin-bottom: 20px;
  }

  /* --- */
  .hero_celebrity {
    margin: 0 auto;
  }

  /* --- */
  .hero_img {
    border-radius: 8px;
    max-width: 484px;
    height: auto;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .container {
    max-width: var(--containerMax768);
  }

  .hero_title {
    font-size: 48px;
    font-style: normal;
    letter-spacing: -1.92px;
  }

  .hero_subtitle {
    line-height: 150%;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .container {
    max-width: var(--containerMax600);
  }

  /* --- */
  .hero_img {
    max-width: 100%;
  }
}

/* ----  430px ----- */
@media screen and (max-width: 430px) {
  .container {
    max-width: var(--containerMax430);
  }

  .logo {
    font-size: 20px;
  }

  /* Hero */
  .hero_content {
    margin: 48px auto;
  }

  .hero_text {
    margin: 0 4px;
  }

  /* --- */
  .hero_title {
    font-size: var(--h1Size390);
    letter-spacing: var(--h1Letter390);
    margin-bottom: 24px;
  }

  /* --- */
  .hero_subtitle {
    font-size: var(--subTitleSize390);
    font-weight: var(--subTitleWeight390);
    letter-spacing: var(--subTitleLetter390);
    margin-bottom: 48px;
  }

  .hero_btn {
    margin: 0;
  }

  /* --- */
  .rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }

  /* --- */
  .rating_text {
    margin: 0;
  }

  /* --- */
  .hero_celebrity {
    margin-bottom: 24px;
  }
}

/* ----  375px ----- */
@media screen and (max-width: 375px) {
  .hero_text {
    max-width: 100%;
    margin: 0;
  }
  .hero_celebrity {
    width: 300px;
    padding: 0;
  }
}

/* ----  320px ----- */
@media screen and (max-width: 320px) {
  .container {
    max-width: var(--containerMax430);
  }

  .hero_text {
    max-width: 100%;
    margin: 0;
  }

  .hero_title {
    font-size: 40px;
    letter-spacing: var(--h1Letter390);
    margin-bottom: 24px;
  }

  .hero_celebrity {
    width: 288px;
    padding: 0;
  }
}

/* ---------- --- Features --- ------- */
/* ----------------------------------- */

.features_box {
  width: 100%;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2) inset;
  background-color: #fff;
}

.features {
  margin: 0 auto;
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
}

.feature {
  width: 33%;
}

.feature_1,
.feature_2 {
  padding-right: 28px;
}

.features_icon {
  width: 36px;
  height: auto;
  margin: 0;
}

.feature_title {
  font-size: var(--h5Size1440);
  margin-top: 16px;
  margin-bottom: 0;
}

.feaute_body_text {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.18px;
  margin: 8px 0 0 0;
}

/* ====== Media ===== */

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .feature_title {
    font-size: 22px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    padding: 51px 0;
  }

  .feature_1,
  .feature_2 {
    padding-right: 0;
  }

  .feature {
    width: 600px;
    padding: 16px 16px;
  }

  .feature_title {
    font-size: 22px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .feature {
    width: 100%;
    padding: 13px 0;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
}

/* ------- Benefits ------ */
/* ----------------------- */

.benefit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 128px;
  margin: 144px auto 80px auto;
}

.benefit_img {
  width: 486px;
  height: 467px;
  border-radius: 16px;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
}

.benefit_title,
.faq_title {
  margin: 0 0 24px 0;
}

.benefit_body_text {
  list-style: none;
  padding: 0;
}

.benefit_text_li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bullet_text {
  font-size: var(--bulletTextSize1440);
  font-weight: var(--bulletTextWeight1440);
  letter-spacing: var(--bulletTextLetter1440);
  line-height: var(--bulletTextLine1440);
  margin: 12px 0;
}

.benefit_2 {
  flex-direction: row-reverse;
}

/* ====== Media ===== */

/* ----- 1200px --------- */

@media (max-width: 1200px) {
  .h3 {
    font-size: 44px;
    letter-spacing: -0.44px;
  }

  .benefit {
    gap: 64px;
  }

  .benefit_img {
    max-width: 467px;
    height: auto;
  }
}

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .benefit {
    flex-direction: column;
  }

  .benefit_img {
    max-width: 100%;
    min-height: 592px;
    border-radius: 8px;
    object-fit: cover;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .benefit {
    flex-direction: column;
    gap: 48px;
    margin: 64px auto 40px auto;
  }

  .benefit_img {
    max-width: 100%;
    min-height: 486px;
    border-radius: 8px;
  }

  .benefit_text {
    margin: 0 16px;
  }

  .h3 {
    font-size: 36px;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.36px;
  }

  .bullet_text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: -0.36px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .benefit_text {
    margin: 0;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .benefit_img {
    max-width: 100%;
    min-height: 400px;
  }
}

/* ----  430px ----- */
@media (max-width: 430px) {
  .h3 {
    font-size: 32px;
    line-height: 125%;
    letter-spacing: -0.32px;
  }
}

/* -------- Ultimate ------- */
/* ------------------------- */

.ultimate {
  background-color: var(--bgColorCTA);
}

.solution {
  background-color: var(--bgColorBody);
}

.ultimate_content {
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h2 {
  color: var(--textColorInverse);
  margin: 0 0 32px 0;
}

.ultimate_text {
  max-width: 780px;
  text-align: center;
  color: var(--textColorInverse);
  font-size: var(--bulletTextSize1440);
  font-weight: var(--bulletTextWeight1440);
  letter-spacing: var(--bulletTextLetter1440);
  margin: 0 0 64px 0;
}

/* ====== Media ===== */

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .h2 {
    font-size: 56px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .ultimate_content {
    padding: 64px 0;
  }

  .h2 {
    text-align: center;
    font-size: 44px;
    font-style: normal;
    line-height: 115%; /* 50.6px */
    letter-spacing: -1.32px;
  }

  .ultimate_text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: -0.18px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .ultimate_text {
    font-weight: 300;
  }
}

/* ----  430px ----- */
@media screen and (max-width: 430px) {
  .h2 {
    font-size: 40px;
    font-style: normal;
    line-height: 120%; /* 48px */
    letter-spacing: -1.2px;
  }
}

/* ------- Feeling -------- */
/* ------------------------ */

.pain,
.solution {
  max-width: var(--container1440);
  margin: 0 auto;
  padding: 80px 0;
}

.pain {
  background: rgba(229, 16, 16, 0.01);
}

.sad_content,
.solution_content {
  max-width: 900px;
  display: flex;
  gap: 48px;
  margin: 0 auto;
}

.sad_title,
.solution_title,
.price_title,
.reviews_title {
  text-align: center;
  margin: 0 0 64px 0;
  color: var(--textColor);
}

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

.green {
  color: var(--greenColor);
}

.sad_list,
.solution_list {
  padding: 0;
  list-style: none;
  width: 50%;
}

.sad_text_li,
.solution_text_li,
.solution_text_li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon_sad,
.icon_solution {
  margin-top: 15px;
}

.icon_included {
  margin-top: 12px;
}

.sad_bottom_text,
.solution_bottom_text {
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 21.6px */
  text-align: center;
  margin: 20px;
  margin-bottom: 0;
}

.btn_solution {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* ====== Media ===== */

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .sad_content,
  .solution_content {
    max-width: 860px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .pain,
  .solution {
    padding: 64px 0;
  }

  .sad_content,
  .solution_content {
    flex-direction: column;
    gap: 0;
    align-items: center;
    max-width: 512px;
  }

  .sad_title,
  .solution_title {
    margin: 0 0 36px 0;
  }

  .sad_list,
  .solution_list {
    width: 100%;
  }

  .sad_bottom_text,
  .solution_bottom_text {
    margin: 36px auto 0 auto;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .sad_content,
  .solution_content {
    max-width: 392px;
  }
}

/* ----  430px ----- */
@media screen and (max-width: 430px) {
  .sad_content,
  .solution_content {
    max-width: 92%;
  }

  .sad_title,
  .solution_title {
    max-width: 90%;
    margin: 0 auto 36px auto;
  }

  .solution_break_title {
    display: none;
  }
}

/* ------------ Price ------------ */
/* ------------------------------- */

.price {
  background-color: var(--bgColorBody);
}

.price_title_mobile {
  display: none;
}

.price_content {
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special_price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 32px 0;
}

.price_number {
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.44px;
  margin: 0;
}

.just_for {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.only {
  font-size: 24px;
  font-weight: 400;
}

.regular_price {
  font-family: "Inter";
  color: rgba(32, 57, 59, 0.64);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%; /* 27px */
  letter-spacing: -0.4px;
  text-decoration-line: line-through;
  margin: 0;
}

.off {
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.4px;
  color: #edbe3f;
}

.price-btns {
  display: flex;
  gap: 24px;
}

.btn_secondary {
  border: 1px solid rgba(32, 57, 59, 0.64);
  padding: 15px 36px;
}

.new_customers {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.56px;
  margin: 16px 0 0 0;
  text-align: center;
}

.tomorrow {
  font-weight: 500;
}

.cards-price-btns {
  margin: 0 0 36px 0;
  padding: 6px;
  border: 1px solid #20393b33;
  border-radius: 9999px;
  background-color: #fff7eb;
}

.micro-btn,
.nano-btn {
  border: none;
  border-radius: 16px;
  padding: 8px 16px;
  background-color: transparent;
  font-family: var(--btnFont);
  font-size: var(--btnTextSize);
  color: var(--bgColorCTA);
  cursor: pointer;
}

.active-card-btn {
  background-color: white;
  transition: 200ms;
  color: rgb(224 166 13);
  -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.16);
}

.price-cards-container {
  display: none;
  gap: 24px;
  align-items: flex-end;
  /* overflow: auto;
  white-space: nowrap; */
}

.price-cards-active {
  display: flex;
  transition: 200ms;
}

.price-card {
  display: inline-block;
  width: 304px;
  height: fit-content;
  border-radius: 12px;
  padding: 40px 32px 40px 32px;
  box-shadow: 3px 3px 9px 4px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.most-popular {
  margin: 0;
  margin-bottom: 32px;
  font-weight: 600;
  color: #edbe3f;
  gap: 4px;
}

.price-card-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.72px;
  line-height: 110%;
  margin: 0;
  margin-bottom: 8px;
}

.price-card-subtitle {
  font-size: 24px;
  margin: 0;
  margin-bottom: 32px;
  opacity: 0.8;
  letter-spacing: -0.96px;
}

.btn-price-cards-link {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-price-card {
  width: 270px;
  justify-content: center;
}

.included-2 {
  margin: 0 -32px -40px -32px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 32px;
  background-color: #fff7eb;
}

.discount-amount {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  position: absolute;
  background-color: #e30405;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -10px;
  right: -5px;
}

.discount-amount-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.discount-amount-number,
.discount-amount-off {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.6px;
  margin: 0;
}

.discount-amount-off {
  font-size: 12px;
}

/* Countdown */
.countdown_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 0 64px 0;
}

.special_offer {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: 110%;
  margin: 0;
  text-transform: uppercase;
}

.countdown_list {
  display: flex;
}

.countdown_list_item {
  font-family: var(--bodytextFontFamily);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 0 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.countdown_list_item span {
  color: var(--textColorExpression);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 8px;
}

.offer_ended {
  display: none;
}

/* ----- Included ------ */
.included {
  padding: 36px 0;
  background-color: #fff7eb;
}

.included_content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 156px;
}

.included_title {
  margin: 0;
  position: relative;
  z-index: 10;
}

.included_title::after {
  content: url("../images/icons/line.svg");
  position: absolute;
  left: 14px;
  bottom: -12px;
  z-index: -1;
}

.bullet_lists {
  display: flex;
  gap: 48px;
}

.included_text {
  color: #000;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}

.free_haircut {
  font-weight: 600;
}

/* ====== Media ===== */

/* ----  1200px ----- */
@media (max-width: 1200px) {
  .price-cards-container {
    flex-direction: column;
    gap: 28px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  /* .included_content {
    flex-direction: column;
    gap: 48px;
  } */

  .price_number {
    font-size: 56px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .bullet_lists {
    gap: 20px;
  }
  .price_number {
    font-size: 48px;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .bullet_lists {
    flex-direction: column;
    gap: 0;
  }

  .price-btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn_primary::after {
    left: 168px;
  }

  .btn_primary:hover::after {
    left: 176px;
  }

  .btn_service {
    width: 220.04px;
    display: flex;
    justify-content: center;
  }

  .included {
    padding: 40px 0 64px 0;
  }
}

/* ----  375px ----- */
@media screen and (max-width: 390px) {
  .price_title {
    display: none;
  }

  .price_title_mobile {
    display: block;
  }

  .countdown_list_item {
    padding: 24px 8px 0 8px;
  }
}

/* --- Reviews --- */
.reviews {
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
  background-color: var(--bgColorBody);
}

.reviews_content {
  margin: 0 auto;
}

.reviews_cards {
  display: flex;
  gap: 24px;
}

.review_card {
  max-width: 282px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.07);
}

.review_card_content {
  padding: 24px 16px 32px 16px;
}

.review_rating {
  margin: 24px 0;
}

.review_img {
  width: 56px;
  height: 56px;
  border-radius: 56px;
}

.review_text,
.faq_text,
.consultation_text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-align: left;
  margin-bottom: 32px;
}

.review_name {
  color: #595959;
  text-align: left;
  margin: 0;
}

/* ====== Media ===== */

/* ----- 1024px --------- */

@media (max-width: 1024px) {
  .reviews_cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .reviews {
    padding: 64px 0;
  }

  .reviews_cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .review_card {
    max-width: 272px;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .reviews {
    padding: 64px 0 48px 0;
  }

  .reviews_content {
    max-width: 94%;
  }

  .reviews_cards {
    flex-wrap: nowrap;
    justify-content: left;
    gap: 16px;
    overflow-x: scroll;
    padding-bottom: 16px;
  }

  .reviews_cards::-webkit-scrollbar {
    display: none;
  }

  .reviews_cards {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  .review_card_content {
    width: 240px;
  }
}

/* --- Quote --- */
.quote {
  padding: 200px 0;
  background-color: var(--bgColorBody);
}

.quote_text {
  max-width: 967px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  /* --- */
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%; /* 64.8px */
  letter-spacing: -0.48px;
}

.quote_text::before {
  content: url("../images/icons/quote.svg");
  position: absolute;
  top: -40px;
  left: -20px;
}
.quote_text::after {
  content: url("../images/icons/quote.svg");
  rotate: 180deg;
  position: absolute;
  bottom: -44px;
  right: 220px;
}

/* ====== Media ======= */

/* ----- 1200px --------- */

@media (max-width: 1200px) {
  .quote_text {
    max-width: 860px;
    /* --- */
    font-size: 44px;
    letter-spacing: -0.44px;
  }
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .quote {
    padding: 92px 0;
  }

  .quote_text {
    max-width: 544px;
    font-size: 36px;
    letter-spacing: -0.36px;
  }

  .quote_text::before {
    top: -30px;
    left: -2px;
  }

  .quote_text::after {
    bottom: -32px;
    right: 155px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .quote_text {
    max-width: 475px;
    font-size: 32px;
    line-height: 135%; /* 43.2px */
    letter-spacing: -0.32px;
  }

  .quote_text::after {
    bottom: -28px;
    right: 134px;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .quote_text {
    max-width: 392px;
  }

  .quote_text::after {
    right: 70px;
  }

  .quote_text::before {
    top: -28px;
    left: 4px;
  }
}

/* ----  430px ----- */
@media screen and (max-width: 430px) {
  .quote_text {
    font-size: 24px;
    letter-spacing: -0.24px;
    /*  */
    max-width: 90%;
  }

  .quote_text::after {
    right: 73px;
    bottom: -35px;
  }

  .quote_text::before {
    top: -43px;
    left: -6px;
  }
}

/* --- Media Photo --- */
/* =================== */
.media_mobile {
  display: none;
}

.media {
  background-color: #fff;
  padding: 80px 0;
}

.media_content {
  margin: 0 auto;
  display: flex;
  width: 100%;
  gap: 10px;
}

.media_half_1 {
  display: flex;
  margin: 0;
  width: 58%;
}

.media_half_2 {
  display: flex;
  width: 42%;
  gap: 10px;
}

.video {
  width: 42%;
  height: auto;
  margin-right: 10px;
  object-fit: cover;
}

/* --- */

.media_3 {
  display: flex;
  justify-content: space-between;
  height: 49%;
}

.media_2 {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media_img {
  width: 48.8%;
  height: 100%;
  object-fit: cover;
  margin: 0 0 10px 0;
}

.media_img_2 {
  width: 100%;
  height: 49%;
  object-fit: cover;
}

.media_img_landscape {
  width: 100%;
  height: 49%;
  object-fit: cover;
}

.media_audrey {
  width: 59%;
  height: auto;
  object-fit: cover;
}

/* --- */

.media_4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- Ultimate_2 */
.space {
  padding: 16px 0;
}

/* ====== Media ======= */

/* ---- Max 1440px ----- */
@media (max-width: 1440px) {
}

/* ---- Max 1200px ----- */
@media (max-width: 1200px) {
}

/* ---- Max 1024px ----- */
@media (max-width: 1024px) {
}

/* ----  900px ----- */
@media (max-width: 900px) {
  .media {
    display: none;
  }

  .media_mobile {
    display: block;
    background-color: #fff;
    padding: 64px 0;
  }

  .media_content_mobile {
    margin: 0 auto;
  }

  .media_mob_box_1,
  .media_mob_box_2 {
    display: flex;
    justify-content: space-between;
  }

  .video_mob,
  .img_video {
    width: 59%;
    object-fit: cover;
  }

  .img_video {
    object-fit: cover;
  }

  .media_mob_small_box_1,
  .media_mob_small_box_2 {
    display: flex;
    flex-direction: column;
    width: 39%;
    gap: 10px;
  }

  .media_img_mob_1 {
    object-fit: cover;
    margin: 0;
  }

  .media_img_mob_2 {
    object-fit: cover;
  }

  .media_img_landscape_mob {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 10px 0;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
}

/* ----  600px ----- */
@media (max-width: 600px) {
}

/* ----  430px ----- */
@media (max-width: 430px) {
  .media_mob_box_1,
  .media_mob_box_2 {
    flex-direction: column;
  }

  .video_mob,
  .img_video {
    width: 100%;
    margin: 0;
  }

  .media_mob_small_box_1,
  .media_mob_small_box_2 {
    flex-direction: row;
    justify-content: space-between;
    width: 99%;
  }

  .media_img_mob_1,
  .media_img_mob_2 {
    object-fit: cover;
    width: 49%;
    margin: 10px 0;
  }

  .media_img_landscape_mob {
    margin: 0;
  }
}

/* ---- FAQ --- */
.faq {
  padding: 80px 0;
  background-color: var(--bgColorBody);
}

.faq_content {
  width: 820px;
  margin: 0 auto;
}

.acc_btn {
  width: 100%;
  display: flex;
  align-items: center;
  background: none;
  cursor: pointer;
  border: none;
  position: relative;
  color: -apple-system-black;
  justify-content: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.acc_title {
  font-family: var(--bodytextFontFamily);
  margin: 24px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  padding-right: 32px;
}

.acc_btn::after {
  content: url("../images/icons/plus-circle.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  color: #000;
  /*  */
  transition: all 1.2s;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
}

.acc_content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 1.2s;
  width: 100%;
  text-align: center;
  border-bottom: 0.7px solid rgba(0, 0, 0, 0.7);
}

.faq_text {
  opacity: 0.7;
  max-width: 700px;
}

.phone,
.address {
  color: black;
}

/* open */
.active_acc {
  max-height: 320px;
  transition: max-height 2s;
  opacity: 0.8;
  transition: 1s ease-out;
  border-bottom: 1px solid black;
}

.active_btn::after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

/* ====== Media ======= */

/* ----  900px ----- */
@media (max-width: 900px) {
  .faq {
    padding: 64px 0;
  }

  .faq_content {
    width: 632px;
  }

  .acc_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.2px;
  }

  .faq_text {
    max-width: 576px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .faq_content {
    width: 560px;
  }

  .faq_text {
    max-width: 515px;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .faq_text {
    max-width: 372px;
  }
}

/* --- Consultation --- */
.consultation {
  padding: 80px 0 120px 0;
  background-color: #fff;
}

.consultation_content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation_text {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px auto;
  opacity: 0.6;
}

/* ====== Media ======= */

/* ----  900px ----- */
@media (max-width: 900px) {
  .consultation {
    padding: 64px 0;
  }

  .h6 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%; /* 27.6px */
    letter-spacing: -0.24px;
    margin-bottom: 16px;
  }

  .consultation_text {
    width: 436px;
    letter-spacing: -0.32px;
    margin-bottom: 36px;
  }

  /* ----  600px ----- */
  @media (max-width: 600px) {
    .consultation_text {
      width: 90%;
    }
  }
}

/* --- Footer --- */
/* -------------- */
footer {
  background-color: var(--bgColorBody);
}

.footer_line {
  opacity: 0.1;
  margin: 0;
}

.logo_footer {
  font-size: 32px;
  font-family: dream_avenueregular;
  font-weight: 400;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer_icons {
  display: flex;
  gap: 20px;
  margin: 0px 0 10px 0;
}

.rights {
  color: #00000060;
}

/* ====== Media ======= */

/* ----  900px ----- */
@media (max-width: 900px) {
  .logo_footer {
    font-size: 24px;
    font-family: dream_avenueregular;
    font-weight: 400;
  }

  .rights {
    font-size: 14px;
  }
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .footer_content {
    flex-direction: column;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
  .logo_footer {
    margin-bottom: 4px;
  }

  .footer_icons {
    margin: 12px 0;
  }

  .rights {
    margin-bottom: 24px;
    font-size: 12px;
  }
}

/* ---- Popup ----- */

.no-scroll {
  overflow: hidden;
}

.popup-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  background-color: #000000b7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-popup {
  max-width: 900px;
  max-height: 650px;
  z-index: 1099;
  background-color: rgb(255, 255, 255);

  position: relative;
  border-radius: 10px;
  display: flex;
}

.popup-wrapper.show {
  visibility: visible;
  opacity: 1;
}

.img-popup {
  width: 47%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.popup-text-box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-pretitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.popup-title {
  font-family: "Inter", sans-serif;
  font-size: 54px;
  line-height: 115%;
  letter-spacing: -1.52px;
  margin: 0;
  margin-bottom: 17px;
}

.popup-text-yellow {
  color: #e0a60e;
}

.popup-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.48px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 32px;
  max-width: 377px;
}

.popup-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-btn {
  width: 100%;
  max-width: 377px;
  display: flex;
  justify-content: center;
}

.btn-popup-primary {
  background-color: var(--bgColorCTA);
  color: var(--textColorInverse);
}

.btn-popup-primary:hover {
  background-color: var(--textColor);
  transition: 300ms;
}

.btn-popup-inverse {
  background-color: var(--textColorInverse);
  color: var(--bgColorCTA);
  border: 1px solid rgba(32, 57, 59, 0.64);
  padding: 15px 36px;
}

.btn-popup-inverse:hover {
  background-color: #fffcf3;
  transition: 300ms;
}

.popup-restrictions {
  text-align: center;
}

.close {
  position: absolute;
  color: rgb(19, 19, 19);
  cursor: pointer;
  padding: 24px;
  right: 0;
  top: 0;
}

.mobile-close {
  padding: 12px;
}

.mobile-login-popup {
  display: none;
}

input.input {
  box-sizing: border-box;
  width: 100%;
  max-width: 377px;
  padding: 16px;
  font-family: var(--btnFont);
}

/* ----  768px ----- */
@media (max-width: 768px) {
  .login-popup {
    display: none;
  }

  .mobile-login-popup {
    display: block;
    background-color: #fff;
    position: relative;
    max-width: 398px;
    border-radius: 4px;
  }

  .img-popup-mobile {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }

  .popup-text-box {
    align-items: center;
    width: 340px;
    padding: 24px 0 24px 0;
  }

  .popup-title {
    font-size: 48px;
    text-align: center;
  }

  .popup-btn {
    width: 337px;
  }

  .new_customers {
    line-height: 150%;
  }
}

/* ----  600px ----- */
@media (max-width: 600px) {
}

/* ----  425px ----- */
@media (max-width: 425px) {
  .mobile-login-popup {
    max-width: 95%;
  }

  .popup-text-box {
    padding: 16px 0 20px 0;
  }

  .popup-title {
    font-size: 40px;
  }

  .popup-btn {
    width: 280px;
  }
}

/* ----  390px ----- */
@media (max-width: 390px) {
  .mobile-login-popup {
    max-width: 366px;
  }
}

/* ----  375px ----- */
@media (max-width: 375px) {
  .mobile-login-popup {
    max-width: 351px;
  }
}

/* ----  360px ----- */
@media (max-width: 360px) {
  .mobile-login-popup {
    max-width: 320px;
  }

  .popup-text-box {
    width: 90%;
  }
}
