* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c1c28;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

input,
button,
textarea {
  font-family: "Inter", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

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

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

.dib {
  display: inline-block;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;

  user-select: none;

  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*<GENERAL>======================================== */

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {

  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: 1234px;
  padding: 0 15px;
  margin: 0 auto;
}

/*</GENERAL>======================================== */

/*<ELEMENTS>======================================== */

.passion {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 52px;
}

.order-btn {
  background: #3dc051;
  border-radius: 4px;
  color: #fafafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  max-width: 100%;
  width: 262px;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 19px 5px 0 rgba(0, 0, 0, 0), 0 12px 5px 0 rgba(0, 0, 0, 0.01),
  0 7px 4px 0 rgba(0, 0, 0, 0.05), 0 3px 3px 0 rgba(0, 0, 0, 0.09), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.order-btn:hover {
  text-decoration: none;
  background: #38af4a;
}

.order-btn::after {
  content: "";
  display: inline-block;
  background: url("../images/button-arrow.svg") no-repeat;
  width: 19px;
  height: 15px;
  margin-left: 10px;
}

.secure-img {
  margin: 8px auto 0;
}

/*</ELEMENTS>======================================== */

/*<HEADER>======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.header__top {
  background-color: #0d0d0d;
  font-size: 14px;
  line-height: 22px;
  color: #fafafc;
  padding: 4px 0;
  text-align: center;
}

.header__top br {
  display: none;
}

.header__top p span {
  color: #fbff2a;
}

.header__body {
  background: #fafafc;
}

.header__inner {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header__logo svg {
  fill: #e60202;
  width: 170px;
  height: 51px;
  margin-top: -17px;
}

.menu {

  display: flex;

  align-items: center;
}

.menu__list {

  display: flex;

  align-items: center;
}

.menu__list li {
  margin-right: 26px;
}

.menu__list li a {
  font-size: 20px;
  line-height: 1.25;
  text-transform: capitalize;
  color: #676873;

  transition: all 0.3s ease 0s;
}

.menu__list li a.active {
  color: #1c1c28;
  font-weight: 700;
}

.menu__list li a:hover {
  color: #e60202;
  opacity: 0.8;
}

/*</HEADER>======================================== */

/*<INTRO>======================================== */

.intro {
  background-image: url("../images/intro-bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: cover;
  margin-top: 114px;
  padding: 25px 0 32px;
  height: 100%;
  max-height: 873px;
}

.intro__main {
  color: #fafafc;
  display: flex;
  align-items: flex-end;
  margin-left: -5px;
  position: relative;
  padding-bottom: 20px;
  justify-content: center;
}

.intro .order-btn span:first-child {
  margin: 0;
}

.intro__product {
  position: absolute;
  left: 40px;
  bottom: 80px;
}

.intro__product .bottle {
  max-width: 100%;
}

.intro__product ul {
  position: absolute;
  left: -36px;
  bottom: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro__product ul li:not(:last-child) {
  margin-bottom: 8px;
}

.intro__product ul li img {
  max-width: 71px;
}

.intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 597px;
  padding-left: 5px;
}

.intro__item-person {
  display: flex;

}

.intro__content > span {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-top: 11px;
}

.intro__title {
  font-size: 50px;
  line-height: 72px;
  text-align: center;
  font-weight: 700;
}

.intro__title span {
  display: block;
  font-size: 80px;
}

.intro__text {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin: 3px 0 15px;
}

.intro__benefits {
  font-family: "Oswald", sans-serif;
  align-self: flex-end;
  margin: 0 auto;
  position: relative;
  left: 18px;
}

.intro__benefits li {
  padding: 0 0 4px 39px;
  position: relative;
}

.intro__benefits li:not(:last-child) {
  margin-bottom: 6px;
}

.intro__benefits li::before {
  content: "";
  width: 36px;
  height: 34px;
  background-image: url("../images/benefits-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.intro__benefits li strong {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}

.intro__benefits li span {
  font-size: 20px;
  line-height: 26px;
  font-family: "Inter", sans-serif;
  color: #f68b8b;
}

.intro__post {
  align-self: flex-end;
  background: #f3f3f3;
  border-radius: 8px;
  line-height: 1.2;
  padding: 13px 17px;
  margin-top: 14px;
  max-width: 493px;
  margin-bottom: 9px;
}

.intro__post-title {
  margin: 8px 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #1c1c28;
}

.intro__post-text {
  font-size: 14px;
  line-height: 22px;
  color: #1c1c28;
  margin-bottom: 8px;
}

.intro__item-person {
  align-items: center;
  line-height: 1.2;
}

.intro__item-photo {
  padding: 6px;
  border: 1px solid #1c1c28;
  border-radius: 8px;
  margin-right: 8px;
}

.intro__item-photo img {
  width: 16px;
}

.intro__item-name {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c28;
}

.intro__item-user {
  font-size: 12px;
  color: #939393;
}

.trustpilot {
  display: inline-flex;
  align-items: center;
  color: #fafafc;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  font-weight: 700;
}

.trustpilot p span {
  font-weight: 400;
}

.trustpilot img {
  margin: 0 8px;
}

.trustpilot pre {
  font-size: 12px;
  line-height: 15px;
  align-self: flex-end;
}

.magazines-logo {
  margin-top: 5px;
  position: relative;
  left: 49px;
}

/*</INTRO>======================================== */

/*<MAGAZINES>======================================== */

.magazines {
  padding: 74px 0 0;
}

.magazines h4 {
  text-align: center;
  margin-bottom: 24px;
  color: #b7b7b7;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1.25;
}

.magazines ul {

  display: flex;

  align-items: center;

  justify-content: center;
}

.magazines ul li:not(:last-child) {
  margin-right: 3.8461538462%;
}

/*</MAGAZINES>======================================== */

/*<PROBLEMS>======================================== */

.problems {
  color: #1c1c28;
  margin: 64px 0;
}

.problems__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;
  margin-bottom: 6px;
}

.problems__title span {
  color: #ff1f1f;
  font-size: 40px;
}

.problems__subtitle {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 39px;
}

.problems__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.problems__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  width: 212px;
  margin: 0 2.2%;
}

.problems__item > span {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  width: 103%;
}

.problems__item-percent {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
  margin-bottom: 28px;
}

.problems__item-percent span {
  font-weight: 800;
  font-size: 112px;
  line-height: 137px;
  color: #ff1f1f;
  border-radius: 50%;
  background: #fafafc;
  z-index: 2;
  width: 198px;
  height: 198px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.problems__item-percent::before {
  content: "";
  width: 210px;
  height: 210px;
  background: linear-gradient(180deg, #ff1f1f 51.71%, #720000 100%);
  position: absolute;
  top: -6px;
  left: 1px;
  z-index: -1;
  border-radius: 50%;
}

.problems__item-percent::after {
  content: "%";

  display: flex;

  align-items: center;

  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fafafc;
  border: 4px solid #ff1f1f;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 1px;
  z-index: 3;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: #ff1f1f;
}

/*</PROBLEMS>======================================== */

/*<EXPERIENCE>======================================== */

.experience {
  position: relative;
  padding-bottom: 98px;
}

.experience::before {
  content: "";
  width: calc(1362 / 1920 * 100%);
  max-width: 1362px;
  height: 915px;
  position: absolute;
  top: -8px;
  right: 0;
  background-image: url("../images/experience-bg.jpg");
  background-size: cover;
  z-index: -1;
}

.experience__body {
  align-items: end;
  padding: 57px 0 30px;
  justify-content: space-between;
  display: flex;
}

.experience__content {
  text-align: center;
  width: 638px;
}

.experience__content > span {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.experience__content .passion {
  margin-bottom: 29px;
}

.experience__content .passion svg {
  fill: #ff1f1f;
}

.experience__title {
  font-size: 40px;
  line-height: 54px;
  margin-bottom: 3px;
  font-weight: 700;
}

.experience__title span {
  color: #ff1f1f;
}

.experience__text {
  max-width: 638px;
  line-height: 1.2;
  margin: 0 auto;
}

.experience__text h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 18px;
}

.experience__text p {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  padding: 0 15px;
}

.experience__awards {
  margin: 31px 0;

  display: flex;

  align-items: center;

  justify-content: center;
}

.experience__awards img {
  width: 100%;
  max-width: 17.7777777778%;
  margin: 0 11px;
}

.experience__product-info {
  display: none;
}

.experience__product {
  position: relative;
  bottom: -105px;
}

/*</EXPERIENCE>======================================== */

/*<BENEFITS>======================================== */

.benefits {
  background-image: url("../images/benefits-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: #fafafc;
  padding: 78px 0 75px;
  position: relative;
}

.benefits__header {
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.2;
}

.benefits__title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 700;
  margin-bottom: 7px;
}

.benefits__title span {
  display: block;
  font-size: 32px;
  line-height: 44px;
}

.benefits__text {
  font-size: 20px;
  line-height: 28px;
  max-width: 830px;
  margin: 0 auto;
}

.benefits__body {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.benefits-left {
  width: 380px;
}

.benefits-right {
  width: 376px;
}

.benefits__product {
  position: relative;
  top: 9px;
  padding-right: 4px;
}

.benefits__item {
  position: relative;
  padding-left: 96px;
}

.benefits__item:first-child {
  margin-bottom: 30px;
}

.benefits__item span {
  width: 80px;
  height: 80px;
  position: absolute;
  filter: drop-shadow(0px 3px 7.212px #1c1c28);
  background: #1c1c28;
  border: 5px solid #fafafc;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.benefits__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 2px;
  width: calc(100% + 16px);
}

.benefits__item-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 311px;
}

.benefits__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.benefits__footer-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 32px;
}

.benefits__footer-items li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 150px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.benefits__footer-items li:not(:last-child) {
  margin-right: 34px;
}

.benefits__footer-items li img {
  max-width: 64px;
  margin-bottom: 12px;
  background-color: #1c1c28;
  border-radius: 50%;
}

.benefits__footer-title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 19px;
  text-align: center;
}

.benefits__footer-title span {
  color: #ff1f1f;
}

.benefits__footer-subtitle {
  font-size: 16px;
  margin-bottom: 17px;
}

.benefits .anchore {
  top: -50px;
}

/*</BENEFITS>======================================== */

/*<UNLOCK>======================================== */

.section-4_2 {
  padding: 68px 0;
  background: url(../images/bg-3.jpg) no-repeat calc(50% + 535px) 48% / 682px auto;
}

.section-4_2 .tc {
  text-align: center;
}

.section-4_2 .text {
  font-size: 40px;
  font-weight: 700;
}

.unlock-left p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .section-4_2 {
    background-image: url(../images/bg-3@2x.jpg);
  }
}

.unlock-box {
  position: relative;
  margin-top: 41px;
}

.unlock-left {
  width: 66%;
  margin-top: -3px;
}

.unlock-left p {
  margin-bottom: 16px;
}

.unlock-left h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 45px 0 19px;
}

.unlock-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.unlock-right .plus-icon {
  margin: 0 8px;
}

.x-list {
  background: url(../images/3x-image.svg) no-repeat 0 0 / contain;
  color: #fafafc;
  font-size: 24px;
  font-weight: 400;
  height: 186px;
  margin: 0;
  padding: 14px 0 0 291px;
  text-shadow: 1px 1px 0 #635e59;
  width: 745px;
}

.x-list span {
  margin-bottom: 32px;
  display: block;
}

/*</UNLOCK>======================================== */

/*<REVIEWS>======================================== */

.reviews {
  padding: 54px 0 98px;
  position: relative;
}

.reviews__header {
  line-height: 1.2;
  margin-bottom: 32px;
}

.reviews__suptitle {
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #676873;
  margin-bottom: 4px;
}

.reviews__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 54px;
  text-align: center;
  color: #1c1c28;
}

.reviews__title span {
  color: #ff1f1f;
}

.reviews__body {
  display: flex;
  justify-content: space-between;
  padding-bottom: 36px;
}

.reviews__item {
  padding: 24px 20px 24px 16px;
  background: #fafafc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 13px);
}

.reviews__item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 7px;
}

.reviews__item-text {
  font-size: 16px;
  line-height: 24px;
}

.reviews__item-person {
  margin-top: auto;
  padding-top: 49px;
  display: flex;
}

.reviews__item-photo {
  border: 2px solid #1c1c28;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 9px 10px;
  margin-right: 8px;
}

.reviews__item-user {
  font-size: 14px;
  line-height: 1.4;
  color: #1c1c28;
}

.reviews__item-rating {
  margin-bottom: 3px;
}

.reviews__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  color: #1c1c28;
  font-weight: 700;
}

