@import url(https://fonts.googleapis.com/css?family=Archivo:100,200,300,regular,500,600,700,800,900&display=swap);

@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #121212;
  line-height: 1;
  font-family: "Archivo";
  font-size: 1.375rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Archivo";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-weight: 400;
  line-height: 1.0909090909;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 1;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt

@if ($responsiveType==1) {
	// Чуйна
	[class*="__container"] {
		@if ($maxWidthContainer>0) {
			max-width: rem($containerWidth);
			margin: 0 auto;
		}
		@if ($containerPadding>0) {
			@if ($maxWidthContainer>0) {
				padding: 0 rem(math.div($containerPadding, 2));

				@media (min-width:$mobile) and (max-width:$tablet){
					padding: 0 rem(math.div(112, 2));
				}
			} @else {
				@include adaptiveValue("padding-left", math.div($containerPadding, 2), 15);
				@include adaptiveValue("padding-right", math.div($containerPadding, 2), 15);
			}
		}
	}
} @else {
	// Брейк-поїнтами
	[class*="__container"] {
		margin: 0 auto;
		@if ($maxWidthContainer>0) {
			max-width: rem($containerWidth);
		} @else {
			@if ($containerPadding>0) {
				padding: 0 rem(math.div($containerPadding, 2));
			}
		}
		@media (max-width: $pc) {
			max-width: rem(970);
		}
		@media (max-width: $tablet) {
			max-width: rem(750);
		}
		@media (max-width: $mobile) {
			max-width: none;
			@if ($containerPadding>0 and $maxWidthContainer>0) {
				padding: 0 rem(math.div($containerPadding, 2));
			}
		}
	}
}
*/

/*
.form {
	background: #516680;
	border-radius: 20px;
	padding: 30px;
	max-width: 463px;
	width: 100%;
	position: relative;

	&._sending{

        &::after{
             content:'';
             position: absolute;
             width: 100%;
             height: 100%;
             top: 0;
             left: 0;
              background: rgba(10, 10, 10, 0.4) url('../img/loading.gif') center / 50px no-repeat;
             z-index: 10001;
             transition: all 0.3s ease 0s;
        }
    }

	&__title{
		font-weight: 600;
		text-align: center;
		margin-bottom: rem(32);
	}

	&__row {
		position: relative;

		&:not(:last-child) {
			margin-bottom: rem(22);
		}

		&:last-child{
			margin-top: rem(31);
		}
	}
	&__input {
		background: #FFFFFF;
		border-radius: 5px;		
		width: 100%;
		height: 50px;
		padding: 0 19px;
		color: #516680;
		border: 1px solid transparent;

		&::placeholder{
			font-size: 16px;
			line-height: math.div(17 ,16 );
			color: #83899D;
		}

		&._form-error{
			border: 1px solid red;
		}
	}
	&__button {
		font-size: 18px;
		line-height: math.div(20 ,18 );
		font-weight: 500;
		color: #FFFFFF;

		background: #1AD079;
		border-radius: 100px;
		padding: 18px;
		transition: transform 0.5s ease 0s;
		width: 100%;


		&:hover{
			transform: scale(1.05);
		}

	}
	&__error {
		font-family: "Archivo";
		position: absolute;
		top: 105%;
		left: 0;
		color: red;
		font-size: 14px;
	}
}*/

.form {
  width: 100%;
  position: relative;
  background-color: #516680;
  border-radius: 20px;
  padding: 20px;
}

.form__row {
  position: relative;
  margin-bottom: 10px;
}

.form__row:last-child {
  margin-bottom: 0;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 15px;
  color: #516680;
  font-weight: 400;
  border: 1px solid transparent;
  background-color: #FFFFFF;
  border-radius: 5px;
}

.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 1.0625;
  color: #83899D;
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  font-size: 16px;
  line-height: 1.0625;
  color: #83899D;
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.0625;
  color: #83899D;
}

.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  font-size: 16px;
  line-height: 1.0625;
  color: #83899D;
}

.form__input::placeholder,
.form__textarea::placeholder {
  font-size: 16px;
  line-height: 1.0625;
  color: #83899D;
}

.form__textarea {
  min-height: 120px;
  resize: none;
}

.form__btn:disabled {
  opacity: 0.5;
}

