@font-face {
  font-family: "TTFors";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/TTFors-Regular.woff2") format("woff2"), url("../fonts/TTFors-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TTFors";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/TTFors-Medium.woff2") format("woff2"), url("../fonts/TTFors-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TTFors";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/TTFors-Bold.woff2") format("woff2"), url("../fonts/TTFors-Bold.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --scrollbar-width: 0px;
  --dark-color: #3b3663;
  --main-color: #5747e4;
  --main-color-hover: #7667ff;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #919191;
}

::-moz-placeholder {
  opacity: 1;
  color: #919191;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #919191;
}

::-ms-input-placeholder {
  opacity: 1;
  color: #919191;
}

::placeholder {
  opacity: 1;
  color: #919191;
}

body, html {
  font-size: 18px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "TTFors", sans-serif;
  line-height: 1.2;
  color: #000;
}

.global-noscroll {
  margin-right: var(--scrollbar-width);
}

.global-noscroll,
.global-noscroll body {
  overflow: hidden !important;
}

a {
  text-decoration: none;
  color: var(--main-color);
}
a:hover {
  color: var(--main-color-hover);
}

button {
  cursor: pointer;
}

strong {
  font-weight: 500;
}

b {
  font-weight: bold;
}

p, blockquote, ul, ol {
  margin: 0 0 1rem;
}

ul, ol {
  padding-left: 1.4em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.2;
}

h1, h2, h3, h4 {
  color: var(--dark-color);
}

h1 {
  text-transform: uppercase;
  font-size: 30px;
}

