:root {
  --main-color: #e7e7e7;
  --accent-color: #3c3c3b;
  --white-color: #fff;
  --font-family: "Montserrat", sans-serif;
  --second-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

p, h1, h2, h3 {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--font-family);
  color: var(--main-color);
  font-size: 22px;
}

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
  background: radial-gradient(85.93% 85.93% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  border-radius: 170px;
}

.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1920px;
}

.header {
  position: sticky;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  background: #006257;
}
.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  opacity: 0.3;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 12%;
}
.header__logo {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}
.header__btn {
  padding: 15px 32px;
  color: var(--main-color);
  background: transparent;
  border: 1px solid var(--main-color);
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 64px;
}
.nav-header__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  opacity: 0.3;
}

.burger {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 2px;
  background-color: var(--main-color);
  border-radius: 2px;
}

@media (max-width: 1200px) {
  .header__btn {
    display: none;
  }
}
@media (max-width: 880px) {
  .header__nav {
    display: none;
  }
  .burger {
    position: relative;
    display: block;
    margin-left: auto;
    z-index: 11;
  }
  .burger::after,
  .burger::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 28px;
    height: 2px;
    background-color: var(--main-color);
    border-radius: 2px;
  }
  .burger::before {
    bottom: initial;
    top: -10px;
  }
  .burger.active {
    height: 0;
  }
  .burger.active::after {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #5b5b5b;
  }
  .burger.active::before {
    top: -2px;
    transform: rotate(-45deg);
    background-color: #5b5b5b;
  }
  .nav-header.active {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 0px 0 380px;
    padding-top: 46px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    z-index: 10;
    gap: 40px;
  }
  .nav-header.active::after {
    content: "";
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.3;
  }
  .nav-header {
    font-family: "Montserrat", sans-serif;
    color: #5b5b5b;
  }
  .nav-header__link:first-child {
    padding-top: 48px;
  }
  .nav-header__link {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    font-size: 18px;
  }
}
.s1 {
  background-color: #044941;
  background-image: url("../img/s1/back.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 10%;
}
.s1__img-wrap {
  display: flex;
  align-items: center;
}
.s1__wrap {
  display: flex;
  justify-content: space-between;
  padding-left: 12%;
}
.s1__content {
  width: 50%;
  max-width: 590px;
  padding-top: 75px;
}
.s1__subtitle {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 32px;
}
.s1__subtitle span {
  position: relative;
}
.s1__subtitle span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  background: #cf1812;
  height: 4px;
}
.s1__title {
  font-weight: 700;
  font-size: 68px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.s1__title-cross {
  display: inline-block;
  margin-top: -20px;
}
.s1__title-heart--mobile {
  display: none;
}
.s1__red {
  background: linear-gradient(90deg, #fb1115 0%, #99070c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s1__text {
  width: 219px;
  display: inline-block;
  position: relative;
}
.s1__text--mobile {
  display: none;
}
.s1__text div {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  display: inline-flex;
  flex-direction: column;
  border-radius: 150px;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--white-color);
  background: var(--accent-color);
}
.s1__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.s1__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.s1__item span {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--white-color);
  opacity: 0.8;
}
.s1__btn {
	box-sizing: border-box;
  display: inline-block;
  font-size: 18px;
  padding: 24px 40px;
}

