@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2"),
    url("../fonts/PlayfairDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Medium.woff2") format("woff2"),
    url("../fonts/PlayfairDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Regular.woff2") format("woff2"),
    url("../fonts/PTSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("../fonts/PTSans-Bold.woff2") format("woff2"),
    url("../fonts/PTSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.slide-in-from-left,
.slide-in-from-right {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-from-left.animate-in {
  opacity: 1;
  transform: translateX(0);
  animation: slideLeft 0.6s ease forwards;
}

.slide-in-from-right.animate-in {
  opacity: 1;
  transform: translateX(0);
  animation: slideRight 0.6s ease forwards;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --main-font: "Playfair Display";
  --second-font: "PT Sans";
  --third-font: "Montserrat";
  --primary: #f3c9a2;
  --pink: #b65579;
  --color: #ffe993;
  --dark-grey: #303030;
  --accent-1: rgb(236, 180, 107);
  --accent-2: #f0e7c3;
  --opacity: #f3e0f066;
  --opacity-2: #ffe99366;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body,
html {
  height: 100%;
}
body {
  font-family: var(--second-font);
  color: var(--dark-grey);
  font-size: 18px;
  line-height: 1.15;
}
a,
button,
div,
footer,
form,
h1,
h2,
h3,
h4,
header,
iframe,
img,
li,
nav,
p,
section,
span,
title,
ul,
body {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
input {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}
ul {
  list-style: none;
}
a,
button {
  cursor: pointer;
  text-decoration: none;
}
a {
  color: inherit;
}
:focus {
  outline: none;
}
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}
.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
  position: relative;
}
h1 {
  font-family: var(--main-font);
  font-size: 50px;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
}
.h1-style-3 {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}
h2 {
  font-family: var(--main-font);
  text-align: left;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
}
.title-large {
  text-transform: uppercase;
  padding-bottom: 10px;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.title-large::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: var(--primary);
  width: 100%;
  height: 1px;
  box-shadow: 0 1px 6px #00000061;
}
p {
  font-size: 17px;
  line-height: 1.8;
}
.content-flex {
  justify-content: space-between;
  display: flex;
  gap: 30px;
}
.container.is-small {
  max-width: 1024px;
  padding-inline: 0;
}
.section {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.section.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.webp .section.bg {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/abstract-bg-3.webp);
}
.no-webp .section.bg {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/abstract-bg-3.jpg);
}
.webp .section.bg.bg-office {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.5),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/adv-2.webp);
}
.no-webp .section.bg.bg-office {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.5),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/adv-2.jpg);
}

.splash-bg {
  background-position: right -40px center;
  background-size: 750px 772px;
  background-repeat: no-repeat;
}
.splash-bg-left {
  background-position: left -40px top;
  background-size: 700px 700px;
}
.no-webp .splash-bg {
  background-image: url(../img/splash-bg.png);
}
.webp .splash-bg {
  background-image: url(../img/splash-bg.webp);
}
.text-color-off-black {
  font-family: var(--main-font);
  color: #575757;
}
.special {
  float: left;
  background-color: var(--primary);
  font-family: var(--main-font);
  color: #000;
  column-count: 1;
  margin-right: 8px;
  padding: 8px 16px;
  font-size: 70px;
  line-height: 1;
  display: inline-block;
}
.center-content-wrap {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.white-bg {
  padding: 60px;
  background-color: white;
  width: fit-content;
  margin-inline: auto;
}
.first-section {
  margin-top: 108px;
  box-shadow: 0 2px 5px #0003;
}
.nowrap {
  white-space: nowrap;
}
.burger {
  display: none;
}
/*HEADER*/
header {
  width: 100%;
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: rgba(33, 35, 38, 0.3) 0px 10px 10px -10px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: 130px;
}
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.dropdown__name {
  position: relative;
  text-transform: uppercase;
}
.dropdown__name p,
.dropdown__item a {
  font-size: 15px;
}
.dropdown__name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
  pointer-events: auto;
}
.dropdown__list {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 10px 0 0;
  z-index: 1000;
}
@media (min-width: 769px) {
  .dropdown:hover .dropdown__list {
    display: block;
    border-radius: 16px;
    padding: 20px;
  }
}

.dropdown__item:not(:last-child) a {
  display: block;
  margin-bottom: 20px;
}

