@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  font-family: "Saira", sans-serif;
}

._container {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (max-width: 1156px) {
  ._container {
    max-width: 970px;
  }
}
@media (max-width: 991.98px) {
  ._container {
    max-width: 750px;
  }
}
@media (max-width: 767.98px) {
  ._container {
    max-width: none;
    padding: 0 10px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header {
  background: url("../img/mainBg3.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 30px;
  position: relative;
  box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.98px) {
  .header {
    margin-top: 0px;
  }
}
.header__promo {
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 1156px) {
  .header__promo {
    height: calc(100vh - 200px);
  }
}
@media (max-width: 767.98px) {
  .header__promo {
    height: 400px;
  }
}
.header__title {
  text-align: center;
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 200px;
}
.header__action {
  width: 300px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.section__menu {
  z-index: 11;
}
.section__menu button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  font-size: 16px;
}
.section__menu button img {
  width: 30px;
}
.section__menu .navigation-menu {
  min-width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23262f;
  color: #f9f9f9;
}
.section__menu .navigation__body {
  width: 100%;
}
.section__menu .navigation__body__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .section__menu .navigation__body__row {
    flex-direction: row-reverse;
  }
}
.section__menu .navigation-menu__overlay {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: 0.3s;
}
.section__menu.open .navigation-menu__overlay {
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .section__menu .navigation-menu {
    justify-content: space-between;
    padding: 0 16px;
  }
  .section__menu .navigation-menu__overlay {
    display: none;
  }
}
.section__menu #close-icon {
  display: none;
}
.section__menu .material-icons img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section__menu .hamburger-menu {
    display: none;
  }
}
.section__menu .site-identity-logo {
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
}
.section__menu .site-identity-logo:hover {
  color: #286f6c;
}
.section__menu .navigation-menu__labels {
  position: fixed;
  visibility: hidden;
  z-index: 3;
  top: 50px;
  left: 0;
  width: 50%;
  height: auto;
  padding: 0px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  background: #23262f;
  transition: translate 0.3s;
  translate: -100% 0;
}
.section__menu .navigation-menu__labels :hover {
  color: #286f6c;
}
@media only screen and (min-width: 768px) {
  .section__menu .navigation-menu__labels {
    position: static;
    top: 0;
    left: 0;
    translate: 0 0;
    width: auto;
    background: transparent;
    flex-direction: row;
    visibility: visible;
  }
}
.section__menu.open .navigation-menu__labels {
  translate: 0 0;
  visibility: visible;
}
.section__menu .navigation-menu__labels > button {
  color: #f9f9f9;
  background: transparent;
  padding: 0 8px;
}

.section__stat {
  margin-top: -65px;
  z-index: 10;
}
.section__stat__content {
  background: #286f6c;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 767px) {
  .section__stat__content {
    margin: 10px;
    padding: 15px;
  }
}
.section__stat__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__stat__item {
  color: #ffffff;
  width: 24%;
  text-align: center;
  border-right: 1px solid #ffffff;
}
.section__stat__item:last-child {
  border-right: none;
}
@media (max-width: 991.98px) {
  .section__stat__item {
    width: 47%;
    padding: 10px;
    margin-bottom: 30px;
  }
  .section__stat__item:nth-child(even) {
    border-right: none;
  }
}
.section__stat__item__digit {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .section__stat__item__digit {
    font-size: 30px;
  }
}
@media (max-width: 479.98px) {
  .section__stat__item__digit {
    font-size: 25px;
  }
}
.section__stat__item__title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: 0.2px;
}
@media (max-width: 991.98px) {
  .section__stat__item__title {
    font-size: 16px;
  }
}
@media (max-width: 479.98px) {
  .section__stat__item__title {
    font-size: 13px;
  }
}

