@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  line-height: 1;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueThin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueThinltalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueUltraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueUltraLightltalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueLightltalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueltlic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueRoman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueMediumltalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueBoldltalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueHeavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueHeavyitalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("/fonts/helvetica-neue/HelveticaNeueBlackltalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Brittany Signature";
  src: url("/fonts/brittany-signature/BrittanySignature.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --font-family: "Helvetica Neue", sans-serif;
  --second-family: "Brittany Signature", sans-serif;
  --container-size: 1320px;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: calc(var(--container-size) + 30px);
  width: 100%;
}

.menu-open {
  overflow: hidden;
}

.wrapper {
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
.header__container {
  padding: 18px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 992px) {
  .header__container .logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 1280px) {
  .header__container {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .header__container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.header__actions {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header__actions .button {
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1280px) {
  .header__actions .button {
    padding: 12px 18px;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .header__actions .button {
    padding: 18px;
    font-size: 14px;
  }
}
.header__actions--mobile {
  position: fixed;
  top: 348px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
  display: flex !important;
}
@media (max-width: 992px) {
  .header__actions {
    display: none;
  }
}
.header .burger {
  position: relative;
  padding: 0;
  width: 41px;
  height: 41px;
  display: none;
  border: none;
}
.header .burger::before, .header .burger::after, .header .burger__line {
  position: absolute;
  max-width: 18px;
  height: 2px;
  background-color: #2b292a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .burger::before {
  content: "";
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.header .burger::after {
  content: "";
  top: 63%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
}
.header .burger__line {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.header .burger--active .burger__line {
  width: 0%;
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header .burger:hover {
  border: none;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
  }
}

.main-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.main-nav--mobile {
  position: fixed;
  top: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 60px 0 0 0;
  width: 100%;
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 25px !important;
  background: #fff;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.main-nav--mobile .nav-link {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  font-size: 16px !important;
}
@media (max-width: 1280px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}

.nav-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #595959;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 1280px) {
  .nav-link {
    font-size: 14px;
  }
}

.nav-link:hover {
  color: #2b292a;
}

.products-trigger {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .products-trigger {
    display: none;
  }
}

.products-trigger > .nav-link {
  height: 100%;
}

.products-trigger > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #e50043;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.products-trigger:hover > .nav-link::after {
  opacity: 1;
  width: 100%;
}

.products-trigger:hover .nav-link {
  color: #2b292a;
}

.nav-arrow {
  font-size: 8px;
  margin-left: 8px;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* =========================
   MAIN PRODUCTS DROPDOWN
   ========================= */
.products-menu {
  position: absolute;
  top: 30px;
  left: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: opacity 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  -webkit-filter: drop-shadow(0 7px 15px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 7px 15px rgba(0, 0, 0, 0.12));
}

.products-trigger:hover .products-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* LEFT COLUMN */
.products-column {
  padding: 30px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background: #fff;
}

.products-item {
  padding: 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #656565;
  text-wrap: nowrap;
  cursor: pointer;
  position: relative;
}

.products-item:hover,
.products-item.active {
  color: #555;
}

.products-item::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #e50043;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.products-item:hover::after,
.products-item.active::after {
  width: calc(100% - 60px);
}

.products-item.simple {
  margin-top: 3px;
}

.products-item.simple::after {
  display: none;
}

.side-arrow {
  margin-left: 14px;
}

/* =========================
   SECOND DROPDOWN
   ========================= */
.submenu-wrapper {
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.submenu {
  display: none;
  padding: 25px 24px 24px;
}

.submenu.active {
  display: block;
}

.submenu-title {
  display: none;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #656565;
  text-wrap: nowrap;
}

/* SECOND LEVEL ROW */
.submenu-row {
  position: relative;
  min-height: 38px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #656565;
  text-wrap: nowrap;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.submenu-row.expandable:hover {
  color: #2b292a;
}

.submenu-row.expandable.open {
  color: #2b292a;
}

.submenu-row::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0;
  height: 2px;
  background: #e50043;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.submenu-row:hover::after,
.submenu-row.active::after {
  width: 100%;
}

.tiny-arrow {
  margin-left: 12px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.submenu-row.open .tiny-arrow {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* =========================
   THIRD LEVEL
   ========================= */
.submenu-children {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 0 0 7px 40px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease, max-height 0.25s ease, margin-top 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.2s ease, max-height 0.25s ease, margin-top 0.25s ease, visibility 0s linear 0.25s;
}

.submenu-children.open {
  margin-top: 6px;
  opacity: 1;
  visibility: visible;
  max-height: 300px;
  -webkit-transition: opacity 0.2s ease, max-height 0.25s ease, margin-top 0.25s ease, visibility 0s linear 0s;
  transition: opacity 0.2s ease, max-height 0.25s ease, margin-top 0.25s ease, visibility 0s linear 0s;
}

.submenu-children a {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #656565;
  text-wrap: nowrap;
}

.submenu-children a:hover {
  color: #2b292a;
}

.submenu-children a::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e50043;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.submenu-children a:hover::after,
.submenu-children a.active::after {
  width: 100%;
}

.main {
  margin-top: 80px;
}

.section {
  scroll-margin-top: 82px;
  background-color: #fef4f1;
}
@media (max-width: 585px) {
  .section {
    scroll-margin-top: 77px;
  }
}
.section--hero .section__container {
  padding: 50px 15px 25px 15px !important;
}
@media (max-width: 585px) {
  .section--hero .section__container {
    padding: 35px 15px 15px 15px !important;
  }
}
.section--hero .section__inner {
  min-height: 590px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  background-image: url("/img/hero/background.png");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 585px) {
  .section--hero .section__inner {
    min-height: 480px;
  }
}
.section--hero .section__suptitle {
  margin-bottom: -20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 68px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #e50043;
}
@media (max-width: 585px) {
  .section--hero .section__suptitle {
    font-size: 36px;
  }
}
.section--hero .section__title {
  font-weight: 700;
  font-size: 52px;
  text-align: center;
}
@media (max-width: 585px) {
  .section--hero .section__title {
    font-size: 28px;
  }
}
.section--hero .section__description {
  max-width: 375px;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
}
@media (max-width: 585px) {
  .section--hero .section__description {
    font-size: 18px;
  }
}
.section--hero .section__button {
  margin-top: 15px;
}
.section--explore .section__container {
  padding: 25px 15px 50px 15px !important;
}
@media (max-width: 585px) {
  .section--explore .section__container {
    padding: 15px 15px 30px 15px !important;
  }
}
.section--explore .section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .section--explore .section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section--explore .section__start {
  width: 100%;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  background-color: #fff;
}
@media (max-width: 585px) {
  .section--explore .section__start {
    padding: 24px;
    gap: 15px;
  }
}
.section--explore .section__end {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--explore .section__suptitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e50043;
}
@media (max-width: 992px) {
  .section--explore .section__suptitle {
    font-size: 22px;
  }
}
.section--explore .section__button {
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 585px) {
  .section--explore .section__button {
    width: 100%;
  }
}
.section--why-evian {
  background-color: #fff;
}
.section--why-evian .section__container {
  padding: 50px 15px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 68px;
}
@media (max-width: 585px) {
  .section--why-evian .section__container {
    padding: 15px 39px !important;
    gap: 30px;
  }
}
.section--why-evian .section__start, .section--why-evian .section__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 585px) {
  .section--why-evian .section__start, .section--why-evian .section__end {
    gap: 15px;
  }
}
.section--why-evian .section__start .list__item-thumbnail {
  min-height: 230px;
}
@media (max-width: 585px) {
  .section--why-evian .section__start .list__item-thumbnail {
    min-height: 182px;
  }
}
.section--why-evian .section__start .list__item:nth-child(1) .list__item-thumbnail {
  background-image: url("/img/why-evian/1.png");
}
.section--why-evian .section__start .list__item:nth-child(2) .list__item-thumbnail {
  background-image: url("/img/why-evian/2.png");
}
.section--why-evian .section__start .list__item:nth-child(3) .list__item-thumbnail {
  background-image: url("/img/why-evian/3.png");
}
.section--why-evian .section__end .list__item-thumbnail {
  min-height: 300px;
}
@media (max-width: 585px) {
  .section--why-evian .section__end .list__item-thumbnail {
    min-height: 182px;
  }
}
.section--why-evian .section__end .list__item:nth-child(1) .list__item-thumbnail {
  background-image: url("/img/why-evian/4.png");
}
.section--why-evian .section__end .list__item:nth-child(2) .list__item-thumbnail {
  background-image: url("/img/why-evian/5.png");
}
.section--why-evian .section__end .list__item-caption {
  max-width: 500px;
}
.section--why-evian .section__title {
  max-width: 600px;
  text-align: center;
}
@media (max-width: 585px) {
  .section--why-evian .section__title {
    text-align: left;
  }
}
.section--why-evian .section__description {
  max-width: 560px;
  text-align: center;
}
@media (max-width: 585px) {
  .section--why-evian .section__description {
    width: 100%;
    text-align: left;
  }
}
.section--why-evian .list {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 585px) {
  .section--why-evian .list {
    gap: 30px;
  }
}
.section--why-evian .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 320px;
          flex: 1 0 320px;
}
.section--why-evian .list__item-thumbnail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.section--why-evian .list__item-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.section--why-evian .list__item-caption {
  padding: 0 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #2b292a;
}
.section--budgets .section__container {
  padding: 50px 15px 25px 15px !important;
}
@media (max-width: 585px) {
  .section--budgets .section__container {
    padding: 30px 15px 15px 15px !important;
  }
}
.section--budgets .section__inner {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  background-color: #fff;
}
@media (max-width: 992px) {
  .section--budgets .section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 585px) {
  .section--budgets .section__inner {
    padding: 24px;
    gap: 30px;
  }
}
.section--budgets .section__start {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 585px) {
  .section--budgets .section__start {
    gap: 15px;
  }
}
.section--budgets .section__end {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
}
.section--budgets .section__end .list__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 260px;
          flex: 1 0 260px;
  background-image: url("/img/budgets/background.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
.section--budgets .section__end .list__item:nth-child(1) {
  background-color: #fef4f1;
}
.section--budgets .section__end .list__item:nth-child(1) .list__item-title {
  color: #887869;
}
.section--budgets .section__end .list__item:nth-child(2) {
  background-color: #d5e9e9;
}
.section--budgets .section__end .list__item:nth-child(2) .list__item-title {
  color: #477473;
}
.section--budgets .section__end .list__item:nth-child(3) {
  background-color: #e7d6f2;
}
.section--budgets .section__end .list__item:nth-child(3) .list__item-title {
  color: #76618c;
}
.section--budgets .section__end .list__item:nth-child(4) {
  background-color: #f7b8c9;
}
.section--budgets .section__end .list__item:nth-child(4) .list__item-title {
  color: #96485c;
}
.section--budgets .section__end .list__item-title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.section--budgets .section__end .list__item-price-caption {
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #595959;
}
.section--budgets .section__end .list__item-price-value {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: #4d4d4d;
}
.section--budgets .section__end .list__item-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}
.section--budgets .section__budgets {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 585px) {
  .section--budgets .section__budgets {
    margin-top: 10px;
  }
}
.section--budgets .section__budgets-icon {
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  background-color: rgba(229, 0, 67, 0.15);
}
.section--budgets .section__budgets-caption {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b292a;
}
.section--budgets .section__budgets-value {
  margin-top: 5px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 40px;
  text-transform: uppercase;
  color: #e50043;
}
@media (max-width: 585px) {
  .section--budgets .section__budgets-value {
    font-size: 36px;
  }
}
.section--cta .section__container {
  padding: 25px 15px 50px 15px !important;
}
@media (max-width: 585px) {
  .section--cta .section__container {
    padding: 15px 15px 30px 15px !important;
  }
}
.section--cta .section__inner {
  min-height: 400px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  background-image: url("/img/cta/background.png");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 585px) {
  .section--cta .section__inner {
    min-height: 200px;
    background-position: 15% 50%;
  }
}
.section--cta .section__title {
  max-width: 515px;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 585px) {
  .section--cta .section__title {
    font-size: 20px;
  }
}
.section--how-it-works {
  background-color: #fff;
}
.section--how-it-works .section__container {
  padding: 50px 15px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 585px) {
  .section--how-it-works .section__container {
    padding: 30px 39px !important;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.section--how-it-works .section__suptitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #e50043;
}
@media (max-width: 585px) {
  .section--how-it-works .section__suptitle {
    font-size: 22px;
    text-align: left;
  }
}
.section--how-it-works .section__description {
  max-width: 560px;
  text-align: center;
}
@media (max-width: 585px) {
  .section--how-it-works .section__description {
    text-align: left;
  }
}
.section--how-it-works .list {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 585px) {
  .section--how-it-works .list {
    margin-top: 15px;
    gap: 15px;
  }
}
.section--how-it-works .list__item {
  position: relative;
  min-height: 295px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 405px;
          flex: 1 0 405px;
}
.section--how-it-works .list__item:nth-child(even) {
  background: #d6eaeb;
}
.section--how-it-works .list__item:nth-child(even) .list__item-counter {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(71, 116, 115, 0.25)), to(rgba(71, 116, 115, 0)));
  background: linear-gradient(180deg, rgba(71, 116, 115, 0.25) 0%, rgba(71, 116, 115, 0) 100%);
}
.section--how-it-works .list__item:nth-child(odd) {
  background: #fef4f1;
}
.section--how-it-works .list__item:nth-child(odd) .list__item-counter {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(136, 120, 105, 0.25)), to(rgba(136, 120, 105, 0)));
  background: linear-gradient(180deg, rgba(136, 120, 105, 0.25) 0%, rgba(136, 120, 105, 0) 100%);
}
@media (max-width: 585px) {
  .section--how-it-works .list__item {
    min-height: 275px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.section--how-it-works .list__item-counter {
  position: absolute;
  right: 30px;
  top: 30px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 56px;
  background-clip: text !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section--how-it-works .list__item-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #2b292a;
  line-height: 114%;
}
.section--how-it-works .list__item-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}
.section--start-collaborate .section__container {
  padding: 50px 15px !important;
}
@media (max-width: 585px) {
  .section--start-collaborate .section__container {
    padding: 30px 15px !important;
  }
}
.section--start-collaborate .section__inner {
  padding: 50px;
  min-height: 590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  background-image: url("/img/start-collaborate/background.png");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (max-width: 585px) {
  .section--start-collaborate .section__inner {
    padding: 24px;
    min-height: 440px;
    background-position: 30% 50%;
  }
}
.section--start-collaborate .section__title {
  max-width: 560px;
}
.section--start-collaborate .section__description {
  max-width: 560px;
}
.section--start-collaborate .section__description--accent {
  max-width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  color: #e50043;
}
.section--start-collaborate .section__description--accent svg {
  min-width: 24px;
}
.section .section__container {
  padding: 25px 15px;
}
@media (max-width: 585px) {
  .section .section__container {
    padding: 15px;
  }
}
.section__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b292a;
}
@media (max-width: 992px) {
  .section__title {
    font-size: 32px;
  }
}
@media (max-width: 585px) {
  .section__title {
    font-size: 28px;
  }
}
.section__description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

.footer {
  position: relative;
  background-color: #fff;
  border-top: 4px solid #fef4f1;
}
.footer__container {
  padding: 50px 15px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 55px;
}
.footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55px;
          flex: 0 0 55px;
  width: 55px;
  display: block;
}
.footer__logo img {
  display: block;
  width: 81px;
  height: auto;
}
.footer__columns {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(145px, 1.1fr) minmax(110px, 0.9fr) minmax(180px, 1.3fr) minmax(130px, 0.9fr) minmax(170px, 1.1fr);
  gap: 30px;
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__title {
  margin-bottom: 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #2b292a;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer__item {
  line-height: 120%;
}
.footer__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  color: #2b292a;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #e50043;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__danone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #2867b2;
  text-decoration: none;
}
.footer__danone-mark {
  width: 27px;
  height: 27px;
  display: block;
}
.footer__danone-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #4a8bd0;
}
.footer__danone-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__danone-text strong {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 100%;
  color: #3778c5;
}
.footer__danone-text small {
  margin-top: 2px;
  font-family: Arial, sans-serif;
  font-size: 5px;
  font-weight: 700;
  line-height: 100%;
  color: #3778c5;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #595959;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__social svg {
  fill: currentColor;
}
.footer__social svg[viewBox="0 0 24 24"] {
  stroke: none;
}
.footer__social:hover {
  color: #2b292a;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .footer__container {
    padding: 30px 25px 25px;
  }
  .footer__content {
    gap: 35px;
  }
  .footer__columns {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .footer__container {
    padding: 17px 39px !important;
  }
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 25px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
  }
}
@media (max-width: 585px) {
  .footer__title {
    font-size: 18px;
  }
  .footer__link {
    font-size: 18px;
  }
}

.button {
  padding: 14px 28px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #e50043;
  border: 2px solid #e50043;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 585px) {
  .button {
    font-size: 14px;
  }
}
.button--secondary {
  color: #2b292a;
  background: #fff;
  border: 2px solid rgba(89, 89, 89, 0.25);
}
.button--secondary:hover {
  color: #e50043;
  border: 2px solid #e50043;
}
.button:hover {
  color: #e50043;
  background-color: #fff;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .modal.active {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.modal-content {
  background: white;
  padding: 50px;
  max-width: 680px;
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: slideUp 0.3s ease-out;
          animation: slideUp 0.3s ease-out;
}
@media (max-width: 585px) {
  .modal-content {
    max-width: 100%;
    padding: 25px 20px;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  padding-bottom: 5px;
  background-image: url("/img/icons/close.svg");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.close-modal:hover {
  opacity: 0.65;
}

.modal-content h2 {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  color: #2b292a;
}
@media (max-width: 585px) {
  .modal-content h2 {
    padding-right: 36px;
    font-size: 24px;
  }
}

@media (max-width: 585px) {
  #infoModal h2 {
    padding-right: 0;
  }
}

.modal-content .subtitle {
  margin-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

#creatorModal .subtitle {
  margin-bottom: 15px !important;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}

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

.form-group label {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #2b292a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  border: 2px solid #e5e5e5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-group input::-webkit-input-placeholder, .form-group select::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  color: #667387;
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #667387;
}
.form-group input:-ms-input-placeholder, .form-group select:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  color: #667387;
}
.form-group input::-ms-input-placeholder, .form-group select::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
  color: #667387;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #667387;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e50043;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/img/icons/faq-arrow.svg");
  background-position: calc(100% - 16px) 50%;
  background-repeat: no-repeat;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.radio-option {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.radio-option--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.radio-option:not(.radio-option--disabled):hover {
  border-color: #1a1a1a;
  background: #f9f9f9;
}

.radio-option input[type=radio],
.radio-option input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

input[type=radio] {
  accent-color: #e50043;
}

.radio-option.selected {
  border-color: #1a1a1a;
  background: #f5f5f5;
}

.form-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.form-navigation button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #667387;
}

.modal .button {
  padding: 16px;
}

.btn-back {
  background: #f0f0f0;
  color: #1a1a1a;
}

.btn-back:hover {
  background: #e0e0e0;
}

.progress-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #e50043;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

/* Success Page */
.success-page {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.success-page.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: white;
}

.success-page h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.success-page p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
  margin-bottom: 30px;
}

.success-page button {
  width: 100%;
}

/* Mobile Notice */
.mobile-notice {
  display: none;
  background: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  color: #856404;
  text-align: center;
}

#verificationPage h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #2b292a;
}

#verificationPage strong {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #141a1f;
}

.verification-data strong {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #2b292a;
}

#verificationPage #price-range,
#verificationPage #audience-match {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #2b292a;
}