.menu__item {
  font-family: var(--main-font);
}
.menu__item a {
  position: relative;
  transition: all 0.4s ease-in-out;
  font-size: 15px;
  text-transform: uppercase;
  width: fit-content;
  display: block;
}

.menu__item a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--accent-1);
  bottom: -4px;
  left: 0;
  transition: all 0.4s ease-in-out;
}
.menu__item a:hover {
  color: var(--accent-1);
}
.menu__item a:hover::after {
  width: 100%;
}
/*PROMO*/
.promo__video-wrapper {
  height: 550px;
  position: relative;
}

.promo__video__media {
  display: block;
  height: 550px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.promo__video__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.promo__video__bg::before {
  background-color: #0006;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.promo__video__content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo__video__content .container {
  max-width: 1220px;
}
.promo__title {
  font-family: var(--main-font);
  color: var(--primary);
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 10px;
}
.promo__subtitle {
  font-size: 30px;
  font-weight: 400;
  color: white;
  text-align: center;
}
.intro {
  font-size: 35px;
  font-weight: 500;
  width: 370px;
}
.color-line {
  background-color: var(--primary);
  max-width: 140px;
  height: 10px;
  margin-top: 24px;
}
.h1-style-3.is-large.center {
  text-align: center;
  margin-bottom: 30px;
  color: #5e0031;
}

.h1-style-3.is-large {
  font-family: var(--main-font);
  font-size: 42px;
}

.slider {
  position: relative;
  height: 470px;
  background-color: #fff;
  width: 100%;
  padding: 60px;
  overflow: hidden;
  box-sizing: content-box;
  max-width: 1148px;
  margin-inline: auto;
}

.slider-track {
  display: flex;
  gap: 20px;
  /* transition: transform 0.5s ease; */
  height: 100%;
  justify-content: center;
}

.slide {
  width: 375px;
  position: relative;
  height: 100%;
}
.slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 16px;
  background-color: var(--primary);
  width: 100%;
  transition: transform 0.4s ease;
  transform-origin: center;
  z-index: 4;
}

.slide:hover::before {
  transform: translateX(-50%) scaleX(1);
}
.slide-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide picture {
  width: 100%;
  height: 100%;
  position: absolute;
}
.slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;

  inset: 0;
  transition: transform 0.6s ease;
  transform: scale(1);
}
.slide:hover .slide-link img {
  transform: scale(1.1);
}
.caption {
  z-index: 3;
  color: white;
  text-align: center;
  background-color: transparent;
  position: relative;
  inset: 0;
  width: fit-content;
}
.caption::before {
  content: "";
  position: absolute;
  bottom: -4px;
  height: 1px;
  width: 0;
  background-color: var(--primary);
  transition: width 0.4s ease;
  left: 50%;
  transform: translateX(-50%);
}

.slide:hover .caption::before {
  width: 100%;
}

