@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 76, 61, 0);
  }
}
body, button {
  font-family: "Montserrat", system-ui;
}

* {
  box-sizing: border-box;
}

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

.hg {
  color: #ED1C24;
}

.hgb {
  color: #7CDDFB;
}

button {
  border: none;
}

.section-title {
  font-family: "Bebas Neue", system-ui;
  font-weight: 500;
  font-size: 68px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  color: #160F3E;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  .section-title {
    font-size: 48px;
  }
}

.section-button {
  display: block;
  font-weight: 800;
  font-size: 32px;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  background: #ED1C24;
  text-align: center;
  color: #FFF;
  line-height: 150%;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid #ED1C24;
  transition: background-color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: pulse 1s infinite;
  width: fit-content;
  height: fit-content;
  margin-inline: auto;
}
.section-button span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  text-transform: none;
}
.section-button:hover {
  animation: none;
  background-color: transparent;
  color: #ED1C24;
  border-color: #ED1C24;
}
.section-button:hover span {
  color: #ED1C24;
}
@media screen and (max-width: 1100px) {
  .section-button {
    font-size: 20px;
  }
}

.footer-privacy {
  margin-top: 20px;
  margin-bottom: 14px;
  color: #160F3E;
}

.footer-privacy a {
  text-decoration: none;
  color: #160F3E;
}