h2 {
  font-size: 27px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 17px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.img-full-box {
  position: relative;
}
.img-full-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.title {
  margin-bottom: 36px;
  text-align: center;
}

.content > :last-child {
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 13px 20px;
  background-color: #fc9d54;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(223, 59, 56, 0)), to(#df3b38));
  background-image: linear-gradient(to right, rgba(223, 59, 56, 0), #df3b38);
  border: none;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
  font-size: 20px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background-color: #f27a4a;
  color: #fff;
}
.btn._big {
  padding: 16px 25px;
  min-width: 300px;
  font-size: 23px;
}
.btn._full {
  width: 100%;
}

.form-title {
  margin-bottom: 20px;
  font-size: 1.1em;
}
.form-title > * {
  margin-bottom: 12px;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.form-grid .form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  margin-bottom: 0;
}
.form-grid .form-item._full {
  min-width: 100%;
}
.form-grid .form-action {
  width: 100%;
  margin-top: 8px;
}

.form-item {
  margin-bottom: 14px;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 12px 17px;
  background: #fff;
  border: 1px solid rgba(87, 71, 228, 0.5);
  border-radius: 10px;
  line-height: 24px;
  font-weight: normal;
  font-size: 20px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-field:hover {
  border-color: rgba(87, 71, 228, 0.7);
}
.form-field:focus {
  border-color: var(--main-color);
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 100px;
}

.form-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 24px;
  line-height: 18px;
  font-size: 15px;
}
.form-option input,
.form-option span:before,
.form-option span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
.form-option input {
  opacity: 0;
}
.form-option input:checked ~ span:before {
  background-color: var(--main-color);
}
.form-option input:checked ~ span:after {
  opacity: 1;
}
.form-option span {
  display: block;
  position: relative;
  padding: 3px 0 0 32px;
}
.form-option span:before, .form-option span:after {
  border-radius: 4px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.form-option span:before {
  content: "";
  border: 1px solid var(--main-color);
}
.form-option span:after {
  padding-left: 0.05em;
  text-align: center;
  content: "\e905";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 24px;
  font-size: 12px;
  opacity: 0;
  color: #fff;
}

.form-options {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
.form-options > * {
  max-width: 100%;
}

.form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-top: 22px;
}
.form-action .form-options {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.nav-arrow-prev,
.nav-arrow-next {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -15px 0 0;
  width: 24px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  font-size: 26px;
  color: inherit;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nav-arrow-prev:hover,
.nav-arrow-next:hover {
  opacity: 0.7;
}
.nav-arrow-prev.swiper-button-disabled, .nav-arrow-prev.disabled, .nav-arrow-prev:disabled,
.nav-arrow-next.swiper-button-disabled,
.nav-arrow-next.disabled,
.nav-arrow-next:disabled {
  cursor: default;
  opacity: 0.1;
}
.nav-arrow-prev.swiper-button-lock,
.nav-arrow-next.swiper-button-lock {
  display: none !important;
}

.nav-arrow-prev {
  left: 0;
  padding-right: 0.15em;
}

.nav-arrow-next {
  right: 0;
  padding-left: 0.15em;
}

.top-contacts__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 30px;
  padding: 14px 0;
  border-bottom: 1px solid #aba3f1;
}

.top-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  color: #656f83;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-contact:hover {
  color: var(--main-color);
}
.top-contact .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 8px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 18px;
  color: var(--main-color);
}

.sandwich {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background-color: #ee6e47;
  background-image: -webkit-gradient(linear, left top, right top, from(#fc9d54), to(#df3b38));
  background-image: linear-gradient(to right, #fc9d54, #df3b38);
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: currentColor;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.sandwich span:nth-child(3) {
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header,
.header__grid {
  height: 114px;
}

.header {
  position: relative;
}
.header__scroll {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.header__scroll._fixed {
  position: fixed;
}
.header__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__logo {
  margin-right: auto;
  display: inline-block;
  max-width: 200px;
}
.header__logo img {
  display: block;
  max-height: 50px;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
  color: #696687;
}
.header__menu a {
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__menu a:hover {
  color: var(--main-color);
}
.header__menu a.mPS2id-highlight {
  color: var(--main-color);
}
.header__toggle {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.global-noscroll .header__scroll._fixed,
.popup-opened .header__scroll._fixed {
  margin-right: var(--scrollbar-width);
}

.bann {
  padding-top: 20px;
  margin-bottom: 80px;
}
.bann__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bann__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-top: 24px;
}
.bann__head {
  color: var(--main-color);
}
.bann__head strong {
  display: block;
  font-weight: inherit;
  font-size: 1.65em;
}
.bann__descr {
  margin: 30px 0 0;
  font-size: 21px;
}
.bann__action {
  position: relative;
  margin-top: 45px;
}
.bann__action-arrow {
  position: absolute;
  top: -125px;
  left: -180px;
  max-width: 150px;
}
@media (max-width: 1500px) {
  .bann__action-arrow {
    display: none;
  }
}
.bann__img {
  margin-left: 40px;
  max-width: 540px;
}

.about {
  margin: 60px 0;
}
.about .title:nth-child(n+2) {
  margin-top: 40px;
}
.about .content {
  line-height: 1.45;
}
.about .ab-numbers {
  margin-top: 55px;
}

.ab-numbers__wrap {
  overflow: hidden;
  margin: -10px 0;
  padding: 10px 0;
}
.ab-numbers__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
  margin: 0 -50px;
}

.ab-number {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  padding: 0 50px;
  line-height: 1;
}
.ab-number:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  max-height: 125px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 59, 56, 0)), color-stop(#df3b38), to(rgba(223, 59, 56, 0)));
  background: linear-gradient(to bottom, rgba(223, 59, 56, 0), #df3b38, rgba(223, 59, 56, 0));
}
.ab-number._small {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 18%;
}
.ab-number._imp {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 22%;
}
.ab-number._imp:after {
  display: none;
}
.ab-number__count {
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 68px;
  color: var(--dark-color);
}
.ab-number__count sup {
  top: -0.9em;
}
.ab-number__count sup, .ab-number__count sub {
  margin-left: 0.2em;
  font-size: 0.5em;
  color: #e95e42;
}
.ab-number__count sub {
  bottom: 0;
}
.ab-number__descr {
  font-size: 16px;
}
.ab-number > :last-child {
  margin-bottom: 0;
}

.services {
  padding: 35px 0;
  background: #c5c1f8;
}
.services__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px -30px;
}

.service-item {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
  padding: 0 20px 30px;
  text-align: center;
}
.service-item > * {
  margin-bottom: 10px;
}
.service-item__img {
  width: 100px;
  height: 80px;
  margin: 0 auto 20px;
}
.service-item > :last-child {
  margin-bottom: 0;
}

.advants {
  margin: 50px 0 24px;
}
.advants .title {
  margin-bottom: 24px;
}

.advant-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.advant-item:nth-child(odd) {
  padding-right: 380px;
}
.advant-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-left: 390px;
  text-align: right;
}
.advant-item:first-child {
  margin-top: 75px;
}
.advant-item:last-child {
  margin-bottom: 0;
  padding-bottom: 50px;
}
.advant-item__img {
  position: relative;
  top: 75px;
  margin-top: -150px;
  width: 200px;
  height: 200px;
}
.advant-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  line-height: 1.45;
}

.benefits {
  margin: 24px 0 50px;
}
.benefits__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.benefit-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 24px;
  min-height: 190px;
  border-radius: 20px;
  background: #D3E9FB;
}
.benefit-item__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 24px;
  width: 130px;
  text-align: center;
}
.benefit-item__img img {
  max-height: 140px;
}
.benefit-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
  line-height: 1.3;
  font-size: 19px;
}

.benefit-item:nth-child(8n+2) {
  background-color: #e0f5f4;
}
.benefit-item:nth-child(8n+3) {
  background-color: #d4d1fa;
}
.benefit-item:nth-child(8n+4) {
  background-color: #ffd2b3;
}
.benefit-item:nth-child(8n+5) {
  background-color: #c3d5f4;
}
.benefit-item:nth-child(8n+6) {
  background-color: #fdcfc9;
}
.benefit-item:nth-child(8n+7) {
  background-color: #e0d2df;
}
.benefit-item:nth-child(8n+8) {
  background-color: #e6f8fc;
}

.clients {
  margin: 45px 0;
}
.clients .title {
  margin-bottom: 20px;
}

.logos-marquee {
  cursor: default;
  overflow: hidden;
  white-space: nowrap;
  height: 120px;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(15%, #000), color-stop(85%, #000), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(15%, #000), color-stop(85%, #000), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
}
.logos-marquee__item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 70px;
}
.logos-marquee__item img {
  max-width: 340px;
  max-height: 120px;
}

.partners {
  margin: 45px 0;
}

.partners-slider {
  position: relative;
  padding: 0 20px;
}
.partners-slider .nav-arrow-prev {
  left: -5px;
}
.partners-slider .nav-arrow-next {
  right: -5px;
}
.partners-slider .swiper-slide {
  height: auto;
}
.partners-slider .swiper-pagination {
  display: none;
}

.partner-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 15px;
  border-radius: 12px;
  background: #fcfcfc;
  text-align: center;
  font-size: 19px;
  color: #262626;
}
.partner-item__img {
  margin: auto auto 0;
  width: 130px;
}
.partner-item__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.partner-item__img img {
  border-radius: 50%;
}
.partner-item__head {
  word-wrap: break-word;
}