@media (max-width: 1600px) {
  .s1__wrap {
    padding-left: 8%;
  }
  .s1__content {
    padding-top: 35px;
  }
  .s1__title {
    font-size: 65px;
  }
  .s1__title-cross {
    width: 80px;
  }
}
@media (max-width: 1420px) {
  .s1__wrap {
    padding-left: 0;
  }
  .s1__title-heart--desc {
    display: none;
  }
  .s1__title-heart--mobile {
    display: block;
    width: 30px;
    height: 30px;
  }
  .s1__title {
    margin-bottom: 30px;
    font-size: 63px;
  }
  .s1__text {
    position: static;
    width: 250px;
  }
  .s1__text--desc {
    display: none;
  }
  .s1__text--mobile {
    display: block;
  }
  .s1__text--mobile div {
    position: static;
    width: 100%;
  }
  .s1__img-wrap {
    max-width: 750px;
  }
  .s1__subtitle {
    margin-bottom: 20px;
  }
  .s1__subtitle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .s1__title-cross {
    width: 70px;
  }
}
@media (max-width: 1300px) {
  .s1__title {
    font-size: 54px;
  }
}
@media (max-width: 1200px) {
  .s1__wrap {
    flex-direction: column;
    align-items: center;
  }
  .s1__img-wrap {
    margin-left: 0;
    order: 1;
  }
  .s1__content {
    max-width: 850px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .s1__list {
    align-items: stretch;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .s1 {
    padding-top: 0;
    background-image: url("../img/s1/back-mobile.png");
  }
  .s1__wrap {
    gap: 24px;
  }
  .s1__content {
    padding-top: 32px;
  }
  .s1__subtitle-wrap {
    width: 100%;
    margin-bottom: 16px;
  }
  .s1__subtitle {
    width: 100%;
    font-size: 20px;
  }
  .s1__text {
    width: 100%;
    max-width: 149px;
  }
  .s1__text--mobile div {
    font-size: 12px;
  }
  .s1__title-heart--mobile {
    display: block;
    width: 20px;
    height: 20px;
  }
  .s1__title {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .s1__list {
    gap: 16px;
    margin-bottom: 24px;
  }
  .s1__item img {
    width: 48px;
    height: 48px;
  }
  .s1__item span {
    font-size: 16px;
  }
  .s1__btn {
    width: 100%;
    max-width: 340px;
  }
  .s1__title-cross {
    width: 50px;
    margin-top: -5px;
  }
}
.s2 {
  background-color: #044941;
  margin-top: -1px;
}
.s2__wrap {
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s2__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 46px;
  max-width: 800px;
}
.s2__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  gap: 36px;
}

.s2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 210px;
}
.s2-item__text {
  padding-top: 20px;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: var(--white-color);
}
.s2-item__text span {
  color: #ff3336;
}

@media (max-width: 1600px) {
  .s2__list {
    grid-template-columns: repeat(3, 210px);
  }
}
@media (max-width: 1420px) {
  .s2__title {
    font-size: 48px;
  }
  .s2__wrap {
    padding: 70px 20px;
  }
}
@media (max-width: 1200px) {
  .s2__title {
    font-size: 36px;
  }
}
@media (max-width: 880px) {
  .s2__list {
    grid-template-columns: repeat(2, 210px);
  }
}
@media (max-width: 768px) {
  .s2__title {
    font-size: 22px;
  }
  .s2__list {
    grid-template-columns: repeat(2, 151px);
    row-gap: 24px;
    column-gap: 16px;
  }
  .s2-item img {
    margin-bottom: 12px;
  }
  .s2-item__text {
    padding-top: 0;
    font-size: 16px;
  }
}
.s3 {
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
}
.s3__wrap {
  padding: 100px 14%;
}
.s3__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
}

