/* Media */
[data-anim="bottomToTop"] {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease-out;
}
[data-anim="bottomToTop"].anim {
  transform: translateY(0);
  opacity: 1;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  outline: none;
}
ul {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  padding: 0;
  list-style: none;
}
input,
button {
  outline: none;
}
input:focus,
button:focus {
  outline: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
}
.img {
  width: 100%;
  display: block;
}
.section {
  padding: 100px 0;
}
.section.section--high {
  height: 100vh;
}
.section-title {
  margin: 0 0 30px;
  font-family: 'OpenSans';
  color: #232323;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.2;
  text-transform: none;
}
.section-title.section-title--center {
  text-align: center;
}
.section-title.section-title--bottom-offset {
  margin-bottom: 50px;
}
.section-title.section-title--small {
  font-size: 28px;
}
.section-title span {
  color: #3578ED;
}
.section-subtitle {
  margin: 0 0 40px;
}
.section-subtitle.section-subtitle--center {
  text-align: center;
}
.block-title {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: #232323;
}
.container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1340px;
}
.container.container--high {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site-btn {
  padding: 20px 34px;
  display: block;
  width: -webkit-max-content;
  width: max-content;
  font-family: 'OpenSans';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  color: #232323;
  background: #FFDD00;
  border: 2px solid #FFDD00;
  border-radius: 6px;
  transition: all 0.3s ease-out;
  position: relative;
  cursor: pointer;
}
.site-btn.site-btn--submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-btn.site-btn--submit svg {
  margin-right: 8px;
  width: 20px;
  height: auto;
  animation: rotateLoad 6s ease-out infinite;
  display: none;
}
@keyframes rotateLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.site-btn.site-btn--submit.sended svg {
  display: block;
}
.site-btn:hover {
  background: #f0d000;
  border-color: #f0d000;
}
.site-btn:active span {
  opacity: 0.3;
}
.site-btn span {
  transition: all 0.3s ease-out;
  pointer-events: none;
}
body {
  margin: 0;
  font-family: 'OpenSans';
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #555555;
  background: #fff;
}
body.desktop-lock {
  -webkit-overflow-y: hidden;
  overflow-y: hidden;
}
body::-webkit-scrollbar {
  width: 14px;
}
body::-webkit-scrollbar-track {
  background: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #3578ED;
  border-radius: 4px;
  border: none;
  cursor: grab;
}
/* Media */
@media (max-width: 1260px) {
  .section {
    padding: 80px 0;
  }
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  .container {
    padding: 0 20px;
  }
  .section-title {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 26px;
  }
  .section-title.section-title--bottom-offset {
    margin-bottom: 35px;
  }
  .section-title.section-title--center {
    padding-left: 0;
  }
  .section-title br {
    display: none;
  }
  .section-subtitle {
    margin-bottom: 20px;
    padding-left: 15px;
    width: 100%;
    max-width: 400px;
  }
  .section-subtitle br {
    display: none;
  }
  .block-title {
    font-weight: 500;
    font-size: 18px;
  }
  .site-btn {
    padding: 15px 20px;
  }
  .site-btn.site-btn--submit svg {
    width: 16px;
  }
}
/* Blocks */
.header {
  padding: 20px 30px;
  width: calc(100% - 60px);
  border: 1px solid rgba(241, 244, 255, 0);
  border-top: 0;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: fixed;
  top: 0;
  left: 30px;
  z-index: 100;
  transition: all 0.3s ease-out;
}
.header.fixed {
  background: rgba(255, 255, 255, 0.8);
  border-color: #F1F4FF;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__col {
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: 100px;
  width: 90px;
  display: block;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav-list {
  display: flex;
}
.header__nav-item:not(:last-child) {
  margin-right: 20px;
}
.header__nav-link {
  font-weight: 500;
  font-size: 18px;
  color: #232323;
  transition: all 0.3s ease-out;
  position: relative;
}
.header__nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 2px solid #3578ED;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: all 0.3s ease-out;
}
.header__nav-link:hover {
  color: #3578ED;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link:active {
  opacity: 0.3;
}
.header__social {
  display: flex;
}
.header__social-item:not(:last-child) {
  margin-right: 6px;
}
.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F1F4FF;
  border-radius: 6px;
  transition: all 0.3s ease-out;
}
.header__social-link:hover {
  background: #232323;
}
.header__social-link:hover svg {
  fill: #fff;
}
.header__social-link:hover svg path {
  fill: #fff;
}
.header__social-link:active svg {
  opacity: 0.3;
}
.header__social-link svg {
  display: block;
  width: 22px;
  height: auto;
  transition: all 0.3s ease-out;
}
.header__social-link svg path {
  transition: all 0.3s ease-out;
}
.header__contact {
  margin-left: 40px;
}
.header__contact-link {
  display: block;
  font-weight: 500;
  color: #232323;
  text-align: end;
}
.header__burger {
  display: none;
  cursor: pointer;
}
.header__nav-contact {
  display: none;
}
/* Media */
@media (max-width: 1260px) {
  .header {
    padding: 20px;
    width: calc(100% - 20px);
    background: #F1F4FF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-color: rgba(85, 85, 85, 0.1);
    left: 10px;
  }
  .header.fixed {
    background: #F1F4FF;
    -webkit-backdrop-filter: initial;
    backdrop-filter: initial;
    border-color: rgba(85, 85, 85, 0.1);
  }
  .header.open-nav {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .header.open-nav .header__nav {
    height: calc(100% - 114px);
    opacity: 1;
  }
  .header__logo {
    margin-right: 40px;
    width: 80px;
  }
  .header__nav {
    width: calc(100% - 20px);
    height: 0;
    display: flex;
    flex-direction: column;
    background: #F1F4FF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid rgba(85, 85, 85, 0.1);
    border-top: 0;
    position: fixed;
    top: 94px;
    left: 10px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    opacity: 0;
  }
  .header__nav-wrapper {
    padding: 0 20px;
    margin: auto 0;
  }
  .header__nav-list {
    display: block;
  }
  .header__nav-item:not(:last-child) {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .header__nav-link {
    display: block;
    color: #232323;
    font-weight: 600;
    font-size: 34px;
    line-height: 1;
  }
  .header__nav-link::after {
    display: none;
  }
  .header__nav-contact {
    margin-top: 30px;
    display: block;
  }
  .header__nav-contact-link {
    display: block;
    font-weight: 500;
    color: #3578ED;
  }
  .header__contact {
    display: none;
  }
  .header__burger {
    margin-left: 6px;
    display: block;
    width: 44px;
    height: 44px;
    font-size: 0;
    background: #3578ED;
    border-radius: 6px;
    transition: all 0.3s ease-out;
    border: none;
    position: relative;
  }
  .header__burger::before,
  .header__burger::after {
    content: "";
    display: block;
    width: calc(100% - 20px);
    height: 0;
    border-top: 2px solid #fff;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-out;
  }
  .header__burger::before {
    top: 14px;
  }
  .header__burger::after {
    bottom: 14px;
  }
  .header__burger span {
    width: calc(100% - 20px);
    height: 0;
    border-top: 2px solid #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-out;
  }
  .header__burger.active::before {
    transform: translateX(-50%) rotate(45deg);
    top: 21px;
  }
  .header__burger.active::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 21px;
  }
  .header__burger.active span {
    opacity: 0;
  }
  .header__social-link {
    background: #20263b;
  }
  .header__social-link svg {
    fill: #fff;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px;
  }
  .header.open-nav .header__nav {
    height: calc(100vh - 90px);
  }
  .header__nav {
    top: 67px;
  }
  .header__nav-wrapper {
    padding: 0 10px;
  }
  .header__nav-link {
    font-size: 26px;
    line-height: 1;
  }
  .header__nav-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(85, 85, 85, 0.1);
  }
  .header__nav-contact-link {
    font-size: 14px;
  }
  .header__logo {
    width: 70px;
  }
  .header__social-link,
  .header__burger {
    width: 32px;
    height: 32px;
    border-radius: 4px;
  }
  .header__social-link svg {
    width: 19px;
  }
  .header__burger::before {
    width: calc(100% - 10px);
    top: 10px;
  }
  .header__burger::after {
    width: calc(100% - 10px);
    bottom: 10px;
  }
  .header__burger span {
    width: calc(100% - 10px);
  }
  .header__burger.active::before {
    top: 15px;
  }
  .header__burger.active::after {
    bottom: 15px;
  }
  .header__burger.active span {
    opacity: 0;
  }
}
.form-consult {
  display: block;
  width: 100%;
}
.form-consult__input-wrapper {
  margin-bottom: 10px;
}
.form-consult__input {
  padding: 17.5px 15px;
  display: block;
  width: 100%;
  font-family: 'OpenSans';
  font-weight: 500;
  font-size: 16px;
  color: #555555;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 6px;
  transition: all 0.3s ease-out;
}
.form-consult__input::placeholder {
  font-family: 'OpenSans';
  font-weight: 500;
  font-size: 16px;
  color: rgba(85, 85, 85, 0.4);
}
.form-consult__input:focus {
  outline: none;
  border-color: #FFDD00;
}
.form-consult__input.error {
  border-color: #ff4444;
}
.form-consult__input.form-consult__input--textarea {
  resize: none;
  height: 100px;
}
.form-consult__input.form-consult__input--obs {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -11111;
}
.form-consult__agree {
  margin: 20px 0;
  position: relative;
}
.form-consult__agree-label {
  display: block;
  width: 100%;
  max-width: 360px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
}
.form-consult__agree-label.form-consult__agree-label--wide {
  max-width: 540px;
}
.form-consult__agree-label a {
  padding-bottom: 1px;
  color: #fff;
  border-bottom: 1px solid #FFDD00;
  transition: all 0.3s ease-out;
}
.form-consult__agree-label a:active {
  opacity: 0.3;
}
.form-consult__submit {
  margin-top: 20px;
  width: 100%;
}
/* Media */
@media (max-width: 767px) {
  .form-consult__input-wrapper {
    margin-bottom: 6px;
  }
  .form-consult__input {
    padding: 13.5px 10px;
    font-size: 14px;
  }
  .form-consult__input::placeholder {
    font-size: 14px;
  }
  .form-consult__agree {
    margin: 20px 0;
  }
  .form-consult__agree-label {
    font-size: 12px;
  }
}
.footer {
  margin: 0 30px 30px;
  margin-top: 100px;
  background: #20263b;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: url(../images/footer-lines.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.footer__section-title {
  color: #fff;
}
.footer__row {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.footer__col {
  border-radius: 10px;
  background: #3578ED;
}
.footer__col:not(:last-child) {
  margin-right: 20px;
}
.footer__col.footer__col--contact {
  padding: 30px;
  height: 230px;
  display: flex;
  flex-direction: column;
}
.footer__col[data-footerCol="33"] {
  flex-basis: 0;
  flex-grow: 1;
}
.footer__col[data-footerCol="40"] {
  width: calc(40% - 10px);
}
.footer__col[data-footerCol="60"] {
  width: calc(60% - 10px);
}
.footer__form {
  padding: 30px;
  background: #3578ED;
  border-radius: 10px;
}
.footer__form-title {
  margin-top: 0;
  margin-bottom: 30px;
  color: #fff;
}
.footer__map {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.footer__map iframe {
  height: 100%!important;
}
.footer__contact-title {
  margin: 0 0 30px;
  color: #fff;
}
.footer__contact-bottom {
  margin-top: auto;
}
.footer__contact-link {
  margin: 0;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-out;
  opacity: 0.6;
}
.footer__contact-link:not(:last-child) {
  margin-bottom: 1px;
}
a.footer__contact-link:hover {
  opacity: 0.3;
}
a.footer__contact-link:active {
  opacity: 0.1;
}
.footer__social {
  display: flex;
}
.footer__social-item:not(:last-child) {
  margin-right: 6px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F1F4FF;
  border-radius: 6px;
  transition: all 0.3s ease-out;
}
.footer__social-link:hover {
  background: #FFDD00;
}
.footer__social-link:hover svg {
  fill: #232323;
}
.footer__social-link:hover svg path {
  fill: #232323;
}
.footer__social-link:active svg {
  opacity: 0.3;
}
.footer__social-link svg {
  display: block;
  width: 22px;
  height: auto;
  transition: all 0.3s ease-out;
}
.footer__social-link svg path {
  transition: all 0.3s ease-out;
}
.footer__bottom {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
.footer__bottom-col {
  flex-basis: 0;
  flex-grow: 1;
}
.footer__bottom-txt {
  display: block;
  width: -webkit-max-content;
  width: max-content;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out;
}
.footer__bottom-txt.footer__bottom-txt--center {
  margin: 0 auto;
}
.footer__bottom-txt.footer__bottom-txt--end {
  margin-left: auto;
}
a.footer__bottom-txt:hover {
  color: #3578ED;
}
a.footer__bottom-txt:active {
  opacity: 0.3;
}
/* Media */
@media (max-width: 1260px) {
  .footer {
    margin-top: 80px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 40px 0;
  }
  .footer__row {
    margin-bottom: 20px;
  }
  .footer__col:not(:last-child) {
    margin-right: 20px;
  }
  .footer__col.footer__col--contact {
    padding: 20px;
  }
  .footer__col[data-footerCol="33"] {
    flex-basis: 0;
    flex-grow: 1;
  }
  .footer__col[data-footerCol="40"] {
    width: calc(40% - 10px);
  }
  .footer__col[data-footerCol="60"] {
    width: calc(60% - 10px);
  }
  .footer__form {
    padding: 20px;
  }
  .footer__form-title br {
    display: none;
  }
  .footer__contact-link br {
    display: none;
  }
  .footer__bottom {
    margin-top: 60px;
  }
}
@media (max-width: 960px) {
  .footer__col[data-footerCol="40"] {
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%;
  }
  .footer__col[data-footerCol="60"] {
    width: 100%;
  }
  .footer__map {
    height: 385px;
  }
  .footer__bottom {
    flex-direction: column;
    justify-content: center;
  }
  .footer__bottom-txt {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  .footer::after {
    height: 350px;
    opacity: 1;
  }
  .footer__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer__row {
    margin-bottom: 0;
  }
  .footer__col {
    width: 100%!important;
    flex-basis: 100%!important;
    margin: 0!important;
  }
  .footer__col:not(:last-child) {
    margin-bottom: 15px!important;
  }
  .footer__col.footer__col--contact {
    height: 200px;
  }
  .footer__form {
    padding: 15px;
  }
  .footer__form-title {
    margin-bottom: 30px;
  }
  .footer__map {
    display: none;
  }
  .footer__contact-link {
    text-transform: none;
  }
  .footer__social-link {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #fff;
  }
  .footer__social-link svg {
    width: 19px;
  }
  .footer__bottom {
    margin-top: 40px;
  }
  .footer__bottom-txt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }
}
.popup {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(32, 38, 59, 0.94);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}
.popup.show {
  opacity: 1;
  pointer-events: visible;
}
.popup.show .popup__form {
  opacity: 1;
  transform: scale(1);
}
.popup__form {
  margin: auto;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  background: #3578ED;
  border-radius: 30px;
  transition: all 0.6s ease-out;
  transform: scale(0.4);
  opacity: 0;
  position: relative;
}
.popup__form-header {
  margin-bottom: 30px;
}
.popup__form-title {
  margin: 0;
  color: #fff;
}
.popup__form-close {
  padding: 8px;
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 43px;
  right: 41px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.popup__form-close:hover {
  transform: rotate(-180deg);
}
.popup__form-close:active svg {
  opacity: 0.3;
}
.popup__form-close svg {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}
/* Success */
.popup-success {
  padding: 20px;
  width: 100%;
  max-width: 400px;
  background: #28eb0e;
  border-radius: 10px;
  position: fixed;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
}
.popup-success.show {
  bottom: 30px;
  opacity: 1;
}
.popup-success p {
  margin: 0;
  font-weight: 500;
  text-align: center;
}
/* Media */
@media (max-width: 767px) {
  .popup {
    padding: 20px;
  }
  .popup__form {
    padding: 20px;
    border-radius: 10px;
  }
  .popup__form-header {
    margin-bottom: 20px;
  }
  .popup__form-title {
    padding-right: 40px;
    font-size: 14px;
    max-width: 296px;
  }
  .popup__form-title br {
    display: none;
  }
  .popup__form-close {
    padding: 4px;
    width: 30px;
    height: 30px;
    background: #FFDD00;
    top: 20px;
    right: 20px;
  }
  /* Success */
  .popup-success {
    max-width: 300px;
  }
  .popup-success br {
    display: none;
  }
  .popup-success.show {
    bottom: 20px;
  }
}
/* Pages */
/* Hero */
.home__hero {
  margin-top: 100px;
  margin-left: 30px;
  margin-right: 30px;
  height: calc(100vh - 120px);
  background: linear-gradient(270deg, #fff5d3, #ecf2ff);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.home__hero-txt {
  margin: auto 0;
  position: relative;
  z-index: 3;
}
.home__hero-section-title {
  margin-bottom: 30px;
}
.home__hero-section-title a {
  display: inline-block;
  width: 90px;
  height: auto;
  margin-bottom: -27px;
}
.home__hero-section-title a img {
  display: block;
  width: 100%;
  height: auto;
}
.home__hero-section-title span {
  color: #cd1219;
}
.home__hero-subtitle {
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
}
.home__hero-img {
  display: block;
  width: 58%;
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  z-index: 2;
}
.home__hero-back {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -50%;
  z-index: 1;
  opacity: 0.5;
}
.home__hero-btn {
  position: relative;
  z-index: 3;
}
.home__hero-btn.home__hero-btn--mob {
  display: none;
}
/* Counter */
.home__counter {
  margin: 60px auto 0;
  width: 100%;
  max-width: 980px;
  display: flex;
}
.home__counter-item {
  flex-basis: 0;
  flex-grow: 1;
}
.home__counter-num {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
  color: #3578ED;
}
.home__counter-num.home__counter-num--main {
  font-weight: 500;
  font-size: 100px;
}
.home__counter-num.home__counter-num--plus {
  position: relative;
}
.home__counter-num.home__counter-num--plus::after {
  content: "+";
  font-weight: 400;
  font-size: 38px;
  display: block;
  position: absolute;
  top: 0;
  right: -30px;
}
.home__counter-num.home__counter-num--small {
  margin-bottom: 6px;
  margin-left: 10px;
  font-size: 20px;
}
.home__counter-txt {
  margin: 30px 0 0;
  text-align: center;
}
/* Services */
.home__services {
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.home__services-item {
  margin: 10px;
  padding: 30px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  width: calc((100% / 3) - 20px);
  background: #20263b;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.home__services-item:nth-child(2)::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/home/services-lines-1.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.home__services-item.home__services-item--form {
  background: #323232;
}
.home__services-img {
  padding: 20px;
  display: block;
  position: relative;
  z-index: 2;
}
.home__services-img img {
  margin: auto;
  display: block;
  width: 100%;
}
.home__services-title {
  margin-top: 0;
  color: #fff;
  position: relative;
  z-index: 2;
}
.home__services-title.home__services-title--form {
  margin-top: 0;
  color: #fff;
}
.home__services-txt {
  margin: 0;
  width: 100%;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}
.home__services-form-wrapper {
  margin-top: auto;
}
/* Solution */
.home__solution {
  display: flex;
}
.home__solution-col {
  width: 50%;
}
.home__solution-col:nth-child(2) {
  padding-left: 17px;
}
.home__solution-section-name {
  position: sticky;
  top: 100px;
}
.home__solution-list {
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.home__solution-item {
  margin: 10px;
  padding: 20px;
  width: calc((100% / 2) - 20px);
  background: #F1F4FF;
  border-radius: 10px;
}
.home__solution-ico {
  padding: 8px;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: #FFDD00;
}
.home__solution-ico img {
  display: block;
  width: 100%;
  height: auto;
}
.home__solution-txt {
  margin: 20px 0 0;
}
/* Clients */
.home__clients {
  overflow: hidden;
  position: relative;
}
.home__clients::before,
.home__clients::after {
  content: "";
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
.home__clients::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.home__clients::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}
.home__clients-slider {
  margin-top: 20px;
  overflow: initial;
  width: auto;
  pointer-events: none;
}
.home__clients-slide {
  display: flex;
  width: auto!important;
}
.home__clients-item {
  padding: 10px;
  pointer-events: none;
  width: 220px;
  border-radius: 10px;
  border: 1px solid #F1F4FF;
}
.home__clients-item:not(:last-child) {
  margin-right: 20px;
}
.home__clients-logo {
  display: block;
  width: 100%;
  height: auto;
}
/* Projects */
/* About */
.home__about-list {
  margin: -10px;
  display: flex;
  flex-wrap: wrap;
}
.home__about-item {
  margin: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  width: calc((100% / 3) - 20px);
  border-radius: 10px;
  background: #F1F4FF;
  position: relative;
  overflow: hidden;
}
.home__about-item.home__about-item--yellow {
  background: #FFDD00;
}
.home__about-item.home__about-item--yellow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/home/about-lines.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.home__about-item.home__about-item--yellow .home__about-title {
  color: #232323;
}
.home__about-item.home__about-item--yellow .home__about-txt {
  color: rgba(35, 35, 35, 0.7);
}
.home__about-item.home__about-item--blue {
  background: #3578ED;
}
.home__about-item.home__about-item--blue .home__about-title {
  color: #fff;
}
.home__about-item.home__about-item--blue .home__about-txt {
  color: rgba(255, 255, 255, 0.8);
}
.home__about-item.home__about-item--left {
  margin-left: auto;
}
.home__about-title {
  margin-top: 0;
}
.home__about-txt {
  margin: 0;
}
/* Media */
@media (max-width: 1260px) {
  /* Hero */
  .home__hero {
    margin-top: 110px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 40px 0;
    height: auto;
  }
  .home__hero-section-title {
    text-align: center;
  }
  .home__hero-subtitle {
    margin: 0 auto;
    max-width: 580px;
    text-align: center;
  }
  .home__hero-img {
    margin: 20px auto;
    width: auto;
    height: 300px;
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(0);
  }
  .home__hero-back {
    width: calc(100% + 200px);
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .home__hero-btn {
    display: none;
  }
  .home__hero-btn.home__hero-btn--mob {
    margin: 0 auto;
    display: block;
  }
  /* Services */
  .home__services {
    margin: -10px;
  }
  .home__services-item {
    margin: 10px;
    padding: 20px;
    width: calc((100% / 2) - 20px);
  }
  .home__services-img img {
    width: 100%;
    object-fit: contain;
  }
  /* Solutions */
  .home__solution-txt br {
    display: none;
  }
  /* Clients */
  .home__clients-slider {
    margin-top: 20px;
  }
  .home__clients-item:not(:last-child) {
    margin-right: 20px;
  }
  /* About */
  .home__about-list {
    margin: -10px;
  }
  .home__about-item {
    margin: 10px;
    padding: 20px;
    width: calc((100% / 2) - 20px);
  }
  .home__about-item.home__about-item--wide {
    width: 100%;
  }
}
@media (max-width: 960px) {
  /* Solutions */
  .home__solution-section-subtitle br {
    display: none;
  }
  .home__solution-list {
    margin: 0;
  }
  .home__solution-item {
    margin: 0;
    width: 100%;
  }
  .home__solution-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  /* Hero */
  .home__hero {
    margin-top: 80px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
    background: linear-gradient(0deg, #fff5d3, #ecf2ff);
  }
  .home__hero-container {
    padding: 0 15px;
  }
  .home__hero-section-title {
    margin-bottom: 20px;
    padding-left: 0;
  }
  .home__hero-section-title a {
    width: 55px;
    margin-bottom: -17px;
  }
  .home__hero-section-title br {
    display: block;
  }
  .home__hero-img {
    margin: 0 auto;
    padding-left: 15px;
    height: 330px;
  }
  .home__hero-back {
    width: calc(100% + 100px);
    top: calc(50% - 100px);
    opacity: 0.7;
  }
  .home__hero-btn.home__hero-btn--mob {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
  /* Counter */
  .home__counter {
    flex-wrap: wrap;
    border: 1px solid rgba(85, 85, 85, 0.1);
    border-radius: 10px;
  }
  .home__counter-item {
    padding: 25px 10px;
  }
  .home__counter-item:nth-child(1),
  .home__counter-item:nth-child(2) {
    flex-basis: 50%;
  }
  .home__counter-item:nth-child(2) {
    border-left: 1px solid rgba(85, 85, 85, 0.1);
  }
  .home__counter-item:nth-child(3) {
    border-top: 1px solid rgba(85, 85, 85, 0.1);
    flex-basis: 100%;
  }
  .home__counter-num {
    flex-direction: column;
    align-items: center;
  }
  .home__counter-num.home__counter-num--main {
    font-size: 50px;
  }
  .home__counter-num.home__counter-num--plus::after {
    font-size: 22px;
    top: 4px;
    right: -15px;
  }
  .home__counter-num.home__counter-num--small {
    margin-left: 0;
    font-size: 14px;
  }
  .home__counter-txt {
    margin-top: 12px;
    font-size: 14px;
  }
  /* Services */
  .home__services {
    margin: 0;
  }
  .home__services-item {
    margin: 0;
    padding: 15px;
    width: 100%;
  }
  .home__services-item:not(:last-child) {
    margin-bottom: 15px;
  }
  .home__services-img {
    border-radius: 6px;
    border: none;
  }
  /* Solution */
  .home__solution {
    display: block;
  }
  .home__solution-col {
    width: 100%;
    padding-left: 0!important;
  }
  .home__solution-list {
    margin: -3px;
  }
  .home__solution-item {
    margin: 3px!important;
    padding: 15px;
    width: calc((100% / 2) - 6px);
    border-radius: 6px;
  }
  .home__solution-ico {
    padding: 6px;
    width: 55px;
    height: 55px;
  }
  .home__solution-txt {
    margin-top: 15px;
  }
  /* Clients */
  .home__clients::after,
  .home__clients::before {
    display: none;
  }
  .home__clients-slider {
    margin-top: 6px;
  }
  .home__clients-item {
    width: 150px;
    border-radius: 6px;
  }
  .home__clients-item:not(:last-child) {
    margin-right: 6px;
  }
  /* About */
  .home__about-list {
    margin: 0;
  }
  .home__about-item {
    margin: 0;
    padding: 15px;
    width: 100%;
  }
  .home__about-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 440px) {
  .home__solution-list {
    margin: 0;
  }
  .home__solution-item {
    margin: 0!important;
    width: 100%;
  }
  .home__solution-item:not(:last-child) {
    margin-bottom: 6px!important;
  }
}
/*# sourceMappingURL=./style.css.map */