.partners-cert-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  margin-top: 50px;
}

.partners-cert-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 12px;
  min-width: 22%;
  border: 2px solid #dadada;
  border-radius: 30px;
}
.partners-cert-box__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 15px;
  width: 60px;
  text-align: center;
}
.partners-cert-box__img img {
  max-height: 60px;
}
.partners-cert-box__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  letter-spacing: -0.04em;
  font-size: 15px;
}
.partners-cert-box__content > :last-child {
  margin-bottom: 0;
}
.partners-cert-box__head {
  margin-bottom: 10px;
}
.partners-cert-box__badge {
  display: inline-block;
  padding: 4px 7px 3px;
  border-radius: 11px;
  border: 2px solid #dadada;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 8px;
}

.partners-certs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 0;
  margin: 70px -15px 0;
}

.partners-cert {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
  padding: 0 15px;
  text-align: center;
}
.partners-cert__img {
  margin: 0 auto 15px;
  width: 110px;
  height: 110px;
}
.partners-cert__head {
  letter-spacing: -0.04em;
  font-size: 19px;
}
.partners-cert > :last-child {
  margin-bottom: 0;
}

.contacts {
  padding: 35px 0;
  background-color: #b8dcef;
  background-image: linear-gradient(140deg, #b7e6f3, #b8d5ec);
}
.contacts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__wrap > .btn {
  margin-left: 30px;
}
.contacts__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.contacts__item {
  margin-bottom: 27px;
  font-size: 24px;
}
.contacts__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__item a .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 0.4em;
}
.contacts__item:last-child {
  margin-bottom: 0;
}
.contacts__item._phone {
  font-size: 25px;
}
.contacts__item._phone a {
  cursor: default;
  font-weight: 500;
  color: inherit;
}
.contacts__item._descr {
  font-size: 19px;
}