@media (max-width: 1420px) {
  .s3__title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .s3__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .s3__title {
    font-size: 22px;
  }
  .s3__wrap {
    padding: 70px 0;
  }
}
.s4 {
  background: var(--white-color);
}
.s4__wrap {
  padding: 100px 0;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 65px;
}
.s4__content {
  width: 50%;
  max-width: 690px;
}
.s4__title {
  font-weight: 700;
  font-size: 56px;
  color: #212121;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.s4__title span {
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s4__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #212121;
}
.s4__icon {
  position: absolute;
  bottom: -228px;
  left: -20px;
}
.s4__img-wrap {
  width: 50%;
  max-width: 685px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1420px) {
  .s4__title {
    font-size: 48px;
  }
  .s4__content {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .s4__title {
    font-size: 36px;
  }
  .s4__wrap {
    flex-direction: column;
    padding: 70px 0;
  }
  .s4__img-wrap {
    margin-top: 0;
    width: 100%;
    max-width: 600px;
  }
  .s4__content {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .s4 .container {
    padding: 0 20px;
  }
  .s4__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .s4__list {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .s4__icon {
    width: 133px;
    height: 133px;
    bottom: -31px;
    left: -40px;
  }
}
.s5 {
  background: url("../img/s5/back.png") no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
}
.s5__wrap {
  padding: 100px 14%;
  padding-bottom: 130px;
}
.s5__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
}

@media (max-width: 1420px) {
  .s5__title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .s5__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .s5 {
    background-image: url("../img/s5/back-mobile.png");
  }
  .s5__title {
    font-size: 22px;
  }
  .s5__wrap {
    padding: 70px 0;
  }
}
.s6 {
  background: #006257;
  margin-top: -100px;
}
.s6__wrap {
  padding: 100px 0;
  padding-top: 200px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 65px;
}
.s6__content {
  width: 50%;
  max-width: 707px;
}
.s6__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.s6__title span {
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s6__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.s6__text p {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}
.s6__text span {
  font-weight: 400;
  opacity: 0.8;
}
.s6__icon {
  position: absolute;
  bottom: -228px;
  left: -20px;
}
.s6__img-wrap {
  display: flex;
  justify-content: center;
  width: 40%;
  max-width: 685px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1420px) {
  .s6__title {
    font-size: 48px;
  }
  .s6__content {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .s6__title {
    font-size: 36px;
  }
  .s6__wrap {
    flex-direction: column;
    padding: 70px 0;
    padding-top: 170px;
  }
  .s6__img-wrap {
    margin-top: 0;
    width: 100%;
    max-width: 600px;
  }
  .s6__content {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .s6 .container {
    padding: 0 20px;
  }
  .s6__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .s6__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .s6__icon {
    width: 133px;
    height: 133px;
    bottom: -31px;
    left: -40px;
  }
}
.s7 {
  background-color: #044941;
}
.s7 .container {
  padding: 0;
}
.s7__wrap {
  padding: 100px 0;
}
.s7__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.s7-swiper {
  padding-bottom: 50px;
  padding-left: 240px;
}
.s7-swiper__scrollbar {
  bottom: 10px !important;
  left: 0;
  right: 0;
  max-width: 240px;
  margin: 0 auto;
}
.s7-swiper__scrollbar .swiper-scrollbar-drag {
  top: -9px;
  width: 130px;
  height: 20px;
  border-radius: 100px;
  background: var(--white-color);
  cursor: pointer;
}
.s7-item {
  border-radius: 30px;
  overflow: hidden;
  height: auto;
  /* max-width: 338px; */
}
.s7-item__wrap {
  padding: 24px;
  background: #f0f0f0;
  height: 100%;
}
.s7-item__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #212121;
}
.s7-item__list {
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s7-item__item {
  position: relative;
  opacity: 0.8;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #212121;
}
.s7-item__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -15px;
  width: 2px;
  height: 2px;
  background: var(--main-color);
}

@media (max-width: 1420px) {
  .s7-item {
    /* max-width: 320px; */
  }
  .s7-swiper {
    padding-left: 23px;
  }
  .s7__title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .s7-item {
    /* max-width: 320px; */
  }
  .s7__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .s7-item {
    /* max-width: 335px; */
  }
  .s7__title {
    font-size: 22px;
    margin-bottom: 32px;
  }
	.s7-swiper {
    padding-right: 23px;
  }
}
.s8__wrap {
  padding: 100px 50px;
}
.s8__list {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.s8-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 448px;
}
.s8-item img {
  margin-bottom: auto;
}
.s8-item__text {
  padding-top: 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  text-align: center;
  color: #212121;
}
.s8-item__text span {
  color: #ff3336;
}

@media (max-width: 1420px) {
  .s8__wrap {
    padding: 70px 20px;
  }
}
@media (max-width: 768px) {
  .s8-item img {
    margin-bottom: 16px;
    width: 80px;
  }
  .s8-item__text {
    font-size: 20px;
  }
}
.s9 {
  background: #006257;
}
.s9__wrap {
  padding: 100px 0;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 65px;
}
.s9__content {
  width: 50%;
  max-width: 642px;
}
.s9__title {
  font-weight: 700;
  font-size: 56px;
  color: var(--main-color);
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.s9__title span {
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s9__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: var(--main-color);
}
.s9__text span {
  font-weight: 400;
  opacity: 0.8;
}
.s9__icon {
  position: absolute;
  bottom: -228px;
  left: -20px;
}
.s9__img-wrap {
  overflow: hidden;
  border-radius: 20px;
}
.s9__img-box {
  position: relative;
  width: 50%;
  max-width: 660px;
}
.s9__before, .s9__after {
  position: absolute;
  bottom: -40px;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--main-color);
  opacity: 0.8;
}
.s9__before {
  left: 20%;
}
.s9__after {
  right: 20%;
}
.s9__img-container {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  --position: 50%;
  border-radius: 20px;
}
.s9__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.s9__img-before {
  position: absolute;
  inset: 0;
  width: var(--position);
}
.s9__slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.s9__slider:focus-visible ~ .s9__slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.s9__slider-line {
  position: absolute;
  inset: 0;
  width: 2px;
  height: 100%;
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  z-index: 10;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.s9__slider-button {
  position: absolute;
  background-color: #fff;
  color: blue;
  padding: 15px;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
  box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5);
}
.s9__slider-button span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
}

@media (max-width: 1420px) {
  .s9__title {
    font-size: 48px;
  }
  .s9__content {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .s9__title {
    font-size: 36px;
  }
  .s9__wrap {
    flex-direction: column;
    padding: 70px 0;
  }
  .s9__img-box {
    margin-top: 0;
    width: 100%;
    max-width: 600px;
  }
  .s9__content {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .s9 .container {
    padding: 0 20px;
  }
  .s9__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .s9__list {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .s9__icon {
    width: 133px;
    height: 133px;
    bottom: -31px;
    left: -40px;
  }
}
.s10 {
  background: #fff;
  overflow: hidden;
}
.s10 .container {
  padding: 0;
}
.s10__wrap {
  padding: 100px 0;
  position: relative;
}
.s10__title {
  font-weight: 700;
  font-size: 56px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
  color: #212121;
}
.s10-swiper {
  padding-bottom: 50px;
  padding-left: 240px;
}
.s10-swiper__scrollbar {
  bottom: 10px !important;
  left: 0;
  right: 0;
  max-width: 240px;
  margin: 0 auto;
}
.s10-swiper__scrollbar .swiper-scrollbar-drag {
  top: -9px;
  width: 130px;
  height: 20px;
  border-radius: 100px;
  background: #006257;
  cursor: pointer;
}

.s10-item {
  background: #e7f3f2;
  border-radius: 25px;
  overflow: hidden;
  height: auto;
  padding: 40px;
  /* max-width: 696px; */
}
.s10-item img {
  margin-bottom: 16px;
  border-radius: 50%;
  overflow: hidden;
}
.s10-item__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 4px;
  color: #212121;
}
.s10-item__age {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 16px;
  color: #006257;
}
.s10-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #212121;
  opacity: 0.8;
}
.s10-item__img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 390px;
  margin-bottom: 10px;
}
.s10-item__img-wrap img {
  border-radius: 0;
  margin: 0;
  border-radius: 20px;
}

@media (max-width: 1420px) {
  .s10__title {
    font-size: 48px;
  }
  .s10-item {
    /* max-width: 500px; */
  }
}
@media (max-width: 1200px) {
  .s10__title {
    font-size: 36px;
  }
  .s10-swiper {
    padding-left: 40px;
  }
  .s10__wrap {
    padding-bottom: 0;
  }
  .s10-item {
    /* max-width: 500px; */
  }
}
@media (max-width: 768px) {
  .s10__title {
    font-size: 22px;
  }
  .s10-swiper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .s10-item {
    height: min-content;
  }
  .s10-item__img-wrap {
    height: auto;
    margin-bottom: 20px;
  }
}
.s11 {
  display: block;
  background: #006257;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
.s11__block {
  z-index: 100;
  padding: 69px 10% 10px 10%;
  display: flex;
  justify-content: space-between;
}
.s11__vector {
  position: absolute;
  top: 150px;
  right: 0;
}
.s11__vector2 {
  position: absolute;
  top: -40px;
  left: -250px;
}
.s11__block {
  display: flex;
}
.s11__wrap {
  display: flex;
  flex-direction: column;
  max-width: 641px;
  position: relative;
  z-index: 10;
}
.s11__box {
  position: relative;
}
.s11__title {
  font-weight: 700;
  font-size: 62px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 24px;
}
.s11__title-cross {
  display: inline-block;
  margin-top: -20px;
}
.s11__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--white-color);
  margin-bottom: 48px;
}
.s11__subtitle span {
  position: relative;
}
.s11__subtitle span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  background: #cf1812;
  height: 4px;
}
.s11__img {
  position: relative;
  z-index: 1;
}
.s11__form-wrap {
  z-index: 2;
  position: relative;
  padding: 0 10%;
}

.s11-form {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background-color: #fff;
}
.s11-form__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 36px;
}
.s11-form__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.s11-form__wrap {
  background: none;
  padding: 40px 62px;
  display: flex;
  flex-direction: column;
}
.s11-form__count {
  display: flex;
  align-items: center;
  background-color: #006257;
  border-radius: 20px;
  padding: 12px;
}
.s11-form__num, .s11-form__colon {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
}
.s11-form__head {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: #212121;
}
.s11-form__select {
  padding: 0 0 0 22px;
  height: 71px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #212121;
  border: 1px solid #212121;
  border-radius: 10px;
  background: transparent;
}
.s11-form__input {
  height: 71px;
  padding-left: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #212121;
  border: 1px solid #212121;
  border-radius: 10px;
  background: transparent;
}
.s11-form__btn {
  padding: 24px 0;
  border: none;
  background: radial-gradient(85.93% 85.93% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
}

.s11-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.s11-prices__old {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-decoration: line-through;
  text-align: center;
  color: #212121;
}
.s11-prices__new {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1600px) {
  .s11__block {
    padding: 69px 50px 62px 50px;
  }
}
@media (max-width: 1420px) {
  .s11__block {
    padding: 69px 20px 62px 20px;
  }
  .s11__title-cross {
    width: 70px;
  }
}
@media (max-width: 1200px) {
  .s11 {
    background: none;
    padding-bottom: 0;
  }
  .s11 .container {
    padding: 0;
  }
  .s11__block {
    flex-direction: column;
    padding: 0;
  }
  .s11__img-wrap {
    position: relative;
    text-align: center;
    padding: 73px 40px 24px 0;
  }
  .s11__vector {
    width: 93%;
    max-width: 750px;
  }
  .s11__vector2 {
    top: -22px;
    left: auto;
    right: 0;
  }
  .s11__img {
    width: 100%;
    max-width: 700px;
  }
  .s11__box {
    order: 1;
  }
  .s11__wrap {
    padding: 70px 0;
  }
  .s11__box {
    display: flex;
    justify-content: center;
    position: relative;
    background: #006257;
  }
  .s11__title {
    font-size: 32px;
  }
  .s11__form-wrap {
    background: #006257;
    padding-bottom: 100px;
    margin-top: -1px;
  }
  .s11__title-cross {
    width: 50px;
  }
  .s11-form__bottom {
    grid-template-columns: repeat(1, 1fr);
  }
  .s11-form__top {
    justify-content: center;
  }
  .s11-form__select {
    order: 0;
  }
  .s11-form__input {
    order: 1;
  }
  .s11-form__btn {
    order: 2;
  }
  .s11-prices {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .s11__vector {
    width: 100%;
    max-width: 750px;
  }
  .s11__title {
    font-size: 26px;
    max-width: 290px;
  }
  .s11__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .s11__wrap {
    padding: 70px 20px;
  }
	.s11__form-wrap {
		padding: 0 20px;
		padding-bottom: 20px;
	}
  .s11-prices {
    flex-direction: column;
    order: 2;
    gap: 10px;
  }
  .s11__vector2 {
    width: 81px;
    height: 81px;
    top: 20px;
    right: 20px;
  }
  .s11__title-cross {
    margin-top: -5px;
  }
  .s11-form__head {
    font-size: 20px;
    max-width: 250px;
    text-align: center;
    order: 1;
  }
  .s11-form__count {
    padding: 6px 12px;
  }
  .s11-form__num {
    width: 22px;
    font-size: 16px;
    padding: 2px 0;
  }
  .s11-form__colon {
    font-size: 16px;
  }
  .s11-form__select {
    height: 60px;
    margin: 0 0 16px;
  }
  .s11-form__input {
    height: 60px;
    margin: 0 0 16px;
    width: 100%;
  }
  .s11-form__input:last-child {
    margin: 0 0 24px;
  }
  .s11-form__wrap {
    padding: 32px 20px;
  }
}
.footer {
  background: #044941;
  margin-top: -1px;
}
.footer .container {
  max-width: 1440px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  padding: 45px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--white-color);
}
.footer__wrap p {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: start;
  }
  .footer__wrap p, .footer__wrap a {
    width: 100%;
    max-width: 320px;
  }
}
