:root {
  --font-family: "Roboto", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black: #242222;
  --color-1: #2581d9;
  --color-2: #41bef7;
  --color-text: #636060;
  --color-3: #bceafe;
  --color-4: #f6ecff;
  --color-5: #024260;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-weight: 400;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, p, ul {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn {
  outline: none;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 29px;
  background: var(--color-1);
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: var(--color-5);
  }
}

.btn-light {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 36px;
  background-color: var(--color-2);
  border: 1px solid var(--color-2);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn-light:hover {
    background-color: transparent;
  }
}

.btn-outline {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 36px;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn-outline:hover {
    background-color: var(--color-2);
  }
}

.btn-grey {
  font-weight: 700;
  color: var(--color-1);
  background-color: #f6f4f4;
  border-radius: 86px;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
}
.btn-grey img {
  -webkit-transition: -webkit-filter 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: -webkit-filter 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: filter 0.3s ease 0s, transform 0.3s ease 0s;
  transition: filter 0.3s ease 0s, transform 0.3s ease 0s, -webkit-filter 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .btn-grey:hover {
    background-color: var(--color-1);
    color: #fff;
  }
  .btn-grey:hover img {
    -webkit-filter: brightness(10);
    filter: brightness(10);
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
}

.title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.49;
  text-transform: uppercase;
  color: var(--color-1);
}
@media (max-width: 576px) {
  .title {
    font-size: 18px;
  }
}

.subtitle {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.49;
  color: #000;
}
@media (max-width: 576px) {
  .subtitle {
    font-size: 34px;
    line-height: 1.3;
  }
}

.description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
}

.padY {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .padY {
    padding: 60px 0;
  }
}

.padY120 {
  padding: 120px 0;
}
@media (max-width: 1240px) {
  .padY120 {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .padY120 {
    padding: 60px 0;
  }
}

.text-white {
  color: #ffffff;
}

.header {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  width: 100%;
}
.header .container-header {
  max-width: 1200px;
  margin: 0 auto;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__wrap-logo {
  padding: 22px 23px 35px 23px;
  background-color: var(--color-5);
  border-radius: 0 0 20px 20px;
  -ms-flex-preferred-size: 175px;
  flex-basis: 175px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .header__wrap-logo {
    -ms-flex-preferred-size: 159px;
    flex-basis: 159px;
    padding: 20px 15px 35px;
  }
}
@media (max-width: 992px) {
  .header__wrap-logo {
    -ms-flex-preferred-size: 90px;
    flex-basis: 90px;
    max-width: 90px;
    padding: 12px 12px 20px 12px;
    position: absolute;
    left: 20px;
  }
}
.header__logo img {
  width: 110px;
}
.header__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header__action {
  background-color: var(--color-1);
  padding: 12px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .header__action {
    padding: 12px 20px;
  }
}
@media (max-width: 992px) {
  .header__action {
    padding: 15px 20px;
  }
}
@media (max-width: 992px) {
  .header__information {
    display: none;
  }
}
@media (max-width: 992px) {
  .header__social {
    display: none;
  }
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 11px;
  -webkit-box-shadow: 1px 1px 6px 0 rgba(96, 90, 90, 0.25);
  box-shadow: 1px 1px 6px 0 rgba(96, 90, 90, 0.25);
  background: #fff;
  border-radius: 0 0 20px 0;
}
.header__navigation nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__navigation nav > ul > li > a {
  display: inline-block;
  padding: 25px 28px;
  color: var(--color-black);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  border-right: 1px solid #e1e1e1;
  position: relative;
}
@media (max-width: 1200px) {
  .header__navigation nav > ul > li > a {
    padding: 25px 20px;
  }
}
.header__navigation nav > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--color-1);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__navigation nav > ul > li > a:hover {
    color: var(--color-1);
  }
  .header__navigation nav > ul > li > a:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 100%;
  }
}
.header__navigation nav > ul > li > a.menu__item-active {
  font-weight: 700;
  color: var(--color-1);
}
@media (any-hover: hover) {
  .header__navigation nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}
.header__navigation .sub-menu {
  position: absolute;
  -webkit-box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.07);
  background: #fff;
  padding: 12px 25px 15px;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(15px);
  -ms-transform: translate(15px);
  transform: translate(15px);
  -webkit-transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility 0.5s ease 0s;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s, visibility 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.header__navigation .sub-menu > li:not(:last-child) {
  margin-bottom: 15px;
}
.header__navigation .sub-menu > li > a {
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__navigation .sub-menu > li > a:hover {
    color: var(--color-1);
  }
}
@media (max-width: 992px) {
  .header__navigation {
    display: none;
  }
}
.header__btn {
  padding: 16px 30px;
}
@media (max-width: 1200px) {
  .header__btn {
    padding: 13px 25px;
    font-size: 14px;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 992px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    outline: none;
    border: none;
    width: 39px;
    height: 39px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 8px;
    position: relative;
    cursor: pointer;
  }
  .header__burger span {
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: var(--color-1);
    position: relative;
  }
  .header__burger span:after, .header__burger span:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-1);
  }
  .header__burger span:after {
    margin-top: 7px;
  }
  .header__burger span:before {
    margin-top: -7px;
  }
}
.header .menu-item-plus {
  display: inline-block;
  margin-left: 5px;
}