.reviews__bottom img {
  margin-right: 8px;
}

.reviews .anchore {
  top: -90px;
}

/*</REVIEWS>======================================== */

/*<HOW-DOES-IT>======================================== */

.how-does-it {
  position: relative;
  padding: 44px 0 67px;
}

.how-does-it .anchore {
  top: -100px;
}

.how-does-it::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/how-does-it-bg.jpg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: cover;
  z-index: -1;
}

.how-does-it::after {
  content: "";
  width: 100%;
  height: 41px;
  position: absolute;
  top: -39px;
  left: 0;
  z-index: -1;
  background-image: url("../images/how-does-it-top-bg.png");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: cover;
}

.how-does-it__header h3 {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #676873;
  margin-bottom: 5px;
}

.how-does-it__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1c1c28;
  margin-bottom: 29px;
}

.how-does-it__title span {
  color: #ff1f1f;
  font-size: 32px;
}

.how-does-it__body {

  display: flex;
}

.how-does-it__content {
  max-width: 600px;
  margin-right: 12px;
  font-size: 16px;
  line-height: 24px;
  padding-top: 46px;
  padding-bottom: 56px;
}

.how-does-it__content p {
  display: block;
  margin-bottom: 15px;
}

.how-does-it__content .order-btn {
  margin-top: 18px;
}

.how-does-it__product {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: space-between;
}

.how-does-it__product .bottle {
  margin-top: 16px;
  z-index: 2;
}

.how-does-it__persone {
  position: relative;
  left: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.how-does-it__persone strong {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 2px;
  z-index: 2;
}

.how-does-it__persone span {
  z-index: 2;
  font-size: 16px;
  line-height: 22px;
  font-family: "Oswald", sans-serif;
  color: #676873;
}

.how-does-it__magazine {
  position: absolute;
  z-index: 1 !important;
  bottom: 101px;
  right: -154px;
  max-width: none;
}

/*</HOW-DOES-IT>======================================== */

/*<COMPARE>======================================== */

.compare {
  padding: 69px 0 65px;
}

.compare__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: #1c1c28;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  justify-content: center;
}

