@charset "UTF-8";
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ШРИФТЫ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
*,
p,
h1, h2, h3, h4, h5, h6 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  overflow-x: hidden;
}
html.fixed {
  overflow: hidden;
}

body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #FFF;
  background: #1B202C;
  overflow-x: hidden;
}
@media (max-width: 565px) {
  body {
    font-size: 14px;
    line-height: 23px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

button {
  display: block;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}
button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

input, textarea {
  font-family: "Montserrat", sans-serif;
  outline: none;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
}
input:disabled, textarea:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.container {
  position: relative;
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 30px;
    line-height: 110%;
  }
  .section-title br {
    display: none;
  }
}
.section-title:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  margin-top: 21px;
  margin-left: auto;
  margin-right: auto;
  background: #2E78FF;
}
@media (width <= 768px) {
  .section-title:after {
    margin-top: 10px;
  }
}

.section-subtitle {
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
  }
}
* ::-webkit-scrollbar {
  width: 6px; /* ширина всей полосы прокрутки */
}

* ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2); /* цвет зоны отслеживания */
  border-radius: 20px;
}

* ::-webkit-scrollbar-thumb {
  background-color: #2E78FF; /* цвет бегунка */
  border-radius: 20px; /* округлось бегунка */
  border: 3px solid transparent;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ (нужны там где нет нужды в осмысленном класснейминге)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END	ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	СТИЛИ ДЛЯ ОДИНАКОВЫХ ЭЛЕМЕНТОВ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 10px;
  background: #2E78FF;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button span {
  position: relative;
  z-index: 1;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.popup {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 34, 40, 0.9);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
}
.popup.is-open {
  opacity: 1;
  pointer-events: initial;
}
.popup__body {
  position: relative;
  max-width: 540px;
  width: 100%;
  margin: auto;
  padding: 55px 60px 60px 60px;
  text-align: center;
  background: rgba(27, 32, 44, 0.8);
  border-radius: 7px;
  -webkit-box-shadow: 0 4px 50px 0 rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 50px 0 rgba(255, 255, 255, 0.05);
  background-image: -webkit-gradient(linear, left bottom, right top, color-stop(3.63%, rgba(29, 76, 176, 0.28)), color-stop(41.24%, rgba(29, 76, 176, 0)));
  background-image: linear-gradient(to top right, rgba(29, 76, 176, 0.28) 3.63%, rgba(29, 76, 176, 0) 41.24%);
}
@media (max-width: 565px) {
  .popup__body {
    padding: 20px;
  }
}
.popup__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  color: #2E78FF;
}
.popup__title--white {
  color: #FFF;
}
.popup__tagtitle {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 565px) {
  .popup__tagtitle br {
    display: none;
  }
}
.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 23px;
  height: 23px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.popup__close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.popup__close:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 11px;
  left: 0;
}
.popup__close:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #FFF;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 11px;
  left: 0;
}

@media (max-height: 640px) {
  .popup {
    padding: 0;
    display: block;
  }
  .popup__body {
    margin: 50px auto;
  }
}
.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
  background: #FFF;
  border-radius: 7px;
  border: none;
}
.form__input::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
}
.form__input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
}
.form__input:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
}
.form__input::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
}
.form__input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #000;
}

.agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  cursor: pointer;
}
.agree__text {
  font-size: 11px;
  line-height: 14px;
  text-align: left;
}
.agree__text a {
  color: #FFF;
  border-bottom: 1px solid rgb(255, 255, 255);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.agree__text a:hover {
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.agree__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #FFF;
  border-radius: 5px;
}
.agree__checkicon {
  width: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agree__input {
  display: none;
}
.agree__input:checked + .agree__checkbox .agree__checkicon {
  width: 10px;
}

.iti {
  width: 100%;
  margin-bottom: 30px;
}

.iti__selected-flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.iti__selected-dial-code {
  color: #000;
}

.iti__country-name {
  color: #000;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END СТИЛИ ДЛЯ ОДИНАКОВЫХ ЭЛЕМЕНТОВ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	HEADER 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END HEADER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.footer {
  width: 100%;
  margin-top: auto;
  border-bottom: 5px solid #2E78FF;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.footer__infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__text[href]:hover {
  color: #2E78FF;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .footer__links {
    -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__linksbox {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 992px) {
  .footer__linksbox {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.mb {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .mb {
    margin-bottom: 40px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.app {
  position: relative;
  overflow: hidden;
  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: 100vh;
}

.color-blue {
  color: #2E78FF;
}

.decor-1 {
  position: absolute;
  z-index: -1;
  top: -250px;
}

.decor-2 {
  position: absolute;
  z-index: -1;
  top: -250px;
}

.decor-3 {
  position: absolute;
  z-index: -1;
  top: -550px;
}

.bluebox {
  background: rgba(46, 120, 255, 0.2);
  border: 1px solid rgba(46, 120, 255, 0.4);
  border-radius: 10px;
}

.service-present {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 62px 20px 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media (width <= 768px) {
  .service-present {
    padding-top: 30px;
  }
}
.service-present__imgbox {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-present__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-present__title {
  margin-bottom: 20px;
  font-size: 100px;
  line-height: 90%;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
}
@media (width <= 768px) {
  .service-present__title {
    margin-bottom: 10px;
    font-size: 40px;
  }
}
.service-present__title--blue {
  color: #2E78FF;
}
.service-present__text {
  max-width: 431px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 31px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  text-align: center;
  color: #FFF;
}
@media (width <= 768px) {
  .service-present__text {
    font-size: 14px;
  }
}
.service-present__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .service-present__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.service-present__know {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 10px;
  background: #2E78FF;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-present__know span {
  position: relative;
  z-index: 1;
}
.service-present__know:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-present__know:hover:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
@media (width <= 768px) {
  .service-present__know {
    max-width: 350px;
    height: 50px;
  }
}
.service-present__consult {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-size: 14px;
  font-weight: 700;
  color: #2E78FF;
  background: #FFF;
  border: 1px solid #2E78FF;
  border-radius: 7px;
}
@media (width <= 768px) {
  .service-present__consult {
    max-width: 350px;
    height: 50px;
  }
}
.service-present__advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 992px) {
  .service-present__advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.service-present-advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 180px;
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  border-radius: 10px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (width <= 768px) {
  .service-present-advantage {
    height: 110px;
    padding: 10px;
  }
}
.service-present-advantage__name {
  font-size: 18px;
  line-height: 110%;
  font-weight: 600;
  color: #1D2941;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (width <= 768px) {
  .service-present-advantage__name {
    font-size: 14px;
  }
}
.service-present-advantage__name--white {
  color: #FFF;
}
.service-present-advantage__num {
  margin-top: auto;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(29, 41, 65, 0.4);
}
@media (width <= 768px) {
  .service-present-advantage__num {
    font-size: 12px;
  }
}
.service-present-advantage__num--white {
  color: rgba(255, 255, 255, 0.4);
}
.service-present-advantage--blue {
  background: #2E78FF;
}

.info-cards {
  position: relative;
}
.info-cards__title {
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .info-cards__title {
    margin-bottom: 20px;
  }
}
.info-cards__subtitle {
  max-width: 416px;
  margin-bottom: 40px;
}
.info-cards__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width <= 992px) {
  .info-cards__box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 768px) {
  .info-cards__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 565px) {
  .info-cards__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.info-cards-presentbox {
  grid-column: span 2;
  grid-row: span 2;
}
@media (width <= 992px) {
  .info-cards-presentbox {
    grid-column: span 3;
  }
}
@media (width <= 768px) {
  .info-cards-presentbox {
    grid-column: span 2;
  }
}
@media (width <= 565px) {
  .info-cards-presentbox {
    grid-column: span 1;
  }
}

.info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 220px;
  padding: 20px;
  overflow: hidden;
}
@media (width <= 565px) {
  .info-card {
    height: auto;
    min-height: 120px;
    padding: 10px;
  }
}
.info-card-big {
  grid-column: span 2;
}
@media (width <= 565px) {
  .info-card-big {
    grid-column: span 1;
  }
}
.info-card-imgbox {
  padding: 0;
  border: none;
}
.info-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.info-card__title {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
}
.info-card__text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: #FFF;
  opacity: 0.8;
}
.info-card__num {
  margin-top: auto;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
@media (width <= 992px) {
  .info-card-empty {
    display: none;
  }
}
.info-card-blue {
  border-radius: 10px;
  background: linear-gradient(158deg, #2e78ff 6.6%, #4663be 71.08%);
}

.info-banner__box {
  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;
  gap: 10px;
  padding: 40px 335px 40px 40px;
  background: #2E78FF;
  border-radius: 10px;
  overflow: hidden;
}
@media (width <= 768px) {
  .info-banner__box {
    padding: 16px 115px 24px 16px;
  }
}
.info-banner__box--warning {
  padding: 40px 212px 40px 40px;
}
@media (width <= 768px) {
  .info-banner__box--warning {
    padding: 18px 16px 65px;
  }
}
.info-banner__usabox {
  background: linear-gradient(158deg, #2e78ff 6.6%, #4663be 71.08%);
}
@media (width <= 768px) {
  .info-banner__usabox {
    height: 180px;
    padding: 16px 85px 24px 16px;
  }
}
.info-banner__titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.info-banner__title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 768px) {
  .info-banner__title {
    font-size: 18px;
    line-height: 110%;
  }
}
.info-banner__subtitle {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
}
@media (width <= 768px) {
  .info-banner__subtitle {
    font-size: 14px;
  }
  .info-banner__subtitle br {
    display: none;
  }
}
.info-banner__imgbox {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (width <= 992px) {
  .info-banner__imgbox {
    height: auto;
  }
}
@media (width <= 768px) {
  .info-banner__imgbox--warning {
    top: initial;
    bottom: 0;
    height: auto;
  }
}
.info-banner__usaimg {
  top: initial;
  bottom: 0;
}
.info-banner__img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
@media (width <= 768px) {
  .info-banner__img--warning {
    width: 70px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.info-banner__text {
  max-width: 626px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #FFF;
}
@media (width <= 768px) {
  .info-banner__text {
    font-size: 14px;
    line-height: 130%;
  }
}
.countries__title {
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .countries__title {
    margin-bottom: 10px;
  }
}
.countries__text {
  max-width: 416px;
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (width <= 768px) {
  .countries__text {
    margin: 0 auto 20px auto;
  }
}
.countries__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media (width <= 768px) {
  .countries__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 565px) {
  .countries__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.countries-card {
  overflow: hidden;
}
.countries-card__fotobox {
  width: 100%;
  height: 330px;
  overflow: hidden;
}
@media (width <= 1210px) {
  .countries-card__fotobox {
    height: 27.4vw;
  }
}
@media (width <= 768px) {
  .countries-card__fotobox {
    height: 40.4vw;
  }
}
@media (width <= 565px) {
  .countries-card__fotobox {
    height: 51.283vw;
  }
}
.countries-card__foto {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.countries-card__info {
  padding: 20px;
}
@media (width <= 565px) {
  .countries-card__info {
    padding: 10px 16px 16px;
  }
}
.countries-card__title {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 565px) {
  .countries-card__title {
    margin-bottom: 6px;
    font-size: 18px;
  }
}
.countries-card__text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.cases__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px;
}
@media (width <= 992px) {
  .cases__box {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
@media (width <= 992px) {
  .cases__info {
    padding: 16px;
    background: rgba(46, 120, 255, 0.2);
    border: 1px solid rgba(46, 120, 255, 0.4);
    border-radius: 10px;
  }
}
.cases__title {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 992px) {
  .cases__title {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
.cases__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 260px;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 10px;
  background: #2E78FF;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cases__button span {
  position: relative;
  z-index: 1;
}
.cases__button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cases__button:hover:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
@media (width <= 565px) {
  .cases__button {
    max-width: 100%;
    height: 50px;
  }
}
.cases__sliderbox {
  min-width: 1px;
}
@media (width <= 992px) {
  .cases__sliderbox {
    padding: 16px;
    background: rgba(46, 120, 255, 0.2);
    border: 1px solid rgba(46, 120, 255, 0.4);
    border-radius: 10px;
  }
}
.cases-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 37px;
}
@media (width <= 565px) {
  .cases-nav {
    margin-top: 20px;
  }
}
.cases-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.cases-nav__btn.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.case-statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.case-statistic__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.8);
}
.case-statistic__item b {
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}

.case__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (width <= 565px) {
  .case__head {
    padding-bottom: 16px;
  }
}
.case__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 565px) {
  .case__title {
    font-size: 18px;
    line-height: 110%;
  }
}
.case__itog {
  display: block;
  padding: 4px 20px;
  font-size: 16px;
  color: #FFF;
  border-radius: 100px;
  background: #2E78FF;
}
@media (width <= 565px) {
  .case__itog {
    padding: 4px 12px;
    font-size: 12px;
  }
}
.case__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (width <= 565px) {
  .case__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.case__name {
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 565px) {
  .case__name {
    font-size: 14px;
  }
}
.case__val {
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
}
@media (width <= 565px) {
  .case__val {
    max-width: 155px;
    width: 100%;
    font-size: 14px;
    line-height: 120%;
  }
}

.service-info {
  position: relative;
}
.service-info__title {
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .service-info__title {
    margin-bottom: 20px;
  }
}
.service-info__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (width <= 992px) {
  .service-info__box {
    grid-template-columns: 1fr;
  }
}
.service-info__fotobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-info__foto {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media (width <= 565px) {
  .service-info__foto {
    height: auto;
  }
}
.service-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.service-info__item {
  padding: 18.6px;
  font-size: 24px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
  list-style: none;
}
@media (width <= 565px) {
  .service-info__item {
    padding: 10px;
    font-size: 18px;
  }
}
.service-info-present {
  padding: 40px;
}
@media (width <= 768px) {
  .service-info-present {
    padding: 16px;
  }
}
.service-info-present__title {
  margin-bottom: 20px;
  text-align: left;
}
.service-info-present__title:after {
  margin-left: 0;
}
@media (width <= 565px) {
  .service-info-present__title:after {
    margin-top: 10px;
  }
}
@media (width <= 565px) {
  .service-info-present__title {
    margin-bottom: 10px;
  }
}
.service-info-present__text {
  font-size: 16px;
  line-height: 130%;
  color: #FFF;
}
@media (width <= 565px) {
  .service-info-present__text {
    font-size: 14px;
  }
}
.service-info-linelist {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-right: 27px;
  overflow: hidden;
}
.service-info-linelist__num {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #FFF;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
@media (width <= 768px) {
  .service-info-linelist__num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
.service-info-linelist__title {
  position: relative;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  color: #fff;
}
@media (width <= 768px) {
  .service-info-linelist__title {
    font-size: 18px;
  }
}
.service-info-linelist__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: #FFF;
  opacity: 0.8;
}
.service-info-linelist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 10px;
}
.service-info-linelist__item:last-child .service-info-linelist__title:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 18px;
  left: -34px;
  width: 1px;
  height: 500px;
  background: rgba(46, 120, 255, 0.4);
}
@media (width <= 768px) {
  .service-info-linelist__item:last-child .service-info-linelist__title:before {
    left: -22px;
  }
}

.schengen-conditions__title {
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .schengen-conditions__title {
    margin-bottom: 20px;
  }
}
.schengen-conditions__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .schengen-conditions__box {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.schengen-conditions__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;
}
@media (width <= 565px) {
  .schengen-conditions__item {
    padding: 16px;
  }
}
.schengen-conditions__nametitle {
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 565px) {
  .schengen-conditions__nametitle {
    font-size: 20px;
    line-height: 100%;
  }
}
.schengen-conditions__text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
}
@media (width <= 565px) {
  .schengen-conditions__text {
    line-height: 120%;
  }
}
.schengen-conditions__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.schengen-conditions__info:not(:last-child) {
  margin-bottom: 20px;
}
@media (width <= 565px) {
  .schengen-conditions__info {
    gap: 6px;
  }
  .schengen-conditions__info:not(:last-child) {
    margin-bottom: 10px;
  }
}
.schengen-conditions__name {
  font-size: 18px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
}
@media (width <= 565px) {
  .schengen-conditions__name {
    font-size: 14px;
    line-height: 120%;
  }
}
.schengen-conditions__val {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 130%;
  color: #FFF;
}
.schengen-conditions__val:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2E78FF;
  border-radius: 50%;
}
@media (width <= 565px) {
  .schengen-conditions__val {
    font-size: 14px;
    line-height: 120%;
  }
}
.schengen-conditions__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  height: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  border-radius: 10px;
  background: #2E78FF;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.schengen-conditions__button span {
  position: relative;
  z-index: 1;
}
.schengen-conditions__button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.29deg, #2E78FF 22.7%, #4663BE 81.92%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.schengen-conditions__button:hover:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.schengen-conditions__button {
  margin-top: auto;
}
@media (width <= 565px) {
  .schengen-conditions__button {
    height: 50px;
  }
}
.schengen-conditions__img {
  width: 100%;
  border-radius: 10px;
}
@media (width <= 565px) {
  .schengen-conditions__img {
    height: 220px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.faq {
  position: relative;
}
.faq__title {
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .faq__title {
    margin-bottom: 20px;
    padding: 0 30px;
  }
}
.faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.faq__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  line-height: 110%;
  font-weight: 600;
  color: #FFF;
  text-align: left;
}
@media (width <= 768px) {
  .faq__button {
    padding: 16px;
  }
}
@media (width <= 565px) {
  .faq__button {
    font-size: 18px;
  }
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  max-width: 657px;
  width: 100%;
  padding: 0 20px 20px;
}
@media (width <= 768px) {
  .faq__content {
    padding: 0 16px 16px;
  }
}
.faq__content * {
  font-size: 16px;
  line-height: 130%;
  color: #FFF;
  text-align: left;
}
@media (width <= 565px) {
  .faq__content * {
    font-size: 14px;
    line-height: 120%;
  }
}
.faq__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq__item.is-active .faq__body {
  max-height: 1000px;
}
.faq__item.is-active .faq__icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.features__subtitle {
  max-width: 502px;
}
.features-card {
  height: 280px;
}
@media (width <= 565px) {
  .features-card {
    height: 180px;
  }
}
.features-card__icon {
  width: 138px;
  height: 138px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
  margin-top: auto;
  margin-right: -20px;
  margin-bottom: -20px;
}
@media (width <= 565px) {
  .features-card__icon {
    width: 110px;
    height: 110px;
    margin-right: -10px;
    margin-bottom: -10px;
  }
}
/*# sourceMappingURL=usa.css.map */
