html {
  font-family: "Inter", sans-serif;
}

/* HEADER */

.header {
  /* border-bottom: 1px solid var(--Blue, #3a83f8); */
  background: var(--White, #fff);
  position: relative;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid var(--standarts-stroke, #e5e5e1);
}

.header__top {
  background: var(--primary-yellow, #259ee4);
  padding: 10px 0;
}

.header__top .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__top a {
  text-decoration: underline;
  color: #fff;
}

.header__top-text {
  display: flex;
  flex-direction: row;
  gap: 8px;
  color: var(--texts-black, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.header__top-text p {
  color: var(--texts-black, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header__mid {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.header__select {
  position: relative;
}

@media screen and (max-width: 1199px) {
  .header__select {
    display: none;
  }

  .header__mid {
    display: none;
  }
}

.header__select-title {
  color: var(--texts-black, #28261b);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}

.header__select-title.desk::after {
  content: url("../images/icon/chevron-down.svg");
  display: none;
  position: absolute;
  right: -20px;
  top: 1px;
  transition: all 250ms ease;
}

.header__select-title.active::after {
  transform: rotate(-90deg);
  transition: all 250ms ease;
}

.header__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 56px;
  width: 100%;
  /*border-radius: 0px 0px 16px 16px;*/
  border-right: 1px solid var(--standarts-stroke, #e5e5e1);
  border-bottom: 1px solid var(--standarts-stroke, #e5e5e1);
  border-left: 1px solid var(--standarts-stroke, #e5e5e1);
  background: var(--standarts-white, #fff);
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 250ms ease;
}

.header__list.active {
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease;
}

.header__sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__item a {
  color: var(--texts-black, #28261b);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.header__link {
  color: var(--texts-black, #28261b);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.header__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 28px;
  border-radius: 10px;
  background: var(--primary-yellow, #259ee4);
}

@media screen and (max-width: 991px) {
  .header__button {
    display: none;
  }
}

.header__button span {
  color: var(--texts-black, #fff);

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}

.header__button-mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .header__button-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
  }
}

.header__button-mobile span {
  height: 2px;
  width: 24px;
  background: #28261b;
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(2) {
  width: 0px;
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  transition: all 250ms ease;
}

/* HEADER MOBILE */

.header__mobile-menu {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  transition: all 250ms ease;
}

.menutop {
  top: 75px;
}

.header__mobile-menu.active {
  transform: translateX(0%);
  transition: all 250ms ease;
}

@media all and (min-width: 480px) {
  .header__mobile-menu.active .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.header__mobile-menu .header__select,
.header__mobile-menu .header__button {
  display: block;
}

.header__mobile-menu .header__button {
  width: 260px;
}

.header__mobile-menu .header__select-title {
  display: inline-flex;
}

.header__mobile-menu .header__list {
  position: relative;
  top: -10px;
  left: 0;
  opacity: 1;
  visibility: visible;
  margin: 0 0 12px;
}

@media screen and (max-width: 480px) {
  .header__mobile-menu .header__list,
  .header__mobile-menu .header__button {
    width: 100%;
  }

  .header__mobile-menu .header__button {
    text-align: center;
  }
}

/**************TEXT**************/

h1 {
  color: var(--texts-black, #28261b);

  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px; /* 117.241% */
  letter-spacing: -1.16px;
}

h2 {
  color: var(--texts-black, #28261b);

  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
  letter-spacing: -0.96px;
}

h3 {
  color: var(--texts-black, #28261b);

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.64px;
}

h4 {
  color: var(--texts-black, #28261b);

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: -0.48px;
}

h5 {
  color: var(--texts-black, #28261b);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.364%;
}

h6 {
  color: var(--texts-black, #28261b);

  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  letter-spacing: -0.36px;
}

p {
  color: var(--texts-light, #7e7c74);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    text-align: left;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }
}

/**************TEXT**************/

.btn {
  border-radius: 16px;
  background: var(--primary-yellow, #259ee4);
  color: #fff;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 16px 28px;
}

/* Bonengem */

.bonengem {
  padding: 100px 0 100px;
  background: url("../images/bl1_bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bonengem p,
.bonengem h1 {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .bonengem {
    padding-bottom: 0;
  }

  .bonengem .overlay {
    /* position: absolute;
    top: 67px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #828282); */
  }
}

@media screen and (max-width: 480px) {
  .bonengem {
    padding: 32px 0 0;
  }
}

.bonengem__content {
  display: flex;
  flex-direction: row;
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}

.bonengem__left {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .bonengem__content {
    flex-direction: column;
    align-items: center;
  }

  .bonengem__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.bonengem__info {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .bonengem__info {
    order: 1;
  }
}

.bonengem__title {
  color: var(--texts-black, #28261b);
  /* headers/header - 1 */

  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 115.625%;
  letter-spacing: -1.28px;
  margin-bottom: 32px;
}

@media screen and (max-width: 480px) {
  .bonengem__title {
    font-size: 32px;
  }
}

.bonengem__text {
  color: var(--texts-light, #7e7c74);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 136.364%;
  margin-bottom: 32px;
}

@media screen and (max-width: 480px) {
  .bonengem__text {
    font-size: 18px;
  }
}

.bonengem__presentation {
  position: absolute;
  right: 0;
  width: 968px;
}

@media screen and (max-width: 991px) {
  .bonengem__presentation {
    /* grid-area: 3 / 1 / 4 / 2;
    order: 3;
    width: 100%;
    padding-bottom: 120px; */
    position: relative;
    width: 100%;
  }
}

.bonengem__image {
  width: 450px;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .bonengem .container {
    width: 100%;
  }

  .bonengem__image {
    width: 100%;
  }
}

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

.bonengem__img:nth-child(1) {
  margin-top: 0px;
}

@media screen and (max-width: 991px) {
  .bonengem__img:nth-child(1) {
    /* margin-top: 0px;
    position: relative;
    top: 120px; */
  }
}

@media screen and (max-width: 480px) {
  .bonengem__img:nth-child(1) {
    top: 63.75px;
  }
}

.bonengem__img:nth-child(2) {
  margin-left: -80px;
}

@media screen and (max-width: 480px) {
  .bonengem__img:nth-child(2) {
    margin-left: -43px;
  }
}

/* FORM */

.bonengem__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .bonengem .form-container {
    order: 3;
    margin-bottom: 24px;
  }

  .bonengem__form {
    flex-direction: row-reverse;
    order: 2;
  }
}

.form-container {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--standarts-stroke, #e5e5e1);
  background: var(--standarts-white, #fff);
  backdrop-filter: blur(15px);
  /*overflow: hidden;*/
  max-width: 486px;
}

.form-container.last {
  max-width: 589px;
}

.form__promo {
  border: 1px solid var(--Red, #ff0024);
  background: var(--Red, #ff0024);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.form__end-promo br {
  display: none;
}

.form__start-promo,
.form__end-promo {
  color: var(--White, #fff);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__start-promo span,
.form__end-promo span {
  border-radius: 4px;
  padding: 4px;
  background: #fff;
  display: inline-flex;
  margin: 0 6px;
  justify-content: center;
  align-items: center;

  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 480px) {
  .form__end-promo br {
    display: block;
  }

  .form__end-promo span {
    margin-top: 6px;
  }
}

.form__box {
  padding: 24px;
}

.form__price {
  border-radius: 16px;
  border: 1.5px dashed var(--standarts-red, #f42f29);
  background: var(--standarts-red-light, rgba(244, 47, 41, 0.1));
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--standarts-red, #f42f29);

  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 18px;
}

.form__old-price {
  color: var(--Black, #235500);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__old-price span {
  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 12px;
}

.form__new-price {
  color: var(--Black, #235500);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__new-price span {
  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  margin-left: 12px;
}

@media screen and (max-width: 480px) {
  .form__new-price,
  .form__new-price span {
    font-size: 22px;
  }
}

.form__title {
  margin-bottom: 18px;
  color: var(--texts-black, #28261b);
  text-align: center;

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 38.4px */
  letter-spacing: -0.64px;
}

@media screen and (max-width: 480px) {
  .form__title {
    font-size: 24px;
  }
}

.form__input-wrapper {
  position: relative;
  min-width: 100%;
  margin-bottom: 16px;
}

.form__input-wrapper input {
  width: 100%;
  height: 46px;
  padding: 12px 16px;
}

.form__input-wrapper input::placeholder {
  color: #757575;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.form__btn {
  border-radius: 16px;
  background: var(--primary-yellow, #259ee4);
  display: flex;
  height: 56px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;

  color: var(--texts-black, #fff);
  text-align: center;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.form__footer {
  border: 1px solid var(--Red, #ff0024);
  background: var(--Red, #ff0024);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.form__top {
  color: var(--White, #fff);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__bottom {
  border-radius: 4px;
  background: #fff;
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.last__last--name {
  display: none;
}

.input__email {
  display: none;
}

.form__btn {
  margin-bottom: 10px;
}

/* .btn:hover {
  background: linear-gradient(90deg, #3a83f8 0%, #3a83f8 100%);
} */

/* .btn:active {
  border-radius: 10px;
  background: linear-gradient(90deg, #2553c3 0%, #2553c3 100%);
} */

/**************SECTION**************/

.section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section__container > p {
  text-align: center;
}

.section__top-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.section__top-container h5 {
  max-width: 800px;
}

@media screen and (max-width: 580px) {
  .section__container {
    gap: 24px;
  }

  .section__top-container {
    gap: 16px;
    text-align: start;
  }
}

.section__bot-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

/**************SECTION**************/

/**************PAIN**************/

.pain {
  padding: 100px 0 50px 0;
  background: var(--White, #fff);
}

.pain__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.pain__item {
  display: flex;
  width: 384px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
}

.pain__item:last-of-type {
  padding: 0;
}

.pain__item:last-of-type .pain__item-image {
  width: 100%;
}

.pain__item h4 {
  margin-bottom: 16px;
}

.pain__item-text {
  height: 100%;
}

@media screen and (max-width: 580px) {
  .pain {
    padding: 32px 0 0;
  }

  .pain__items-container {
    gap: 16px;
  }

  .pain__item {
    padding: 16px;
    gap: 16px;
    width: 100%;
  }

  .pain__item.last {
    display: flex;
    align-items: center;
    padding-left: 0px;
  }

  .pain__item h4 {
    margin-bottom: 8px;
  }
}

/**************PAIN**************/

/**************WHO**************/

.who {
  padding: 50px 0 50px 0;
  background: var(--White, #fff);
}

.who__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.who__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #e8f1f4;
}

.who__item.wide {
  width: 588px;
}

.who__item-image {
  border-radius: 16px 16px 0 0;
  width: 100%;
}

.who__item-bot {
  padding: 24px;
  height: 100%;
}

.who__item h4 {
  margin-bottom: 16px;
}

@media screen and (max-width: 580px) {
  .who {
    padding: 32px 0 0;
  }

  .who__items-container {
    gap: 16px;
  }

  .who__item {
    padding: 0px;
    gap: 16px;
    width: 100%;
  }

  .who__item.wide {
    width: 100%;
  }

  .who__item h4 {
    margin-bottom: 8px;
  }

  .who__item-bot {
    padding: 16px;
  }
}

/**************WHO**************/

/**************WHY**************/

.why {
  padding: 50px 0 50px 0;
  background: var(--White, #fff);
}

.why__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.why__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e8f1f4;
  padding: 24px;
}

.why__item-image {
  border-radius: 8px;
}

.why__item-bigimage {
  border-radius: 8px;
  width: 100%;
}

.why__item h4 {
  margin-bottom: 16px;
}

@media screen and (max-width: 580px) {
  .why {
    padding: 32px 0 24px;
  }

  .why__items-container {
    gap: 16px;
  }

  .why__item {
    padding: 16px;
    gap: 16px;
    width: 100%;
  }

  .why__item h4 {
    margin-bottom: 8px;
  }
}

/**************WHY**************/

/**************UNIQUE**************/

.unique {
  padding: 50px 0 50px 0;
  background: var(--backgrounds-light, linear-gradient(187deg, #c7e3f3 5.69%, #fff 94.31%));
}

.unique__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
}

.unique__mid-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 588px;
}

.unique__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.unique__item-icon {
  width: 26px;
  height: 26px;
}

.unique__text-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unique__text-item-top {
  display: flex;
  gap: 8px;
}

.unique__text-item p {
  padding-left: 32px;
}

.unique__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e8f1f4;
  padding: 24px;
}

.unique__item-image {
  width: 384px;
}

.unique h3 {
  margin: 0 auto;
}

.unique__bot-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.unique__bot-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
  width: 384px;
}

.unique__bot-item h4 {
  margin-bottom: 16px;
}

.unique__bot-image {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1330px) {
  .unique__mid-container {
    align-items: center;
    justify-content: center;
  }

  .unique__text-item p {
    padding-left: 0px;
  }

  .unique__bot-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 580px) {
  .unique {
    padding: 32px 0 0;
  }

  .unique__bot-item {
    padding: 16px;
    width: 100%;
  }

  .unique__bot-item h4 {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 600px) {
  .unique__mid-container {
    width: 100%;
  }

  .unique__item-image {
    width: 100%;
    max-width: 200px;
  }
}

/**************UNIQUE**************/

/**************CHOOSE**************/

.choose {
  padding: 50px 0 50px 0;
  background: #fff;
}

@media screen and (max-width: 480px) {
  .choose {
    padding: 24px 0;
  }

  .choose__image {
    order: 1;
  }

  .choose__item-container {
    order: 2;
  }
}

.choose__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.choose__mid-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 588px;
}

.choose__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.choose__image {
  width: 384px;
  object-fit: contain;
}

.choose__item-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.choose__item-icon {
  width: 26px;
  height: 26px;
}

.choose__text-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choose__text-item-top {
  display: flex;
  gap: 8px;
}

.choose__text-item p {
  padding-left: 32px;
}

.choose__item {
  display: flex;
  width: 384px;
  height: 100%;
  max-height: 174px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e8f1f4;
  padding: 24px;
}

.choose__item-image {
  width: 588px;
}

.choose h3 {
  margin: 0 auto;
}

.choose__bot-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.choose__bot-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
  width: 384px;
}

.choose__bot-image {
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 1330px) {
  .choose__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .choose__item {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .choose {
    padding: 32px 0 0;
  }

  .choose__item-container {
    gap: 16px;
  }

  .choose__item {
    padding: 16px;
    gap: 8px;
  }

  .choose__bot-item {
    padding: 16px;
    width: 100%;
  }

  .choose__bot-item h4 {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 400px) {
  .choose__image {
    width: 100%;
  }
}

/**************CHOOSE**************/

/**************USE**************/

.use {
  padding: 50px 0 50px 0;
  background: #fffefa;
}

.use__image {
  width: 384px;
}

.use__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.use__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.use__item {
  width: 384px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--backgrounds-light, #e8f1f4);
}

.use__item-number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.4px;
}

.use__item-bot {
  padding: 24px;
}

.use h5 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1330px) {
  .use__mid-container {
    margin: 0 auto;
  }
  .use__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .choose__item {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .use {
    padding: 32px 0 0;
  }

  .use__item-container {
    gap: 16px;
  }

  .use__item {
    width: 100%;
  }

  .use__image {
    width: 100%;
  }

  .use h5 {
    text-align: start;
  }
}

/**************USE**************/

/**************JOIN**************/

.join {
  padding: 50px 0 50px 0;
  background: #fffefa;
}

.join__item h2 {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .join {
    padding: 24px 0;
  }
}

.join__image {
  max-height: 240px;
}

.join__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.join__item-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.join__button {
  max-width: fit-content;
  margin-inline: auto;
}

.join__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px;
  width: 588px;
  border-radius: 16px;
  border: 1.5px dashed var(--primary-blue, #259ee4);
  background: var(--primary-yellow-light, #e8f1f4);
}

.join__item::after {
  /*content: " ";*/
  background-image: url(../images/bl8_img3.png);
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  z-index: 99;
}

.join__item-bot {
  padding: 24px;
}

.join h5 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1330px) {
  .join__mid-container {
    margin: 0 auto;
  }
  .join__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 620px) {
  .join {
    padding: 32px 0 0;
  }

  .join__item-container {
    gap: 16px;
    width: 100%;
  }

  .join__mid-container {
    width: 100%;
  }

  .join__item {
    width: 100%;
    padding: 16px;
  }

  .join__item::after {
    right: 16px;
    bottom: 16px;
  }
  .join__image {
    max-height: 168px;
  }

  .join h5 {
    text-align: start;
  }
}

/**************JOIN**************/

/**************PRICE**************/

.price {
  padding: 50px 0 50px 0;
  background: #fffefa;
}

.price__image {
  width: 588px;
}

.price__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.price__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.price__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  align-items: start;
  width: 588px;
}

@media screen and (max-width: 1190px) {
  .price__mid-container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .price {
    padding: 32px 0 0;
  }

  .price__button {
    width: 100%;
    text-align: center;
  }

  .price__mid-container {
    width: 100%;
    gap: 16px;
  }

  .price__item {
    width: 100%;
  }
  .price__image {
    width: 100%;
  }

  .price h5 {
    text-align: start;
  }
}

@media screen and (max-width: 450px) {
  .price__image {
    padding: 0 20px;
  }

  .price__image.second {
    padding: 0 10px;
  }
}

/**************PRICE**************/

/**************SOLUTION**************/

.solution {
  padding: 50px 0 50px 0;
  background: linear-gradient(187deg, #fff 5.69%, #c7e3f3 94.31%);
}

.solution__image {
  width: 384px;
  border-radius: 16px 16px 0 0;
}

.solution__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.solution__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.solution__item {
  width: 384px;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
}

.solution__item-bot {
  padding: 24px;
}

.solution h5 {
}

.solution__bot-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution__bot-item {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
}

.solution__bot-image {
  width: 384px;
  border-radius: 16px 0px 0px 16px;
}

.solution__bot-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--backgrounds-light, #e8f1f4);
  border-radius: 0px 16px 16px 0px;
}

.solution__bot-text h5 {
  color: var(--texts-light, #7e7c74);
}

@media screen and (max-width: 1190px) {
  .solution__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .solution__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .solution__bot-item {
    flex-direction: column;
  }

  .solution__bot-image {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
  }

  .solution__bot-text {
    border-radius: 0px 0px 16px 16px;
    justify-content: center;
    align-items: start;

    gap: 16px;
  }
}

@media screen and (max-width: 620px) {
  .solution {
    padding: 32px 0 0;
  }

  .solution__mid-container {
    width: 100%;
    gap: 16px;
  }

  .solution__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .solution__item-bot {
    padding: 16px;
  }

  .solution__item {
    width: 100%;
  }
  .solution__image {
    width: 100%;
  }

  .solution h5 {
    text-align: start;
  }
}

/**************SOLUTION**************/

/**************REVIEW**************/

.review {
  padding: 100px 0 50px 0;
  background: #fffefa;
}

@media screen and (max-width: 480px) {
  .review {
    padding: 32px 0 0;
  }
}

/**************REVIEW**************/

/**************ORDER**************/

.order {
  padding: 50px 0 50px 0;
  background: #fffefa;
}

h3.order-h3 {
  color: var(--texts-black, #28261b);
  text-align: center;

  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
  letter-spacing: -0.96px;
}

@media screen and (max-width: 480px) {
  .order {
    padding: 32px 0;
  }

  h3.order-h3 {
    font-size: 32px;
  }

  .order .section__top-container {
    align-items: flex-start;
  }

  .order .section__top-container * {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
}

.order__image {
  width: 384px;
  border-radius: 16px 16px 0 0;
}

.order__image.border {
  border-top: 1px solid var(--standarts-stroke, #e5e5e1);
  border-right: 1px solid var(--standarts-stroke, #e5e5e1);
  border-left: 1px solid var(--standarts-stroke, #e5e5e1);
  background: var(--standarts-white, #fff);
}

.order__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.order__item-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.order__item {
  width: 384px;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
}

.order__item-bot {
  padding: 24px;
}

.order__item-bot p {
  color: var(--texts-black, #28261b);
}

.order h5 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1190px) {
  .order__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .order__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .order {
    padding: 32px 0 0;
  }

  .order__mid-container {
    width: 100%;
    gap: 16px;
  }

  .order__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .order__item-bot {
    padding: 16px;
  }

  .order__item {
    width: 100%;
  }
  .order__image {
    width: 100%;
  }

  .order h5 {
    text-align: start;
  }
}

/**************ORDER**************/

/**************FAQ**************/

.faq {
  padding: 50px 0;
  position: relative;
  background: #fffefa;
}

.faq__top-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.faq__items-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 790px;
  margin-inline: auto;
}

.faq__item {
  cursor: pointer;
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s ease;
  border-radius: 16px;
}

.faq__item .medium {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.48px;
}

.faq__item .small {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.36px;
}

.faq__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item-arrow {
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  border: 3px solid #000e2f;
  flex-shrink: 0;
}

.faq__item-arrow:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 3px;
  background: #000e2f;
}

.faq__item-arrow:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 12px;
  background: #000e2f;
  transition: all 0.3s ease-in-out;
}

.faq__item.active .faq__item-arrow:after {
  transform: rotate(90deg);
}

@media screen and (max-width: 620px) {
  .faq {
    padding: 32px 0 16px;
  }

  .faq__top-container {
    text-align: start;
    gap: 16px;
  }

  .faq__item {
    padding: 16px;
  }

  .faq__items-container {
    gap: 16px;
  }

  .faq h4 {
    font-size: 24px;
  }

  .faq h5 {
    text-align: start;
  }
}

/**************FAQ**************/

/**************COMMENTS**************/

.comments {
  padding: 100px 0;
  background-image: url("../images/bl11_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 980px) {
  .comments {
    background-image: url("../images/bl11_bg-mob.jpg");
  }
}

@media screen and (max-width: 480px) {
  .comments {
    padding: 60px 0;
  }
}

.comments__content {
  position: relative;
}

.comments__title {
  color: var(--White, #fff);
  text-align: center;

  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 48px;
}

@media screen and (max-width: 480px) {
  .comments__title {
    font-size: 32px;
  }
}

.comments__swiper {
  overflow: visible;
  margin-top: 48px;
}

@media screen and (max-width: 991px) {
  .comments__swiper {
    overflow: hidden;
    margin-top: 24px;
  }
}

.comments__swiper-wrapper {
  padding-bottom: 80px;
}

.comments__swiper-slide {
  border-radius: 16px;
  background: var(--backgrounds-light, #e8f1f4);
  backdrop-filter: blur(8.500008583068848px);
  min-height: 100% !important;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  min-height: 100% !important;
}

.comments__swiper-slide {
  opacity: 0.4;
}

.comments__swiper-slide.swiper-slide-next {
  opacity: 1;
}

.comments__swiper-slide.swiper-slide-active {
  opacity: 1;
}

.comments__info {
}

.comments__info-title {
  color: var(--texts-black, #28261b);

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -0.48px;
}

@media screen and (max-width: 480px) {
  .comments__info-title {
    font-size: 22px;
  }
}

.comments__text {
  color: var(--texts-light, #7e7c74);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
  flex: 1 0 auto;
}

@media screen and (max-width: 480px) {
  .comments__text {
    font-size: 16px;
  }
}

.comments__author {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

.comments__icon {
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  flex: 1 0 48px;
  height: 48px;
}

.comments__about-person {
  color: var(--texts-light, #7e7c74);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
}

@media screen and (max-width: 480px) {
  .comments__about-person {
    font-size: 16px;
  }
}

.comments__about-person span {
  font-weight: 700;
}

.comments__swiper-button-next::after,
.comments__swiper-button-prev::after {
  display: none;
}

.comments__swiper-button-next,
.comments__swiper-button-prev {
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: auto;
  left: auto;
  width: 48px;
  height: 48px;
}

.comments__swiper-button-next img {
  width: 100%;
}

.comments__swiper-button-next {
  transform: rotate(180deg);
  right: 45%;
}
.comments__swiper-button-prev {
  left: 45%;
}

@media screen and (max-width: 1199px) {
  .comments__swiper-button-next {
    right: 40%;
  }
  .comments__swiper-button-prev {
    left: 40%;
  }
}

@media screen and (max-width: 600px) {
  .comments__swiper-button-next {
    right: 35%;
  }
  .comments__swiper-button-prev {
    left: 35%;
  }
}

@media screen and (max-width: 400px) {
  .comments__swiper-button-next {
    right: 33%;
  }
  .comments__swiper-button-prev {
    left: 33%;
  }
}

.comments__swiper-button-next::before,
.comments__swiper-button-prev::before {
  /* content: url('../images/icon/arrow-white.svg');
	display: flex;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

.comments__swiper-pagination {
  display: inline-flex !important;
  width: auto !important;
  top: auto !important;
  bottom: 20px !important;
  left: 0 !important;
  right: auto !important;
  position: absolute;
}

.comments__swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.comments__swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/**************COMMENTS**************/

/**************BACK-TO-WORK**************/

.back-to-work {
  padding: 100px 0 124px;
  background-image: url("../images/bl13_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.back-to-work-container {
  width: 589%;
}

@media screen and (max-width: 991px) {
  .back-to-work {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #828282;
  }
}

@media screen and (max-width: 600px) {
  .back-to-work {
    padding: 16px 0 16px;
    /* background-size: auto 280px; */
    background-image: url("../images/bl14_bgmob.jpg");
  }
}

/* .back-to-work .overlay {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg, #828282 0%, rgba(130, 130, 130, 0) 100%);
  } */

.back-to-work-container {
  width: 589px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 600px) {
  .back-to-work-container {
    width: 100%;
  }
}

/* .back-to-work__info {
  flex: 0 1 690px;
  position: relative;
} */

@media screen and (max-width: 480px) {
  .back-to-work__title {
    font-size: 32px;
  }
}

.back-to-work__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.back-to-work__form {
  /* flex: 0 1 486px; */
}

.back-to-work h5 {
  color: var(--texts-light, #28261b);
}

/**************BACK-TO-WORK**************/

/* footer */

.footer {
  padding: 32px 0;
}

.footer__policy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 18px 0;
  }

  .footer__policy {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__policy p {
  color: #000;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

#currentYear {
  display: inline-block;
  margin-right: 5px;
}

.swiper-button-disabled {
  transition: 0.3s ease;
  opacity: 0.5 !important;
}

.bold {
  font-weight: 700;
}

.colored {
  color: #259ee4;
}

.desk {
  display: block;
}

.mob {
  display: none;
}

@media screen and (max-width: 580px) {
  .desk {
    display: none;
  }

  .mob {
    display: block;
  }
}