.form__btn:disabled:hover {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.form-feedback {
  padding: 0;
  background-color: transparent;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=tel],
.iti input[type=text] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fff;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  padding: 5px 10px;
  outline: 0;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__country-name,
.iti__dial-code,
.iti__flag-box {
  vertical-align: middle;
}

.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0 0;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0 0 1px 0 #888;
          box-shadow: 0 0 1px 0 #888;
  background-image: url(../img/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}

.iti__flag.iti__np {
  background-color: transparent;
}

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

.iti {
  width: 100%;
}

.hero .iti__arrow {
  border-top: 4px solid #000;
}

.white .iti__selected-flag {
  color: #fff;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  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;
}

.lock .popup__content {
  visibility: visible;
}

.popup__content .form__body {
  max-width: inherit;
}

.popup__close {
  font-size: 1.25rem;
  position: absolute;
  top: 15px;
  right: 25px;
  z-index: 10;
}

.form-message__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.form-message__content .form__title {
  margin-bottom: 2.5rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #FFF;
  padding: 18px;
  background-color: #1AD079;
  width: 100%;
	max-width:320px;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.btn:hover {
  background-color: #37c27f;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  font-size: 28px;
  line-height: 1.0714285714;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 0 5px;
  max-width: 796px;
  margin-bottom: 1.75rem;
}

.section {
  position: relative;
  /*@media (max-width:$mobile){
      margin-bottom: rem(90); 
  }
  @media (min-width:$mobile){
      margin-bottom: rem(100); 
  }

  @media (min-width:$pc){
      margin-bottom: rem(120); 
  }*/
}

.section__title {
  font-size: 32px;
  line-height: 1.09375;
  font-weight: 600;
  color: #000000;
  margin-bottom: 3.75rem;
}

.swiper-scrollbar {
  background-color: #B3B3B3;
  height: 2px;
  position: relative;
}

.swiper-scrollbar-drag {
  background-color: #000;
  height: 3px;
  position: absolute;
  top: -1.5px;
  left: 0;
}

.main-thanks {
  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;
  padding: 60px 0;
  text-align: center;
}

.main-thanks h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 30px;
}

.main-thanks p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}

.main-thanks a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}

.header {
  height: 108px;
  background-color: #fff;
  z-index: 100;
}

.header__container {
  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;
  height: 100%;
	gap:16px
}

.header .logo {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
  color: #000;
  z-index: 100;
	max-width:180px;
}