.information > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.information > ul > li, .information > ul li > a {
  color: #fff;
}
.information > ul > li:not(:last-child) {
  padding-right: 12px;
  border-right: 0.8px solid rgba(255, 255, 255, 0.4);
  height: 100%;
}
@media (max-width: 1200px) {
  .information > ul {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
.information__item {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .information__item:hover {
    opacity: 0.7;
  }
}
.information__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.information__icon {
  -ms-flex-preferred-size: 40px;
  flex-basis: 40px;
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.information__body > span {
  font-size: 12px;
  color: #dadada;
  display: inline-block;
  margin-bottom: 3px;
}
.information__body > p {
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .information__body > p {
    font-size: 13px;
  }
}

.social-header > ul, .social-footer > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
}
.social-header > ul > li, .social-footer > ul > li {
  width: 40px;
  aspect-ratio: 1;
  border: 1px solid #fff;
  border-radius: 100%;
}
.social-header > ul > li > a, .social-footer > ul > li > a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.social-header > ul > li > a img, .social-footer > ul > li > a img {
  width: 14px;
  aspect-ratio: 1;
}
@media (any-hover: hover) {
  .social-header > ul > li > a:hover, .social-footer > ul > li > a:hover {
    opacity: 0.7;
  }
}
.header__wrap-mobile {
  display: none;
}
@media (max-width: 992px) {
  .header__wrap-mobile {
    display: block;
    position: fixed;
    width: 375px;
    left: auto;
    right: 0;
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 6px 0 rgba(96, 90, 90, 0.25);
    box-shadow: 1px 1px 6px 0 rgba(96, 90, 90, 0.25);
    height: 100vh;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .header__wrap-mobile.menu-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.header__mobile-head {
  background-color: var(--color-5);
  padding: 12px 20px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
}
.header__mobile-close-btn {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 35px;
  height: 35px;
  border-radius: 4px;
}
.header__mobile-close-btn img {
  width: 100%;
  height: 100%;
}
.header__mobile-body .sub-menu {
  display: none;
}
.header__mobile-body .sub-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px 18px 40px;
  color: var(--color-black);
  border-bottom: 1px solid #dbd5d5;
}
.header__mobile-body nav > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  color: var(--color-black);
  border-bottom: 1px solid #dbd5d5;
}
.header__mobile-body nav > ul > li > a > span {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #e7e6e6;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header__mobile-body .menu-has-children.is-active span {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header .mobile-header-info__list {
  padding: 35px 20px;
}
.header .mobile-header-info__item:not(:last-child) {
  margin-bottom: 30px;
}
.header .mobile-header-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.header .mobile-header-info__icon {
  -ms-flex-preferred-size: 40px;
  flex-basis: 40px;
  width: 40px;
  aspect-ratio: 1;
  background-color: #dce8f4;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .mobile-header-info__body span {
  font-size: 12px;
  color: #b4abab;
  margin-bottom: 2px;
}
.header .mobile-header-info__body p {
  font-weight: 700;
  font-size: 14px;
  color: #362f2f;
}
.header .mobile-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11px;
  -moz-column-gap: 11px;
  column-gap: 11px;
  padding-left: 20px;
  margin-bottom: 37px;
}
.header .mobile-social__list + .header__btn {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 47px;
}
.header .mobile-social__item {
  width: 41px;
  height: 41px;
  background-color: #dce8f4;
  border-radius: 100%;
}
.header .mobile-social__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .promo {
    background-position: 70% 0;
  }
}
.promo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  padding-top: 186px;
}
@media (max-width: 992px) {
  .promo__row {
    padding-top: 140px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.promo__content {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 584px;
}
@media (max-width: 992px) {
  .promo__content {
    padding-bottom: 100px;
    max-width: none;
    width: 100%;
    background-color: var(--color-2);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 80px;
  }
}
.promo__suptitle p {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 27px;
}
@media (max-width: 992px) {
  .promo__suptitle p {
    text-align: center;
  }
}
.promo__title {
  font-weight: 900;
  font-size: clamp(34px, 6.67vw, 80px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
@media (max-width: 1250px) {
  .promo__title br {
    display: none;
  }
}
@media (max-width: 992px) {
  .promo__title {
    text-align: center;
  }
}
.promo__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.76;
  color: #dedcdc;
  max-width: 526px;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .promo__text p {
    margin: 0 auto 42px auto;
    text-align: center;
  }
}
.promo__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media (max-width: 992px) {
  .promo__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 24px;
  }
}
@media (max-width: 992px) {
  .promo__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .promo__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.promo__btn {
  padding: 20px 42px;
}
@media (max-width: 992px) {
  .promo__btn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 992px) {
  .promo__btn.btn-light {
    background-color: #fff;
    color: var(--color-1);
  }
}
.promo__image img {
  display: block;
}
@media (max-width: 768px) {
  .promo__image img {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .promo__image img {
    margin: 0 auto;
  }
}

.benefits__wrapper {
  padding-block: 60px;
  border-bottom: 1px solid #e3e3e3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  row-gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .benefits__list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .benefits__list {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.benefits__item {
  max-width: 364px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}
@media (max-width: 1200px) {
  .benefits__item {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .benefits__item {
    max-width: 335px;
  }
}
.benefits__icon {
  -ms-flex-preferred-size: 86px;
  flex-basis: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 100%;
  background-color: var(--color-1);
}
@media (max-width: 768px) {
  .benefits__icon {
    -ms-flex-preferred-size: 75px;
    flex-basis: 75px;
    width: 75px;
    height: 75px;
  }
  .benefits__icon img {
    width: 40px;
    height: 40px;
  }
}
.benefits__body {
  -ms-flex-preferred-size: calc(100% - 111px);
  flex-basis: calc(100% - 111px);
}
@media (max-width: 768px) {
  .benefits__body {
    -ms-flex-preferred-size: calc(100% - 85px);
    flex-basis: calc(100% - 85px);
  }
}
.benefits__body h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.32;
  color: var(--color-black);
  margin-bottom: 10px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .benefits__body h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .benefits__body h3 {
    font-size: 19px;
    margin-bottom: 5px;
  }
}
.benefits__body p {
  line-height: 1.32;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .benefits__body p {
    font-size: 14px;
  }
}

.about-us__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .about-us__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }
}
.about-us__body {
  max-width: 555px;
}
@media (max-width: 1200px) {
  .about-us__body {
    -ms-flex-preferred-size: calc(100% - 552px);
    flex-basis: calc(100% - 552px);
  }
}
@media (max-width: 1080px) {
  .about-us__body {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: none;
    text-align: center;
  }
}
.about-us__title {
  margin-bottom: 7px;
}
.about-us__subtitle {
  margin-bottom: 18px;
}
.about-us__text {
  margin-bottom: 31px;
}
.about-us__counters {
  max-width: 488px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
  padding: 45px 40px;
  border: 1px solid var(--color-1);
  border-radius: 14px;
  text-align: center;
}
@media (max-width: 1200px) {
  .about-us__counters {
    padding: 30px 25px;
  }
}
@media (max-width: 1080px) {
  .about-us__counters {
    margin: 0 auto;
  }
}
.about-us__counter {
  padding: 11px;
}
.about-us__counter:nth-child(odd) {
  border-right: 1px solid rgba(37, 129, 217, 0.35);
}
.about-us__counter:nth-child(-n+2) {
  border-bottom: 1px solid rgba(37, 129, 217, 0.35);
}
.about-us__number {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.44;
  color: var(--color-1);
}
@media (max-width: 1200px) {
  .about-us__number {
    font-size: 42px;
  }
}
.about-us__number-descr {
  line-height: 1.49;
  color: var(--color-text);
}
.about-us__img {
  max-width: 527px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.about-us__img span {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
}
.about-us__img span img {
  height: 100%;
  display: block;
}
.about-us__img span:nth-child(1) {
  -ms-flex-preferred-size: 153px;
  flex-basis: 153px;
}
.about-us__img span:nth-child(1) img {
  -o-object-position: 0 0;
  object-position: 0 0;
}
.about-us__img span:nth-child(2) {
  -ms-flex-preferred-size: 259px;
  flex-basis: 259px;
}
.about-us__img span:nth-child(2) img {
  -o-object-position: -180px 0px;
  object-position: -180px 0px;
}
.about-us__img span:nth-child(3) {
  -ms-flex-preferred-size: 75px;
  flex-basis: 75px;
}
.about-us__img span:nth-child(3) img {
  -o-object-position: 100% 0;
  object-position: 100% 0;
}
@media (max-width: 1080px) {
  .about-us__img {
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .about-us__img span:nth-child(n+2) {
    display: none;
  }
}

.marquee {
  padding: 35px 0;
  background-color: var(--color-3);
}
.marquee__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 42px;
  -moz-column-gap: 42px;
  column-gap: 42px;
  -webkit-animation: marquee 15s linear infinite;
  animation: marquee 15s linear infinite;
}
.marquee__item {
  font-weight: 500;
  font-size: 65px;
  line-height: 1.47;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--color-black);
  color: transparent;
  position: relative;
}
.marquee__item:after {
  content: "+";
  display: inline-block;
  margin-left: 42px;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.marquee__item:before {
  content: attr(data-name);
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: var(--color-1);
  -webkit-text-stroke: 0 transparent;
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
.marquee__item:hover:before {
  width: 100%;
}
.marquee__item:hover:after {
  color: var(--color-1);
}

.services__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .services__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    margin-bottom: 50px;
  }
}
.services__descr {
  max-width: 545px;
}
@media (max-width: 1200px) {
  .services__descr {
    max-width: none;
  }
}
.services__descr p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
}
.services__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 60px;
}
@media (max-width: 1200px) {
  .services__list {
    gap: 40px 30px;
  }
}
@media (max-width: 992px) {
  .services__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}