#verificationPage p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

#your-information p:not(:last-child) {
  margin-bottom: 5px;
}

#collab-potential p {
  line-height: 130%;
}

#verificationPage .subtitle {
  line-height: 115%;
}

.button--google {
  margin: 0 auto;
  margin-top: 18px;
  padding: 14px !important;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400 !important;
  font-size: 16px;
  color: #2b292a;
  letter-spacing: 0.3px !important;
  background-color: #fff;
  border: 2px solid rgba(89, 89, 89, 0.25);
}

.button--google:hover {
  opacity: 0.75;
  color: #2b292a;
  background-color: #fff;
}

.button--google .button__icon {
  width: 18px;
}

.form-footer {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #141a1f;
}
@media (max-width: 585px) {
  .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-footer a:hover {
  opacity: 0.5;
}

.form-footer a {
  color: #e50043;
}

/* Кастомный круглый чекбокс */
.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #667387;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.custom-checkbox input[type=checkbox] {
  display: none;
  /* Скрываем стандартный чекбокс */
}

.checkbox-box {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #e5e5e5;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.checkbox-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #e50043;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* Галочка внутри круга */
.checkbox-box::before {
  content: url("/img/icons/checkmark.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* Состояние активного чекбокса */
.custom-checkbox input[type=checkbox]:checked + .checkbox-box {
  border-color: #e50043;
  background-color: #e50043;
}

.custom-checkbox input[type=checkbox]:checked + .checkbox-box::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  background-color: #e50043;
}

.custom-checkbox input[type=checkbox]:checked + .checkbox-box::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

/* Ховер эффект */
.custom-checkbox:hover .checkbox-box {
  border-color: #e50043;
}

/* Фокус состояние */
.custom-checkbox input[type=checkbox]:focus + .checkbox-box {
  -webkit-box-shadow: 0 0 0 3px rgba(53, 107, 254, 0.2);
          box-shadow: 0 0 0 3px rgba(53, 107, 254, 0.2);
}

/* Анимация при клике */
@-webkit-keyframes checkboxClick {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes checkboxClick {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.custom-checkbox input[type=checkbox]:active + .checkbox-box {
  -webkit-animation: checkboxClick 0.2s ease;
          animation: checkboxClick 0.2s ease;
}

/* Отключенное состояние */
.custom-checkbox input[type=checkbox]:disabled + .checkbox-box {
  opacity: 0.5;
  cursor: not-allowed;
}

.custom-checkbox input[type=checkbox]:disabled + .checkbox-box {
  background-color: #f5f5f5;
  border-color: #ddd;
}

.back-to-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #e50043;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back-to-login:hover {
  opacity: 0.5;
}

.form-error {
  margin-top: 10px;
  display: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #FF0000;
}

.verification-page {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.verification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.verification-header h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  color: #2b292a;
}

.verification-subtitle {
  margin: 15px 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

.verification-badge {
  width: 23px;
  height: 23px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #e90046;
}

.verification-badge svg {
  width: 100%;
  height: 100%;
}

.verification-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.verification-close svg {
  width: 25px;
  height: 25px;
}

/* INFORMATION */
.verification-info {
  background: rgba(89, 89, 89, 0.05);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  margin-bottom: 20px;
}

.verification-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.verification-info h3 {
  margin: 0 0 18px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  color: #2b292a;
}

.verification-info__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}

.verification-info__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.verification-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.verification-data__icon {
  width: 21px;
  height: 21px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  color: #666;
  margin-top: 1px;
}

.verification-data__icon svg {
  width: 100%;
  height: 100%;
}

.verification-data > div:last-child {
  min-width: 0;
}

.verification-data span {
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #2b292a;
}

.verification-data strong {
  display: block;
  margin-top: 3px;
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #2b292a !important;
  overflow-wrap: anywhere;
}

.verification-avatar {
  width: 205px;
  height: 205px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 205px;
          flex: 0 0 205px;
  border-radius: 50%;
  overflow: hidden;
}

.verification-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* COLLABORATION */
.collab-potential {
  background: #f6f6f6;
  padding: 20px 22px 18px;
  margin-bottom: 22px;
}

.collab-potential__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.collab-potential__icon {
  width: 31px;
  height: 31px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31px;
          flex: 0 0 31px;
  border-radius: 50%;
  background: #ffd8e5;
  color: #e90046;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.collab-potential__icon svg {
  width: 18px;
  height: 18px;
}

.collab-potential__header h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
}

.collab-potential__header p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: #666;
}

.collab-potential__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 15px;
}

