@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Light.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("../fonts/HelveticaNeueCyr-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "HelveticaNeueCyr";
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1060px) {
  .container {
    width: 750px;
  }
}
/* @media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
} */
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
body.fixed {
  overflow: hidden;
  position: relative;
}
body.fixed::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  padding: 8px 0;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
  background: #fff;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 12px 0;
  }
}
.header.mobile .header__list li a {
  color: #4b4b4b !important;
}
.header.show {
  position: fixed;
  transform: none;
  background: #103275;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .header.show {
    background: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .header.show {
    background: #103275;
  }
}
.header.show .header__list li a {
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  .header.show .header__list li a {
    color: #4b4b4b;
  }
}
.header.show .header__btn {
  border: 1px solid #103275;
}
.header.show .header__btn:hover {
  background: #fff;
  color: #103275;
}
.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1060px) {
  .header__list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .header__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 12px 20px;
  }
  .header__list li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .header__list li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
}
.header__list a {
  color: #4b4b4b;
  font-weight: 300;
  font-size: 16px;
  transition: 300ms;
}
.header__list a:hover {
  color: #103275;
}
@media screen and (max-width: 1060px) {
  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 98;
    padding: 130px 30px 80px 30px;
    transition: 400ms;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #ffffff;
    align-items: center;
  }
}
@media screen and (max-width: 1060px) and (max-width: 767px) {
  .header__menu {
    padding: 84px 20px 20px 20px;
  }
}
@media screen and (max-width: 1060px) {
  .header__menu.active {
    top: 0;
  }
}
.header .burger {
  display: none;
  width: 30px;
  position: relative;
  z-index: 202;
}
.header .burger.scroll {
  border-radius: 24px;
  background: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .burger.scroll a span {
  width: 20px;
}
.header .burger.scroll a span::after {
  width: 20px;
}
@media screen and (max-width: 1060px) {
  .header .burger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header .burger {
    width: 26px;
  }
}
.header .burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}
.header .burger a span {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 7px;
  background: #103275;
  transition: all 0.2s ease-in-out;
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .header .burger a span {
    width: 26px;
  }
}
.header .burger a span:before, .header .burger a span:after {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  left: 0;
  background: #103275;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header .burger a span:before, .header .burger a span:after {
    width: 26px;
  }
}
.header .burger a span:before {
  top: -8px;
  display: none;
}
.header .burger a span:after {
  top: 8px;
}
.header .burger a.active span {
  transform: rotate(-45deg) translate(-1px, 2px);
}
@media screen and (max-width: 767px) {
  .header .burger a.active span {
    transform: rotate(-45deg) translate(-3px, 4px);
  }
}
.header .burger a.active span:after {
  transform: rotate(85deg) translate(-8px, 0px);
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1060px) {
  .header__socials {
    position: relative;
    z-index: 222;
  }
}
@media screen and (max-width: 767px) {
  .header__socials {
    gap: 8px;
  }
}
.header__socials-mobile {
  display: none;
  flex-direction: column-reverse;
  gap: 20px;
  padding: 40px 0 0;
}
@media screen and (max-width: 1060px) {
  .header__socials-mobile {
    display: flex;
    width: 100%;
  }
}
@media screen and (max-width: 1060px) and (max-width: 1060px) {
  .header__socials-mobile .header__btn {
    display: none;
  }
}
@media screen and (max-width: 1060px) and (max-width: 767px) {
  .header__socials-mobile .header__btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
.header__social p {
  display: none;
  font-size: 16px;
  line-height: 140%;
  color: #4b4b4b;
  text-decoration: underline;
  margin-left: 12px;
  text-underline-offset: 5px;
}
@media screen and (max-width: 1060px) {
  .header__social p {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  .header__social {
    display: flex;
  }
}
.header__social a {
  display: flex;
  transition: 300ms;
}
.header__social:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1060px) {
  .header__social:hover {
    transform: scale(1);
  }
}
.header__btn {
  padding: 12px 32px;
  box-shadow: 0px 4px 8px 0px rgba(6, 33, 85, 0.15);
  border-radius: 42px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #103275;
  transition: 350ms;
  border: 1px solid #103275;
}
.header__btn:hover {
  background: #103275;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
}
.header__logo {
  display: flex;
}
@media screen and (max-width: 1060px) {
  .header__logo {
    position: relative;
    z-index: 222;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 70px;
  }
}

.showcase {
  padding: 227px 0 217px;
}
@media screen and (max-width: 1060px) {
  .showcase {
    padding: 180px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .showcase {
    padding: 261px 0 100px;
  }
}
.showcase__title {
  color: #103275;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .showcase__title {
    font-size: 32px;
    letter-spacing: -0.64px;
    margin-bottom: 20px;
  }
}
.showcase__text {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.2px;
  color: #212121;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .showcase__text {
    font-size: 15px;
  }
}
.showcase__form {
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .showcase__form {
    max-width: none;
  }
}
.showcase__input {
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .showcase__input {
    margin-bottom: 20px;
  }
}
.showcase__input p {
  font-size: 16px;
  line-height: 120%;
  color: #212121;
  margin-bottom: 8px;
}
.showcase__input input {
  border: none;
  border-bottom: 1px solid #d2d1d1;
  padding: 12px;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  padding-left: 0;
}
.showcase__input input::-moz-placeholder {
  color: #bababa;
}
.showcase__input input::-ms-input-placeholder {
  color: #bababa;
}
.showcase__input input::placeholder {
  color: #bababa;
}
.showcase__input-tel {
  position: relative;
}
.showcase__input-placeholder {
  color: #bababa;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  position: absolute;
  display: none;
  font-size: 16px;
  font-weight: 300;
  cursor: text;
}
.showcase__input-placeholder .iti--separate-dial-code .iti__selected-flag {
  background: none;
}
.showcase__input-placeholder span {
  color: #212121;
  line-height: 100%;
  /* 
  display: flex;
  margin-right: 6px; */
}
.showcase__input:last-child {
  margin-bottom: 0;
}
.showcase__inputs {
  margin-bottom: 49px;
}
@media screen and (max-width: 767px) {
  .showcase__inputs {
    margin-bottom: 20px;
  }
}
.showcase__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  box-shadow: 0px 4px 8px 0px rgba(6, 33, 85, 0.15);
  border: none;
  border-radius: 42px;
  background: #103275;
  width: 100%;
  padding: 16px 32px;
  cursor: pointer;
  transition: 350ms;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .showcase__btn {
    padding: 16px 30px;
  }
}
.showcase__btn:hover {
  background: transparent;
  color: #103275;
  border: 1px solid #103275;
}
.showcase__items {
  position: relative;
}
.showcase__image {
  position: absolute;
  right: -99px;
  top: -76px;
  display: flex;
  /*   @media screen and (max-width: 1060px) {
  top: -420px;
  max-width: 400px;
  left: 50%;
  transform: translate(-50%,0);
  } */
}
@media screen and (max-width: 1200px) {
  .showcase__image {
    right: -40px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__image {
    max-width: 450px;
    top: -25px;
  }
}
@media screen and (max-width: 767px) {
  .showcase__image {
    top: -200px;
    max-width: 190px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list {
    display: none;
  }
}
.showcase__list li {
  position: absolute;
  /*  padding: 4px 8px; */
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}
.showcase__list li a {
  margin: 4px 8px;
  position: relative;
}
.showcase__list li a:hover::before {
  width: 0;
}
.showcase__list li a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -8px;
  width: calc(100% + 16px);
  height: 0.5pt;
  transition: 0.4s ease-in-out;
}
.showcase__list li:nth-child(odd) {
  color: #103275;
}
.showcase__list li:nth-child(odd) a::before {
  background-color: #103275;
}
.showcase__list li:nth-child(even) {
  color: #ff4615;
}
.showcase__list li:nth-child(even) a::before {
  background-color: #ff4615;
}
.showcase__list li:nth-child(1) {
  top: -33px;
  right: 97px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(1) {
    right: 157px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(1) {
    top: -373px;
    right: 300px;
  }
}
.showcase__list li:nth-child(2) {
  top: 34px;
  right: 260px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(2) {
    right: 320px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(2) {
    top: -312px;
    right: 471px;
  }
}
.showcase__list li:nth-child(3) {
  top: 128px;
  right: 294px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(3) {
    right: 354px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(3) {
    top: -237px;
    right: 503px;
  }
}
.showcase__list li:nth-child(4) {
  top: 371px;
  right: 294px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(4) {
    right: 354px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(4) {
    top: -66px;
    right: 503px;
  }
}
.showcase__list li:nth-child(5) {
  top: 417px;
  right: 140px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(5) {
    right: 200px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(5) {
    top: -46px;
    right: 343px;
  }
}
.showcase__list li:nth-child(6) {
  top: 364px;
  right: -8px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(6) {
    right: 52px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(6) {
    top: -66px;
    right: 170px;
  }
}
.showcase__list li:nth-child(7) {
  top: 312px;
  right: -93px;
}
@media screen and (max-width: 1200px) {
  .showcase__list li:nth-child(7) {
    right: -25px;
  }
}
@media screen and (max-width: 1060px) {
  .showcase__list li:nth-child(7) {
    top: -156px;
    right: 160px;
  }
}

.showcase__input-tel input:invalid + .showcase__input-placeholder {
  display: inline;
}

.clients {
  padding: 80px 0;
  margin-bottom: 160px;
  border-radius: 24px;
}
@media screen and (max-width: 1060px) {
  .clients {
    padding: 60px 0;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .clients {
    padding: 40px 0;
    margin-bottom: 100px;
    border-radius: 12px;
  }
}
.clients__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.32px;
  color: #103275;
}
@media screen and (max-width: 767px) {
  .clients__title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
@media screen and (max-width: 1060px) {
  .clients__title {
    text-align: center;
  }
}
.clients__title-center {
  text-align: center;
}
.clients__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 80px 0;
}
@media screen and (max-width: 1060px) {
  .clients__blocks {
    grid-template-columns: minmax(0, 1fr);
    margin: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .clients__blocks {
    margin: 40px 0;
  }
}
.clients__block:nth-child(3) .clients__name {
  max-width: 213px;
  margin: 0 auto;
}
.clients__block:hover .clients__name {
  opacity: 1;
  visibility: visible;
}
.clients__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(16, 50, 117, 0.3);
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.clients__name {
  font-size: 14px;
  line-height: 140%;
  color: #103275;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}
.clients .slick-arrow {
  border: 0;
  font-size: 0;
  width: 12px;
  height: 36px;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 24px;
}
.clients .slick-prev {
  background-image: url(../images/arrow-l-mobile.svg);
  left: -20px;
}
@media screen and (max-width: 767px) {
  .clients .slick-prev {
    left: -17px;
  }
}
.clients .slick-next {
  background-image: url(../images/arrow-r-mobile.svg);
  right: -20px;
}
@media screen and (max-width: 767px) {
  .clients .slick-next {
    right: -17px;
  }
}
.clients .slick-slide {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .clients .slick-slide {
    margin: 0 4px;
  }
}
.clients .slick-list {
  margin: 0 -5px;
}
@media screen and (max-width: 767px) {
  .clients .slick-list {
    margin: 0 -4px;
  }
}

.advantages__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1060px) {
  .advantages__blocks {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 1060px) {
  .advantages__block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.advantages__subtitle {
  font-size: 18px;
  text-align: center;
  margin: 50px auto 0;
  color: #ff4615;
}
.advantages__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.2px;
  color: #212121;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  .advantages__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .advantages__name {
    text-align: center;
  }
}
.advantages__text {
  font-size: 15px;
  line-height: 150%;
  color: #4b4b4b;
  transition: 350ms;
  text-align: center;
}
.advantages__text span {
  font-family: "HelveticaNeueCyr", "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.advantages__icon {
  width: 78px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #103275;
  margin: 0 auto;
  margin-bottom: 24px;
}
.advantages__icon img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .advantages__icon {
    margin-bottom: 20px;
  }
}
.advantages__btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  border-radius: 42px;
  box-shadow: 0px 4px 8px 0px rgba(6, 33, 85, 0.15);
  background: #ff4615;
  color: #fff;
  margin-top: 40px;
  transition: 350ms;
  border: 1px solid transparent;
}
.advantages__btn:hover {
  background: transparent;
  color: #ff4615;
  border: 1px solid #ff4615;
}
@media screen and (max-width: 767px) {
  .advantages__btn {
    max-width: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 40px auto;
    padding: 16px 100px;
  }
}

.services {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .services {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .services {
    margin-bottom: 100px;
  }
}
.services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1060px) {
  .services__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .services__items {
    grid-template-columns: 1fr;
  }
}
.services__title {
  margin-bottom: 63px;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  .services__title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .services__title {
    margin-bottom: 40px;
  }
}
.services__btn {
  margin-top: 24px;
}
.services__btn-mobile {
  display: none;
}
@media screen and (max-width: 1060px) {
  .services__btn-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1060px) {
  .services__btn-desktop {
    display: none;
  }
}
.services__icon {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .services__icon {
    margin-bottom: 20px;
  }
}
.services__block .advantages__text {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .services__block .advantages__text {
    text-align: center;
  }
}
.services__block .advantages__name {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .services__block .advantages__name {
    font-size: 15px;
  }
}
@media screen and (max-width: 1060px) {
  .services__block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.services__blocks-second {
  display: grid;
  grid-column: 2/4;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}
@media screen and (max-width: 1060px) {
  .services__blocks-second {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .services__blocks-second {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .services__blocks-second .advantages__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .services__blocks-second .advantages__text.active {
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}
@media screen and (max-width: 767px) {
  .services__blocks-second .services__block {
    padding: 20px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    background: #fff;
  }
}
@media screen and (max-width: 1060px) {
  .services__blocks-first {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .services__blocks-first {
    grid-column: auto;
  }
}
.services__more {
  margin-top: 24px;
  display: none;
}
@media screen and (max-width: 767px) {
  .services__more {
    display: flex;
  }
}

.special {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .special {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .special .advantages__blocks {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .special .advantages__block {
    padding: 20px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    background: #fff;
  }
}

.cases {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .cases {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .cases {
    margin-bottom: 100px;
  }
}
.cases__img {
  display: flex;
  max-width: 190px;
  height: 152px;
}
.cases__img img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1060px) {
  .cases__img {
    width: 100%;
    max-width: none;
    height: 220px;
  }
  .cases__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }


  .cases__img img.mobile-fit-contain {
    object-fit: contain !important;
  }
}
@media screen and (max-width: 767px) {
  .cases__img {
    height: 160px;
  }
}
.cases__title {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  .cases__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cases__title {
    margin-bottom: 10px;
  }
}
.cases__block {
  display: flex;
  align-items: center;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .cases__block {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .cases__block {
    border-radius: 12px;
  }
}
.cases__info {
  margin-left: 20px;
}
@media screen and (max-width: 1060px) {
  .cases__info {
    margin: 0;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cases__info {
    width: 100%;
  }
}
.cases__name {
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .cases__name {
    font-size: 15px;
  }
}
.cases__text {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .cases__text {
    margin-bottom: 12px;
  }
}
.cases__amount {
  padding: 8px 12px;
  color: #103275;
  font-size: 14px;
  line-height: 150%;
  border-radius: 40px;
  border: 1px solid #103275;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .cases__amount {
    width: 100%;
  }
}
.cases__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 660px;
  gap: 20px;
  margin: 0 auto;
  margin-top: 82px;
}
@media screen and (max-width: 1060px) {
  .cases__form {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .cases__form {
    margin-top: 40px;
    flex-direction: column;
  }
}
.cases__form .showcase__input {
  max-width: 320px;
  width: 100%;
  margin-bottom: 0;
}
.cases__form .showcase__input::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .cases__form .showcase__input {
    max-width: none;
  }
}
.cases__form .showcase__btn {
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .cases__form .showcase__btn {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .cases .advantages__name {
    text-align: start;
  }
}
.cases .slick-initialized .slick-slide {
  display: flex;
}
.cases .slick-slide {
  margin: 0 10px;
}
.cases .slick-list {
  padding: 30px 3px;
  margin: 0 -13px;
}
.cases .slick-arrow {
  border: 0;
  font-size: 0;
  width: 32px;
  height: 74px;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1200px) {
  .cases .slick-arrow {
    width: 25px;
  }
}
@media screen and (max-width: 1060px) {
  .cases .slick-arrow {
    width: 12px;
    height: 36px;
    top: 36%;
  }
}
@media screen and (max-width: 767px) {
  .cases .slick-arrow {
    top: 32%;
  }
}
.cases .slick-prev {
  background-image: url(../images/arrow-l.svg);
  left: -65px;
}
@media screen and (max-width: 1200px) {
  .cases .slick-prev {
    left: -32px;
  }
}
@media screen and (max-width: 1060px) {
  .cases .slick-prev {
    background-image: url(../images/arrow-l-mobile.svg);
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .cases .slick-prev {
    left: -17px;
  }
}
.cases .slick-next {
  background-image: url(../images/arrow-r.svg);
  right: -65px;
}
@media screen and (max-width: 1200px) {
  .cases .slick-next {
    right: -32px;
  }
}
@media screen and (max-width: 1060px) {
  .cases .slick-next {
    background-image: url(../images/arrow-r-mobile.svg);
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .cases .slick-next {
    right: -17px;
  }
}
.cases .slick-dots {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translate(-50%, 0);
}
.cases .slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  border: 1px solid #103275;
  cursor: pointer;
}
.cases .slick-dots li.slick-active button {
  background: #103275;
}

.reviews {
  margin-bottom: 160px;
  padding: 80px 0;
  background: #f0f5ff;
  /*   .readall.readall-hide {
    @media screen and (max-width: 1060px) {
      max-height: 70px !important;
      height: 70px !important;
    }
  } */
}
@media screen and (max-width: 1060px) {
  .reviews {
    padding: 60px 0;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .reviews {
    padding: 40px 0;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1060px) {
  .reviews {
    padding: 60px 0;
    margin-bottom: 120px;
  }
}
.reviews__blocks {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .reviews__blocks {
    margin-top: 40px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.reviews__block {
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
  width: 30%;
}
.reviews__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reviews__img {
    max-width: 80px;
    margin: 0 auto;
    margin-top: -40px;
  }
}
.reviews__img::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .reviews__img::before {
    width: 78px;
    height: 78px;
  }
}
.reviews__img img {
  border-radius: 50%;
}
.reviews__info {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .reviews__info {
    padding: 20px;
  }
}
.reviews__name {
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .reviews__name {
    font-size: 18px;
    letter-spacing: -0.18px;
  }
}
.reviews__prof {
  color: #8c8989;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .reviews__prof {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.reviews__text {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  height: 96px;
  overflow: hidden;
  margin-bottom: 10px;
}
.reviews__text.active {
  height: 100%;
  overflow: visible;
}
.reviews__text span {
  display: block;
}
.reviews__open {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
}
.reviews__open span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  color: #103275;
}
.reviews .readall-hide:after {
  background: none;
}
.reviews .readall-button {
  background: none;
  border: none;
  color: #103275;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  position: relative;
  padding: 0;
  margin-top: 4px;
  border-bottom: 1px solid #103275;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.reviews .readall-button.active::before {
  transform: rotate(180deg) translate(0, -50%);
  top: -2px;
}
.reviews .readall-button::before {
  content: "";
  position: absolute;
  background-image: url(../images/arrow-d.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  right: -20px;
  top: 50%;
  transform: translate(0, -50%);
}
.reviews .slick-slide {
  margin: 0 10px;
}
.reviews .slick-list {
  padding: 40px 3px 30px;
  margin: 0 -13px;
}
.reviews .slick-arrow {
  border: 0;
  font-size: 0;
  width: 12px;
  height: 36px;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translate(0, -50%);
}
.reviews .slick-prev {
  background-image: url(../images/arrow-l-mobile.svg);
  left: -17px;
}
.reviews .slick-next {
  background-image: url(../images/arrow-r-mobile.svg);
  right: -17px;
}
.reviews .slick-dots {
  display: flex;
  gap: 4px;
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translate(-50%, 0);
}
.reviews .slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  font-size: 0;
  border: 1px solid #103275;
  cursor: pointer;
}
.reviews .slick-dots li.slick-active button {
  background: #103275;
}

.about {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .about {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    margin-bottom: 100px;
  }
}
.about__video {
  display: flex;
  position: relative;
  height: 100%;
  flex-direction: column;
}
@media only screen and (max-width: 1060px) {
  .about__video {
    order: 1;
  }
}
.about__video p {
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
}
.about__video img {
  border-radius: 20px;
}
@media screen and (max-width: 1060px) {
  .about__video img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__video img {
    border-radius: 12px;
  }
}
.about__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1060px) {
  .about__items {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about__items {
    gap: 40px;
  }
}
.about__name {
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .about__name {
    text-align: center;
    font-size: 18px;
    letter-spacing: -0.18px;
    margin-bottom: 20px;
  }
}
.about__text {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 150%;
}
.about__text p {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .about__text p {
    margin-bottom: 8px;
  }
}
.about__text p:last-child {
  margin-bottom: 0;
}

.contacts {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .contacts {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .contacts {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1060px) {
  .contacts__maps {
    width: 100%;
  }
}
.contacts__maps iframe {
  width: 100%;
  max-width: 660px;
  border-radius: 20px;
  min-width: 660px;
}
@media screen and (max-width: 1060px) {
  .contacts__maps iframe {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .contacts__maps iframe {
    min-width: auto;
    height: 175px;
  }
}
.contacts__name {
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}
.contacts__text {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 150%;
}
@media only screen and (max-width: 767px) {
  .contacts__text {
    font-size: 15px;
  }
}
.contacts__info:nth-child(1) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1060px) {
  .contacts__info:nth-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .contacts__info:nth-child(1) {
    margin-bottom: 20px;
  }
}
.contacts__info:nth-child(2) {
  margin-bottom: 12px;
}
@media screen and (max-width: 1060px) {
  .contacts__info:nth-child(2) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .contacts__info:nth-child(2) {
    margin-bottom: 12px;
  }
}
.contacts__items {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1060px) {
  .contacts__items {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__items {
    gap: 20px;
  }
}
@media screen and (max-width: 1060px) {
  .contacts__right {
    display: flex;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__right {
    flex-direction: column;
    gap: 0;
  }
}
.contacts .header__social {
  align-items: center;
}
@media screen and (max-width: 1060px) {
  .contacts .header__social p {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .contacts .header__social p {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .contacts .header__socials {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.footer {
  padding: 40px 0;
  background: #f0f5ff;
}
.footer__socials {
  display: flex !important;
  justify-content: flex-end;
  padding: 20px 0;
  border-bottom: 1px solid #d2d1d1;
}
@media screen and (max-width: 767px) {
  .footer__socials {
    flex-direction: column-reverse;
    gap: 10px;
    padding: 40px 0 20px;
  }
}
.footer__end {
  padding-top: 20px;
  color: #8c8989;
  font-size: 12px;
  font-weight: 300;
  line-height: 120%;
}
.footer__list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 12px 20px;
  }
  .footer__list li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer__list li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
}
.footer__list a {
  color: #4b4b4b;
  font-weight: 300;
  font-size: 16px;
  transition: 300ms;
}
.footer__list a:hover {
  color: #103275;
}
@media screen and (max-width: 767px) {
  .footer .header__logo {
    max-width: 92px;
  }
}
@media screen and (max-width: 767px) {
  .footer .header__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (max-width: 1060px) {
  .footer .header__social p {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer .header__social p {
    display: flex;
  }
}
.footer__btn {
  padding: 12px 32px;
  box-shadow: 0 4px 8px rgba(6, 33, 85, 0.1490196078);
  border-radius: 42px;
  background: #103275;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  transition: 0.35s;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
    height: 51px;
    padding-right: 50px;
    padding-left: 50px;
    font-size: 16px;
  }
}
.footer__btn:hover {
  background: transparent;
  color: #103275;
  border: 1px solid #103275;
}

.iti--container {
  z-index: 9999;
}

.fancybox-bg {
  opacity: 0 !important;
}

.fancybox-button {
  display: none;
}

.fancybox-container {
  background: rgba(0, 0, 0, 0.3);
}

.modal {
  display: none;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  background: #fff;
  padding: 70px 40px;
}
.modal__inner {
  width: 100%;
}
.modal__title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-bottom: 20px;
}
.modal .showcase__form {
  margin: 0 auto;
  max-width: 233px;
}
.modal .showcase__input .phone-modal {
  border-bottom: none;
}
.modal .showcase__btn {
  max-width: 183px;
  margin: 0 auto;
}
.modal__close {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.blog {
  margin-bottom: 160px;
}
@media screen and (max-width: 1060px) {
  .blog {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .blog {
    margin-bottom: 100px;
  }
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1060px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}
.blog__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .blog__card {
    border-radius: 12px;
  }
}
.blog__image {
  display: block;
}
.blog__image img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1060px) {
  .blog__image img {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .blog__image img {
    height: 180px;
  }
}
.blog__content {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog__meta {
  font-size: 12px;
  color: #8c8989;
}
.blog__title {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
}
.blog__excerpt {
  font-size: 15px;
  line-height: 150%;
  color: #4b4b4b;
}
.blog__more {
  margin-top: 6px;
  color: #103275;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.blog__all {
  margin-top: 40px;
}

.article {
  padding: 160px 0 80px;
}
@media screen and (max-width: 1060px) {
  .article {
    padding: 140px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .article {
    padding: 120px 0 40px;
  }
}
.article__breadcrumbs {
  font-size: 14px;
  color: #8c8989;
  margin-bottom: 16px;
}
.article__breadcrumbs a {
  text-decoration: underline;
}
.article__breadcrumbs span {
  margin: 0 6px;
}
.article__title {
  color: #103275;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.32px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .article__title {
    font-size: 24px;
  }
}
.article__meta {
  color: #8c8989;
  font-size: 14px;
  margin-bottom: 20px;
}
.article__cover {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.article__cover img {
  width: 100%;
  display: block;
}
.article__content {
  color: #212121;
  font-size: 16px;
  line-height: 160%;
}
.article__content h2 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: #103275;
}
.article__content h3 {
  font-size: 18px;
  margin: 18px 0 10px;
  color: #103275;
}
.article__content p {
  margin: 0 0 14px;
}
.article__content ul {
  margin: 0 0 14px 18px;
}
.article__content li {
  margin: 0 0 8px;
}
.article__content blockquote {
  margin: 16px 0;
  padding: 12px 16px;
  border-left: 3px solid #103275;
  background: #f0f5ff;
  color: #103275;
}
.article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.article__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.article__share span {
  color: #8c8989;
}
.article__share a {
  color: #103275;
  text-decoration: underline;
  font-size: 14px;
}
.article__nav {
  margin-top: 24px;
}
.article__nav .article__back {
  color: #103275;
  text-decoration: underline;
}
.article__related {
  margin-top: 60px;
}
blockquote p {
  display: inline;
  margin: 0;
}
.privacy-checkbox {
  display: flex;
  align-items: center; /* выравнивание по вертикали */
  gap: 8px;            /* отступ между галочкой и текстом */
  margin: 12px 0;
}

.privacy-checkbox input[type="checkbox"] {
  appearance:auto!important;
  width: 20px!important;
  height: 20px!important;
  accent-color: #007BFF; /* цвет галочки (в поддерживаемых браузерах) */
  cursor: pointer;
}

.privacy-checkbox label {
  font-size:13px;
  cursor: pointer;
}

.privacy-checkbox a {
  color: #007BFF;
  text-decoration: none;
}

.privacy-checkbox a:hover {
  text-decoration: underline;
}