.overlay {
  z-index: 2;
  background-color: #0000004d;
  position: absolute;
  inset: 0;
}
.section.is-feature {
  padding-top: 100px;
  padding-bottom: 0;
  background-color: #ededed;
  background-size: 930px 930px;
  background-repeat: no-repeat;
  background-position: right -200px bottom;
  background-image: url(../img/woman.png);
}
.feature-bg {
  width: 930px;
  position: absolute;
  bottom: 0;
  right: -200px;
}
.h1-style {
  font-family: var(--main-font);
  color: #5e0031;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}
.feature-title {
  max-width: 645px;
}
.feature-block {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  bottom: -170px;
  z-index: 3;
}
.feature-card {
  width: 420px;
  height: 550px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.no-webp .feature-card:nth-child(1) {
  background-image: url(../img/feature-card-1.jpg);
}
.webp .feature-card:nth-child(1) {
  background-image: url(../img/feature-card-1.webp);
}
.no-webp .feature-card:nth-child(2) {
  background-image: url(../img/feature-card-2.jpg);
}
.webp .feature-card:nth-child(2) {
  background-image: url(../img/feature-card-2.webp);
}

.feature-card .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay p {
  text-transform: uppercase;
  color: white;
  font-family: var(--main-font);
  font-size: 30px;
  z-index: 5;
  position: relative;
}
.overlay p::before {
  content: "";
  position: absolute;
  bottom: -8px;
  height: 3px;
  width: 0;
  background-color: var(--primary);
  transition: width 0.4s ease;
  left: 50%;
  transform: translateX(-50%);
}

.feature-card a:hover .overlay p::before {
  width: 100%;
}
.section.bg.brands {
  position: relative;
  padding-top: 390px;
  padding-bottom: 0;
  background-color: #ededed;
  background-size: 1116px 970px, cover, cover;
  background-repeat: no-repeat;
  background-position: left -80px bottom, center, center;
}
.no-webp .section.bg.brands {
  background-image: url(../img/woman-2.png),
    linear-gradient(rgba(248, 248, 248, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/abstract-bg-3.jpg);
}
.webp .section.bg.brands {
  background-image: url(../img/woman-2.webp),
    linear-gradient(rgba(248, 248, 248, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/abstract-bg-3.webp);
}
.brands h2 {
  max-width: 690px;
  margin-left: auto;
}
.no-webp .brands .feature-card:nth-child(1) {
  background-image: url(../img/brand-1.jpg);
}
.webp .brands .feature-card:nth-child(1) {
  background-image: url(../img/brand-1.webp);
}
.no-webp .brands .feature-card:nth-child(2) {
  background-image: url(../img/brand-2.jpg);
}
.webp .brands .feature-card:nth-child(2) {
  background-image: url(../img/brand-2.webp);
}
.no-webp .brands .feature-card:nth-child(3) {
  background-image: url(../img/brand-3.jpg);
}
.webp .brands .feature-card:nth-child(3) {
  background-image: url(../img/brand-3.webp);
}
.brands .feature-card:nth-child(3):before {
  content: "Advertisers";
}
.section.grey {
  background-color: #ededed;
}
.pt-large {
  padding-top: 250px;
}
.link-logo {
  max-width: 150px;
  margin-bottom: 15px;
}
.contacts__address {
  color: #000;
  line-height: 1.2;
  font-size: 16px;
}
.map-wrapper {
  width: 660px;
}
.contacts__map-wrapper {
  width: 100%;
}
.map {
  height: 335px;
  width: 100%;
  border: none;
}
.align-center {
  align-items: center;
  justify-content: center;
}

.footer {
  background-color: #2a2a2a;
  color: #fff;
  padding-block: 24px;
  text-align: center;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .container p {
  font-size: 16px;
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__link {
  text-transform: uppercase;
}
/*ABOUT*/
.about__subtitle,
.adv__subtitle {
  text-align: center;
  max-width: 1000px;
  display: block;
  margin: 0 auto 30px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #303030;
}
.adv__subtitle {
  background-color: #ffffff99;
  padding: 20px;
}
.about__title {
  background-color: var(--pink);
  padding: 2px 10px;
  width: fit-content;
  color: white;
  position: relative;
  display: block;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: normal;
}
.about__title::before,
.about__title::after {
  content: "";
  background-color: var(--pink);
  width: 15px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.about__title::before {
  left: -35px;
}
.about__title::after {
  right: -35px;
}
.title-mb {
  margin-bottom: 60px;
}
.flex-part {
  width: 50%;
}
.flex-part .intro {
  margin-bottom: 40px;
}
.goal-img {
  border-radius: 20px;
}
.section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.small-img {
  width: 250px;
}
.intro.supplement-intro {
  margin-bottom: 12px;
  width: 100%;
}
.small-img {
  border-radius: 40px;
  overflow: hidden;
}
/*COSMETIC*/
.cosmetic-bottom {
  background-position: center, center;
  background-size: 100%, cover;
  background-repeat: no-repeat, no-repeat;
}
.no-webp .cosmetic-bottom {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/cosmetic-4.jpg);
}
.webp .cosmetic-bottom {
  background-image: linear-gradient(
      rgba(248, 248, 248, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url(../img/cosmetic-4.webp);
}
.cosmetic__list li {
  padding: 15px;
  background-color: white;
  width: 25%;
}
.cosmetic__list h3 {
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--main-font);
  font-size: 25px;
  font-weight: normal;
  height: 85px;
  align-content: center;
  border-bottom: 1px solid #d9d9d9;
}
/*ADVERTISERS*/
.adv__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adv__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.adv__list li::before {
  content: "";
  background-color: var(--accent-1);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
}

.splash-sm {
  background-size: 600px 500px;
}
/*CONTACTS*/
.intro.contacts-intro {
  width: 100%;
  margin-bottom: 20px;
  font-size: 30px;
  color: #5e0031;
}
.form__flex-part {
  width: 50%;
}
.contacts__flex-part {
  width: 50%;
}
.form__input-data {
  display: flex;
  flex-direction: column;
}
.form label {
  color: #171717;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.form input {
  color: #686868;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  min-height: 56px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.form textarea {
  height: auto;
  color: #171717;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  min-height: 120px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  resize: none;
  font-family: var(--third-font);
}
.dropdown-wrapper {
  position: relative;
  width: 100%;
  font-family: sans-serif;
}

.dropdown-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.dropdown-list {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  z-index: 10;
  display: none;
  width: 250px;
}

.dropdown-list.visible {
  display: block;
}

.dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}
.form__btn {
  background-color: var(--pink);
  font-family: var(--main-font);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px #00000080;
  border-radius: 5px;
  width: 100%;
  padding: 10px 40px;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 5px #0003;
  align-content: center;
}
.form__btn:hover,
.form__btn:focus,
.form__btn:active {
  opacity: 0.8;
}
.form__btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.extra {
  margin-left: 4px;
  display: inline-block;
  color: #aa3c3c;
}
.form__error {
  color: rgb(223, 49, 49);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
  margin-bottom: 4px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.form .input--error {
  border: 1px solid rgb(223, 49, 49);
}
.form__error.visible {
  opacity: 1;
  pointer-events: auto;
}
.form__address {
  margin-block: 12px;
}

.msg.show {
  display: flex;
}
.msg {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}
.msg__text {
  font-size: 17px;
  background: #fff;
  line-height: 160%;
  padding: 35px;
  margin-top: 0vh;
  margin-inline: auto;
  max-width: 400px;
}
/*BLOG*/
.blog__content-lists {
  margin-bottom: 30px;
}
.blog__list-heading {
  width: fit-content;
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--main-font);
  font-size: 25px;
  font-weight: normal;
  align-content: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.blog__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detox__list-heading {
  width: fit-content;
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: var(--main-font);
  font-weight: normal;
  border-bottom: 1px solid #d9d9d9;
}
.blog__separator {
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  box-shadow: 0 1px 6px #00000061;
}

/*MEDIA*/

@media screen and (max-width: 1440px) {
  .container {
    max-width: 1220px;
    padding-inline: 20px;
  }
  p {
    line-height: 1.5;
  }
  h1 {
    font-size: 48px;
  }
  .h1-style {
    font-size: 44px;
  }
  .h1-style-3 {
    font-size: 45px;
  }
  .section {
    padding-block: 40px;
  }
  .section__content {
    gap: 35px;
  }
  .content-flex {
    gap: 25px;
  }
  .white-bg {
    padding: 30px;
  }
  .flex-part .intro {
    margin-bottom: 30px;
  }
  .intro {
    font-size: 33px;
  }
  .slider {
    padding: 30px;
    max-width: 1000px;
    height: 420px;
  }
  .slide {
    width: 320px;
  }
  .promo__title {
    font-size: 56px;
  }
  .promo__subtitle {
    font-size: 28px;
  }
  .feature-card {
    height: 450px;
    width: 380px;
  }
  .feature-block {
    bottom: -50px;
  }
  .section.is-feature {
    background-size: 880px 880px;
    background-position: right -260px bottom;
  }
  .section.bg.brands {
    padding-top: 280px;
    background-size: 985px 840px, cover, cover;
    background-position: left -160px bottom, center, center;
  }
  .splash-bg-left {
    background-size: 600px 600px;
  }
  .splash-bg {
    background-size: 500px 500px;
  }
  .brands .feature-block {
    bottom: -130px;
  }
  .section.pt-large {
    padding-top: 200px;
  }
  .title-mb {
    margin-bottom: 40px;
  }
  .small-img {
    width: 210px;
  }
  footer {
    font-size: 16px;
  }
  .cosmetic__list h3 {
    font-size: 24px;
    height: 100px;
  }
  .about__subtitle,
  .adv__subtitle {
    font-size: 18px;
  }
  .blog__list-heading {
    font-size: 24px;
  }
  .blog__list {
    gap: 16px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    max-width: 1024px;
    padding-inline: 15px;
  }
  .container.is-small,
  .about__subtitle,
  .adv__subtitle {
    max-width: 950px;
  }
  p {
    line-height: 1.5;
  }
  h1 {
    font-size: 46px;
  }
  .h1-style {
    font-size: 42px;
  }
  .h1-style-3 {
    font-size: 41px;
  }
  .section {
    padding-block: 40px;
  }
  .section__content {
    gap: 30px;
  }
  .content-flex {
    gap: 25px;
  }
  .white-bg {
    padding: 25px;
  }
  .flex-part .intro {
    margin-bottom: 20px;
  }
  .intro {
    font-size: 30px;
  }
  .header__logo {
    max-width: 110px;
  }
  .link-logo {
    max-width: 120px;
  }
  .first-section {
    margin-top: 95px;
  }
  .slider {
    padding: 25px;
    max-width: 850px;
    height: 360px;
  }
  .promo__title {
    font-size: 54px;
  }
  .promo__subtitle {
    font-size: 26px;
    line-height: 1.3;
  }
  .feature-card {
    height: 420px;
    width: 340px;
  }
  .section.is-feature {
    background-size: 820px 820px;
  }
  .section.bg.brands {
    padding-top: 250px;
    background-size: 875px 760px, cover, cover;
    background-position: left -180px bottom, center, center;
  }
  .splash-bg-left {
    background-size: 500px 500px;
  }
  .splash-bg {
    background-size: 450px 450px;
  }

  .brands h2 {
    max-width: 570px;
  }
  .section.pt-large {
    padding-top: 180px;
  }
  .small-img {
    width: 190px;
  }
  .cosmetic__list h3 {
    font-size: 22px;
    height: 85px;
  }
  .blog__list-heading {
    font-size: 22px;
  }
  .form input {
    padding: 12px 15px;
  }
  .dropdown-list {
    top: 56px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
  }
  .section {
    padding-block: 25px;
  }
  h1 {
    font-size: 40px;
  }
  .h1-style,
  .h1-style-3 {
    font-size: 35px;
  }
  .h1-style-3.is-large.center {
    margin-bottom: 25px;
    font-size: 35px;
  }
  .menu {
    gap: 15px;
  }
  .menu__item a,
  .dropdown__name p,
  .dropdown__item a {
    font-size: 14px;
  }
  .content-flex {
    gap: 20px;
  }
  .promo__video__media,
  .promo__video-wrapper {
    height: 500px;
  }
  .promo__title {
    font-size: 50px;
  }
  .promo__subtitle {
    font-size: 24px;
  }
  .intro {
    font-size: 28px;
  }
  .slider {
    box-sizing: border-box;
  }
  .feature-title {
    max-width: 445px;
  }
  .feature-card {
    height: 400px;
    width: 320px;
  }
  .feature-block {
    bottom: -40px;
  }
  .brands h2 {
    max-width: 420px;
  }
  .section.bg.brands {
    padding-top: 190px;
    background-size: 775px 650px, cover, cover;
  }
  .splash-bg-left {
    background-size: 400px 400px;
  }
  .splash-bg {
    background-size: 350px 350px;
  }
  .map-wrapper {
    width: 500px;
  }
  .brands .feature-card {
    width: 230px;
    height: 340px;
  }
  .footer {
    padding-block: 20px;
  }
  .container.is-small,
  .about__subtitle,
  .adv__subtitle {
    max-width: 100%;
    padding-inline: 15px;
  }
  .about__subtitle,
  .adv__subtitle {
    font-weight: 400;
  }
  .title-mb {
    margin-bottom: 25px;
  }
  .flex-part {
    width: unset;
  }
  .goal-img {
    width: 350px;
  }
  .small-img {
    width: 170px;
    flex-shrink: 0;
  }
  .about__subtitle,
  .adv__subtitle {
    font-size: 17px;
  }
  .cosmetic__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cosmetic__list li {
    width: 48%;
  }
  .cosmetic__list h3 {
    height: 60px;
  }
  .blog__content .content-flex.img-left {
    flex-direction: column;
  }
  .blog__content .content-flex.img-right {
    flex-direction: column-reverse;
  }
  .blog__content .goal-img {
    width: 400px;
  }
  .blog__content .flex-part .intro {
    text-align: center;
  }
  .form__flex-part {
    width: 60%;
  }
  .form__name-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .contacts__flex-part {
    width: 40%;
  }
  .contacts__map-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .webp .splash-bg,
  .no-webp .splash-bg {
    background: white;
  }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
  .burger span {
    display: block;
    content: "";
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  .header__menu {
    position: absolute;
    height: 100vh;
    width: 320px;
    right: 0;
    top: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .header__menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 15px;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .menu__item {
    width: 100%;
  }
  .menu__item a {
    width: 100%;
    text-align: center;
  }
  .dropdown__name,
  .dropdown__name::after {
    display: none;
  }
  .dropdown__item:not(:last-child) a {
    margin-bottom: 0;
  }
  .menu__item a::after {
    display: none;
  }
  .header__logo {
    max-width: 100px;
  }
  .first-section {
    margin-top: 88px;
  }
  .promo__subtitle {
    font-size: 20px;
  }
  .promo__video__media,
  .promo__video-wrapper {
    height: 400px;
  }
  .intro {
    font-size: 25px;
    width: 300px;
  }
  .h1-style-3.is-large.center,
  .h1-style,
  .h1-style-3 {
    font-size: 33px;
  }
  .section.is-feature {
    background: #d9d9d9;
    padding-block: 25px;
  }
  .slider {
    padding: 0;
    background-color: transparent;
    height: 300px;
  }
  .slider-track {
    gap: 15px;
  }
  .feature-block {
    bottom: unset;
    margin-top: 20px;
  }
  .feature-card,
  .brands .feature-card {
    height: 330px;
    width: 250px;
  }
  .feature-title,
  .brands h2 {
    max-width: 100%;
  }
  .intro {
    width: 100%;
  }
  .section.bg.brands {
    background-position: center;
    background-size: cover;
    padding-block: 25px;
  }
  .webp .section.bg.brands {
    background-image: linear-gradient(
        rgba(248, 248, 248, 0.2),
        rgba(0, 0, 0, 0.2)
      ),
      url(../img/abstract-bg-3.webp);
  }
  .no-webp .section.bg.brands {
    background-image: linear-gradient(
        rgba(248, 248, 248, 0.2),
        rgba(0, 0, 0, 0.2)
      ),
      url(../img/abstract-bg-3.jpg);
  }
  .brands h2 {
    margin-left: 0;
  }
  .brands .feature-block {
    bottom: 0;
    flex-wrap: wrap;
  }
  .overlay p {
    font-size: 27px;
  }
  .section.pt-large {
    padding-top: 25px;
  }
  .map-wrapper {
    width: 450px;
  }
  .white-bg {
    padding: 15px;
  }
  .link-logo {
    max-width: 100px;
  }
  .content-flex:not(.white-bg) {
    flex-direction: column;
  }
  .goal-img {
    width: 400px;
  }
  .goals .content-flex:not(.white-bg):nth-of-type(even),
  .content-flex.img-left {
    flex-direction: column-reverse;
  }
  .content-flex.img-right {
    flex-direction: column;
  }
  .content-flex.supplement-sm-flex,
  .content-flex.cosmetic__list,
  .content-flex.form__name-wrapper {
    flex-direction: row;
  }
  .cosmetic__list {
    flex-wrap: wrap;
  }
  .cosmetic__list h3 {
    font-size: 20px;
    height: 65px;
  }
  .form__flex-part,
  .contacts__flex-part {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
  }
  .form__name-wrapper .flex-part {
    width: 48%;
  }
  .contacts__map-wrapper {
    margin-left: auto;
    margin-top: -120px;
    width: 55%;
  }
}
@media screen and (max-width: 640px) {
  .promo__title {
    font-size: 40px;
  }
  .promo__subtitle {
    font-size: 18px;
  }
  .intro {
    font-size: 23px;
    text-align: center;
  }
  .intro.supplement-intro {
    text-align: left;
  }
  .blog__list-heading,
  .detox__list-heading {
    margin-inline: auto;
  }
  .color-line {
    margin-top: 15px;
    height: 6px;
    margin-inline: auto;
  }
  p {
    font-size: 16px;
  }
  .special {
    font-size: 55px;
  }
  .h1-style-3.is-large.center,
  .h1-style,
  .h1-style-3 {
    font-size: 30px;
    text-align: center;
  }
  .slider {
    height: auto;
  }
  .slider-track {
    justify-content: center;
    flex-wrap: wrap;
  }
  .slide,
  .feature-card,
  .brands .feature-card {
    height: 250px;
    width: 210px;
  }
  .content-flex.white-bg {
    flex-direction: column;
    width: 100%;
    align-items: start;
  }
  .map-wrapper {
    width: 100%;
    margin-top: unset;
  }
  footer {
    font-size: 14px;
  }
  .about__subtitle,
  .adv__subtitle {
    font-size: 16px;
    line-height: 1.3;
  }
  .title-mb {
    margin-bottom: 20px;
  }
  h1 {
    font-size: 36px;
  }
  .footer .container p {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .content-flex.cosmetic__list {
    flex-direction: column;
  }
  .cosmetic__list li {
    width: 100%;
  }
  .cosmetic__list h3 {
    height: 100%;
    padding-bottom: 3px;
  }
  .section__content {
    gap: 20px;
  }
  .footer__list {
    gap: 15px 20px;
    flex-wrap: wrap;
  }
  .footer__link {
    text-transform: unset;
  }
}
@media screen and (max-width: 480px) {
  .promo__title {
    font-size: 35px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.1;
  }
  .h1-style-3.is-large.center,
  .h1-style {
    font-size: 26px;
  }
  .h1-style-3 {
    font-size: 24px;
  }
  .promo__subtitle {
    font-size: 16px;
  }
  .intro {
    font-size: 21px;
  }
  .special {
    font-size: 50px;
  }
  .slide,
  .feature-card,
  .brands .feature-card {
    height: 250px;
    width: 300px;
  }
  .feature-block {
    flex-wrap: wrap;
  }
  .overlay p {
    font-size: 25px;
  }
  .white-bg {
    padding: 0;
    background: transparent;
  }
  .section.pt-large {
    background-color: white;
  }
  .contacts,
  .link-logo {
    text-align: center;
    margin-inline: auto;
  }

  .goal-img {
    width: 100%;
    max-width: 300px;
  }
  p,
  .intro.supplement-intro {
    text-align: center;
  }
  .content-flex.supplement-sm-flex {
    flex-direction: column;
  }
  .content-flex.supplement-sm-flex:nth-last-of-type(even) {
    flex-direction: column-reverse;
  }
  .adv__list li::before {
    flex-shrink: 0;
  }
  .adv__list li p {
    text-align: left;
  }
  .blog__list-heading {
    font-size: 20px;
  }
  .content-flex.form__name-wrapper {
    flex-direction: column;
  }
  .form__name-wrapper .flex-part {
    width: 100%;
  }
  .intro.contacts-intro {
    font-size: 28px;
  }
}

/*POLICIES*/
.policy__title {
  text-transform: none;
  margin-bottom: 20px;
}
.policy__note {
  text-align: center;
}
.policy__body {
  margin: 20px 0 0;
  text-align: justify;
}
.policy__heading {
  margin-bottom: 15px;
  font-size: 20px;
  text-transform: none;
  font-weight: bold;
  font-family: var(--second-font);
}
.policy__body p:not(:last-child) {
  margin-bottom: 15px;
}

.policy__ordered-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.policy__ordered-heading {
  margin-bottom: 12px;
  font-size: 19px;
}
.policy__inner-list {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.policy__inner-heading {
  font-size: 17px;
  margin-bottom: 12px;
}
.policy a {
  color: var(--pink);
}
.policy a:hover,
.policy a:focus {
  text-decoration: underline;
}
.policy .policy__address p {
  margin-bottom: 0;
}
.policy__address {
  display: flex;
  flex-direction: column;
  padding-inline: 15px;
}
.marked-list li {
  padding-left: 15px;
  position: relative;
}
.marked-list li::before {
  content: "\2022";
  display: inline-block;
  position: absolute;
  left: 0;
}
.marked-list li p:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 640px) {
  .policy__inner-heading {
    font-size: 16px;
  }
  .policy__ordered-heading {
    font-size: 18px;
  }
  .policy__heading {
    font-size: 19px;
  }
}

@media screen and (max-width: 480px) {
  .policy__body p {
    text-align: left;
  }
}