.feedback {
  margin: 75px 0;
}
.feedback__box {
  position: relative;
  padding: 24px 29px;
  border-radius: 12px;
  border: 1px solid var(--main-color);
}
.feedback__box-arrow {
  position: absolute;
  right: -228px;
  bottom: -18px;
  max-width: 200px;
}
@media (max-width: 1500px) {
  .feedback__box-arrow {
    display: none;
  }
}

.post {
  margin: 45px 0;
  word-wrap: break-word;
}

.footer {
  padding: 50px 0 45px;
  background: #f7fbfc url("../img/foot-bg.jpg") center/cover;
  font-size: 17px;
  color: #656f83;
}
.footer__title {
  margin-bottom: 65px;
  text-align: center;
}
.footer__copy {
  margin: 80px 0 0;
  font-size: 14px;
}
.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px;
}
.footer__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-right: auto;
  max-width: 600px;
}
.footer__head {
  margin: 12px 0 30px;
}
.footer__contacts {
  max-width: 40%;
}
.footer__contacts-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.footer__contacts-wrap > * {
  max-width: 100%;
}
.footer__logo {
  display: inline-block;
  max-width: 250px;
}
.footer__logo img {
  max-height: 60px;
}
.footer__content {
  margin: 28px 0 0;
  line-height: 1.4;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.footer__social .ic {
  font-size: 18px;
}

.foot-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: inherit;
}
.foot-contact .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  min-width: 18px;
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
}
.foot-contact .ic-phone2 {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

a.foot-contact {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.foot-contact:hover {
  color: var(--main-color);
}

.fix-up-btn {
  position: fixed;
  z-index: 50;
  bottom: 24px;
  right: -44px;
  width: 44px;
  height: 44px;
  border: 2px solid #d4162d;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #d4162d;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.4s;
  transition: background-color 0.3s, -webkit-transform 0.4s;
  transition: background-color 0.3s, transform 0.4s;
  transition: background-color 0.3s, transform 0.4s, -webkit-transform 0.4s;
}
.fix-up-btn._show {
  -webkit-transform: translateX(-68px);
      -ms-transform: translateX(-68px);
          transform: translateX(-68px);
}
.fix-up-btn:hover {
  background-color: #d4162d;
  color: #fff;
}

.fix-call-btn {
  position: fixed;
  z-index: 100;
  left: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(32, 152, 209, 0.3);
  background: #5648e4;
}
.fix-call-btn:before, .fix-call-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: 4s linear infinite;
          animation: 4s linear infinite;
  background: #5648e4;
  opacity: 0;
}
.fix-call-btn:before {
  -webkit-animation-name: manimate_before;
          animation-name: manimate_before;
}
.fix-call-btn:after {
  -webkit-animation-name: manimate_after;
          animation-name: manimate_after;
}
.fix-call-btn .ic {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.6em;
  width: 1.2em;
  text-align: center;
  font-size: 36px;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-animation: 3s linear 2s infinite manimate_i;
          animation: 3s linear 2s infinite manimate_i;
}
.fix-call-btn:hover .ic {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  color: #fca053;
}

@-webkit-keyframes manimate_after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  35% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes manimate_after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  35% {
    opacity: 1;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes manimate_before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  35% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@keyframes manimate_before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  35% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes manimate_i {
  0%, 100%, 50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
            transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            transform: rotate(25deg) scale(1) skew(1deg);
  }
}
@keyframes manimate_i {
  0%, 100%, 50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
            transform: rotate(0) scale(1) skew(1deg);
  }
  10%, 30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            transform: rotate(25deg) scale(1) skew(1deg);
  }
}
/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  background: #fff;
  margin: 20px auto;
  padding: 40px;
}

.tx-popup.popup {
  max-width: 480px;
}
.tx-popup__content > :last-child {
  margin-bottom: 0;
}
.tx-popup__head {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 27px;
  color: var(--dark-color);
}

/* Customize plugins */
.mfp-bg {
  position: absolute;
  background: #000;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.swiper-pagination-bullets {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin: 20px 0 0;
}
@media (max-width: 575px) {
  .swiper-pagination-bullets {
    gap: 4px;
    margin-top: 14px;
  }
}

.swiper-pagination-bullet {
  margin: 0 !important;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 575px) {
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}