.menu__arrow {
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2715%27 height=%279%27 viewBox=%270 0 15 9%27 fill=%27none%27%3E%3Cpath d=%27M0.397374 0.87004C0.111878 0.993613 -0.0500451 1.31746 0.013872 1.64983C0.0394388 1.79471 0.439986 2.20804 3.60601 5.37832C6.7763 8.54435 7.18963 8.94489 7.3345 8.97046C7.73505 9.04716 7.50069 9.25169 11.3783 5.37832C15.2517 1.50495 15.0472 1.73505 14.9705 1.3345C14.9321 1.12571 14.6764 0.87004 14.4676 0.83169C14.0671 0.754989 14.2716 0.580283 10.7392 4.10424L7.49217 7.35123L4.26222 4.12555C2.4555 2.31883 0.985411 0.878562 0.917233 0.852996C0.75531 0.79334 0.555036 0.801862 0.397374 0.87004Z%27 fill=%27black%27/%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sub-menu {
  padding-top: 10px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.sub-menu li {
  padding: 0;
}

.sub-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.sub-menu li.current_page_item a {
  color: #1AD079;
}

.sub-menu li a {
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
  line-height: 1;
}

.sub-menu li a:hover {
  color: #1AD079;
}

.sub-menu li a[aria-current=page] {
  pointer-events: none;
}

.icon-menu {
  display: none;
}

.footer {
  padding: 23px 0 37px 0;
  background: #516680;
  color: #fff;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.footer .logo {
  font-size: 32px;
  line-height: 1.09375;
  font-weight: 600;
	max-width:180px;
	margin-bottom:32px;
}

.footer__menu-list li a {
  font-size: 16px;
  line-height: 1.0625;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.footer__menu-list li a:hover {
  color: #1AD079;
}

.footer__text {
  font-size: 15px;
  line-height: 16px;
  margin-top: 3.4375rem;
}

.footer__text p {
  border-top: 1px solid #FFFFFF;
  padding-top: 18px;
}

.intro {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.intro::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.55)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.intro-main {
  margin-bottom: 60px;
}

.intro-main .intro__content {
  max-width: inherit;
}

.intro-main .intro__title {
  max-width: inherit;
}

.intro-main .intro__text {
  text-align: center;
}

.intro__inner {
  position: relative;
  z-index: 1;
}

.intro__content {
  max-width: 533px;
}

.intro__text {
  color: #fff;
  margin-bottom: 20px;
}

.intro__text p:not(:last-child) {
  margin-bottom: 24px;
}

.intro__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.intro__list li:last-child {
  margin-bottom: 0;
}

.intro__list li::before {
  content: "";
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M23.3318 0.588618C22.9424 0.20828 22.4353 0 21.9056 0C21.3169 0 20.751 0.267142 20.348 0.733508L10.6539 12.5376L7.45722 9.98838C6.98633 9.56277 6.38866 9.32279 5.76382 9.32279C4.99862 9.32279 4.27869 9.68049 3.78516 10.2963C2.87054 11.4373 2.99732 13.1579 4.07494 14.1495L9.19138 18.4871C9.56266 18.8267 10.0381 19.0169 10.5316 19.0169C11.1293 19.0169 11.6998 18.7407 12.0937 18.2562L23.4993 3.63584C24.2283 2.73481 24.1514 1.39457 23.3318 0.588618Z%27 fill=%27%23EE7A3F%27/%3E%3Cpath d=%27M21.7336 10.4139C21.2335 10.4139 20.828 10.8193 20.828 11.3194V19.4695C20.828 20.4684 20.0158 21.2806 19.0169 21.2806H3.62226C2.62338 21.2806 1.81113 20.4684 1.81113 19.4695V4.0749C1.81113 3.07601 2.62338 2.26377 3.62226 2.26377H14.9418C15.4419 2.26377 15.8474 1.8583 15.8474 1.3582C15.8474 0.858104 15.4419 0.452637 14.9418 0.452637H3.62226C1.62499 0.452637 0 2.07763 0 4.0749V19.4695C0 21.4668 1.62499 23.0918 3.62226 23.0918H19.0169C21.0141 23.0918 22.6391 21.4668 22.6391 19.4695V11.3194C22.6391 10.8193 22.2337 10.4139 21.7336 10.4139Z%27 fill=%27%23EE7A3F%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.about__item {
  position: relative;
}

.about__item-img {
  margin-bottom: 0.875rem;
  border-radius: 10px;
}

.about__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about__item-title {
  font-size: 24px;
  line-height: 1.0833333333;
  font-weight: 600;
  color: #000000;
}

.cooperation {
  background: #C2EEDA;
  padding: 50px 0;
}

.cooperation__item {
  padding-top: 22px;
  font-weight: 500;
  border-top: 2px solid #000000;
  max-width: 614px;
}

.advantages__title {
  max-width: 514px;
}

.advantages__title span {
  font-weight: 800;
}

.advantages__item-title {
  font-size: 25px;
  line-height: 1.08;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #000000;
  max-width:80%;
}

.partners__slide {
  height: 72px !important;
  width: auto !important;
}

.partners__slide img {
  height: 100%;
}

.partners__slider-buttons,
.service__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 2rem;
}

.partners__slider-button.swiper-button-disabled svg,
.swiper-button-disabled.service__slider-button svg {
  fill: #B3B3B3;
}

.partners__slider-button svg,
.service__slider-button svg {
  width: 47px;
  height: 32px;
  fill: #000;
}

.service {
  background: #F3F3F6;
  padding: 97px 0;
}

.service__title {
  max-width: 470px;
}

.service__slider {
  padding-bottom: 2px;
}

.service__wrapper {
  margin-bottom: 5rem;
}

.service__slide {
  padding-top: 22px;
  border-top: 2px solid #000000;
}

.service__slider-buttons {
  position: absolute;
  top: 0;
  right: 56px;
}

.package__title {
  text-align: center;
}

.package__body {
  background: #516680;
  border-radius: 20px;
  color: #FFFFFF;
  text-align: center;
  padding: 52px 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.package__body h3 {
  font-size: 28px;
  line-height: 1.0714285714;
  font-weight: 500;
}

.package__body P {
  font-weight: 500;
  max-width: 752px;
  margin-bottom: 2rem;
}

.package__price {
  margin-top: 2.625rem;
  margin-bottom: 2rem;
}

.package__price span {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.0833333333;
  color: #1AD079;
}

.package__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 42px;
     -moz-column-gap: 42px;
          column-gap: 42px;
  row-gap: 30px;
  margin-top: 3.25rem;
  max-width: 742px;
}

.feedback {
  background: #516680;
  padding: 73px 0;
}

.feedback__inner {
  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: 32px;
}

.feedback__img {
  max-width: 522px;
}

.feedback__block {
  max-width: 463px;
  width: 100%;
}

.feedback__title {
  font-size: 24px;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

.seo {
  position: relative;
  margin-bottom: 60px;
}

.seo.open .seo__body {
  height: auto;
}

.seo.open .seo__opener .icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.seo__body {
  position: relative;
  border-radius: 16px;
  background: #f3f3f6;
  padding: 20px;
  padding-right: 30px;
  margin-bottom: 10px;
  overflow-y: auto;
  height: 350px;
  /*.simplebar-content-wrapper{
      &::after{
          content:'';
          position: absolute;
          top: 0;
          right: -20px;
          background: url(../img/seo-decor.png) center/contain no-repeat;
          width: 327px;
          height: 373px;

          @media (min-width:$tablet){
              width: 527px;
              height: 673px; 
          }
      }
  }*/
}

.seo__body h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #18191F;
  max-width: 520px;
  margin-bottom: 22px;
}

.seo__body h3 {
  font-size: 16px;
  font-weight: 500;
  color: #18191F;
  margin-bottom: 7px;
}

.seo__body p:not(:last-child) {
  margin-bottom: 30px;
}

.seo__body ul {
  margin-bottom: 30px;
}

.seo__body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.seo__body ul li:not(:last-child) {
  margin-bottom: 15px;
}

.seo__body ul li::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2721%27 height=%2721%27 viewBox=%270 0 21 21%27 fill=%27none%27%3E%3Cg clip-path=%27url%28%23clip0_601_742%29%27%3E%3Cpath d=%27M9.7625 0.0248033C9.68457 0.0330064 9.44258 0.0617173 9.2293 0.0822251C7.87578 0.229881 6.37871 0.738475 5.16875 1.46035C3.63066 2.3791 2.37969 3.63008 1.46094 5.16816C0.743164 6.36582 0.267383 7.76035 0.0746094 9.22871C0.00898438 9.7332 0.00898438 11.2672 0.0746094 11.7717C0.410937 14.327 1.53477 16.4885 3.43789 18.2562C4.48789 19.2365 5.79629 19.9994 7.21953 20.467C8.34336 20.8402 9.2334 20.9756 10.5008 20.9756C11.4359 20.9756 11.8502 20.9387 12.6746 20.7705C15.5006 20.1922 18.023 18.3793 19.5406 15.8322C20.2584 14.6346 20.7342 13.24 20.9269 11.7717C20.9926 11.2672 20.9926 9.7332 20.9269 9.22871C20.7342 7.76035 20.2584 6.36582 19.5406 5.16816C18.6219 3.63008 17.3709 2.3791 15.8328 1.46035C14.6475 0.75078 13.2324 0.266795 11.8133 0.0822251C11.4523 0.0330064 10.0168 -0.00390768 9.7625 0.0248033ZM11.3416 1.27168C13.7328 1.49316 16.042 2.69492 17.5637 4.51191C20.4963 8.01055 20.4963 12.9898 17.5637 16.4885C16.042 18.3055 13.7328 19.5072 11.3416 19.7287C8.88887 19.9543 6.43613 19.175 4.5125 17.5631C2.46992 15.8527 1.23125 13.1867 1.23125 10.5002C1.23125 7.72754 2.54375 5 4.70527 3.27734C6.58789 1.77617 8.975 1.0543 11.3416 1.27168Z%27 fill=%27%231AD079%27/%3E%3Cpath d=%27M15.0317 6.95645C15.0112 6.96055 14.9374 6.97696 14.8676 6.99336C14.7774 7.01387 14.0473 7.71524 11.976 9.78653L9.20748 12.551L7.75143 11.0949C6.19694 9.54043 6.11491 9.47481 5.80319 9.53223C5.60221 9.56914 5.38483 9.77422 5.33151 9.9711C5.23307 10.3361 5.22077 10.3197 7.06647 12.1736C7.99752 13.1047 8.81784 13.9045 8.89166 13.9496C9.05163 14.0522 9.33463 14.0604 9.4987 13.9742C9.56432 13.9373 10.9671 12.5551 12.62 10.9022C15.9587 7.55528 15.8028 7.73985 15.6428 7.3543C15.6018 7.25176 15.5157 7.12871 15.4583 7.0877C15.3557 7.00977 15.1137 6.93594 15.0317 6.95645Z%27 fill=%27%231AD079%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_601_742%27%3E%3Crect width=%2721%27 height=%2721%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  border-radius: 50%;
}

.seo__body ol {
  counter-reset: li;
  margin-bottom: 30px;
}

.seo__body ol li {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

.seo__body ol li:not(:last-child) {
  margin-bottom: 20px;
}

.seo__body ol li::before {
  content: counter(li) ".";
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
  color: #1AD079;
  font-size: 16px;
  font-weight: 600;
}

.seo__opener {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #18191F;
  z-index: 1;
  padding-right: 17px;
}

.seo__opener .icon {
  width: 35px;
  height: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #1AD079;
  -webkit-transition: -webkit-transform 0.4s ease 0s;
  transition: -webkit-transform 0.4s ease 0s;
  -o-transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s;
  transition: transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
}

.seo .simplebar-track.simplebar-vertical {
  right: 14px;
  top: 35px;
  bottom: 35px;
  width: 4px;
  overflow: visible;
  background-color: #fff;
}

.seo .simplebar-scrollbar::before {
  top: 0;
  bottom: 0;
  left: -3px;
  width: 10px;
  border-radius: 20px;
  background: #1AD079;
}

.seo .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1 !important;
}

.intro-contacts {
  min-height: 376px;
}

.intro-contacts .container {
  text-align: center;
}

.intro-contacts .intro__text {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #FFF;
  display: inline-block;
  max-width: 632px;
}

.contacts {
  padding: 50px 0;
}

.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background-color: #F8F7F4;
  z-index: -1;
}

.contacts__title {
  font-size: 22px;
  font-weight: 700;
  max-width: 425px;
  margin-bottom: 20px;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  margin-bottom: 15px;
}

.contacts__item:last-child {
  margin-bottom: 0;
}

.contacts__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.contacts__item-group h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.contacts__item-group span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.contacts__text p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.contacts__email {
  font-size: 22px;
  font-weight: 500;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 11px 15px;
  background-color: #1AD079;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
  width: 100%;
  max-width: 404px;
  margin-bottom: 30px;
}

.contacts__email:hover {
  background-color: #37c27f;
}

.contacts__email .mail {
  width: 25px;
  height: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contacts__email .icon {
  position: absolute;
  bottom: -25px;
  right: -65px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}

.intro-how-works {
  min-height: 275px;
  margin-bottom: 60px;
}

.works {
  margin-bottom: 60px;
}

.works__item {
  padding: 30px 0;
  border-bottom: 2px solid #516680;
}

.works__item p {
  font-size: 16px;
  font-weight: 400;
}

.works__item-step {
  font-size: 22px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}

.intro-specialty {
  margin-bottom: 60px;
}

.intro-specialty::before {
  display: none;
}

.process {
  padding: 50px 0;
  background-color: #C2EEDA;
}

.process__title {
  max-width: 430px;
  margin-bottom: 20px;
}

.process__item {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
}

.process__item:last-child {
  margin-bottom: 0;
}

.specialty-info {
  margin-bottom: 60px;
}

.specialty-info__header {
  border-bottom: 2px solid #000;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.specialty-info__header p {
  font-size: 16px;
  font-weight: 600;
}

.specialty-info__header img {
  max-width: 151px;
}

.specialty-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.specialty-info__item:last-child {
  margin-bottom: 0;
}

.specialty-info__item svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.specialty-info__item p {
  font-size: 16px;
  font-weight: 400;
}

.intro-faq {
  min-height: 320px;
  margin-bottom: 60px;
}

.intro-faq::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -23px;
  background-image: url(../img/faq.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 220px;
  height: 163px;
}

.faq {
  margin-bottom: 60px;
}

.faq__item {
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 30px;
}

.faq__item:last-child {
  margin-bottom: 0;
}

.faq__item-title {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.faq__item-title._spoller-active .faq__item-icon::before {
  height: 0;
}

.faq__item-icon {
  position: relative;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: #C2EEDA;
}

.faq__item-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 1px;
  background-color: #000;
}

.faq__item-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 12px;
  background-color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq__item-body {
  font-size: 16px;
  font-weight: 400;
  color: #5A5A5A;
  padding-top: 20px;
}

.intro-services .intro__title {
  text-align: left;
  padding: 0;
}

.services-advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-top: -20px;
  margin-bottom: 60px;
}

.services-advant li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  border-radius: 6px;
  background-color: #516680;
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 3px);
          flex: 0 1 calc(50% - 3px);
}