.collab-potential__stat {
  min-width: 0;
}

.collab-potential__stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  color: #222;
  font-weight: 600;
}

.collab-potential__stat span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

.collab-potential__line {
  width: 100%;
  height: 4px;
  margin-top: 16px;
  background: #d7d7d7;
  position: relative;
}

.collab-potential__line span {
  display: block;
  width: 52%;
  height: 100%;
  background: #e90046;
}

.collab-potential__note {
  margin: 11px 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(89, 89, 89, 0.75);
}

/* GOOGLE */
.verification-action__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9px;
  margin: 0 0 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #595959;
}

.verification-action__lock {
  width: 21px;
  height: 21px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  color: #555;
}

.verification-action__lock svg {
  width: 100%;
  height: 100%;
}

.verification-action__note {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #777;
}

/* MOBILE */
@media (max-width: 700px) {
  .verification-page {
    max-width: none;
  }
  .verification-header {
    margin-bottom: 22px;
  }
  .verification-header h2 {
    font-size: 22px;
    gap: 6px;
  }
  .verification-badge {
    width: 24px;
    height: 24px;
  }
  .verification-subtitle {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.35;
    max-width: 300px;
  }
  .verification-close {
    width: 26px;
    height: 26px;
  }
  .verification-close svg {
    width: 22px;
    height: 22px;
  }
  /*
   * На мобильном порядке:
   * 1. Estimated collaboration
   * 2. Google
   * 3. Your Information
   */
  .verification-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .verification-header {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .collab-potential {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .verification-action {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .verification-info {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .collab-potential {
    padding: 18px;
    margin-bottom: 18px;
  }
  .collab-potential__header {
    gap: 8px;
  }
  .collab-potential__icon {
    width: 27px;
    height: 27px;
    -ms-flex-preferred-size: 27px;
        flex-basis: 27px;
  }
  .collab-potential__icon svg {
    width: 15px;
    height: 15px;
  }
  .collab-potential__header h3 {
    font-size: 20px !important;
  }
  .collab-potential__header p {
    font-size: 18px !important;
    margin-top: 3px;
  }
  .collab-potential__stats {
    display: block;
    margin-top: 12px;
  }
  .collab-potential__stat + .collab-potential__stat {
    margin-top: 11px;
  }
  .collab-potential__stat strong {
    font-size: 17px;
  }
  .collab-potential__stat span {
    font-size: 18px;
    margin-top: 2px;
  }
  .collab-potential__line {
    height: 3px;
    margin-top: 13px;
  }
  .collab-potential__note {
    font-size: 16px !important;
    line-height: 1.2;
    margin-top: 8px;
  }
  .verification-action {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .verification-action__text {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .verification-action__lock {
    width: 17px;
    height: 17px;
    -ms-flex-preferred-size: 17px;
        flex-basis: 17px;
  }
  .verification-action__note {
    font-size: 11px;
    margin-top: 7px;
  }
  .verification-info {
    padding: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 12px;
    margin-bottom: 0;
  }
  .verification-info h3 {
    font-size: 22px !important;
    margin-bottom: 12px;
  }
  .verification-info__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .verification-info__column {
    gap: 12px;
  }
  .verification-info__column + .verification-info__column {
    margin-top: 9px;
  }
  .verification-data {
    gap: 7px;
  }
  .verification-data__icon {
    width: 24px;
    -ms-flex-preferred-size: 17px;
        flex-basis: 17px;
  }
  .verification-data span {
    font-size: 18px;
  }
  .verification-data strong {
    font-size: 16px !important;
    margin-top: 1px;
  }
  .verification-avatar {
    width: 112px;
    height: 112px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 112px;
            flex: 0 0 112px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}