/* HEADER */

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

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

.header__select {
  position: relative;
}

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

.header__select-title {
  color: var(--Blue, #3a83f8);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  position: relative;
  cursor: pointer;
}

.header__select-title::after {
  content: url("../images/icon/chevron-down.svg");
  display: flex;
  position: absolute;
  right: -28px;
  top: 0;
  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: 30px;
  border-radius: 10px;
  border: 1px solid var(--Blue, #3a83f8);
  background: var(--White, #fff);
  width: 260px;

  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(--Blue, #3a83f8);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.header__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3a83f8 0%, #2553c3 100%);
}

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

.header__button span {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 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: #3a83f8;
  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: 67px;
  left: 0;
  width: 100vw;
  height: 100vh;
  border-bottom: 1px solid var(--Blue, #3a83f8);
  background: var(--White, #fff);
  transform: translateX(-100%);
  transition: all 250ms ease;
}

.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: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  margin: 12px 0;
}

@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;
  }
}

/* Bonengem */

.bonengem {
  padding: 100px 0;
  background-image: url("../images/bl1_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 67.5px;
}

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

  .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: 60px 0;
  }
}

.bonengem__content {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(0, 486px); /* Адаптивні ширини */
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 24px;
  grid-row-gap: 32px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .bonengem__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

.bonengem__title {
  color: var(--White, #fff);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.bonengem__text {
  color: var(--White, #fff);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
}

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

.bonengem__presentation {
  grid-area: 2 / 1 / 3 / 2;
  display: flex;
}

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

.bonengem__img {
  border-radius: 24px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  width: 360px;
  height: 360px;
}

@media screen and (max-width: 991px) {
  .bonengem__img {
    width: 100%;
    height: auto;
  }
}

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

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

@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 {
  grid-area: 1 / 2 / 3 / 3;
}

@media screen and (max-width: 991px) {
  .bonengem__form {
    grid-area: 2 / 1 / 3 / 2;
    order: 2;
  }
}

.form-container {
  border-radius: 24px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.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-family: Raleway;
  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-family: Raleway;
  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: 10px;
  border: 2px solid var(--Red, #ff0024);
  background: var(--White, #fff);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.form__old-price {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__old-price span {
  color: var(--Red, #ff0024);
  text-align: center;
  font-family: Raleway;
  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-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__new-price span {
  color: var(--Red, #ff0024);
  text-align: center;
  font-family: Raleway;
  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: 16px 0;
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}

@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-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.form__btn {
  border-radius: 10px;
  background: linear-gradient(90deg, #3a83f8 0%, #2553c3 100%);
  display: flex;
  height: 60px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;

  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
}

.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-family: Raleway;
  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-family: Raleway;
  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%);
}

/* muscle-pains */

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

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

.muscle-pains__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.muscle-pains__title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.muscle-pains__sub-title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  margin-bottom: 48px;
}

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

.muscle-pains__box {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .muscle-pains__box {
    flex-direction: column-reverse;
  }
}

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

.muscle-pains__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muscle-pains__item-title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;

  background: var(
    --Blue_liner,
    linear-gradient(90deg, #6ed228 0%, #46ab00 100%)
  );
  -webkit-background-clip: text; /* Застосування фону до тексту */
  -webkit-text-fill-color: transparent; /* Прозорий текст */
  background-clip: text;
  text-fill-color: transparent; /* Прозорий текст */
  display: inline-block; /* Дозволяє правильне відображення фону */
  padding-left: 40px;
  position: relative;
}

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

.muscle-pains__item-title::after {
  content: url("../images/icon/checkmark.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.muscle-pains__item-text {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

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

.muscle-pains__img {
  border-radius: 24px;
  overflow: hidden;
  flex: 1 0 486px;
}

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

.second-section .muscle-pains__title,
.last-section .muscle-pains__title {
  font-size: 32px;
}

@media screen and (max-width: 480px) {
  .second-section .muscle-pains__title,
  .last-section .muscle-pains__title {
    font-size: 26px;
  }
}

.second-section .muscle-pains__box {
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .second-section .muscle-pains__box {
    flex-direction: column;
  }
}

.muscle-pains__sub-text {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

.last-section .muscle-pains__list {
  margin-bottom: 48px;
}

.last-section .muscle-pains__sub-text {
  text-align: left;
  margin-bottom: 48px;
}

.muscle-pains__button {
  width: 399px;
  display: flex;
  height: 60px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3a83f8 0%, #2553c3 100%);

  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
}

@media screen and (max-width: 480px) {
  .muscle-pains__button {
    width: 100%;
  }
}

/* joint repair */

.joint-repair {
  position: relative;
  padding: 100px 0;
  /* background: var(--Blue_white, #68a6fa); */
  /* background: url(<path-to-image>) lightgray -1338.326px -15.394px / 179.299% 126.449% no-repeat, linear-gradient(180deg, #6DD127 0.02%, #235500 100%);
	background-blend-mode: plus-darker, normal; */

  /* background-image: url("../images/bl5_bg.webp"); */
  background-image: url("../images/bl5_bg.webp");
  /* linear-gradient(180deg, rgba(109, 209, 39, 1), rgba(35, 85, 0, 1)); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 5;
  /* background-blend-mode: plus-darker, normal; */
}

.joint-repair::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(109, 209, 39, 1),
    rgba(35, 85, 0, 1)
  );
  opacity: 0.9;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .joint-repair {
    padding: 60px 0;
  }
}

.joint-repair__main-title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.joint-repair__sub-title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  margin-bottom: 48px;
}

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

.joint-repair__content > .joint-repair__box {
  margin-bottom: 64px;
}

.joint-repair__box.last-box {
  margin-bottom: 0;
}

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

.joint-repair__box {
  display: flex;
  gap: 24px;
}

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

.joint-repair__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.joint-repair__item-title {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 40px;
  position: relative;
}

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

.joint-repair__item-title::after {
  content: url("../images/icon/checkmark-white.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.joint-repair__item-text {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

.joint-repair__item-text b {
  font-weight: 700;
}

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

.joint-repair__sub-list {
  list-style: disc;
  color: var(--White, #fff);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.joint-repair__sub-item {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

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

.joint-repair__sub-item span {
  font-weight: 700;
}

.joint-repair__title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  margin-bottom: 48px;
}

@media screen and (max-width: 480px) {
  .joint-repair__title {
    font-size: 26px;
  }
}

.joint-repair__title + .joint-repair__box {
  align-items: center;
}

@media screen and (max-width: 991px) {
  .joint-repair__title + .joint-repair__box {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.joint-repair__list-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.joint-repair__item-bottom {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media screen and (max-width: 480px) {
  .joint-repair__item-bottom {
    font-size: 22px;
  }
}

.joint-repair__item-bottom span {
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .joint-repair__img {
    max-width: 260px;
  }
  .joint-repair__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Why choose */

.why-choose {
  padding: 100px 0;
  background: linear-gradient(
    243deg,
    rgba(0, 255, 223, 0.2) 0%,
    rgba(0, 255, 188, 0.2) 100%
  );
  /* background-color: #ddf2c4; */
}

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

.why-choose__title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.why-choose__sub-title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  margin-bottom: 48px;
}

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

.why-choose__box {
  display: flex;
  gap: 48px;
}

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

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

.why-choose__item {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

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

.why-choose__item span {
  font-weight: 700;
}

/* how-use */

.how-use {
  padding: 100px 0;
  background: linear-gradient(180deg, #6dd127 0.02%, #235500 100%);
}

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

.how-use__title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.how-use__sub-title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

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

.how-use__steps {
  margin: 48px 0;
}

.first-box .how-use__steps {
  border-radius: 24px;
  border: 2px solid var(--White, #fff);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .first-box .how-use__steps {
    flex-direction: column;
  }
}

.how-use__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 368px;
  gap: 12px;
}

.how-use__step-text {
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 480px) {
  .how-use__step-text {
    font-size: 22px;
  }
}

.how-use__text {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

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

.first-box {
  margin-bottom: 100px;
}

.second-box .how-use__steps {
  display: flex;
}

.second-box .how-use__step {
  flex: 0 1 50%;
}

@media screen and (max-width: 991px) {
  .second-box .how-use__steps {
    flex-direction: column;
  }

  .second-box .how-use__step {
    flex: 0 1 auto;
  }

  .how-use__step-text span br {
    display: none;
  }
}

.how-use__step-info {
  border-radius: 10px 0px 0px 10px;
  background: var(--Red, #ff0024);
  width: 100%;
  padding: 16px;
  height: 100%;
}

.second-box .how-use__step:nth-child(2) .how-use__step-info {
  border-radius: 0px 10px 10px 0px;
}

.second-box .how-use__step-title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

@media screen and (max-width: 480px) {
  .second-box .how-use__step-title {
    font-size: 18px;
  }
}

.second-box .how-use__step-text {
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 4px;
  background: #fff;
}

.how-use__step-text span {
  color: var(--Red, #ff0024);
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .how-use__step-text span {
    font-size: 18px;
  }
}

.how-use__step-present {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.modified-present {
  padding-right: 33.95px;
}

.how-use__steps-present-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-use__line-decore {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 36, 0) 0%,
    #ff0024 49.5%,
    rgba(255, 0, 36, 0) 100%
  );
  margin-bottom: 48px;
}

.how-use__presentation {
  display: flex;
  gap: 48px;
}

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

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

.how-use__discount {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.how-use__old-price {
  margin: 24px 0;
  color: var(--Red, #ff0024);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 991px) {
  .how-use__old-price {
    text-align: center;
  }
}

.how-use__old-price span {
  display: inline-flex;
  padding: 2px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Red, #ff0024);
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: line-through;
  margin-right: 6px;
}

@media screen and (max-width: 480px) {
  .how-use__old-price span {
    display: flex;
    max-width: 92px;
    margin: 6px auto 0;
  }
}

.how-use__new-price {
  color: var(--Red, #ff0024);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 48px;
}

.how-use__new-price span {
  display: inline-flex;
  padding: 2px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Red, #ff0024);
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 6px;
}

@media screen and (max-width: 480px) {
  .how-use__new-price {
    text-align: center;
  }
  .how-use__old-price span {
    display: flex;
    max-width: 115px;
    margin: 6px auto 0;
  }
}

.how-use__presentation-text {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .how-use__discount,
  .how-use__presentation-text {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .how-use__discount,
  .how-use__presentation-text {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .how-use__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.how-use__button {
  display: flex;
  height: 60px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3a83f8 0%, #2553c3 100%);
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
  width: 361px;
}

@media screen and (max-width: 480px) {
  .how-use__button {
    width: 100%;
  }
}

/* proven solution */

.proven-solution {
  padding: 100px 0;
  background: linear-gradient(
    243deg,
    rgba(0, 255, 223, 0.2) 0%,
    rgba(0, 255, 188, 0.2) 100%
  );
}

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

.proven-solution__title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.proven-solution__sub-title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

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

.proven-solution__box {
  margin: 48px 0;
  display: flex;
  gap: 48px;
}

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

.proven-solution__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proven-solution__item {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-left: 40px;
}

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

.proven-solution__item::after {
  content: url("../images/icon/checkmark-blue.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.proven-solution__img-box {
  display: flex;
}

.proven-solution__info .proven-solution__img {
  border-radius: 24px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.proven-solution__info .proven-solution__img:nth-child(1) {
  width: 204px;
  height: 175px;
  position: relative;
  z-index: 2;
}

.proven-solution__info .proven-solution__img:nth-child(2) {
  width: 284px;
  height: 244px;
  margin-left: -104px;
  margin-top: 60px;
}

@media screen and (max-width: 480px) {
  .proven-solution__info .proven-solution__img:nth-child(1) {
    width: 180.625px;
    height: 154.948px;
  }
  .proven-solution__info .proven-solution__img:nth-child(2) {
    width: 251.458px;
    height: 216.042px;
  }
}

.proven-solution__info .proven-solution__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proven-solution__slider {
  position: relative;
}

.proven-solution__swiper-wrapper {
  padding-bottom: 80px;
}

.proven-solution__swiper-title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}

@media screen and (max-width: 480px) {
  .proven-solution__swiper-title {
    font-size: 26px;
  }
}

.proven-solution__swiper-slide {
  border-radius: 24px;
  border: 2px solid var(--White, #fff);
  /* gap: 48px; */
  overflow: hidden;
  background: linear-gradient(
    243deg,
    rgba(0, 255, 223, 0.2) 0%,
    rgba(0, 255, 188, 0.2) 100%
  );
  backdrop-filter: blur(8.500008583068848px);
}

.proven-solution__swiper-box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .proven-solution__swiper-box {
    flex-direction: column;
  }
}

.proven-solution__swiper-slide .proven-solution__img {
  flex: 0 1 384px;
}

.proven-solution__info-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex: 0 1 720px;
}

@media screen and (max-width: 991px) {
  .proven-solution__info-card {
    flex: 0 1 auto;
  }
}

@media screen and (max-width: 991px) {
  .proven-solution__info-card {
    padding: 24px 16px;
  }
}

.proven-solution__info-text {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 150%; /* 33px */
}

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

.proven-solution__swiper-slide .proven-solution__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: flex;
}

.proven-solution__about-person {
  border-radius: 16px;
  border: 2px solid var(--White, #fff);
  background: linear-gradient(
    243deg,
    rgba(154, 218, 66, 0.2) 0%,
    rgba(102, 182, 29, 0.2) 100%
  );
  backdrop-filter: blur(8.500008583068848px);
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 24px;
}

@media screen and (max-width: 767px) {
  .proven-solution__about-person {
    font-size: 18px;
  }
}

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

.proven-solution__about-person span {
  font-weight: 700;
}

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

.proven-solution__swiper-button-next,
.proven-solution__swiper-button-prev {
  /* position: absolute; */
  bottom: 0px;
  right: 0px;
  top: auto;
  left: auto;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.proven-solution__swiper-button-next {
  transform: rotate(180deg);
}
.proven-solution__swiper-button-prev {
  right: 64px;
}

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

/* comments */

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

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

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

.comments__content {
  position: relative;
}

.comments__title {
  color: var(--White, #fff);
  text-align: center;
  font-family: Raleway;
  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;
}

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

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

.comments__swiper-slide {
  border-radius: 24px;
  border: 2px solid var(--White, #fff);
  background: rgba(0, 0, 0, 0.2);
  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__info {
}

.comments__info-title {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}

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

.comments__text {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%; /* 27px */
  flex: 1 0 auto;
}

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

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

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

.comments__about-person {
  color: var(--White, #fff);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@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 {
  transform: rotate(180deg);
}
.comments__swiper-button-prev {
  right: 64px;
}

.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;
}

/* Order */

.order {
  padding: 100px 0;
  background: linear-gradient(
    243deg,
    rgba(0, 255, 223, 0.2) 0%,
    rgba(0, 255, 188, 0.2) 100%
  );
}

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

.order__title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

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

.order__sub-title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

@media screen and (max-width: 991px) {
  .order__sub-title {
    font-size: 18px;
  }
}

.order__decore {
  margin: 48px 0;
  background: linear-gradient(
    90deg,
    rgba(70, 171, 0, 0) 0%,
    #46ab00 49.99%,
    rgba(70, 171, 0, 0) 100%
  );
  display: flex;
  justify-content: space-around;
  position: relative;
  height: 2px;
}

@media screen and (max-width: 991px) {
  .order__decore {
    margin: 24px 0;
    display: none;
  }
}

.order__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 24px;
}

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

.order__step {
  flex: 0 1 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.order__steps .order__decore {
  display: none;
}

@media screen and (max-width: 991px) {
  .order__steps .order__decore {
    display: block;
    width: 100%;
  }
}

.order__img {
  height: 100%;
}

@media all and (max-width: 1199px) and (min-width: 992px) {
  .order__img {
    height: 180px;
  }
}

.order__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order__step::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--Blue, #46ab00);
  color: var(--White, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 991px) {
  .order__step {
    position: relative;
    width: 100%;
  }

  .order__step::after {
    top: 12px;
  }
}

.order__step:nth-child(1)::after {
  content: "1";
}

.order__step:nth-child(2)::after {
  content: "2";
}

.order__step:nth-child(3)::after {
  content: "3";
}

.order__text {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 991px) {
  .order__text {
    font-size: 22px;
  }
}

.order__info {
  border-radius: 16px;
  border: 2px solid var(--White, #fff);
  background: linear-gradient(
    243deg,
    rgba(0, 255, 223, 0.2) 0%,
    rgba(0, 255, 188, 0.2) 100%
  );
  backdrop-filter: blur(8.500008583068848px);

  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.order__info .order__title {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 991px) {
  .order__info .order__title {
    font-size: 26px;
  }
}

.order__info .order__text {
  color: var(--Black, #235500);
  text-align: center;
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

@media screen and (max-width: 991px) {
  .order__info .order__text {
    font-size: 18px;
  }
}

/* faq */

.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #6dd127 0.02%, #235500 100%);
}

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

.faq__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 16px;

  border-radius: 16px;
  border: 2px solid var(--White, #fff);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);

  padding: 24px 32px;
}

.faq__question {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: none;
  text-align: left;
  position: relative;
  padding: 0 44px 0 0;
}

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

.faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 18px;
  background: #235500;
  /* transform: translateY(-50%) rotate(0deg); */
  transform: rotate(90deg);
  transition: all 250ms ease;
}

.faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 18px;
  background: #235500;
  transform: translateY(-50%);
}

.faq__question.active::after {
  /* transform: rotate(90deg); */
  transform: translateY(-50%) rotate(0deg);
  transition: all 250ms ease;
}

.faq__answer {
  color: var(--Black, #235500);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

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

/* back-to-work*/

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

@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: 580px) {
  .back-to-work {
    padding: 60px 0;
    background-size: auto 280px;
  }

  .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__content {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .back-to-work__content {
    flex-direction: column;
  }
}

.back-to-work__logo {
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  padding: 12px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 24px;
}

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

.back-to-work__title {
  color: var(--White, #fff);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  font-family: Raleway;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 24px;
}

@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__text p {
  color: var(--White, #fff);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  font-family: Raleway;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}

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

.back-to-work__text p span {
  font-weight: 700;
}

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

/* footer */

.footer {
  padding: 32px 0;
}

.footer__policy {
  display: flex;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  opacity: 0.5;
}

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

.swiper-button-disabled {
  opacity: 1 !important;
}