@media (max-width: 576px) {
  .services__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.services__item {
  padding-right: 40px;
  border-right: 1px solid #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .services__item {
    padding-right: 30px;
  }
}
.services__item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 992px) {
  .services__item {
    border-right: 1px solid #e3e3e3;
  }
  .services__item:nth-child(4n) {
    border-right: 1px solid #e3e3e3;
  }
  .services__item:nth-child(3n) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .services__item {
    border-right: none;
    padding-right: 0;
    padding-inline: 15px;
    text-align: center;
  }
  .services__item:nth-child(odd) {
    border-right: 1px solid #e3e3e3;
  }
  .services__item:nth-child(4n) {
    border-right: none;
  }
}
@media (any-hover: hover) {
  .services__item:hover .services__icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .services__item:hover .services__icon img {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
  }
}
.services__icon {
  width: 90px;
  height: 90px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-4);
  border-radius: 50%;
  margin-bottom: 25px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.services__icon img {
  -webkit-transition: -webkit-filter 0.3s ease 0s;
  transition: -webkit-filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s, -webkit-filter 0.3s ease 0s;
}
@media (max-width: 768px) {
  .services__icon {
    margin-inline: auto;
  }
}
.services__name {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.services__content p {
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 25px;
}
.services__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 23px;
  -moz-column-gap: 23px;
  column-gap: 23px;
  font-weight: 700;
  color: var(--color-1);
  margin-top: auto;
}
.services__link img {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.services__link:hover img {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .services__link {
    margin-inline: auto;
  }
}

.why {
  background-color: var(--color-3);
}
.why__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 75px;
  -moz-column-gap: 75px;
  column-gap: 75px;
}
@media (max-width: 1200px) {
  .why__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 45px;
  }
}
.why__body {
  -ms-flex-preferred-size: calc(100% - 665px);
  flex-basis: calc(100% - 665px);
}
.why__subtitle {
  margin-bottom: 20px;
}
.why__text {
  margin-bottom: 34px;
}
.why__progress-item:not(:last-child) {
  margin-bottom: 26px;
}
.why__progress-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.98;
  color: var(--color-black);
  margin-bottom: 20px;
}
.why__progress-line {
  height: 10px;
  background-color: #f1f1f1;
  width: 100%;
  overflow: hidden;
  border-radius: 50px;
}
.why__progress-drag {
  background-color: var(--color-1);
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 50px 50px 0;
}
.why__slider {
  -ms-flex-preferred-size: 590px;
  flex-basis: 590px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .why__slider {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .why__slider .twentytwenty-wrapper {
    overflow: hidden;
    max-width: 590px;
    border-radius: 20px;
    margin-inline: auto;
  }
}

.team__head {
  max-width: 600px;
  margin: 0 auto 60px auto;
}
.team__subtitle {
  margin-bottom: 13px;
}
.team__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .team__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.team__item {
  width: calc(25% - 16.5px);
  padding: 15px 15px 28px 15px;
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 18px 3px rgba(133, 123, 123, 0.14);
  box-shadow: 0 4px 18px 3px rgba(133, 123, 123, 0.14);
}
@media (any-hover: hover) {
  .team__item:hover .team__social {
    bottom: 16px;
  }
}
@media (max-width: 1200px) {
  .team__item {
    width: calc(33% - 15px);
    max-width: 278px;
  }
}
@media (max-width: 768px) {
  .team__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .team__item {
    width: 100%;
  }
}
.team__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 18px;
  height: 290px;
}
.team__image {
  height: 100%;
}
.team__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.team__social {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7px;
  -moz-column-gap: 7px;
  column-gap: 7px;
  -webkit-transition: bottom 0.3s ease 0s;
  transition: bottom 0.3s ease 0s;
}
.team__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.team__social a img {
  -webkit-transition: -webkit-filter 0.3s ease 0s;
  transition: -webkit-filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s, -webkit-filter 0.3s ease 0s;
}
.team__social a:hover {
  background-color: var(--color-1);
}
.team__social a:hover img {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
@media (max-width: 992px) {
  .team__social {
    bottom: 16px;
  }
}
.team__footer * {
  display: block;
}
.team__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.49;
  color: #000;
  margin-bottom: 6px;
}
.team__spec {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.49;
  text-transform: uppercase;
  color: var(--color-text);
}
.team__btn {
  display: inline-block;
  padding: 16px 30px;
}