.compare__title::before,
.compare__title::after {
  content: "";
  width: 32.3%;
  height: 4px;
  background-color: #ff1f1f;
  margin: 0 21px;
}

.table {
  font-family: "Oswald", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.table__row {
  display: flex;
}

.table__row img {
  margin: 0 auto;
}

.table__row:first-child .table__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  font-size: 20px;
  line-height: 36px;
  padding: 10px 0;
  font-weight: 700;
}

.table__col .bottle {
  margin-bottom: 15px;
}

.table__row:first-child .table__col:nth-child(1) {
  border: none;
  background: none;
}

.table__row:first-child .table__col:nth-child(3) img {
  min-height: 105px;
  margin-bottom: 10px;
}

.table__row:first-child .table__col:nth-child(n + 3) {
  background: #fafafc;
}

.table__row:last-child .table__col:first-child {
  background: #fafafc;
}

.table__row:last-child .table__col:nth-child(n + 3) {
  border: none;
  background: none;
}

.table__col {
  border: 1px solid #e5e5e5;
  padding: 4px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.table__col:nth-child(1) {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  justify-content: flex-start;
  background: #f1c61a;
  width: 37.6%;
  text-align: left;
}

.table__col:nth-child(2) {
  background: #ff1f1f;
  color: #fafafc;
  width: 24.5%;
  margin-left: 1px;
}

.table__col:nth-child(n + 3) {
  background: #eaeaea;
  width: calc((100% - 37.6% - 24.5%) / 2 - 1px);
  margin-left: 1px;
}

.table__col .product-price {
  margin-left: 4px;
}

/*</COMPARE>======================================== */

/*<GUARANTEE>======================================== */

.guarantee {
  background-image: url("../images/guarantee-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 93px 0 84px;
}

.guarantee__inner {

  display: flex;
  align-items: center;
  color: #fafafc;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee__inner img {
  width: 184px;
  min-width: 184px;
  margin-right: 24px;
}

.guarantee__title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}

.guarantee__title span {
  color: #ff1f1f;
  font-weight: 700;
}

.guarantee__text {
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0;
}

/*</GUARANTEE>======================================== */

/*<PREV-FOOTER>======================================== */

.prev-footer {
  position: relative;
  padding: 146px 0 110px;
}

.prev-footer::after {
  content: "";
  width: 100%;
  height: calc(100% + 45px);
  background-image: url("../images/prev-footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 0;
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -1px;
}

.prev-footer__inner {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
}

.prev-footer__product .bottle {
  margin-bottom: 25px;
}

.prev-footer__awards {

  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-footer__awards img {
  width: 68px;
  max-width: 100%;
  margin: 0 5px;
}

.prev-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 48px;
}

.prev-footer__content > span {
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}

.prev-footer__content .passion {
  margin: -2px 0;
}

.prev-footer__content .passion svg {
  fill: #ff1f1f;
}

.prev-footer__logo {
  margin-bottom: 27px;
}

.prev-footer__title {
  font-size: 50px;
  line-height: 72px;
  text-align: center;
  font-weight: 700;
}

.prev-footer__title span {
  text-transform: uppercase;
  font-size: 80px;
}

.prev-footer__text {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  max-width: 560px;
  margin-top: 5px;
}

.prev-footer__list {
  margin: 15px 0 27px;
  font-family: "Oswald", sans-serif;
  position: relative;
  left: -23px;
}

.prev-footer__list li {
  padding-left: 60px;
  padding-bottom: 4px;
  position: relative;
}

.prev-footer__list li:not(:last-child) {
  margin-bottom: 4px;
}

.prev-footer__list li::before {
  content: "";
  width: 36px;
  height: 34px;
  background-image: url("../images/benefits-check2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.prev-footer__list li strong {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 700;
}

.prev-footer__list li span {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #ff1f1f;
}

/*</PREV-FOOTER>======================================== */

/*<FOOTER>======================================== */

.footer {
  background-color: #fff;
  padding: 42px 0 35px;
  color: #1c1c28 !important;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.footer__logo svg {
  width: 77px;
  height: 23px;
  fill: #fafafc;
}

.footer__text {
  font-size: 12px;
  line-height: 15px;
  margin: 18px 0;
  text-align: center;
}

.footer__text p:last-child {
  margin-top: 14px;
}

.footer__links {
  display: flex;
  align-items: center;
  color: #0020e4;
  font-size: 12px;
  line-height: 15px;
  margin-top: 2px;
}

.footer__links a {
  font-size: 12px;
  line-height: 15px;
  position: relative;
  color: #0020e4;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__links a {
  margin: 0 3px;
}

.footer__copyright {
  margin-top: 20px;
}

.diagonal-line-container {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.diagonal-line-container svg.diagonal-line {
  z-index: 2;
  height: 100%;
  width: 100%;
}

.anchore {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: -100px;
}

.page-home .order-btn span:nth-child(2) {
  text-transform: capitalize;
}

.date-container {
  color: #fafafc;
}

.footer__inner .cmp-show a {
  color: #0020e4;
  text-decoration: none;
}

.footer__inner .cmp-show a:hover {
  text-decoration: underline;
}

#header .container {
  display: flex;
  align-items: center;
}

.cmp-show {
  display: none;
}

.fixed-btn {
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 7px 0 8px;
  border-top: 1px solid #ddd;
}

.fixed-btn .order-btn {
  width: 100%;
  max-width: 345px;
  font-size: 24px;
  line-height: 64px;
  height: auto;
  padding: 0 10px;
}

.fixed-btn .form-h3 {
  order: 0;
}

.container-btn {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.show-tab,
.show-mob {
  display: none !important;
}

.opener {
  display: block;
  width: 34px;
  height: 34px;
  position: relative;
}

.opener span, .opener:after, .opener:before {
  position: absolute;
  content: "";
  height: 2px;
  border-radius: 2px;
  background: #e60202;
  width: 30px;
  left: 50%;
  transform: translate(-50%);
  top: 7px;
}

.opener:before {
  top: 16px;
}

.opener:after {
  top: 25px;
}

.opened .opener:before {
  transform: rotate(45deg);
  left: 5px;
}

.opened .opener span {
  display: none;
}

.opened .opener:after {
  transform: rotate(-45deg);
  top: 17px;
  left: 5px;
}
.how-does-it2 {
  padding: 0;
}
.how-does-it2 .how-does-it__product {
  padding-top: 84px;
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
}
.how-does-it2 .how-does-it__product:before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: calc(100% + 30px);
  height: 100%;
  background-image: url(../images/how-does-it-bg.png);
  background-repeat: no-repeat;
  background-position: 100% 0%;
  background-size: cover;
  z-index: -1;
}
.how-does-it2 .how-does-it__product-inner {
  position: relative;
  width: 58.5507246377%;
  max-width: 260px;
  min-width: 244px;
}
.how-does-it2 .how-does-it__product .bottle {
  margin-top: 80px;
  margin-left: -51px;
  width: 100%;
}
.how-does-it2 .how-does-it__magazine {
  position: absolute;
  z-index: -1 !important;
  bottom: 0;
  min-width: 144px;
  left: -20px;
  top: 72px;
}
.how-does-it2 .how-does-it__product {
  width: 100%;
}
.how-does-it2:after {
  display: none;
}
.how-does-it2::before {
  display: none;
}
.how-does-it2 .how-does-it__persone span {
  line-height: 1;
}

@supports (-webkit-touch-callout: none) {
  .container-btn {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (min-width: 550px) {
  .menu__list {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .slick-list,
  .slick-track {
    width: 100% !important;
  }
  .slick-list {
    overflow: visible;
  }
  .reviews__item {
    width: calc(100% / 3 - 13px) !important;
    height: auto;
    display: flex !important;
  }
  .reviews__item:first-child {
    margin-right: auto;
  }
  .reviews__item:last-child {
    margin-left: auto;
  }
  .slick-track {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1921px) {
  .intro {
    background-position: 50% 0;
  }
}

@media (max-width: 1760px) {
  .experience::before {
    width: 100%;
    right: -70px;
    top: 10px;
  }

  .how-does-it__persone {
    left: 0;
  }
}

@media (max-width: 1600px) {
  .experience::before {
    top: 10%;
    right: -10%;
  }

  .how-does-it::before {
    background-position: right 40% top 0;
  }

  .prev-footer {
    padding: 60px 0;
  }

  .prev-footer::after {
    background-position: 50% top;
  }
}

@media (max-width: 1400px) {
  .intro {
    background-position: 20% 100%;
  }

  .trustpilot {
    font-size: 12px;
  }

  .intro__product {
    max-width: 370px;
  }

  .passion {
    font-size: 28px;
    line-height: 44px;
  }

  .intro__text {
    font-size: 18px;
    line-height: 1.3;
  }

  .intro__content {
    max-width: 460px;
    padding-left: 0;
    margin-left: 120px;
  }

  .intro__post {
    margin: 10px 0 0 0;
  }

  .intro__title {
    font-size: 46px;
    line-height: 68px;
  }

  .intro__title span {
    font-size: 70px;
  }

  .intro__content > span {
    margin-top: 3px;
  }

  .magazines-logo {
    left: 0;
  }

  .experience::before {
    top: 20%;
    right: -10%;
    height: 740px;
  }

  .section-4_2 {
    background-position: calc(50% + 340px) 110px;
    background-size: 526px auto;
  }

  .unlock-left {
    width: 60%;
  }

  .x-list {
    height: 170px;
    width: 686px;
    font-size: 22px;
    padding: 12px 0 0 246px;
  }

  .x-list span {
    margin-bottom: 29px;
  }

  .unlock-right {
    right: 64px;
  }

  .unlock-right .plus-icon {
    margin: 0 -10px;
    position: relative;
  }

  .how-does-it__persone {
    left: -45px;
  }

  .experience__content {
    width: 620px;
  }

  .benefits-right {
    width: 380px;
  }
}

@media (max-width: 1234px) {
  .container {
    max-width: 1024px;
    padding: 0 15px;
  }

  .header__top {
    font-size: 12px;
  }

  .intro__content {
    max-width: 370px;
    margin-left: 50px;
  }

  .intro__product {
    max-width: 276px;
  }

  .intro__product ul {
    left: -15px;
    bottom: 58px;
  }

  .intro__benefits li strong {
    font-size: 18px;
    line-height: 1.2;
  }

  .intro__benefits li span {
    font-size: 14px;
    line-height: 1.2;
  }

  .intro__title {
    font-size: 38px;
    line-height: 60px;
  }

  .intro__title span {
    font-size: 62px;
  }

  .intro__text {
    font-size: 16px;
  }

  .intro__product ul li img {
    max-width: 60px;
  }

  .passion {
    font-size: 22px;
    line-height: 38px;
  }

  .experience__content .order-btn,
  .experience__content .experience__awards {
    display: none;
  }

  .experience__text {
    max-width: 100%;
  }

  .experience__product {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 0 auto;
    margin-top: -100px;
  }

  .experience__product .experience__awards img {
    max-width: 130px;
  }

  .experience__product img {
    max-width: 400px;
  }

  .experience__product-info {
    display: block;
    margin-left: 20px;
  }

  .experience::before {
    width: 60%;
    height: 440px;
    right: 0;
    top: auto;
    bottom: -55px;
  }

  .benefits__title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .benefits__product img {
    margin: 0 auto;
    max-width: 340px;
  }

  .benefits__item {
    padding-left: 86px;
  }

  .benefits__item span {
    width: 72px;
    height: 72px;
  }

  .benefits__item-title {
    width: 100%;
    font-size: 20px;
  }

  .benefits__item-text {
    max-width: 100%;
  }

  .unlock-left h2 {
    font-size: 22px;
  }

  .x-list span {
    margin-bottom: 22px;
  }

  .unlock-right {
    right: 15px;
  }

  .x-list {
    height: 136px;
    width: 550px;
    font-size: 19px;
    padding: 10px 0 0 195px;
  }
  .problems__item-percent span {
    width: 160px;
    height: 160px;
    font-size: 90px;
  }
  .problems__item-percent::before {
    width: 170px;
    height: 170px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .problems__item-percent::after {
    top: 10px;
    right: 17px;
  }
  .how-does-it::before {
    background-position: right 30% top 0;
  }

  .how-does-it__content {
    max-width: 496px;
  }

  .how-does-it__persone {
    left: -100px;
  }

  .how-does-it__title span {
    font-size: 30px;
  }

  .problems__item {
    margin: 0 1%;
  }

  .experience__body {
    flex-direction: column;
  }

  .experience__content {
    width: auto;
  }

  .benefits__body {
    flex-wrap: wrap;
  }

  .benefits__product {
    order: 1;
    width: 100%;
    padding-top: 30px;
  }

  .benefits-left,
  .benefits-right {
    width: calc(50% - 15px);
  }

  .prev-footer__content {
    margin-left: 10px;
  }

  .prev-footer::after {
    background-position: calc(50% + 60px) top;
  }
  .benefits .anchore {
    top: -20px;
  }
  .reviews .anchore {
    top: -60px;
  }
  .how-does-it .anchore {
    top: -40px;
  }
}

@media (max-width: 1023px) {
  .container {
    width: 768px;
  }

  .intro {
    padding-top: 10px;
    margin-top: 82px;
  }

  .intro__main {
    padding-bottom: 0;
  }

  .menu__list li {
    margin-right: 15px;
  }

  .intro__content {
    justify-content: end;
    max-width: 100%;
    margin: 0 5px 0 0;
  }

  .intro__title,
  .intro__content > span,
  .intro__content .passion,
  .intro__text,
  .intro__benefits {
    width: 100%;
    max-width: 380px;
  }

  .intro__title {
    font-size: 34px;
    line-height: 50px;
  }

  .intro__title span {
    font-size: 58px;
  }

  .intro__content > span {
    display: block;
    width: 100%;
  }

  .intro__benefits {
    margin: 0;
    max-width: 50%;
    justify-self: end;
    left: auto;
  }

  .intro__text {
    margin: 0;
    margin-bottom: 12px;
  }

  .intro__post {
    padding: 12px;
    margin-top: 15px;
    width: 50%;
  }

  .header__inner {
    padding: 4px 0;
  }

  .header__body .order-btn {
    height: 50px;
    font-size: 16px;
    width: 200px;
  }

  .header__top {
    font-size: 10px;
    line-height: 15px;
  }

  .header__logo {
    width: 113px;
  }

  .menu__list li a {
    font-size: 16px;
  }

  .intro__product {
    max-width: 290px;
    bottom: 38px;
  }

  .magazines-logo {
    margin-top: 15px;
  }

  .problems__item {
    width: 165px;
    margin: 0 10px;
  }

  .problems__item-percent::before {
    width: 142px;
    height: 142px;
  }

  .problems__item-percent::after {
    top: -5px;
    right: -2px;
  }

  .problems__item-percent span {
    width: 130px;
    height: 130px;
    font-size: 64px;
    line-height: 1;
  }

  .problems__item-percent {
    margin-bottom: 18px;
  }

  .problems__item > span {
    font-size: 16px;
    line-height: 24px;
  }

  .problems__title {
    line-height: 1.2;
    font-size: 36px;
  }

  .problems__title span {
    font-size: 38px;
  }

  .problems {
    margin-bottom: 15px;
  }

  .experience__container::before {
    right: 0;
    height: 47%;
  }

  .benefits {
    padding: 60px 0 40px;
  }

  .benefits__text {
    font-size: 18px;
  }

  .benefits__item-title br {
    display: none;
  }

  .benefits__footer-title {
    font-size: 22px;
  }

  .benefits__footer-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .unlock-left {
    width: auto;
  }

  .unlock-left p:first-child,
  .unlock-left p:nth-child(2) {
    width: calc(100% - 330px);
  }

  .reviews {
    padding: 30px 0 40px;
  }

  .reviews__item {
    padding: 10px 8px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 25%);
  }

  .reviews__item-title {
    font-size: 16px;
    min-height: 39px;
  }

  .reviews__item-text {
    font-size: 13px;
  }

  .reviews__item-user {
    font-size: 12px;
  }

  .how-does-it1 {
    padding: 44px 0 30px;
  }

  .how-does-it::before {
    background-position: right 25% top 0;
  }

  .how-does-it__persone {
    left: 15px;
    background: #ffffffd1;
    padding: 10px;
    border-radius: 10px;
    z-index: 2;
  }

  .how-does-it__title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .how-does-it__content {
    max-width: 385px;
    padding-bottom: 0;
  }

  .how-does-it__product {
    margin-top: auto;
  }
  .how-does-it__magazine {
    bottom: 130px;
    right: -10px;
  }
  .how-does-it__product .bottle {
    margin-top: 105px;
  }
  .table__row:first-child .table__col {
    line-height: 1.2;
  }

  .table__row:first-child .table__col span {
    margin-top: 5px;
  }

  .table__col {
    font-size: 16px;
    line-height: 1.2;
  }

  .table__col:nth-child(1) {
    font-size: 18px;
    line-height: 1.2;
  }

  .guarantee {
    background-position: right 20% top 0;
    padding: 30px 0;
    position: relative;
    z-index: 3;
  }

  .guarantee__inner img {
    max-width: 165px;
  }

  .guarantee__title span {
    display: block;
  }

  .prev-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-items: center;
    flex-direction: column-reverse;
  }

  .prev-footer {
    padding: 30px 0 20px;
  }

  .prev-footer__content {
    margin-left: 0;
    margin-bottom: -100px;
    position: relative;
  }

  .prev-footer__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .prev-footer__title span {
    font-size: 50px;
  }

  .prev-footer__product .bottle {
    max-width: 290px;
    margin-bottom: 10px;
  }

  .prev-footer__awards img {
    max-width: 100%;
    width: 55px;
  }

  .prev-footer__content > span {
    font-size: 20px;
    line-height: 1.1;
  }

  .prev-footer__list li {
    padding-left: 40px;
  }

  .prev-footer__text {
    font-size: 18px;
    line-height: 24px;
    max-width: 410px;
  }

  .prev-footer__list {
    left: auto;
    margin-bottom: 15px;
  }

  .experience::before {
    width: 100%;
  }

  .unlock-right {
    right: -5px;
    bottom: -30px;
  }

  .unlock {
    width: 174px;
  }

  .unlock-plus {
    width: 110px;
  }

  .unlock-right .plus-icon {
    width: 25px;
    margin: 0 -3px 0 1px;
  }

  .unlock-left h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 35px 0 70px;
  }

  .x-list {
    height: 108px;
    width: 430px;
    font-size: 15px;
    padding: 7px 0 0 155px;
  }

  .x-list span {
    margin-bottom: 17px;
  }

  .section-4_2 {
    background-position: calc(50% + 200px) 110px;
    background-size: 370px auto;
  }

  .reviews__item-person {
    align-items: center;
    padding-top: 30px;
  }

  .benefits__item:first-child {
    margin-bottom: 30px;
    min-height: 198px;
  }

  .prev-footer::after {
    background-position: calc(50% - 300px) -5px;
  }

  .prev-footer__logo {
    margin: 0;
  }

  .prev-footer__product {
    padding-left: 26px;
  }

  .prev-footer__awards {
    margin-left: 60px;
  }

  .prev-footer__list li strong {
    font-size: 20px;
    line-height: 1.2;
  }

  .prev-footer__list li span {
    font-size: 18px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .container {
    width: 550px;
  }

  .show-tab {
    display: block !important;
  }

  .hide-tab {
    display: none !important;
  }

  .intro {
    margin-top: 71px;
  }

  .menu__list li {
    margin-right: 22px;
  }

  .menu__list li:last-child {
    margin-right: 0;
  }

  .menu__list li a {
    font-size: 14px;
  }

  .intro__benefits {
    white-space: nowrap;
    max-width: none;
    width: auto;
  }

  .trustpilot {
    align-self: center;
    margin-bottom: 10px;
  }

  .trustpilot .trust-logo {
    margin-top: -4px;
  }

  .intro__title,
  .prev-footer__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .intro__title span,
  .prev-footer__title span {
    font-size: 44px;
  }

  .intro__content {
    margin-right: 0;
    align-items: flex-end;
  }

  .intro__content > span,
  .prev-footer__content > span {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: -4px;
  }

  .passion {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .intro__text,
  .prev-footer__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .intro__text br {
    display: none;
  }

  .intro__benefits li strong,
  .prev-footer__list li strong {
    font-size: 16px;
  }

  .intro__benefits li span,
  .prev-footer__list li span {
    font-size: 13px;
  }

  .intro__post {
    width: 47%;
  }

  .intro__product {
    max-width: 250px;
    left: 10px;
  }

  .intro__product ul li img {
    max-width: 55px;
  }

  .intro__product ul {
    left: -10px;
  }

  .intro__title, .intro__content > span, .intro__content .passion, .intro__text, .intro__benefits,
  .prev-footer__text {
    max-width: 290px;
  }

  .intro_stars {
    width: 70px;
  }

  .intro__post-title {
    font-size: 13px;
    line-height: 1.3;
  }

  .intro__post-text {
    font-size: 12px;
    line-height: 1.3;
  }

  .intro__item-name {
    font-size: 12px;
  }

  .intro__item-user {
    font-size: 11px;
  }

  .magazines-logo {
    align-self: center;
  }

  .problems__title,
  .experience__title,
  .benefits__title,
  .section-4_2 .text,
  .reviews__title,
  .how-does-it__title,
  .compare__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .problems__title span,
  .experience__title span,
  .benefits__title span {
    font-size: 32px;
  }

  .problems__subtitle,
  .benefits__text {
    font-size: 16px;
    line-height: 1.3;
  }

  .problems__item {
    margin: 0;
    width: 120px;
  }

  .problems__body {
    justify-content: space-between;
  }

  .problems__item-percent span {
    width: 90px;
    height: 90px;
    font-size: 46px;
  }

  .problems__item-percent::before {
    width: 98px;
    height: 98px;
  }

  .problems__item-percent::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
    top: -5px;
    right: 15px;
    border-width: 3px;
  }

  .problems__item > span {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
  }

  .experience__body {
    padding-top: 40px;
  }

  .experience__content > span {
    margin-bottom: 5px;
  }

  .experience__content .passion {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .experience__text h3 {
    font-size: 24px;
  }

  .experience__text p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0;
  }

  .experience__product img {
    max-width: 200px;
  }

  .experience__product {
    width: 100%;
  }

  .experience {
    padding-bottom: 50px;
  }

  .experience::before {
    width: 100%;
    opacity: 0.5;
  }

  .benefits__body {
    flex-direction: column;
  }

  .benefits-left, .benefits-right {
    width: auto;
  }

  .benefits__item:first-child {
    min-height: 0;
  }

  .benefits__item:first-child,
  .benefits__item {
    margin-bottom: 20px;
  }

  .benefits__product img {
    max-width: 170px;
  }

  .benefits__product {
    padding: 0;
    margin-bottom: -20px;
  }

  .benefits__footer-items li:not(:last-child) {
    margin: 0;
  }

  .benefits__footer-items li {
    width: calc(100% / 4 - 10px);
    flex: auto;
    justify-content: space-between;
  }

  .benefits__footer-items {
    align-self: stretch;
  }

  .benefits__footer-items li {
    font-size: 15px;
    line-height: 1.3;
  }

  .benefits__footer-items br {
    display: none;
  }

  .benefits__item-title {
    font-size: 16px;
  }

  .benefits__item-text {
    line-height: 1.4;
  }

  .benefits__item span {
    width: 68px;
    height: 68px;
  }

  .benefits__item span img {
    max-height: 38px;
  }

  .benefits-right {
    margin-bottom: -20px;
  }

  .benefits__footer-title span {
    display: block;
  }

  .benefits__footer-title {
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .benefits {
    padding-bottom: 20px;
  }

  .section-4_2 {
    padding: 30px 0;
    background-position: calc(50% + 160px) 90px;
    background-size: 240px auto;
  }

  .unlock-left p:first-child {
    width: calc(100% - 190px);
  }

  .unlock-left p:nth-child(2) {
    width: auto;
  }

  .unlock-left h2 {
    font-size: 22px;
    margin: 35px 0 20px;
  }

  .unlock-right {
    position: static;
    margin: 0 auto;
    justify-content: center;
  }

  .x-list {
    margin: 0 auto;
  }
  .slick-dots {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .slick-dots li {
    margin: 0 6px;
  }
  .slick-dots button {
    font-size: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d9d9d9;
  }
  .slick-active button {
    background: #9c9696;
  }
  .slick-list {
    box-shadow: 0 1px 8px rgb(0 0 0 / 25%);
    margin-bottom: 30px;
  }
  .slick-track {
    display: flex;
  }
  .reviews__item-title {
    min-height: 0;
    margin-bottom: 9px;
  }
  .reviews__item-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .reviews {
    padding: 18px 0 45px;
  }
  .reviews__body {
    flex-direction: column;
    padding-bottom: 31px;
  }
  .reviews__bottom img {
    margin-right: 5px;
  }
  .reviews__item {
    height: auto;
    display: flex !important;
    box-shadow: none;
    padding: 18px 16px 13px;
  }
  .reviews__item-photo {
    padding: 6px;
    border-width: 1px;
  }
  .reviews__item-photo img {
    width: 16px;
  }
  .reviews__item-rating img {
    width: 88px;
  }
  .reviews__item-person {
    padding-top: 38px;
  }
  .reviews__bottom {
    font-size: 16px;
  }
  .reviews__suptitle,
  .how-does-it__header h3 {
    font-size: 16px;
  }

  .how-does-it__persone strong {
    font-size: 16px;
    line-height: 1.3;
  }

  .how-does-it__persone span {
    font-size: 14px;
    line-height: 1.3;
  }
  .how-does-it__content {
    max-width: 350px;
    padding-top: 0;
  }

  .how-does-it__product .bottle {
    width: 200px;
    max-width: none;
    margin-left: -50px;
    margin-top: 0;
  }

  .how-does-it__product {
    padding-bottom: 15px;
  }

  .compare__title::before, .compare__title::after {
    height: 2px;
  }

  .table__col:nth-child(1) {
    font-size: 15px;
  }

  .table__col {
    font-size: 14px;
  }

  .table__row:first-child .table__col {
    font-size: 15px;
  }

  .table__row:first-child img,
  .table__row:first-child .table__col:nth-child(3) img {
    height: 80px;
    width: auto;
    min-height: 0;
  }

  .guarantee {
    padding: 15px 0;
  }

  .guarantee__inner img {
    min-width: 100px;
    width: 100px;
  }

  .guarantee__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .guarantee__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .prev-footer__product {
    padding: 0;
    position: absolute;
    bottom: -5px;
    left: calc(50% + 40px);
  }

  .prev-footer__content {
    margin: 0;
    width: 60%;
  }

  .prev-footer::after {
    background-position: calc(50% - 71px) 15px;
  }

  .prev-footer__product .bottle {
    max-width: 220px;
  }

  .prev-footer__awards img {
    width: 45px;
  }

  .prev-footer__awards {
    margin-left: 44px;
  }

  .footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 549px) {
  .container {
    width: 100%;
  }

  .show-mob {
    display: block !important;
  }
  .hide-mob {
    display: none !important;
  }
  .header__top {
    font-size: 9px;
    line-height: 12px;
  }

  .header__body {
    background: #fff;
  }

  .header__inner {
    padding: 2px 0;
  }

  .header__logo {
    width: 90px;
  }

  .intro {
    margin-top: 70px;
  }

  .header__menu, .menu__list {
    display: flex;
    align-items: center;
  }

  .dropdown {
    position: fixed;
    top: 70px;
    width: 100%;
    height: 100%;
    left: 0;
    display: none;
    background: #fff;
    padding: 26px 15px 30px;
  }

  .dropdown li {
    margin-right: 49px;
  }

  .dropdown li {
    max-width: 768px;
    margin: 0 auto 30px;
    position: relative;
  }

  .dropdown li a {
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #1b293c;
    display: block;
  }

  .dropdown li:nth-child(1):before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #00000029;
    top: -26px;
    left: 0;
  }

  .menu__list li a.active {
    font-weight: normal;
  }

  .trustpilot img {
    width: 60px;
    margin: 0 5px;
  }

  .trustpilot {
    display: none;
  }
  .intro__post-title {
    font-size: 14px;
    line-height: 1.1;
  }
  .intro__post {
    padding: 8px 15px;
    align-self: stretch;
    max-width: none;
    width: auto;
  }
  .intro__post-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 7px;
  }
  .intro__item-name {
    font-size: 14px;
  }
  .intro__item-user {
    font-size: 12px;
  }
  .intro__title, .prev-footer__title {
    font-size: 20px;
    line-height: 1.2;
  }

  .intro__title span {
    font-size: 32px;
  }

  .intro__title, .intro__content > span, .intro__content .passion, .intro__text, .prev-footer__text,
  .ach-list {
    max-width: 213px;
    text-align: center;
    width: 100%;
    margin-left: 132px;
  }
  .intro__text {
    margin-bottom: 1px;
  }
  .intro__benefits {
    align-self: center;
    max-width: 345px;
    width: 100%;
  }
  .intro {
    background: #000 url(../images/intro-bg-mob.jpg) no-repeat left top;
    padding-bottom: 55px;
    position: relative;
  }
  .intro__main {
    margin: 0;
  }
  .intro__product {
    position: static;
  }
  .intro__product .bottle {
    position: absolute;
    top: 86px;
    left: calc(50% - 174px);
    width: 125px;
  }
  .magazines-logo {
    margin-top: 19px;
  }
  .ach-list {
    margin-bottom: 17px;
  }
  .ach-list li {
    display: inline-block;
    vertical-align: middle;
  }
  .intro__benefits li span, .prev-footer__list li span {
    font-size: 14px;
  }
  .ach-list img {
    width: 58px;
  }
  .intro__benefits li::before {
    background-image: url(../images/benefits-check-mob.svg);
    width: 26px;
    height: 25px;
  }
  .intro_stars {
    width: 92px;
  }
  .intro__benefits li {
    padding-left: 30px;
  }
  .intro__benefits li:not(:last-child) {
    margin-bottom: 4px;
  }
  .intro__content {
    align-items: center;
  }
  .problems__title, .experience__title, .benefits__title, .section-4_2 .text, .reviews__title, .how-does-it__title, .compare__title,
  .problems__title span, .experience__title span, .benefits__title span {
    font-size: 24px;
    line-height: 1.3;
  }
  .problems__body {
    flex-direction: column;
    padding: 0 5px;
  }
  .problems__item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-bottom: 19px;
  }
  .problems__subtitle, .benefits__text {
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .problems__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .problems__item-percent span {
    width: 94px;
    height: 94px;
    font-size: 56px;
  }
  .problems__item-percent::before {
    width: 100px;
    height: 100px;
  }
  .problems__item > span {
    text-align: left;
    font-size: 16px;
  }
  .problems__item-percent {
    margin: 0 24px 0 0;
    font-weight: bold;
  }
  .problems__item:nth-child(even)  .problems__item-percent {
    margin: 0 0 0 35px;
  }
  .problems__item-percent::after {
    right: -6px;
    width: 26px;
    height: 26px;
    font-size: 20px;
    top: 2px;
    border-width: 2px;
  }

  .problems {
    margin: 36px 0 10px;
  }
  .experience__text h3,
  .experience__content .passion {
    font-size: 20px;
    line-height: 1.4;
  }
  .experience__text h3 {
    margin-bottom: 9px;
  }
  .experience__text p {
    line-height: 1.5;
  }
  .experience::before {
    opacity: 1;
    height: 392px;
    background-size: auto 100%;
    background-position: calc(100% + 20px) top;
  }
  .experience__text {
    margin-bottom: 281px;
  }
  .experience__product-info {
    position: absolute;
    top: 371px;
    left: calc(50% - 172px);
    margin: 0;
  }
  .experience__body {
    position: relative;
    padding: 6px 0 0;
  }
  .experience__product {
    position: static;
    justify-content: center;
    margin-bottom: -4px;
  }
  .experience__awards {
    margin: 0;
    flex-direction: column;
  }
  .experience__product .experience__awards img {
    width: 76px;
    margin: 0 0 15px;
  }
  .experience__product img {
    max-width: 176px;
    margin-left: -70px;
  }
  .experience {
    padding-bottom: 0;
    margin-bottom: 19px;
  }
  .benefits {
    padding: 43px 0 15px;
    background: url(../images/benefits-bg-mob.png) repeat-x center top / 375px 100%;
  }
  .benefits__title {
    margin-bottom: 9px;
  }
  .benefits__title span {
    font-size: 20px;
    line-height: 1.3;
  }
  .benefits__footer-items {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .benefits__footer-items li,
  .benefits__footer-items li:not(:last-child) {
    max-width: calc(50% - 10px);
    width: 100%;
    margin-bottom: 17px;
  }
  .benefits__footer-items br {
    display: block;
  }
  .benefits__item:first-child, .benefits__item {
    margin-bottom: 34px;
  }
  .benefits__footer-items li {
    font-size: 16px;
  }
  .benefits__item {
    padding-left: 88px;
  }
  .benefits__item:nth-child(2) span img {
    max-height: 27px;
  }
  .benefits__item-text {
    margin-left: -88px;
    max-width: none;
    line-height: 1.55;
  }
  .benefits__item-title {
    font-size: 16px;
    padding-top: 12px;
    line-height: 1.5;
    margin-bottom: 28px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  .benefits__footer-items li img {
    max-width: 90px;
    width: 90px;
    margin-bottom: 10px;
  }
  .benefits__item span {
    width: 72px;
    height: 72px;
  }
  .benefits__footer-title {
    font-size: 20px;
    margin-bottom: 7px;
  }
  .benefits__product img {
    max-width: 245px;
  }
  .benefits-right {
    margin-bottom: -32px;
  }
  .benefits__product {
    margin-bottom: -11px;
  }
  .benefits__footer-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .unlock-left p:first-child {
    width: auto;
  }
  .section-4_2 {
    background-position: center 73px;
    background-size: 380px auto;
    padding: 32px 0 70px;
  }
  .section-4_2 h1 {
    margin-bottom: 236px;
  }
  .unlock-right.show-mob {
    display: flex !important;
    justify-content: flex-start;
    width: 345px;
    margin: 0 auto;
  }
  .unlock-box {
    margin-top: 19px;
  }
  .unlock-left h2 {
    font-size: 20px;
    line-height: 1.4;
    margin: 17px 0 13px;
  }
  .unlock {
    width: 118px;
    margin-top: 7px;
  }
  .unlock-plus {
    width: 79px;
  }
  .unlock-right .plus-icon {
    margin: 0 6px 0 7px;
  }
  .x-list {
    width: 345px;
    height: 85px;
    padding: 7px 0 0 102px;
    font-size: 14px;
    background-image: url(../images/3x-image-mob.svg);
  }
  .x-list span {
    margin-bottom: 15px;
  }
  .reviews__suptitle, .how-does-it__header h3 {
    font-size: 14px;
    text-align: center;
  }
  .paper_cut {
    position: absolute;
    bottom: -1px;
  }
  .sec-box-1 {
    display: flex;
    flex-direction: column-reverse;
  }
  .how-does-it1::before {
    display: none;
  }
  .how-does-it1 {
    background: #f1f1f2;
    padding: 30px 0 19px;
  }
  .how-does-it1 .how-does-it__title {
    text-align: center;
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .how-does-it1 .how-does-it:after {
    content: "";
    width: 100%;
    height: 41px;
    position: absolute;
    top: -39px;
    left: 0;
    z-index: -1;
    background-image: url(../images/paper-cut-2.png);
    background-repeat: repeat;
    background-position: center;
    background-size: 375px 100%;
  }
  .how-does-it1 .how-does-it__content {
    max-width: none;
    margin-right: 0;
  }
  .how-does-it1 .how-does-it__title span {
    font-size: 20px;
  }
  .how-does-it1 .how-does-it__header h3 {
    margin-bottom: 8px;
  }
  .how-does-it1::after {
    background-image: url(../images/paper-cut-2.png);
  }
  .reviews {
    padding-bottom: 15px;
  }
  .how-does-it__persone {
    background: none;
    padding: 0;
    left: -81px;
  }
  .guarantee__inner {
    flex-direction: column;
  }
  .guarantee__inner img {
    min-width: 156px;
    width: 156px;
    margin: 0 0 15px;
  }
  .guarantee {
    padding: 30px 0 46px;
    text-align: center;
  }
  .guarantee__title {
    font-size: 20px;
    line-height: 1.4;
  }
  .guarantee__text {
    font-size: 16px;
    line-height: 1.5;
  }
  .compare {
    position: relative;
    padding: 37px 0 45px;
  }
  .compare:before {
    content: "";
    width: 100%;
    height: 33px;
    background-image: url(../images/paper-cut-1.png);
    background-size: 375px 100%;
    background-position: top center;
    background-repeat: repeat;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 4;
  }
  .compare__title {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 19px;
  }
  .compare__title::before {
    display: none;
  }
  .compare__title::after {
    height: 4px;
    width: 100%;
    margin-right: 0;
  }
  .table__row:first-child img, .table__row:first-child .table__col:nth-child(3) img {
    height: 52px;
  }
  .table__col:nth-child(1) {
    width: 39.6%;
  }
  .table__col:nth-child(2) {
    width: 19.8%;
  }
  .table__col:nth-child(n + 3) {
    width: calc((100% - 39.6% - 19.8%) / 2 - 1px);
  }
  .table__col:nth-child(1),
  .table__row:first-child .table__col {
    font-size: 14px;
  }
  .table__row:first-child .table__col {
    padding: 15px 0 10px;
  }
  .table__col .bottle,
  .table__row:first-child .table__col:nth-child(3) img,
  .table__row:first-child img {
    margin-bottom: 6px;
  }
  .table__row:first-child .table__col {
    justify-content: center;
  }
  .table__row:first-child .table__col span {
    min-height: 34px;
    display: flex;
    align-items: flex-end;
  }
  .table__col {
    padding: 4px 3px;
    min-height: 40px;
  }
  .table__col:nth-child(1) {
    line-height: 1.15;
  }
  .table__row .table-check {
    margin: 3px auto 4px;
  }
  .prev-footer__logo img {
    width: 90px;
  }
  .prev-footer__content {
    width: 100%;
    margin-bottom: 55px;
  }
  .prev-footer::after {
    width: 312px;
    height: 298px;
    background: url(../images/prev-footer-bg-mob.jpg) no-repeat center center;
    top: auto;
    bottom: -4px;
    right: 0;
  }
  .prev-footer__logo {
    margin: 0 0 27px;
  }
  .prev-footer__title {
    line-height: 1.25;
  }
  .prev-footer__title span {
    font-size: 40px;
  }
  .prev-footer__content > span {
    font-size: 20px;
    margin-bottom: 0;
  }
  .prev-footer .passion {
    font-size: 20px;
    margin: -1px 0 16px;
  }
  .prev-footer__awards2 {
    display: flex !important;
    margin: 0 0 16px;
    flex-direction: row;
  }
  .prev-footer__awards img {
    width: 67px;
  }
  .prev-footer__text {
    margin: 0;
    max-width: none;
    font-size: 16px;
  }
  .prev-footer__list li {
    padding-left: 30px;
  }
  .prev-footer__list li::before {
    width: 27px;
    height: 26px;
    top: -2px;
  }
  .prev-footer__list {
    width: 100%;
    max-width: 345px;
    margin: 17px 0 15px;
  }
  .prev-footer__product {
    position: static;
    bottom: auto;
    left: auto;
  }
  .prev-footer__product .bottle {
    max-width: 176px;
  }
  .footer {
    padding-top: 24px;
  }
  .footer__logo img {
    width: 90px;
  }
  .footer__text {
    margin: 15px 0 14px;
  }
  .footer__copyright {
    margin-top: 16px;
  }
  .benefits .anchore {
    top: -40px;
  }
  .reviews .anchore {
    top: -65px;
  }
  .how-does-it .anchore {
    top: -55px;
  }
}
@media (max-width: 374px) {
  .header__top {
    font-size: 8px;
    line-height: 10px;
  }
  .intro__title, .intro__content > span, .intro__content .passion, .intro__text, .ach-list {
    max-width: 185px;
    margin-left: 115px;
  }
  .intro__text {
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .ach-list img {
    width: 48px;
  }
  .intro__product .bottle {
    left: calc(50% - 155px);
    width: 115px;
    top: 103px;
  }
  .intro__post-text {
    line-height: 1.4;
  }
  .intro__benefits li span, .prev-footer__list li span {
    font-size: 13px;
  }
  .problems__title, .experience__title, .benefits__title, .section-4_2 .text, .reviews__title, .how-does-it__title, .compare__title, .problems__title span, .experience__title span, .benefits__title span {
    font-size: 22px;
    line-height: 1.2;
  }
  .problems__subtitle, .benefits__text {
    font-size: 14px;
  }
  .problems__item-percent span {
    width: 84px;
    height: 84px;
    font-size: 46px;
  }
  .problems__item-percent::before {
    width: 90px;
    height: 90px;
  }
  .problems__item-percent::after {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }
  .experience__text h3, .experience__content .passion {
    font-size: 16px;
    line-height: 1.4;
  }
  .experience__content > span {
    font-size: 18px;
  }
  .experience__text p {
    font-size: 14px;
  }
  .experience__product img {
    margin-left: -30px;
  }
  .experience__product-info {
    left: calc(50% - 152px);
  }
  .benefits__item-title {
    font-size: 14px;
    min-height: 54px;
  }
  .benefits__item-text {
    line-height: 1.4;
  }
  .benefits__product img {
    max-width: 175px;
  }
  .benefits__footer-title {
    font-size: 18px;
  }

  .unlock-left p {
    font-size: 14px;
    line-height: 1.4;
  }
  .unlock-left h2 {
    font-size: 18px;
  }
  .x-list {
    width: 290px;
    height: 72px;
    padding: 6px 0 0 88px;
    font-size: 11px;
  }
  .x-list span {
    margin-bottom: 13px;
  }
  .how-does-it__content {
    font-size: 14px;
    line-height: 1.4;
  }
  .reviews__item-text {
    line-height: 1.4;
  }
  .reviews__item-person {
    padding-top: 38px;
  }
  .reviews__bottom {
    font-size: 13px;
  }
  .reviews__bottom img {
    width: 85px;
  }
  .how-does-it2 .how-does-it__product .bottle {
    margin-left: 0;
  }
  .how-does-it2 .how-does-it__magazine {
    left: 0;
  }
  .how-does-it__persone {
    left: -90px;
  }
  .how-does-it__persone strong {
    font-size: 15px;
  }
  .guarantee__inner img {
    min-width: 156px;
    width: 156px;
  }
  .guarantee__text {
    font-size: 14px;
    line-height: 1.4;
  }
  .table__col,
  .table__col:nth-child(1),
  .table__row:first-child .table__col {
    font-size: 12px;
  }
  .table__row:first-child img, .table__row:first-child .table__col:nth-child(3) img {
    height: 40px;
  }
  .table__row:first-child .table__col span {
    min-height: 28px;
  }
  .table__col {
    padding: 4px 2px;
  }
  .compare {
    padding-bottom: 15px;
  }
  .prev-footer .passion {
    font-size: 16px;
  }
  .prev-footer__awards img {
    width: 55px;
  }
  .prev-footer {
    padding-bottom: 10px;
  }
  .footer {
    padding-top: 15px;
  }
  .fixed-btn .order-btn {
    font-size: 20px;
    line-height: 44px;
    max-width: 290px;
  }
}

@media (orientation: landscape) {
  .fixed-btn .order-btn {
    font-size: 20px;
    line-height: 44px;
    max-width: 290px;
  }
}