.header {
  position: relative;
  width: 100%;
}
.header__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.header__top {
  width: 100%;
  background: #7CDDFB;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #160F3E;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  padding: 6px 12px;
}
.header__bottom {
  display: flex;
  background: #fff;
  padding: 8px;
}
.header__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
    align-items: center;
}
.header__flag-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__flag-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  max-width: 288px;
  color: #160F3E;
}
.header__text {
  max-width: 375px;
  color: #160F3E;
}
.header__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  font-style: italic;
  margin-bottom: 4px;
}
.header__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
}
.header__button {
  font-weight: 800;
  font-size: 18px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  background: #ED1C24;
  text-align: center;
  color: #FFF;
  line-height: 150%;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
.header__button:hover {
  background: #a30909;
}

.container-header {
  max-width: 1314px;
}

@media screen and (max-width: 1430px) {
  .header__label {
    width: 90px;
  }
  .header__text {
    display: none;
  }
  .header__logo {
    margin-left: 30px;
  }
}
@media screen and (max-width: 978px) {
  .header__button {
    font-size: 14px;
    width: 220px;
  }
  .header__flag-text {
    font-size: 10px;
  }
  .header__flag {
    width: 38px;
  }
  .header__logo {
    width: 90px;
  }
  .header__bottom {
    padding: 4px;
  }
  .header__top-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 910px) {
  .form-info__top-label-main-text {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 765px) {
  .header__flag-wrap {
    gap: 8px;
  }
}
@media screen and (max-width: 540px) {
  .header__label {
    display: none;
  }
  .header__logo {
    margin-left: 0;
  }
}
@media screen and (max-width: 516px) {
  .header__button {
    display: none;
  }
  .header__bottom {
    padding: 12px 10px;
  }
  .header__logo {
    margin-right: 18px;
  }
  .header__top {
    gap: 8px;
  }
}
@media screen and (max-width: 420px) {
  .header__logo {
    display: none;
  }
}
.header--foot .header__bottom {
  background-color: #7CDDFB;
}
.header--foot .header__bottom, .header--foot .header__flag-text, .header--foot .header__text {
  color: #fff;
}
.header--foot .header__text .hg {
  color: #160F3E;
}

.form-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
.form-section__background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #121432 0%, #373D98 100%);
  z-index: 1;
}
.form-section__background-image {
  position: absolute;
  width: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 2 !important;
}
.form-section .container {
  display: flex;
  position: relative;
  z-index: 3;
  padding-bottom: 20px;
}

.form-info {
  width: calc(100% - 420px);
}
.form-info__top {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.form-info__picture-wrap {
  position: relative;
  max-width: 100px;
  width: 100%;
}
.form-info__picture {
  position: absolute;
  z-index: 0;
  top: 0;
  left: -520px;
}
.form-info__body {
  max-width: 620px;
  margin-top: 14px;
  margin-right: 16px;
  z-index: 2;
}
.form-info__title {
  font-family: "Bebas Neue", system-ui;
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
}
.form-info__subtitle {
  font-family: "Bebas Neue", system-ui;
  font-weight: 500;
  font-size: 54px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  margin-bottom: 16px;
}
@media screen and (max-width: 1100px) {
  .form-info__subtitle {
    font-size: 48px;
  }
}
.form-info__title-label {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 202, 244, 0) -1.56%, #00CAF4 8.1%);
  height: 60px;
  width: calc(100% + 90px);
  margin-left: -74px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding: 0 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.form-info__label-text-hg {
  color: #160F3E;
}
.form-info__list {
  font-style: italic;
  font-weight: 600;
  font-size: 25px;
  line-height: 150%;
  color: #fff;
  text-align: right;
  margin-bottom: 24px;
  max-width: 415px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .form-info__list {
    font-size: 16px !important;
  }
}
.form-info__list-item {
  display: flex;
  align-items: center;
    font-size: 16px;
}
.form-info__list-item:not(:last-child) {
  margin-bottom: 20px;
}
.form-info__list-item-gh {
  color: #7CDDFB;
}
.form-info__check {
  margin-left: 20px;
}
.form-info__bottom {
  display: flex;
  position: relative;
}
.form-info__labels {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}
.form-info__top-label {
  background-image: url("../img/label-bg.svg");
  background-repeat: no-repeat;
  width: 100%;
  background-position: right center;
  font-style: italic;
  font-weight: 700;
  padding: 9px 20px 9px;
  position: relative;
}
.form-info__top-label-main-text {
  text-transform: uppercase;
  font-size: 32px;
  color: #160F3E;
  text-shadow: 2px 2px 0px #FFD600;
}
.form-info__top-label-bottom-text {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.01em;
  font-style: italic;
  font-weight: 700;
  font-size: 23px;
  line-height: 100%;
  color: #FFF;
  text-shadow: 1px 1px 0px #FC7716;
}
.form-info__bottom-label {
  display: flex;
  padding-right: 20px;
  justify-content: flex-end;
  gap: 10px;
  text-align: right;
  margin-top: 20px;
    flex-direction: column;
}
.form-info__bottom-subtitle-top {
  font-size: 12px;
  line-height: 150%;
  font-weight: 400;
  color: #FFF;
}
.form-info__bottom-subtitle-bottom {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #FFF;
}
.prod-img-wrap {
  position: relative;
  max-width: 440px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -152px;
}

.prod-img {
  max-width: 100%;
}

.product-labels {
  position: absolute;
  left: 0;
  top: -30px;
}

.form-wrap {
  max-width: 420px;
  width: 100%;
  background: #fff;
  height: fit-content;
  border: 1px solid #160F3E;
  border-radius: 0px 0px 16px 16px;
}

.form-header {
  width: 100%;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  background: linear-gradient(180deg, #00CAF4 0%, #5300DC 136.29%);
}
.form-header__view-count {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.form-header__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .form-header__title {
    font-size: 22px !important;
  }
}
.form-header__title-bold {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.form-header-triangle {
  display: block;
  margin: 0 auto;
}

.input-wrap {
  position: relative;
}
.input-wrap.name:after {
  content: "";
  background: url("../img/name-input.svg") no-repeat 100%;
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 11px 16px 0 0;
  z-index: 55555555555555560000;
}
.input-wrap.phone:after {
  content: "";
  background: url("../img/phone-input.svg") no-repeat 100%;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 11px 16px 0 0;
}

.form {
  display: flex;
  flex-direction: column;
}
.form__body {
  display: flex;
  flex-direction: column;
  padding: 36px 16px 16px;
  gap: 36px;
}
.form__prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
.form__input {
  display: block;
  width: 100%;
  height: 55px;
  border: 1px solid #8F8E8E;
  border-radius: 10px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #8F8E8E;
}
.form__button {
  font-weight: 800;
  font-size: 32px;
  padding: 16px;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  background: #ED1C24;
  text-align: center;
  color: #FFF;
  line-height: 150%;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid #ED1C24;
  transition: background-color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: pulse 1s infinite;
}
.form__button span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  text-transform: none;
}
.form__button:hover {
  animation: none;
  background-color: transparent;
  color: #ED1C24;
  border-color: #ED1C24;
}
.form__button:hover span {
  color: #ED1C24;
}
.form__secure-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 640px) {
  .form__secure-text {
    font-size: 12px;
  }
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.x_currency_old {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  color: #160F3E;
  text-decoration: line-through;
}

.x_currency {
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  color: #ED1C24;
}

@media screen and (max-width: 1310px) {
  .form-info__title {
    font-size: 78px;
  }
  .form-info__subtitle {
    font-size: 40px;
  }
  .form-info__title-label {
    font-size: 16px;
  }
  .form-info__list {
    font-size: 20px;
  }
  .form-info__check {
    width: 24px;
    margin-left: 14px;
  }
  .form-info__list-item:not(:last-child) {
    margin-bottom: 16px;
  }
  .form-info__top-label-main-text {
    font-size: 34px;
  }
  .form-info__top-label-bottom-text {
    font-size: 20px;
  }
  .prod-img {
    max-width: 320px;
  }
  .product-labels {
    max-width: 70px;
  }
  .prod-img-wrap {
    max-width: 380px;
  }
  .prod-img-wrap {
    margin-top: -7px;
  }
}
@media screen and (max-width: 1124px) {
  .form-info__bottom {
    flex-direction: column;
    align-items: center;
  }
  .product-labels {
    left: 22px;
    top: 0;
  }
  .form-info__picture {
    left: -395px;
  }
  .form-info__body {
    position: relative;
  }
  .form-info__title-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 864px) {
  .form-section .container {
    flex-direction: column;
  }
  .form-info__body {
    max-width: 342px;
    margin-inline: auto;
  }
  .form-info__labels {
    max-width: 418px;
    width: 100% !important;
  }
  .form-info__bottom-label {
    width: 100% !important;
    justify-content: center;
  }
  .form-info__top-label {
    max-width: 100% !important;
    width: 100%;
  }
  .form-info {
    width: 100%;
  }
  .form-wrap {
    margin-inline: auto;
  }
  .form-info__labels {
    width: fit-content;
  }
  .prod-img-wrap {
    margin-bottom: 20px;
  }
  .form-info__top {
    flex-direction: column;
    align-items: center;
  }
  .form-info__bottom-label {
    margin-bottom: 20px;
      flex-direction: row;
  }
  .form-info__picture {
    filter: opacity(0.3);
    margin-inline: auto;
    max-width: 400px;
    right: 0;
    left: 0;
  }
  .prod-img {
    max-width: 260px;
  }
  .prod-img-wrap {
    justify-content: center;
  }
  .product-labels {
    display: none;
  }
  .form-info__picture-wrap {
    max-width: initial !important;
  }
  .form-info__title-label {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .form__lock-img {
    width: 20px;
  }
  .form__secure-text {
    gap: 8px;
  }
  .form__body {
    gap: 20px;
  }
  .form__body {
    padding-top: 24px;
  }
}
@media screen and (max-width: 450px) {
  .form-info__top-label-main-text {
    font-size: 28px;
  }
  .form-info__top-label-bottom-text {
    font-size: 18px;
  }
  .form-info__title-label {
    font-size: 14px;
  }
  .form-info__abs-logo {
    max-width: 160px;
  }
}
.symptoms__container {
  max-width: 1295px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  background-image: url("../img/symp-bg.svg");
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
.symptoms__title {
  font-family: "Bebas Neue", system-ui;
  font-weight: 500;
  font-size: 68px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  color: #160F3E;
  padding-top: 70px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .symptoms__title {
    font-size: 48px;
  }
}
.symptoms__body {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1158px;
  width: 100%;
  padding: 0 10px 70px;
  margin-inline: auto;
  position: relative;
  flex-wrap: wrap;
}
.symptoms__body:before {
  content: url("../img/symp-line.png");
  background: url("../img/fade-triangle.svg");
  display: flex;
  justify-content: center;
  max-width: 90%;
  position: absolute;
  object-fit: cover;
  top: 25%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.symptom {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}
.symptom__img-wrap {
  margin-bottom: 16px;
  display: block;
  position: relative;
}
.symptom__img-wrap:before {
  content: "";
  background: url("../img/fade-triangle.svg");
  display: block;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -10px;
  left: 0;
  margin-inline: auto;
}
.symptom__img {
  width: 100%;
}
.symptom__caption {
  min-width: 200px;
  width: 100%;
  max-width: 250px;
  background: #7CDDFB;
  color: #160F3E;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  min-height: 132px;
}
@media screen and (max-width: 1100px) {
  .symptom__caption {
    font-size: 18px;
  }
}

@media screen and (max-width: 910px) {
  .symptoms__body {
    display: flex;
    justify-content: center;
  }
  .symptoms__body:before {
    display: none;
  }
}
.formula {
  background: linear-gradient(180deg, #121432 0%, #373D98 100%);
  padding-top: 40px;
}
.formula__container {
  max-width: 1400px;
  width: 100%;
  padding: 0 10px;
  margin-inline: auto;
}
.formula__header {
  max-width: 1266px;
  width: 100%;
  margin: 0 auto 36px;
}
.formula__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .formula__title {
    font-size: 40px;
  }
}
.formula__title .formula__item-img {
  display: block;
}
.formula__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .formula__subtitle {
    font-size: 20px;
  }
}
.formula__wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.formula__img {
  position: absolute;
  bottom: 0;
  left: -30%;
  z-index: 0;
}
.formula__body {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.formula__body-title {
  font-weight: 800;
  font-size: 46px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .formula__body-title {
    font-size: 38px;
  }
}
.formula__body-subtitle {
  font-size: 34px;
  line-height: 100%;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #7CDDFB;
}
@media screen and (max-width: 1100px) {
  .formula__body-subtitle {
    font-size: 28px;
  }
}
.formula__block-title {
  font-size: 34px;
  line-height: 100%;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 1100px) {
  .formula__block-title {
    font-size: 28px;
  }
}
.formula__item {
  display: flex;
  align-items: center;
}
.formula__item:not(:last-child) {
  margin-bottom: 16px;
}
.formula__item-img {
  width: 120px;
  height: auto;
  margin-right: 16px;
}
.formula__item-body {
  width: 100%;
  max-width: 890px;
}
.formula__item-title {
  background: linear-gradient(180deg, #ED1C24 0%, #B30007 100%);
  border-radius: 10px 0px 0px 10px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 28px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 1100px) {
  .formula__item-title {
    font-size: 24px;
  }
}
.formula__item-title img {
  display: none;
}
.formula__item-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  margin-inline: 8%;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .formula__item-text {
    font-size: 20px;
  }
}
.formula__footer {
  height: 126px;
  padding: 28px 10px;
  background: #7CDDFB;
}
.formula__footer-container {
  display: flex;
  max-width: 1720px;
  padding: 0 10px;
  margin-inline: auto;
  gap: 30px;
}
.formula__product-img {
  max-width: 380px;
  width: 100%;
  transform: translateY(-56%);
}
.formula__button {
  width: fit-content;
  height: fit-content;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
}

@media screen and (max-width: 1484px) {
  .formula__footer {
    height: auto;
  }
  .formula__footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .formula__button {
    position: static;
  }
  .formula__product-img {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1284px) {
  .formula__img {
    position: static;
    max-width: 400px;
    width: 70%;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%);
    margin-bottom: 18px;
  }
  .formula__wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 630px) {
  .formula__item {
    align-items: flex-start;
  }
  .formula__item > .formula__item-img {
    display: none;
  }
  .formula__title {
    font-size: 34px;
  }
  .formula__subtitle {
    line-height: 150%;
  }
  .formula__item-title {
    display: flex;
    align-items: center;
    padding: 10px !important;
  }
  .formula__item-title .formula__item-img {
    display: block;
    margin-right: 8px;
    width: 50px;
  }
}
.table-section {
  margin-top: 80px;
  width: 100%;
  padding: 0 10px;
}

.table-wrap {
  margin-bottom: 120px;
  scrollbar-color: #160F3E #7CDDFB;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 1320px;
  margin-inline: auto;
}
.table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 6px;
}
.table__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background: #F7F7F7;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #160F3E;
  text-align: center;
  padding: 10%;
  gap: 16px;
}
@media screen and (max-width: 1100px) {
  .table__cell {
    font-size: 16px;
  }
}
.table__cell:first-child {
  color: #fff;
  background: linear-gradient(90deg, #121432 0%, #373D98 100%);
  font-weight: 700;
  width: 100%;
  background-size: 100%;
}
.table__cell:nth-child(2) {
  background: #7CDDFB;
  font-weight: 700;
}

@media screen and (max-width: 1100px) {
  .table-wrap {
    overflow-x: auto;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 3%);
  }
  .table {
    flex-direction: row;
    min-width: 1080px;
  }
  .table__row {
    display: flex;
    flex-direction: column;
    width: 200px;
  }
  .table__cell:first-child {
    max-height: 86px;
    padding: 14px;
    background: linear-gradient(180deg, #121432 0%, #373D98 100%);
  }
  .table__cell:nth-child(2) {
    justify-content: center;
  }
  .table__cell:not(:first-child):not(:nth-child(2)) {
    height: 100px;
  }
}
.ingredients {
  margin-bottom: 60px;
    padding: 10px;
}
.ingredients__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
  gap: 20px;
}
.ingredient {
  display: flex;
}
.ingredient__body {
  height: 100%;
  max-width: 100%;
}
.ingredient__image {
  width: 200px;
  height: 230px;
  margin-right: -100px;
  position: relative;
  z-index: 1;
}
.ingredient__name {
  padding: 12px 16px 12px 116px;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  background: #7CDDFB;
  border-radius: 0px 16px 0px 0px;
  color: #160F3E;
  height: 58px;
}
@media screen and (max-width: 1100px) {
  .ingredient__name {
    font-size: 24px;
  }
}
.ingredient__description {
  padding: 16px 30px 16px 116px;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #160F3E;
  background: #F7F7F7;
  border-radius: 0px 0px 16px 0px;
  height: calc(100% - 58px);
}
@media screen and (max-width: 1100px) {
  .ingredient__description {
    font-size: 16px;
  }
}

@media screen and (max-width: 1120px) {
  .ingredients__body {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 740px;
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  .ingredients__title {
    margin-bottom: 38px;
  }
  .ingredient__image {
    max-width: 100px;
    max-height: 115px;
    width: 100%;
    height: 100%;
    transform: translateY(-30px);
  }
  .ingredient__name {
    height: 68px;
    padding: 3px 10px 3px 110px;
    display: flex;
    align-items: center;
  }
  .ingredient__description {
    padding-left: 16px;
    padding-top: 28px;
    height: calc(100% - 68px);
  }
}
.results-section {
  background-image: url("../img/results-bg.svg");
  background-color: #F7F7F7;
  background-size: cover;
    padding: 10px;
  padding-bottom: 60px;
}

.results-title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 65px;
  color: #ED1C24;
}
@media screen and (max-width: 1100px) {
  .results-title {
    font-size: 40px;
  }
}

.results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1070px;
  padding: 0 10px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.result {
  border-radius: 16px;
  background: #FFFFFF;
  height: 100%;
}
.result__header {
  display: flex;
  position: relative;
  height: 120px;
  align-items: center;
  padding: 18px 18px 18px 0;
  border: 1px solid #160F3E;
  border-radius: 16px 16px 0 0;
  border-bottom: 0px;
}
.result__img-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 133px;
  max-height: 155px;
  margin-left: 16px;
  margin-right: 16px;
}
.result__img-wrap:after {
  content: url("../img/results-triangle.svg");
  position: absolute;
  right: 0;
  bottom: -48px;
  left: 0;
  margin-inline: auto;
  width: fit-content;
}
.result__img {
  min-width: 133px;
  min-height: 155px;
  width: 133px;
  height: 155px;
  transform: translateY(-50px);
  position: relative;
  z-index: 1;
}
.result__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  font-style: italic;
  color: #160F3E;
  width: 100%;
}
.result__body {
  background: linear-gradient(180deg, #121432 0%, #373D98 100%);
  border-radius: 0 0 16px 16px;
  height: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
  padding: 32px 26px 0;
  line-height: 150%;
}
@media screen and (max-width: 1100px) {
  .result__text {
    font-size: 16px;
  }
}
.result__footer {
  display: flex;
  margin-top: 16px;
}
.result__user {
  background-image: url("../img/results-card-footer.png");
  background-size: cover;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #160F3E;
  max-width: 223px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 42px;
  padding-left: 28px;
}
.result__rating {
  max-width: 92px;
}

@media screen and (max-width: 1010px) {
  .results {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.experience-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.experience-title {
  margin-bottom: 20px;
}

.experience {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.experience-item {
  background: #FFFFFF;
  border: 1px solid #160F3E;
  border-radius: 16px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 386px;
  width: 100%;
  text-align: center;
  color: #160F3E;
}
.experience-item__img {
  max-width: 182px;
  width: 100%;
}
.experience-item__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  max-width: 295px;
}
@media screen and (max-width: 1100px) {
  .experience-item__title {
    font-size: 20px !important;
  }
}
.experience-item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  max-width: 295px;
}

@media screen and (max-width: 960px) {
  .experience-item__img {
    max-width: 100px;
  }
}
@media screen and (max-width: 830px) {
  .experience-item {
    padding: 20px 14px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .experience {
    flex-direction: column;
    align-items: center;
  }
  .experience-item {
    padding: 12px 16px 28px;
  }
}
.quote {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.quote__img {
  max-width: 338px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-right: -40px;
}
.quote__body {
  background: #FFFFFF;
  border: 1px solid #160F3E;
  border-radius: 14px;
  padding: 20px 40px 20px 80px;
  color: #160F3E;
}
.quote__text {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  margin-bottom: 16px;
  max-width: 860px;
  line-height: 150%;
}
@media screen and (max-width: 1100px) {
  .quote__text {
    font-size: 22px !important;
  }
}
.quote__name {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  margin-bottom: 5px;
}
@media screen and (max-width: 1100px) {
  .quote__name {
    font-size: 24px;
  }
}
.quote__position {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
}
@media screen and (max-width: 1100px) {
  .quote__position {
    font-size: 18px;
  }
}

@media screen and (max-width: 906px) {
  .quote__text {
    font-size: 20px !important;
    line-height: 130%;
  }
  .quote__name {
    font-size: 20px !important;
  }
  .quote__position {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 906px) {
  .quote {
    flex-direction: column;
  }
  .quote__img {
    margin-inline: auto;
    margin-bottom: -30px;
    width: 220px;
  }
  .quote__body {
    max-width: 700px;
    margin-inline: auto;
    padding-top: 40px;
    padding: 40px 20px 24px;
  }
}
.faq-section {
  margin-bottom: 60px;
}

.faq-subtitle {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  color: #160F3E;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .faq-subtitle {
    font-size: 24px !important;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  overflow: hidden;
  background: #F7F7F7;
  border-radius: 16px;
}
.faq-item.active .faq-item__body {
  max-height: 340px;
  padding: 40px 46px 22px;
}
.faq-item.active .faq-item__arrow {
  transform: rotate(180deg);
}
.faq-item__header {
  background: #7CDDFB;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 46px;
  height: 92px;
  cursor: pointer;
}
.faq-item__header-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #160F3E;
  pointer-events: none;
}
@media screen and (max-width: 1100px) {
  .faq-item__header-text {
    font-size: 20px;
  }
}
.faq-item__arrow {
  pointer-events: none;
  transition: 0.3s;
}
.faq-item__body {
  max-height: 0;
  border-radius: 0px 0px 16px 16px;
  padding: 0 46px 0;
  transition: 0.6s;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  line-height: 150%;
}
@media screen and (max-width: 1100px) {
  .faq-item__body {
    font-size: 16px;
  }
}

@media screen and (max-width: 890px) {
  .faq-item__header {
    padding: 0 24px;
    height: 100px;
  }
  .faq-item__body {
    padding: 0 24px 0;
  }
  .faq-item.active .faq-item__body {
    padding: 30px 24px 18px;
  }
  .faq-item__arrow {
    width: 34px;
  }
}
.caution {
  background: #0E0F27;
  width: 100%;
  padding: 10px;
  max-width: 100%;
  overflow: hidden;
}
.caution__container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1205px;
  margin-inline: auto;
  gap: 50px;
}
.caution__img {
  z-index: 1;
  margin-left: 10px;
}
.caution__text {
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 110px;
  line-height: 100%;
  z-index: 1;
  color: #fff;
}

.caution-bg {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
}

@media screen and (max-width: 1100px) {
  .caution__text {
    font-size: 110px;
  }
}
@media screen and (max-width: 720px) {
  .caution {
    padding: 0;
  }
  .caution__text {
    font-size: 70px;
    text-align: center;
  }
  .caution__container {
    flex-direction: column;
    padding: 24px 10px;
    gap: 20px;
  }
  .caution-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-inline: auto;
    filter: brightness(40%);
  }
  .caution__img {
    max-width: 40%;
  }
}
.comments-title {
  margin-inline: auto;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  color: #160F3E;
  text-align: center;
  text-transform: uppercase;

}
@media screen and (max-width: 1100px) {
  .comments-title {
    font-size: 40px;
  }
}

.comments__footer, .comments-title {
  padding: 60px 10px;
  width: 100%;
  /*background-color: #EBEBEB;*/

}

/*# sourceMappingURL=style.css.map */