.section__gallery {
  margin-top: 80px;
}
.section__gallery__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section__gallery__item {
  width: 30%;
  padding-left: 10px;
}
@media (max-width: 767.98px) {
  .section__gallery__item {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
  }
}
.section__gallery__item__title {
  color: #23262f;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  text-transform: capitalize;
  margin-bottom: 30px;
}
.section__gallery__item__subtitle {
  color: #23262f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.16px;
  margin-bottom: 30px;
}
.section__gallery__item__link {
  color: #23262f;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
  text-decoration-line: underline;
}
.section__gallery__images {
  width: 65%;
  overflow-x: auto;
  white-space: nowrap;
  /* For Chrome, Safari, and newer versions of Edge */
}
.section__gallery__images ::-webkit-scrollbar {
  width: 1px; /* Width of the entire scrollbar */
}
.section__gallery__images ::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the track (the area behind the thumb) */
}
.section__gallery__images ::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the thumb (the draggable part of the scrollbar) */
  border-radius: 6px; /* Rounded corners of the thumb */
}
@media (max-width: 767.98px) {
  .section__gallery__images {
    width: 100%;
  }
}
.section__gallery__images__link {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .section__gallery__images__link {
    margin-bottom: 15px;
  }
}
.section__gallery__images__link:last-child {
  margin-right: 0;
}
.section__gallery__images__link img {
  height: 400px;
  border-radius: 10px;
}
.section__gallery__images__link__title {
  position: absolute;
  bottom: 10px;
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
  letter-spacing: 0.28px;
  text-align: center;
  width: 100%;
}

@media (max-width: 767.98px) {
  .nav {
    padding: 20px 10px !important;
  }
}
.nav__link {
  color: #fff;
  margin-right: 10px;
}
.nav__link:last-child {
  margin: 0;
}
.nav__link:hover {
  color: #286f6c;
}

.section__features {
  margin-top: 80px;
}
.section__features__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.section__features__item {
  width: 47%;
}
@media (max-width: 767.98px) {
  .section__features__item {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.section__features__item__title {
  color: #23262f;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 52px */
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .section__features__item__title {
    margin-bottom: 10px;
  }
}
@media (max-width: 479.98px) {
  .section__features__item__title {
    font-size: 16px;
  }
}
.section__features__item__subtitle {
  color: #23262f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 34px */
}
@media (max-width: 479.98px) {
  .section__features__item__subtitle {
    font-size: 14px;
  }
}
.section__features__item__img img {
  width: 100%;
}

.section__choice {
  margin-top: 80px;
}
.section__choice__row {
  background: url("../img/choiceBg.png");
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .section__choice__row {
    justify-content: center;
  }
}
.section__choice__item {
  width: 50%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5294117647);
}
@media (max-width: 991.98px) {
  .section__choice__item {
    width: 90%;
    margin: 20px 0;
  }
}
@media (max-width: 479.98px) {
  .section__choice__item {
    width: 100%;
    margin: 0;
  }
}
.section__choice__item__title {
  color: #23262f;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .section__choice__item__title {
    font-size: 23px;
  }
}
.section__choice__item__option {
  margin-top: 20px;
  display: flex;
}
.section__choice__item__option__icon {
  margin-right: 15px;
}
.section__choice__item__option__icon img {
  width: 20px;
}
.section__choice__item__option__text__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.text__number{
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .section__choice__item__option__text__title {
    font-size: 16px;
  }
}
.section__choice__item__option__text__subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 991.98px) {
  .section__choice__item__option__text__subtitle {
    font-size: 14px;
  }
}

