:root {
  --vh: 1vh;
}
/**********************/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
img,
b,
u,
i,
center,
table,
tr,
th,
td,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:visited {
  text-decoration: inherit;
}
sup {
  line-height: 0;
  font-size: smaller;
  vertical-align: super;
}
sub {
  line-height: 0;
  font-size: smaller;
  vertical-align: sub;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #052D23;
}
body.no-scroll {
  overflow: hidden;
}
.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 51px;
  border: 1px transparent solid;
  font-size: 14px;
  border-radius: 12px;
  transition: all 0.3s;
  padding: 0 20px;
  gap: 8px;
}
.btn:hover {
  text-decoration: none !important;
}
.btn_lg {
  height: 63px;
  font-size: 18px;
  border-radius: 33px;
  padding: 0 30px;
  gap: 16px;
}
.btn_orange {
  color: #fff;
  background: #F89E37;
}
.btn_orange:hover {
  color: #fff;
  background: #f38609;
}
::selection {
  background-color: #0002;
  /* Цвет фона выделения */
}
.text_center {
  text-align: center;
}
.container {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 48rem) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
body {
  padding-top: 90px;
}
@media screen and (max-width: 86rem) {
  body {
    padding-top: 61px;
  }
}
@media screen and (max-width: 75rem) {
  body {
    padding-top: 51px;
  }
}
.header {
  padding: 20px 0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px #F0F0F0 solid;
  z-index: 100;
}
@media screen and (max-width: 86rem) {
  .header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 75rem) {
  .header {
    padding: 5px 0;
  }
}
.header__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 51px;
}
@media screen and (max-width: 86rem) {
  .header__wrap {
    height: 40px;
  }
}
.header__logo a {
  display: block;
}
.header__menu {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 32px;
  transition: background 0.3s;
}
@media screen and (max-width: 60rem) {
  .header__menu {
    display: none;
  }
}
@media screen and (max-width: 60rem) {
  .header__menu.active {
    display: block;
    position: fixed;
    top: 51px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    background: #0004;
    margin: 0;
    z-index: 101;
  }
}
.header__menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 16px;
}
@media screen and (max-width: 60rem) {
  .header__menu ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding: 20px;
    min-width: 300px;
    background: #fff;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
  }
}
.header__menu ul a {
  color: #052D23;
}
.header__menu ul a.active {
  color: #0EAAF5;
}
@media screen and (max-width: 75rem) {
  .header__menu .btn {
    display: none;
  }
}
.header__burger {
  display: none;
  width: 48px;
  /* Ширина кнопки */
  height: 48px;
  /* Высота кнопки */
  margin-left: -14px;
  flex-direction: column;
  justify-content: space-between;
  /* Распределение полосок по вертикали */
  cursor: pointer;
  /* Курсор указывает, что элемент кликабельный */
  padding: 18px 15px;
}
.header__burger span {
  display: block;
  height: 2px;
  /* Высота полоски */
  background-color: #333;
  /* Цвет полосок */
  border-radius: 2px;
  /* Скругление углов */
  transition: all 0.3s ease;
  /* Плавный переход для анимации */
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 4px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -4px);
}
@media screen and (max-width: 60rem) {
  .header__burger {
    display: flex;
  }
}
.hero__wrap {
  background: linear-gradient(360deg, #FFEBE1 -12.07%, #FFFFFF 82.88%);
  border-radius: 42px;
  padding: 150px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 86rem) {
  .hero__wrap {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 48rem) {
  .hero__wrap {
    padding: 40px 30px 100px;
    gap: 20px;
  }
}
.hero__wrap:after {
  content: '';
  background: transparent url("../images/orange_orange.svg") no-repeat right top;
  display: block;
  background-size: contain;
  height: 640px;
  width: 640px;
  position: absolute;
  left: -220px;
  bottom: -420px;
}
.hero__title {
  font-family: Inter, sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 86rem) {
  .hero__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 60rem) {
  .hero__title {
    font-size: 46px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 48rem) {
  .hero__title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.5px;
  }
}
.hero__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
.hero__body {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 590px;
  opacity: 0.6;
}
.star svg {
  height: 70px;
  width: 70px;
}
@media screen and (max-width: 48rem) {
  .star svg {
    height: 40px;
    width: 40px;
  }
}
.colonoscopy {
  padding-top: 60px;
}
.colonoscopy__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.colonoscopy__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
@media screen and (max-width: 86rem) {
  .colonoscopy__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .colonoscopy__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.colonoscopy__box {
  padding: 55px 40% 55px 55px;
  background: #FFEBE1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 30px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 48rem) {
  .colonoscopy__box {
    margin-top: 30px;
    padding: 50px 30px 300px;
  }
}
.colonoscopy__box-title {
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.colonoscopy__box-body {
  font-family: Inter, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}
.colonoscopy__box:after {
  content: '';
  background: transparent url("../images/bowel_orange.svg") no-repeat right top;
  display: block;
  background-size: contain;
  top: 5px;
  width: 326px;
  position: absolute;
  right: 10%;
  bottom: -20px;
}
@media screen and (max-width: 75rem) {
  .colonoscopy__box:after {
    background-position: center;
    width: 226px;
    bottom: 5px;
  }
}
@media screen and (max-width: 60rem) {
  .colonoscopy__box:after {
    width: 180px;
  }
}
@media screen and (max-width: 48rem) {
  .colonoscopy__box:after {
    bottom: -20px;
    width: auto;
    left: 0;
    right: 0;
    height: 300px;
    top: auto;
  }
}
.preparation {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .preparation {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .preparation {
    padding-top: 20px;
  }
}
.preparation__wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 60rem) {
  .preparation__wrap {
    flex-direction: column;
  }
}
.preparation__about {
  background: #0EAAF5;
  border-radius: 30px;
  padding: 20px 50px 40px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px / 2);
  justify-content: space-around;
  gap: 40px;
  font-family: Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.preparation__about:before {
  content: '';
  display: block;
  background: transparent url("../images/orange_white.svg") no-repeat center center;
  background-size: contain;
  padding-bottom: 70%;
  width: 100%;
}
@media screen and (max-width: 60rem) {
  .preparation__about {
    flex: 1;
  }
}
@media screen and (max-width: 48rem) {
  .preparation__about {
    padding: 40px 30px 20px;
    line-height: 1.2;
    flex-direction: column-reverse;
    font-size: 18px;
  }
}
.preparation__explain {
  background: #E9F6FD;
  border-radius: 30px;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px / 2);
  gap: 40px;
  justify-content: space-around;
}
@media screen and (max-width: 60rem) {
  .preparation__explain {
    flex: 1;
  }
}
@media screen and (max-width: 48rem) {
  .preparation__explain {
    padding: 40px 30px 40px;
    line-height: 1.2;
  }
}
.preparation__explain-title {
  font-family: Inter, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: left;
}
@media screen and (max-width: 48rem) {
  .preparation__explain-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.preparation__explain-groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
}
.preparation__explain-groups > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.preparation__explain-groups > div b {
  color: #F89E37;
  display: block;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.preparation__explain-groups > div ul {
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 48rem) {
  .preparation__explain-groups > div ul {
    font-size: 18px;
  }
}
.preparation__explain-groups > div ul.list_disk li {
  padding-left: 30px;
  position: relative;
}
.preparation__explain-groups > div ul.list_disk li:before {
  content: '';
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 10px;
  top: 6px;
}
.preparation__explain-groups > div ul.list_check li {
  padding-left: 30px;
  position: relative;
}
.preparation__explain-groups > div ul.list_check li:before {
  content: '';
  display: block;
  height: 19px;
  width: 19px;
  background: transparent url("../images/list-check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0px;
}
.promo {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .promo {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .promo {
    padding-top: 20px;
  }
}
.promo__wrap {
  background: #E9F6FD url("../images/promo-bg.svg") no-repeat right 30px center;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media screen and (max-width: 48rem) {
  .promo__wrap {
    flex-direction: column;
    background: #E9F6FD url("../images/promo-bg.svg") no-repeat center bottom -30px;
  }
}
.promo__content {
  padding: 80px;
  max-width: 540px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 75rem) {
  .promo__content {
    max-width: 400px;
    padding: 80px 0 80px 80px;
  }
}
@media screen and (max-width: 48rem) {
  .promo__content {
    padding: 40px 30px;
    max-width: none;
  }
}
.promo__photo {
  flex: 1;
  position: relative;
  padding-bottom: 40%;
}
@media screen and (max-width: 48rem) {
  .promo__photo {
    padding-bottom: 90%;
  }
}
.promo__photo img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 120%;
  max-width: 503px;
}
@media screen and (max-width: 48rem) {
  .promo__photo img {
    left: 50%;
    transform: translateX(-50%);
    height: 110%;
  }
}
.promo__title {
  font-family: Inter, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.promo__title small {
  font-size: 70%;
  opacity: 0.8;
}
.promo__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 48rem) {
  .promo__title {
    font-size: 40px;
  }
}
.promo__subtitle {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #141420;
  margin-bottom: 10px;
}
@media screen and (max-width: 48rem) {
  .promo__subtitle {
    font-size: 18px;
  }
}
.promo__text ul {
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 48rem) {
  .promo__text ul {
    font-size: 18px;
  }
}
.promo__text ul.list_check li {
  padding-left: 30px;
  position: relative;
}
.promo__text ul.list_check li:before {
  content: '';
  display: block;
  height: 19px;
  width: 19px;
  background: transparent url("../images/list-check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.htw {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .htw {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .htw {
    padding-top: 20px;
  }
}
.htw__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.htw__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.htw__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .htw__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .htw__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.htw__box {
  padding: 55px 50% 55px 55px;
  background: #E9F6FD;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 30px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 60rem) {
  .htw__box {
    margin-top: 30px;
    padding: 50px 30px;
  }
}
.htw__box-title {
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.htw__box-title b {
  font-weight: inherit;
  color: #0EAAF5;
}
.htw__box-body {
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.htw__box-body strong {
  text-transform: uppercase;
  color: #0EAAF5;
  font-size: 12px;
}
.htw__box-body p {
  font-weight: bold;
}
.htw__box-body ul {
  line-height: 1.4;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.htw__box-body ul.list_check {
  gap: 30px;
}
.htw__box-body ul.list_check li {
  padding-left: 30px;
  position: relative;
}
.htw__box-body ul.list_check li:before {
  content: '';
  display: block;
  height: 19px;
  width: 19px;
  background: transparent url("../images/list-check_blue.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0px;
}
.htw__box:after {
  content: '';
  background: transparent url("../images/htw-photo.png") no-repeat right top;
  display: block;
  background-size: contain;
  background-position: center;
  top: 0;
  width: 47%;
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media screen and (max-width: 60rem) {
  .htw__box:after {
    width: auto;
    position: static;
    bottom: 20px;
    padding-bottom: 56%;
  }
}
.diet {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .diet {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .diet {
    padding-top: 20px;
  }
}
.diet__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.diet__row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  margin-top: 50px;
}
@media screen and (max-width: 60rem) {
  .diet__row {
    flex-direction: column;
  }
}
@media screen and (max-width: 48rem) {
  .diet__row {
    margin-top: 20px;
    gap: 40px;
  }
}
.diet__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.diet__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .diet__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .diet__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.diet__instruction {
  background: #0EAAF5;
  color: #fff;
  border-radius: 30px;
  padding: 20px 50px 40px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px / 2);
  justify-content: space-around;
  gap: 40px;
  font-family: Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.diet__instruction small {
  order: 1;
  font-family: Inter, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.diet__instruction b {
  order: 3;
  padding-right: 80px;
  background: transparent url("../images/plus_tr.svg") no-repeat right bottom;
}
@media screen and (max-width: 35rem) {
  .diet__instruction b {
    padding-right: 50px;
  }
}
.diet__instruction:before {
  content: '';
  display: block;
  background: transparent url("../images/bowel.svg") no-repeat center center;
  background-size: contain;
  padding-bottom: 70%;
  width: 100%;
  order: 2;
}
@media screen and (max-width: 60rem) {
  .diet__instruction {
    flex: 1;
  }
}
@media screen and (max-width: 48rem) {
  .diet__instruction {
    padding: 30px 30px 30px;
    line-height: 1.2;
    font-size: 24px;
  }
}
.diet__body {
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px / 2);
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 60rem) {
  .diet__body {
    padding: 0 10px;
  }
}
.diet__body q {
  padding: 50px 30px;
  background: #FFEBE1;
  border-radius: 30px;
}
.diet__body q:before,
.diet__body q:after {
  content: '';
}
.diet__steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  justify-content: space-around;
}
.diet__steps div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diet__steps div strong {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #F89E37;
  line-height: 25px;
  display: block;
}
.diet__steps div p {
  font-family: Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.howto {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .howto {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .howto {
    padding-top: 20px;
  }
}
.howto__wrap {
  background: #0EAAF5;
  border-radius: 30px;
  color: #fff;
  padding: 50px 70px 50px 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 60rem) {
  .howto__wrap {
    padding: 50px 30px 110vw;
  }
}
.howto__wrap:before {
  content: '';
  display: block;
  background: url("../images/howto-photo.png") no-repeat left 100% center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 50%;
}
@media screen and (max-width: 75rem) {
  .howto__wrap:before {
    background-position: left 60% center;
  }
}
@media screen and (max-width: 60rem) {
  .howto__wrap:before {
    right: 0;
    left: 0;
    padding-bottom: 100%;
    background-position: center center;
    top: auto;
    width: auto;
  }
}
.howto__wrap:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 51%;
  width: 100px;
  height: 50%;
  border-radius: 50%;
  box-shadow: 0 0 150px 200px #0EAAF5;
  z-index: 1;
}
@media screen and (max-width: 75rem) {
  .howto__wrap:after {
    height: 100%;
  }
}
@media screen and (max-width: 60rem) {
  .howto__wrap:after {
    right: 0;
    left: 0;
    padding-bottom: 100%;
    background-position: center center;
    top: auto;
    width: auto;
    height: auto;
    bottom: 110vw;
    box-shadow: 0 0 150px 200px #0EAAF5;
  }
}
.howto__title {
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.howto__body {
  position: relative;
  z-index: 2;
}
.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.howto__steps strong {
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  display: block;
  margin-bottom: 12px;
}
.howto__steps p {
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.howto__footer {
  margin-top: 40px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.check-list {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .check-list {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .check-list {
    padding-top: 20px;
  }
}
.check-list .btn {
  font-size: 16px;
}
.check-list__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.check-list__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.check-list__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .check-list__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .check-list__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.check-list__steps {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 30px;
}
@media screen and (max-width: 60rem) {
  .check-list__steps {
    gap: 0;
  }
}
.check-list__steps .check-step {
  background: #E9F6FD;
}
.check-list__steps .check-step:nth-child(2n) {
  background: #FFEBE1;
}
.check-list__steps .check-step:nth-child(2n) li:before {
  border-color: #F89E37;
}
.check-list__steps .check-step:nth-child(2n) li.checked:before {
  background: #F89E37;
}
.check-step {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px;
  border-radius: 30px;
}
@media screen and (max-width: 60rem) {
  .check-step {
    padding: 30px;
    border-radius: 0;
  }
}
.check-step__name {
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media screen and (max-width: 60rem) {
  .check-step__name {
    font-size: 24px;
  }
}
.check-step__checks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.check-step__checks li {
  gap: 22px;
  display: flex;
  flex-direction: row;
}
.check-step__checks li:before {
  content: '';
  flex: 0 0 22px;
  display: block;
  height: 22px;
  width: 22px;
  border: 1px #0EAAF5 solid;
}
.check-step__checks li.checked:before {
  background: #0EAAF5;
}
.check-step__checks.list_disk li {
  padding-left: 30px;
  position: relative;
}
.check-step__checks.list_disk li:before {
  content: '';
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 10px;
  top: 8px;
}
.schema {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .schema {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .schema {
    padding-top: 20px;
  }
}
.schema__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.schema__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.schema__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .schema__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .schema__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.schema__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 48rem) {
  .schema__row {
    margin-top: 10px;
  }
}
.schema__col {
  background: #E9F6FD;
  border-radius: 30px;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 20px / 2);
  gap: 40px;
  justify-content: space-around;
}
@media screen and (max-width: 48rem) {
  .schema__col {
    flex: 0 0 100%;
    padding: 40px 30px;
  }
}
.schema__child {
  background: #FFEBE1;
  border-radius: 30px;
  padding: 20px 20px 20px 50px;
  display: flex;
  flex-direction: row;
  flex: 0 0 100%;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 60rem) {
  .schema__child {
    flex-direction: column;
  }
}
@media screen and (max-width: 48rem) {
  .schema__child {
    padding: 40px 30px;
  }
}
.schema__child .schema__name {
  max-width: 500px;
}
.schema__name {
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
.schema .list_check {
  gap: 33px;
  display: flex;
  flex-direction: column;
}
.schema .list_check li {
  padding-left: 30px;
  position: relative;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.schema .list_check li:before {
  content: '';
  display: block;
  height: 19px;
  width: 19px;
  background: transparent url("../images/list-check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.schema__photo {
  max-width: 100%;
}
.schema__photo img {
  display: block;
  max-width: 100%;
}
.guide {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .guide {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .guide {
    padding-top: 20px;
  }
}
.guide__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.guide__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.guide__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .guide__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .guide__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.guide__subtitle {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.promo2 {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .promo2 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .promo2 {
    padding-top: 20px;
  }
}
.promo2 .promo__content {
  padding: 60px 0 60px 80px;
  max-width: 620px;
}
@media screen and (max-width: 75rem) {
  .promo2 .promo__content {
    max-width: 400px;
  }
}
@media screen and (max-width: 48rem) {
  .promo2 .promo__content {
    padding: 40px 30px;
    max-width: none;
  }
}
.promo2 .promo__text {
  margin-top: 20px;
}
.promo2 .promo__text .list_check li:before {
  background-image: url("../images/list-check_blue.svg");
  top: 2px;
}
.promo2 .promo__text li b {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: #0EAAF5;
}
.promo2 .promo__text li span {
  display: block;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 11px;
}
.promo2 .promo__text p {
  margin-top: 30px;
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.faq {
  background: #E4F6FF;
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 60rem) {
  .faq {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .faq {
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.faq__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
}
.faq__title b {
  font-weight: inherit;
  color: #0EAAF5;
}
@media screen and (max-width: 86rem) {
  .faq__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 48rem) {
  .faq__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}
.faq__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 16px 26px;
  align-items: flex-start;
}
@media screen and (max-width: 48rem) {
  .faq__grid {
    margin-top: 20px;
  }
}
.faq-item {
  flex: 0 0 calc(50% - 26px / 2);
  padding: 24px 20px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 60rem) {
  .faq-item {
    flex: 0 0 100%;
  }
}
.faq-item__head {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  padding-right: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.faq-item__head:after {
  content: '';
  background-color: #0000;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIgNVYxMk0xMiAxMlYxOU0xMiAxMkg1TTEyIDEySDE5IiBzdHJva2U9IiMyNTI0MzIiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4K);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(0);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -12px;
}
.faq-item.open .faq-item__head:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNSAxMkgxMkgxOSIgc3Ryb2tlPSIjMjUyNDMyIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+Cg==);
}
.faq-item__body {
  padding-top: 16px;
  color: #8987A1;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.diet2 {
  padding-top: 100px;
}
@media screen and (max-width: 60rem) {
  .diet2 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .diet2 {
    padding-top: 20px;
  }
}
.diet2 .diet__title {
  font-family: Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.28px;
  text-align: left;
}
.markets {
  margin-top: 100px;
}
@media screen and (max-width: 60rem) {
  .markets {
    margin-top: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .markets {
    margin-top: 20px;
  }
}
.markets__wrap {
  border-radius: 30px;
  background: #FFEBE1 url("../images/orange_orange.svg") no-repeat left -200px bottom -200px;
  background-size: 800px 800px;
  padding: 180px 40px;
}
@media screen and (max-width: 48rem) {
  .markets__wrap {
    background: #FFEBE1 url("../images/orange_orange.svg") no-repeat left -100px bottom -100px;
    background-size: 500px 500px;
    padding: 80px 30px;
  }
}
.markets__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 48rem) {
  .markets__title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
.markets__subtitle {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  color: #000;
  margin-top: 20px;
}
.markets__row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 48rem) {
  .markets__row {
    margin-top: 40px;
  }
}
.markets__row .market {
  display: block;
  flex: 0 0 calc(25% - 30px * 3 / 4);
  max-width: 296px;
}
@media screen and (max-width: 60rem) {
  .markets__row .market {
    flex: 0 0 calc(50% - 30px * 1 / 2);
  }
}
.markets__row .market img {
  display: block;
  max-width: 100%;
  height: auto;
}
.reviews {
  margin-top: 100px;
  background: #E4F6FF;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 60rem) {
  .reviews {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 48rem) {
  .reviews {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.reviews__title {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 48rem) {
  .reviews__title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
.reviews__list {
  display: flex;
  flex-direction: row;
  gap: 3px;
  margin-top: 40px;
  overflow: hidden;
}
.reviews .owl-carousel.owl-loaded.reviews__list {
  overflow: visible;
}
.reviews .owl-carousel.owl-loaded.reviews__list .owl-stage-outer {
  overflow: visible;
}
.reviews__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.reviews__nav button {
  padding: 0;
  border: 0;
  outline: none;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.reviews__nav button svg {
  display: block;
  height: 60px;
  width: 60px;
}
.review {
  display: flex;
  flex-direction: column;
  padding: 45px;
  border-radius: 30px;
  background-color: #fff;
  border: 1px solid #EAEAEA;
  width: 40vw;
  flex: 0 0 40vw;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
}
@media screen and (max-width: 60rem) {
  .review {
    width: 70vw;
    flex: 0 0 70vw;
  }
}
@media screen and (max-width: 35rem) {
  .review {
    width: auto;
    flex: 0 0 90vw;
  }
}
.review__title {
  font-family: Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 10px;
}
.review__text {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
.review__author {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  margin-top: auto;
}
.footer {
  padding-top: 60px;
  margin-top: 80px;
  padding-bottom: 60px;
  border-top: 1px solid #00000033;
}
.footer__main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 60rem) {
  .footer__main {
    flex-direction: column;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__contact {
  flex: 0 0 40%;
  color: #A6A7AB;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 60rem) {
  .footer__contact {
    flex: 1;
  }
}
.footer__bottom {
  border-top: 1px solid #00000033;
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #A6A7AB;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  gap: 20px;
}
.footer a {
  color: #A6A7AB;
}
.footer a:hover {
  text-decoration: underline;
}
.atricle .h1 {
  font-size: 40px;
}
.atricle .h2 {
  font-size: 30px;
}
.atricle .h1,
.atricle .h2 {
  color: #0EAAF5;
  margin-top: 20px;
}
.atricle .h1 {
  text-align: center;
}
.atricle ul {
  list-style: disc!important;
  margin-left: 20px;
}
.atricle ul li {
  list-style: disc!important;
}
/*# sourceMappingURL=style.css.map */