.services-advant li svg {
  width: 28px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.services-advant li span {
  font-size: 18px;
  color: #FFF;
  text-wrap: balance;
}

.services-price {
  margin-bottom: 60px;
}

.services-price__title {
  margin-bottom: 30px;
}

.services-price__item:not(:last-child) {
  margin-bottom: 60px;
}

.services-price__item-title {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  width: 100%;
  position: relative;
  cursor: pointer;
  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;
  gap: 32px;
}

.services-price__item-title span {
  max-width: 652px;
}

.services-price__item-title:hover {
  color: #C2EEDA;
}

.services-price__item-title svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.services-price__item-title._spoller-active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.services-price__item-title._spoller-active::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -70px;
  background: url(../img/faq1.png) center/contain no-repeat;
  width: 245px;
  height: 266px;
}

.services-price__item-body {
  padding-top: 25px;
}

.services-price__item-body ul li {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid #000;
  counter-increment: li;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.services-price__item-body ul li::before {
  content: counter(li);
  font-size: 16px;
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background-color: #C2EEDA;
  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;
}

/*@import "services/intro.scss";
@import "services/about.scss";
@import "services/advantages.scss";
@import "services/contract.scss";
@import "services/factors.scss";
@import "services/feedback.scss";
@import "services/info.scss";
@import "services/price.scss";
@import "services/specifics.scss";
@import "services/steps.scss";*/

/**
 * Swiper 9.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 13, 2023
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 47.99875em) {
  .form {
    max-width: 463px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 30px;
  }

  .form__row {
    margin-bottom: 22px;
  }

  .title {
    margin-bottom: 1.125rem;
  }

  .section__title {
    font-size: 46px;
    margin-bottom: 4.1875rem;
  }

  .intro-main {
    margin-bottom: 100px;
  }

  .intro-main .intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .intro__inner {
    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;
    gap: 32px;
  }

  .intro__inner > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .about {
    margin-bottom: 6.25rem;
  }

  .about__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .about__item:first-child {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }

  .about__item:first-child .about__item-title {
    position: absolute;
    top: 31px;
    left: 15px;
    right: 15px;
    font-size: 32px;
    line-height: 1.09375;
    font-weight: 600;
    color: #FFFFFF;
    max-width: 488px;
  }

  .about__item:first-child .about__item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-bottom: 0;
  }

  .cooperation {
    margin-bottom: 6.25rem;
  }

  .cooperation__item {
    font-size: 1.5rem;
  }

  .advantages {
    margin-bottom: 6.25rem;
  }

  .advantages__item {
    font-size: 1.5rem;
  }

  .service {
    margin-bottom: 6.25rem;
  }

  .package {
    margin-bottom: 6.25rem;
  }

  .seo {
    margin-bottom: 100px;
  }

  .contacts::before {
    height: 100%;
    width: 50%;
  }

  .contacts__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }

  .contacts__inner > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 505px;
            flex: 0 1 505px;
  }

  .works__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }

  .works__item:first-child {
    padding-bottom: 70px;
  }

  .works__item:first-child .works__item-step {
    border-bottom: 2px solid #516680;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .works__item:first-child p {
    max-width: 530px;
  }

  .process {
    padding: 100px 0;
  }

  .process__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }

  .specialty-info {
    margin-bottom: 100px;
  }

  .specialty-info__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 52px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .intro-faq {
    margin-bottom: 100px;
  }

  .faq {
    margin-bottom: 100px;
  }

  .faq__list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    gap: 35px;
  }

  .services-price {
    margin-bottom: 100px;
  }
}

@media (min-width: 61.99875em) {
  .title {
    font-size: 48px;
  }

  .main-thanks h1 {
    font-size: 50px;
  }

  .main-thanks p {
    font-size: 36px;
  }

  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }

  .menu__list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 7px 0;
  }

  .menu__list li:hover > .menu__arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .menu__list li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu__list li a {
    font-size: 15px;
    line-height: 1.2;
    color: #000000;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }

  .menu__list li a:hover {
    color: #1AD079;
  }

  .menu__list li.menu-item-has-children > a:hover {
    color: #000000;
  }

  .menu__contacts {
    display: none;
  }

  .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
    background-color: #FFFFFF;
    min-width: 220px;
    padding: 15px;
    border-radius: 6px;
  }

  .footer__container {
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }

  .footer__container > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
  }

  .footer .logo {
    font-size: 20px;
    line-height: 1.1;
  }

  .footer__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }

  .footer__menu-list li a {
    font-size: 14px;
  }

  .footer__text:nth-of-type(2) {
    max-width: 367px;
  }

  .intro__text {
    margin-bottom: 42px;
  }

  .intro__list li {
    font-size: 18px;
    gap: 30px;
    margin-bottom: 30px;
  }

  .intro__list li::before {
    width: 24px;
    height: 24px;
  }

  .cooperation {
    padding-bottom: 84px;
  }

  .cooperation__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 90px;
  }

  .cooperation__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 45px);
            flex: 0 1 calc(50% - 45px);
  }

  .advantages__title {
    max-width: 627px;
  }

  .advantages__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 130px;
       -moz-column-gap: 130px;
            column-gap: 130px;
    row-gap: 110px;
  }

  .advantages__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 400px;
            flex: 0 1 400px;
    font-size: 18px;
    line-height: 1.1111111111;
  }

  .partners__slide {
    height: 120px !important;
  }

  .partners__slider-buttons,
  .service__slider-buttons {
    gap: 32px;
  }

  .package__body P {
    margin-bottom: 2.625rem;
  }

  .package__price {
    margin-bottom: 2.625rem;
  }

  .feedback__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .seo__body {
    padding: 50px;
  }

  .seo__body h2 {
    font-size: 32px;
  }

  .contacts {
    padding: 100px 0;
  }

  .contacts__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .contacts__item {
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .contacts__item-icon {
    width: 45px;
    height: 45px;
  }

  .contacts__item-group h3 {
    font-size: 18px;
  }

  .contacts__item-group span {
    font-size: 18px;
  }

  .contacts__text p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .contacts__email {
    font-size: 28px;
    padding-left: 30px;
  }

  .contacts__email .mail {
    width: 29px;
    height: 20px;
  }

  .intro-how-works {
    margin-bottom: 100px;
  }

  .works {
    margin-bottom: 120px;
  }

  .works__item {
    gap: 60px;
  }

  .works__item:first-child {
    padding-bottom: 100px;
  }

  .works__item p {
    font-size: 18px;
  }

  .works__item-step {
    font-size: 24px;
  }

  .process__title {
    font-size: 47px;
  }

  .process__item {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  .specialty-info__header p {
    font-size: 19px;
  }

  .specialty-info__item {
    margin-bottom: 20px;
    gap: 35px;
  }

  .specialty-info__item svg {
    width: 40px;
    height: 40px;
  }

  .specialty-info__item p {
    font-size: 18px;
  }

  .intro-faq::after {
    width: 388px;
    height: 250px;
  }

  .faq__item {
    padding-bottom: 25px;
    margin-bottom: 50px;
  }

  .faq__item-title {
    font-size: 18px;
  }

  .faq__item-body {
    font-size: 18px;
  }

  .intro-services {
    padding-top: 90px;
    padding-bottom: 130px;
  }

  .services-advant {
    margin-top: -70px;
    margin-bottom: 100px;
  }

  .services-advant li {
    padding: 20px 15px 20px 20px;
  }

  .services-price__item-title {
    font-size: 28px;
    gap: 40px;
  }

  .services-price__item-body ul li {
    gap: 35px;
  }
}

@media screen and (min-width: 61.99875em) {
  .intro-contacts .title {
    margin-bottom: 24px;
  }

  .intro-contacts .intro__text {
    margin-bottom: 0;
  }

  .intro-how-works .title {
    margin-bottom: 0;
  }

  .intro-specialty .intro__title {
    margin-bottom: 20px;
  }

  .intro-faq .title {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-bottom: 0;
  }

  .services-price__title {
    margin-bottom: 40px;
  }
}

@media (min-width: 70.625em) {
  .popup__content {
    padding: 70px 35px;
  }

  .section__title {
    font-size: 56px;
  }

  .footer__container {
    -webkit-column-gap: 120px;
       -moz-column-gap: 120px;
            column-gap: 120px;
  }

  .footer__container > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 60px);
            flex: 0 1 calc(50% - 60px);
  }

  .intro {
    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;
  }

  .intro-main {
    min-height: calc(100vh - 108px);
    margin-bottom: 120px;
  }

  .about {
    margin-bottom: 7.5rem;
  }

  .about__container {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    row-gap: 40px;
  }

  .cooperation {
    margin-bottom: 7.5rem;
  }

  .advantages {
    margin-bottom: 7.5rem;
  }

  .advantages__item-title {
    font-size: 28px;
    margin-bottom: 1.375rem;
  }

  .partners__slider-button svg,
  .service__slider-button svg {
    width: 67px;
    height: 44px;
  }

  .service {
    margin-bottom: 6.5625rem;
  }

  .service__title {
    margin-bottom: 5rem;
  }

  .service__wrapper {
    margin-bottom: 8.75rem;
  }

  .service__slider-buttons {
    top: 40px;
  }

  .package {
    margin-bottom: 6.5625rem;
  }

  .package__title {
    margin-bottom: 2.625rem;
  }

  .feedback__inner {
    gap: 54px;
  }

  .works__item img {
    max-width: 439px;
  }

  .process__inner {
    gap: 94px;
  }

  .specialty-info {
    margin-bottom: 120px;
  }

  .intro-faq {
    margin-bottom: 120px;
  }

  .faq {
    margin-bottom: 120px;
  }

  .faq__list {
    gap: 75px;
  }

  .services-advant li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .services-price {
    margin-bottom: 120px;
  }
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

@media (max-width: 70.625em) {
  .package__title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 61.99875em) {
  .menu {
    position: fixed;
    top: 0;
    right: -200%;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px 20px 0 20px;
    padding-top: 108px;
    z-index: 98;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-color: #fff;
  }

  .menu-open .menu {
    right: 0;
  }

  .menu__list {
    margin-bottom: 50px;
  }

  .menu__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }

  .menu__list li:not(:last-child) {
    margin-bottom: 30px;
  }

  .menu__list li.sub-open > .menu__arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .menu__list li.sub-open > .sub-menu {
    height: auto;
    margin-top: 15px;
    visibility: visible;
    opacity: 1;
  }

  .menu__list li a {
    font-size: 32px;
    line-height: 1.21875;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu__list li a[aria-current=page] {
    pointer-events: none;
  }

  .menu__arrow {
    width: 20px;
    height: 20px;
    margin-right: -16px;
  }

  .sub-menu {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: 0;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 100;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .footer__menu-list li:not(:last-child) {
    margin-bottom: 1.375rem;
  }

  .cooperation__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }

  .advantages__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }

  .package__payment {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 360px;
  }

  .package__payment-item {
    height: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33% - 32px);
            flex: 0 1 calc(33% - 32px);
  }

  .package__payment-item img {
    height: 100%;
  }

  .feedback__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .feedback__img {
    display: none;
  }

  .services-price__item-title._spoller-active::after {
    display: none;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) {
  .popup .form__title {
    padding: 0 25px;
  }

  .intro__list {
    margin-bottom: 30px;
  }

  .about {
    margin-bottom: 5.625rem;
  }

  .about__item:not(:last-child) {
    margin-bottom: 3.75rem;
  }

  .about__item-img {
    height: 328px;
  }

  .cooperation {
    margin-bottom: 5.625rem;
  }

  .advantages {
    margin-bottom: 5.625rem;
  }

  .advantages__item {
    font-size: 1.3125rem;
    line-height: 1.0952380952;
    font-weight: 500;
  }

  .partners {
    margin-bottom: 3.75rem;
  }

  .partners__container {
    padding-right: 0;
  }

  .partners__slider-buttons,
  .service__slider-buttons {
    padding-right: 20px;
  }

  .service {
    margin-bottom: 5.625rem;
  }

  .service__slider-buttons {
    display: none;
  }

  .package {
    margin-bottom: 5.625rem;
  }

  .package__container {
    padding-left: 0;
    padding-right: 0;
  }

  .package__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts__list {
    margin-bottom: 40px;
  }

  .works__item:first-child p {
    margin-bottom: 20px;
  }

  .works__item img {
    margin-bottom: 20px;
  }

  .works__item-step {
    margin-bottom: 10px;
  }

  .specialty-info__header img {
    display: none;
  }
}

@media (max-width: 29.99875em) {
  .popup__content .form__title::after,
  .popup__content .form__title::before {
    left: 75px;
  }
}

@media (min-width: 47.99875em) and (max-width: 61.99875em) {
  .footer__menu {
    position: absolute;
    top: 0;
    right: 56px;
  }

  .footer__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .footer__text p {
    max-width: 470px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }

  .iti__flag {
    background-image: url(../img/flags@2x.png);
  }
}

@media screen {
  .feedback {
    margin-bottom: 0;
  }
}