.section__testimonials {
  margin-top: 80px;
}
.section__testimonials__content {
  position: relative;
}
.section__testimonials__swiper {
  height: auto;
  padding: 0 30px !important;
}
.section__testimonials .pagination__body {
  padding-bottom: 20px;
  text-align: center;
}
.section__testimonials .swiper-wrapper {
  transition-timing-function: linear !important;
}
.section__testimonials .swiper-slide {
  width: 100%;
}
.section__testimonials__swiper {
  padding: 0 !important;
}
.section__testimonials__item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 629.98px) {
  .section__testimonials__item {
    flex-direction: column;
  }
}
.section__testimonials__item__content {
  width: 47%;
}
@media (max-width: 629.98px) {
  .section__testimonials__item__content {
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
}
.section__testimonials__item__content img {
  width: 100%;
  height: 300px;
}
@media (max-width: 629.98px) {
  .section__testimonials__item__content img {
    height: auto;
  }
}
.section__testimonials__item__content__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section__testimonials__item__content__date {
  color: #52545a;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.section__testimonials__item__content__comment {
  color: #23262f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 479.98px) {
  .section__testimonials__item__content__comment {
    text-align: justify;
  }
}
.section__testimonials__item__content__actions {
  margin-top: 20px;
  display: flex;
}
@media (max-width: 629.98px) {
  .section__testimonials__item__content__actions {
    justify-content: center;
  }
}
.section__testimonials__item__content__actions .action__arrow {
  background: #286f6c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__testimonials__item__content__actions .action__arrow path {
  stroke: #ffffff;
}
.section__testimonials__item__content__actions .action__arrow__prev {
  margin-right: 5px;
}
.section__testimonials__item__content__actions .action__arrow__next {
  margin-left: 5px;
}
.section__testimonials__item__content__actions .swiper-button-disabled {
  background: white;
  filter: drop-shadow(0px 4px 10px rgba(15, 27, 51, 0.05));
}
.section__testimonials__item__content__actions .swiper-button-disabled path {
  stroke: #000000;
}

.section__feedback {
  margin-top: 80px;
  background: url("../img/feedback.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1156px) {
  .section__feedback {
    background-position: 60%;
  }
}
.section__feedback__row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 500px;
}
@media (max-width: 1156px) {
  .section__feedback__row {
    background-position: 60%;
  }
}
@media (max-width: 991.98px) {
  .section__feedback__row {
    height: 400px;
    text-align: center;
  }
}
.section__feedback__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .section__feedback__item {
    width: 100%;
    align-items: center;
  }
}
.section__feedback__item__title {
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .section__feedback__item__title {
    font-size: 25px;
  }
}
@media (max-width: 479.98px) {
  .section__feedback__item__title {
    font-size: 20px;
  }
}
.section__feedback__item__input {
  width: 100%;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .section__feedback__item__input {
    max-width: 400px;
  }
}
.section__feedback__item__action {
  width: 152px;
  height: 60px;
  background: #23262f;
  color: #ffffff;
  border-radius: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
}
.section__feedback__item__action:hover {
  background: #ffffff;
  border: 1px solid #23262f;
  color: #23262f;
}

.section__modal .chous {
  width: 180px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  margin: 25px;
  cursor: pointer;
  display: block;
  font: 14px/50px Tahoma;
  transition: all 0.18s ease-in-out;
  border: 1px solid #4fd666;
  background: linear-gradient(to top right, #3ec97a, #69ea49 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0)) top right/500% 500%;
  color: #4fd666;
}
.section__modal .chous:hover {
  color: white;
  background-position: bottom left;
}
.section__modal .my {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.section__modal {
  border-radius: 20px !important;
  background: #286f6c !important;
  color: #fff !important;
}
.section__modal__title {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
}
.section__modal__subtitle {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: 0.2px;
}
.section__modal__check {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.section__modal__check__input {
  width: calc(70% - 5px);
  padding: 10px;
  height: 40px;
  margin-right: 5px;
  border-radius: 5px;
}
.section__modal__check__action {
  width: 30%;
  height: 40px;
  border-radius: 5px;
  border-radius: 8px;
  background: #23262f;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 20px */
}
/*----------------------------------------------------------------------*/
.footer {
  padding: 50px 0px;
  background: #23262f;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .footer {
    padding: 20px 0px;
  }
}
.footer__header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.footer__title {
  font-size: 32px;
}
.footer__social {
  display: flex;
}
.footer__social a {
  margin-left: 10px;
}
.footer__social a:hover {
  background: #286f6c;
  border-radius: 50%;
}
.footer__copy {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}
.footer__items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__items {
    flex-direction: column;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-left: 10px;
}
@media (max-width: 767.98px) {
  .footer__item {
    padding: 0;
  }
}
.footer__item .subtitle {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer__item a {
  color: inherit;
  cursor: pointer;
  margin-bottom: 10px;
}
.footer__item a:hover {
  color: #286f6c;
}/*# sourceMappingURL=style.css.map */