.faq {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(70%, #F6ECFF), color-stop(70%, #ffffff));
  background: linear-gradient(to top, #F6ECFF 70%, #ffffff 70%);
  position: relative;
}
.faq__wrap {
  position: relative;
  z-index: 1;
  background-color: #00afff;
  padding: 50px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .faq__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-top: 120px;
  }
}
@media (max-width: 576px) {
  .faq__wrap {
    padding-inline: 30px;
    padding-top: 100px;
  }
}
.faq__content {
  -ms-flex-preferred-size: 480px;
  flex-basis: 480px;
}
@media (max-width: 1200px) {
  .faq__content {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.faq__icon {
  position: absolute;
  left: 50px;
  top: 0;
  background-color: var(--color-1);
  padding: 24px;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 576px) {
  .faq__icon {
    padding: 17px 15px;
  }
  .faq__icon img {
    width: 20px;
  }
}
.faq__text p {
  color: #ffffff;
}
.faq__subtitle {
  margin-bottom: 28px;
}
@media (max-width: 1200px) {
  .faq__subtitle {
    margin-bottom: 20px;
  }
  .faq__subtitle br {
    display: none;
  }
}
.faq__body {
  -ms-flex-preferred-size: calc(100% - 540px);
  flex-basis: calc(100% - 540px);
}
@media (max-width: 1200px) {
  .faq__body {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.faq__list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: list;
}
.faq__item {
  padding: 25px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
}
.faq__item:not(:last-child) {
  margin-bottom: 20px;
}
.faq__item:nth-child(1) .faq-answer {
  display: block;
}
.faq__item.is-active .faq-item:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 576px) {
  .faq__item {
    padding: 12px 14px;
  }
}
.faq .faq-item {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.47;
  color: #000;
  position: relative;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.faq .faq-item:before {
  counter-increment: list;
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq .faq-item:after {
  content: "+";
  font-size: 32px;
  line-height: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .faq .faq-item:after {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .faq .faq-item {
    font-size: 14px;
  }
}
.faq .faq-answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 147%;
  color: var(--color-text);
  padding-top: 18px;
  border-top: 1px solid #dedede;
  margin-top: 12px;
  display: none;
}
@media (max-width: 576px) {
  .faq .faq-answer {
    font-size: 12px;
    padding-top: 10px;
  }
}
.faq .star-m-left {
  position: absolute;
  left: 5%;
  top: 35%;
}
.faq .dots-right {
  position: absolute;
  top: 35%;
  right: -2%;
}

.testimonials {
  background-color: var(--color-4);
  position: relative;
}
.testimonials__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .testimonials__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
@media (max-width: 576px) {
  .testimonials__wrap {
    row-gap: 0;
  }
}
.testimonials__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 545px;
  flex: 0 1 545px;
  overflow: hidden;
  border-radius: 20px;
}
.testimonials__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .testimonials__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    max-width: 545px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .testimonials__image img {
    display: none;
  }
}
.testimonials__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 585px);
  flex: 0 1 calc(100% - 585px);
}
@media (max-width: 992px) {
  .testimonials__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (max-width: 992px) {
  .testimonials__title {
    text-align: center;
  }
}
.testimonials__subtitle {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .testimonials__subtitle {
    text-align: center;
  }
  .testimonials__subtitle br {
    display: none;
  }
}
.testimonials__text {
  max-width: 400px;
  margin-bottom: 34px;
}
@media (max-width: 992px) {
  .testimonials__text {
    max-width: none;
    text-align: center;
  }
}
.testimonials__slider {
  max-width: 615px;
  overflow: visible;
}
.testimonials__slide {
  background-color: #ffffff;
  padding: 0 35px 110px 35px;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .testimonials__slide {
    padding: 0 25px 110px 25px;
  }
}
.testimonials__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 17px;
  -moz-column-gap: 17px;
  column-gap: 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 19px;
}
.testimonials__quot {
  padding: 12px;
  background-color: var(--color-1);
  border-radius: 0 0 9px 9px;
}
.testimonials__quot img {
  width: 30px;
  height: 24px;
}
.testimonials__content {
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
}
.testimonials__footer {
  background-color: var(--color-1);
  position: absolute;
  bottom: -80px;
  width: calc(100% - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 27px;
  -moz-column-gap: 27px;
  column-gap: 27px;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 480px) {
  .testimonials__footer {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: calc(100% - 50px);
    padding: 10px;
    bottom: -60px;
  }
}
.testimonials__avatar {
  overflow: hidden;
  width: 125px;
  height: 130px;
  border-radius: 10px;
}
.testimonials__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.49;
  color: #ffffff;
  margin-bottom: 4px;
}
.testimonials__spec {
  font-weight: 500;
  line-height: 1.49;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 11px;
}
.testimonials__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.testimonials__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.testimonials__social a:hover {
  background-color: var(--color-2);
}
.testimonials__social a img {
  width: 11px;
}
.testimonials .swiper-pagination {
  position: static;
  margin-top: 100px;
}
.testimonials .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: var(--color-1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 8px;
}
.testimonials .star-sm-left {
  position: absolute;
  left: 8%;
  top: 15%;
}
@media (max-width: 768px) {
  .testimonials .star-sm-left {
    display: none;
  }
}
.testimonials .star-sm-right {
  position: absolute;
  top: 15%;
  right: 15%;
}
@media (max-width: 768px) {
  .testimonials .star-sm-right {
    display: none;
  }
}
.testimonials .dots-left {
  position: absolute;
  left: 14%;
  bottom: 8%;
  z-index: 0;
}
@media (max-width: 992px) {
  .testimonials .dots-left {
    left: 3%;
    bottom: 3%;
  }
}
@media (max-width: 768px) {
  .testimonials .dots-left {
    display: none;
  }
}
.testimonials .star-big-right {
  position: absolute;
  bottom: 8%;
  right: 10%;
}
@media (max-width: 992px) {
  .testimonials .star-big-right {
    right: 3%;
    bottom: 3%;
  }
}
@media (max-width: 768px) {
  .testimonials .star-big-right {
    display: none;
  }
}

.pricing__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .pricing__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    margin-bottom: 50px;
  }
}
.pricing__descr {
  max-width: 545px;
}
@media (max-width: 1200px) {
  .pricing__descr {
    max-width: none;
  }
}
.pricing__descr p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--color-text);
}
.pricing__body {
  border-radius: 20px;
  border: 1px solid #D4CCCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .pricing__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
}
.pricing__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
}
.pricing__item:nth-child(even) {
  background-color: #f4f4f4;
}
.pricing__item:nth-child(even) .pricing__price {
  background-color: var(--color-1);
}
@media (max-width: 768px) {
  .pricing__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.pricing__plan {
  font-weight: 700;
  padding-block: 17px;
  font-size: 24px;
  line-height: 1.85;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
}
.pricing__price {
  background-color: var(--color-2);
  padding-block: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 11px;
  -moz-column-gap: 11px;
  column-gap: 11px;
}
.pricing__big {
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
  text-transform: uppercase;
}
.pricing__month {
  font-weight: 500;
  line-height: 1.36;
}
.pricing__element {
  padding: 15px 30px;
  line-height: 1.85;
  color: var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  border-bottom: 1px solid #e0dada;
}
.pricing__element:before {
  content: "";
  background-image: url("../img/pricing/checkbox.svg");
  background-size: 9px 9px;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 21px;
  background-color: var(--color-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.pricing__off:before {
  background-color: #B5AFAF;
}
.pricing__footer {
  padding: 26px 0;
}
.pricing__btn {
  display: block;
  padding: 16px 30px;
  margin: 0 auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.video {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, var(--color-3)), color-stop(60%, #ffffff));
  background: linear-gradient(to top, var(--color-3) 60%, #ffffff 60%);
  position: relative;
}
.video__wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid var(--color-2);
  z-index: 1;
}
.video__poster {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 127px;
  height: 127px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-1);
}
.video__btn img {
  width: 50px;
}
@media (max-width: 992px) {
  .video__btn img {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .video__btn img {
    width: 30px;
  }
}
@media (max-width: 992px) {
  .video__btn {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .video__btn {
    width: 80px;
    height: 80px;
  }
}
.video .star-m-left {
  position: absolute;
  left: 5%;
  top: 55%;
  z-index: 0;
}
.video .dots-right {
  position: absolute;
  top: 55%;
  right: -2%;
  z-index: 0;
}

.gallery {
  background-color: var(--color-3);
  position: relative;
}
.gallery__head {
  text-align: center;
}
.gallery__title {
  margin-bottom: 13px;
}
.gallery__descr {
  max-width: 600px;
  margin: 0 auto 45px auto;
}
.gallery .swiper-slide {
  height: auto;
}
.gallery__slide {
  position: relative;
  height: 100%;
}
.gallery__slide > a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__slide > a > img {
  display: block;
  height: 100%;
  width: 100%;
  display: block;
}
.gallery__slide:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: rgba(48, 118, 184, 0.9);
  border-radius: 16px;
  padding: 27px 20px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  pointer-events: none;
}
.gallery__border {
  border: 2px solid #fff;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 15px;
}
.gallery__border img {
  width: 45px;
  height: 45px;
}
.gallery__text {
  max-width: 170px;
  text-align: center;
}
.gallery__text p {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.26;
  color: #fff;
}
.gallery__link {
  padding: 16px 30px;
  display: inline-block;
  margin-top: 50px;
}
.gallery .swiper-horizontal > .swiper-scrollbar, .gallery .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
  margin: 50px auto 0 auto;
  max-width: 315px;
  height: 8px;
  background-color: rgba(37, 129, 217, 0.2);
}
.gallery .swiper {
  max-width: 1920px;
}
@media (max-width: 480px) {
  .gallery .swiper-wrapper {
    max-height: 520px;
  }
}
@media (max-width: 480px) {
  .gallery .swiper-slide {
    max-height: 520px;
  }
}
.gallery .swiper-scrollbar-drag {
  background-color: var(--color-1);
  cursor: pointer;
}
.gallery .star-sm-left {
  position: absolute;
  left: 8%;
  top: 15%;
}
@media (max-width: 768px) {
  .gallery .star-sm-left {
    display: none;
  }
}
.gallery .star-sm-right {
  position: absolute;
  top: 15%;
  right: 15%;
}
@media (max-width: 768px) {
  .gallery .star-sm-right {
    display: none;
  }
}
.gallery .dots-left {
  position: absolute;
  left: -1%;
  bottom: 3%;
  z-index: 0;
}
@media (max-width: 992px) {
  .gallery .dots-left {
    left: 3%;
    bottom: 3%;
  }
}
@media (max-width: 768px) {
  .gallery .dots-left {
    display: none;
  }
}
.gallery .star-big-right {
  position: absolute;
  bottom: 10%;
  right: 5%;
}
@media (max-width: 992px) {
  .gallery .star-big-right {
    right: 3%;
    bottom: 3%;
  }
}
@media (max-width: 768px) {
  .gallery .star-big-right {
    display: none;
  }
}

.blog {
  background-color: #faf8f8;
}
.blog__wrap {
  margin-left: calc((100% - var(--container-width)) / 2 + var(--container-offset));
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
@media (max-width: 1240px) {
  .blog__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding-inline: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: 0;
  }
}
.blog__icon {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-1);
  padding: 23px 16px;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 1240px) {
  .blog__icon {
    left: 15px;
  }
}
@media (max-width: 576px) {
  .blog__icon {
    padding: 17px 15px;
  }
  .blog__icon img {
    width: 20px;
  }
}
.blog__content {
  min-width: 400px;
}
@media (max-width: 1240px) {
  .blog__content {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
}
.blog__subtitle {
  margin-bottom: 13px;
}
@media (max-width: 1240px) {
  .blog__subtitle br {
    display: none;
  }
}
.blog__descr {
  margin-bottom: 20px;
}
.blog__button {
  display: inline-block;
  padding: 20px 30px;
}
.blog__articles {
  max-width: 100%;
}
@media (max-width: 1240px) {
  .blog__articles {
    margin: 0 auto;
  }
}
.blog__slider {
  padding-bottom: 80px;
  padding-right: 450px;
}
@media (max-width: 1240px) {
  .blog__slider {
    padding-right: 0;
    max-width: 1065px;
  }
}
@media (max-width: 576px) {
  .blog__slider {
    padding-bottom: 60px;
    max-width: 450px;
  }
}
.blog__slide {
  max-width: 335px;
}
@media (max-width: 1240px) {
  .blog__slide {
    max-width: none;
  }
}
@media (max-width: 992px) {
  .blog__slide {
    height: auto;
  }
}
.blog__card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dedede;
}
@media (max-width: 992px) {
  .blog__card {
    height: 100%;
  }
}
.blog__thumb {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
.blog__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .blog__thumb:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.blog__date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: var(--color-1);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.blog__date_big {
  font-size: 25px;
  font-weight: 700;
  display: block;
}
.blog__date_month {
  font-size: 14px;
  font-weight: 400;
}
.blog__body {
  background-color: #fff;
  padding: 24px 20px 38px;
}
.blog__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 12px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog__text {
  font-weight: 400;
  line-height: 1.98;
  color: var(--color-text);
  margin-bottom: 19px;
}
.blog__text p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.blog__link {
  padding: 20px 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: var(--color-1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 8px;
}

.appointment {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.appointment__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .appointment__wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .appointment__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.appointment__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 470px;
  flex: 0 1 470px;
  overflow: hidden;
  border-radius: 20px;
}
.appointment__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .appointment__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    max-height: 600px;
  }
}
@media (max-width: 768px) {
  .appointment__img {
    max-height: 500px;
  }
}
.appointment__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 650px;
  flex: 0 1 650px;
}
@media (max-width: 992px) {
  .appointment__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.appointment__subtitle {
  margin-bottom: 13px;
}
.appointment__descr {
  margin-bottom: 40px;
}
.appointment__form fieldset {
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .appointment__form fieldset {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 16px;
  }
}
.appointment__form input[type=text],
.appointment__form input[type=tel],
.appointment__form input[type=email],
.appointment__form input[type=date],
.appointment__form input[type=time],
.appointment__form select,
.appointment__form textarea {
  width: 100%;
  padding: 16px 10px 16px 23px;
  background-color: #f6f6f6;
  border: 1px solid #f1e8e8;
  border-radius: 5px;
  outline: none;
}
.appointment__form input[type=text]::-webkit-input-placeholder, .appointment__form input[type=tel]::-webkit-input-placeholder, .appointment__form input[type=email]::-webkit-input-placeholder, .appointment__form input[type=date]::-webkit-input-placeholder, .appointment__form input[type=time]::-webkit-input-placeholder, .appointment__form textarea::-webkit-input-placeholder {
  color: #8a8a8a;
}
.appointment__form input[type=text]::-moz-placeholder, .appointment__form input[type=tel]::-moz-placeholder, .appointment__form input[type=email]::-moz-placeholder, .appointment__form input[type=date]::-moz-placeholder, .appointment__form input[type=time]::-moz-placeholder, .appointment__form textarea::-moz-placeholder {
  color: #8a8a8a;
}
.appointment__form input[type=text]:-ms-input-placeholder, .appointment__form input[type=tel]:-ms-input-placeholder, .appointment__form input[type=email]:-ms-input-placeholder, .appointment__form input[type=date]:-ms-input-placeholder, .appointment__form input[type=time]:-ms-input-placeholder, .appointment__form textarea:-ms-input-placeholder {
  color: #8a8a8a;
}
.appointment__form input[type=text]::-ms-input-placeholder, .appointment__form input[type=tel]::-ms-input-placeholder, .appointment__form input[type=email]::-ms-input-placeholder, .appointment__form input[type=date]::-ms-input-placeholder, .appointment__form input[type=time]::-ms-input-placeholder, .appointment__form textarea::-ms-input-placeholder {
  color: #8a8a8a;
}
.appointment__form input[type=text]::placeholder,
.appointment__form input[type=tel]::placeholder,
.appointment__form input[type=email]::placeholder,
.appointment__form input[type=date]::placeholder,
.appointment__form input[type=time]::placeholder,
.appointment__form textarea::placeholder {
  color: #8a8a8a;
}
.appointment__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/appointment/caret.svg");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: calc(100% - 15px) center;
}
.appointment__form textarea {
  height: 111px;
  resize: vertical;
  margin-bottom: 16px;
}
.appointment__form input[type=submit] {
  padding: 16px 30px;
  cursor: pointer;
}
.partners {
  background-color: #fff;
}
.partners__slide {
  height: auto;
}
.partners__item {
  background-color: var(--color-1);
  border-radius: 20px;
  padding: 35px 23px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 18px;
}
.partners__item:hover .partners__img img:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.partners__item:hover .partners__img img:nth-child(1) {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.partners__img {
  position: relative;
}
.partners__img img {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.partners__img img:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
}
.partners__img img:nth-child(1) {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.partners__partner {
  text-align: center;
  color: #fff;
}
.partners__partner p {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.partners__partner span {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.17em;
}

.newsletter {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding: 15px 0;
}
@media (max-width: 992px) {
  .newsletter {
    padding: 60px 0;
  }
}
.newsletter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(37, 129, 217, 0.9);
  z-index: -1;
}
.newsletter__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 992px) {
  .newsletter__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.newsletter__subtitle {
  margin-bottom: 25px;
}
.newsletter__form {
  border: 1px solid #f1e8e8;
  border-radius: 50px;
  max-width: 512px;
  background: rgba(233, 224, 224, 0.21);
  padding: 7px;
}
@media (max-width: 992px) {
  .newsletter__form {
    max-width: 100%;
  }
}
.newsletter__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.newsletter__form input[type=email] {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 9px 9px 9px 16px;
  color: #fff;
}
.newsletter__form input[type=email]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form input[type=email]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form input[type=email]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter__form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 480px) {
  .newsletter__form input[type=email] {
    font-size: 14px;
    padding-left: 7px;
  }
}
.newsletter__form input[type=submit] {
  padding: 11px 30px 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 480px) {
  .newsletter__form input[type=submit] {
    font-size: 14px;
  }
}
.newsletter__img {
  margin-left: auto;
}
@media (max-width: 992px) {
  .newsletter__img img {
    display: none;
  }
}

.footer__header {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .footer__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__body {
  padding: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: none;
  border-left: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__body {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
@media (max-width: 992px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.footer__descr {
  max-width: 430px;
  padding-right: 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 1200px) {
  .footer__descr {
    max-width: 350px;
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  .footer__descr {
    border: none;
    max-width: none;
  }
}
.footer__text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer__text {
    margin-bottom: 25px;
  }
}
.footer__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #dad5d5;
}
@media (max-width: 768px) {
  .footer__social {
    margin-bottom: 25px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .footer__nav {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 992px) {
  .footer__nav {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 576px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .footer__nav li, .footer__nav li > a {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .footer__column {
    -ms-flex-preferred-size: calc(50% - 5px);
    flex-basis: calc(50% - 5px);
  }
  .footer__column:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 28px;
}
.footer__list > li {
  color: #e0e0e0;
}
.footer__list > li > a {
  color: #e0e0e0;
}
.footer__list > li > a:hover {
  text-decoration: underline;
}
.footer__list > li:not(:last-child) {
  margin-bottom: 12px;
}
.footer__copyright {
  padding: 25px 0;
  text-align: center;
  color: #e2dbdb;
}
@media (max-width: 576px) {
  .footer__copyright p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer .footer__information .information__item {
    border: none;
  }
  .footer .footer__information .information__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}/*# sourceMappingURL=main.css.map */
