@font-face {
  font-family: 'Oswald Regular';
  src: url("/fonts/Oswald-Regular.ttf");
}
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*, html, body{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
img{
  width: 100%;
}
p, span, small{
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6, a{
  font-family: 'Oswald Regular', sans-serif;
}
main {
  margin-top: 60px;
}
:focus {
    outline: none;
}
#site {
  opacity: 0;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#preloader > .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin-top: -12.5px;
  margin-left: -10px;
  -webkit-animation: rotation 2s linear infinite;
          animation: rotation 2s linear infinite;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.py-50{
  padding: 50px 0;
}
.loader__text h1 {
  margin: 0;
  padding: 0;
  font-size: 7em;
  color: rgba(255, 255, 255, .1);
  background-image: url("/images/bg__h1.png");
  background-position: left 2300px top -50px;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  animation: fill-up 13s linear;
}

@keyframes fill-up {
  0% {background-position: left 0px top 70px;}
  40% {background-position: left 800px top -50px;}
  80% {background-position: left 1800px top -50px;}
  100% {background-position: left 2300px top -50px;}
}
.text__light_blue{
	color: #72C2E9;
}
.bg__light_blue{
	background-color: #72C2E9;
}
.text__blue{
	color: #26404C;
}
.bg__blue{
	background-color: #26404C;
}
.border__light_blue{
	border: 1px solid #72C2E9;
}
.border__white{
  border: 1px solid #ffffff;
}
.navbar-brand svg{
  width: 130px;
}
.fixed-top {
  background: #ffffff;
  box-shadow: 0 -10px 18px rgb(0 0 0 / 90%);
}
div#lang-switcher {
  display: flex;
  margin-right: 20px;
}
.nav-link{
	padding-left: 30px !important;
	padding-right: 30px !important;
}
.lang-link{
	display: block;
  padding: .5rem;
}
.nav__hover a {
  color: #26404c;
  font-weight: 100;
  text-shadow: none;
  font-family: 'Oswald Regular', sans-serif;
}
.nav__hover a::before {
  color: #26404C;
  content: attr(data-hover);
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hover a:hover::before,
.nav__hover a:focus::before {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.nav__hover a.active,
.nav__hover a.active::before{
  color: #72C2E9;
}

.login .header___btn,
.login .header___btn::before {
  color: #72C2E9;
}
.register .header___btn::before {
  color: #fff;
}
.header_banner {
  height: auto;
  min-height: 650px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}
.header_banner__private{
  background-color: #72C2E9;
  transition: 1s;
}
.header_banner__professional{
  background-color: #fff;
  transition: 1s;
}
.header__text_block{
  max-width: 400px;
  position: absolute;
  top: 20px;
}
.header__text_block h1,
.spot__text_block h2,
.about__text_block h2,
.contact__text_block h2,
.faq__text_block h2{
  font-size: 3.7rem;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
}
.header__text_block h2,
.spot__text_block h3,
.about__text_block h3,
.contact__text_block h3,
.faq__text_block h3{
  font-size: 2.5rem;
  text-transform: uppercase;
}
.header__bg_img {
  height: auto;
  min-height: 650px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.header__bg_img_professional{
  background-image: url('/images/bg_professional.svg');
  transition: .5s;
}
.header__bg_img_private{
  background-image: url('/images/bg_private.svg');
  transition: .5s;
}
.gear {
  width: 100px;
  position: absolute;
  right: 6px;
  bottom: 20px;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}
.line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: dash 2.5s ease-in forwards;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 800;
    fill: rgb(38 63 75 / 1%);
    opacity: 0.5;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #72C2E9;
    opacity: 1;
  }
}
#download_app {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg_download__professional{
  background: url(/images/bg_download__professional.png);
}
.bg_download__private{
  background: url(/images/bg_download__private.png);
}
.download__block {
  border: 1px solid #26404c;
  border-radius: 8px;
  background: #ffffff;
  width: 200px;
  padding: 10px 0;
  margin: 5px;
  transition: .5s;
}
.download__block small,
.download__block p {
  color: #27414d;
  transition: .5s;
}
.download__block p {
  font-size: 20px;
}
.download_app__link:hover{
  text-decoration: none;
}
.download__block:hover {
  background: #26404c;
  transform: scale(1.05);
}
.download__block:hover p,
.download__block:hover small {
  color: #fff;
}
.icon__download{
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  transition: .5s;
}
.icon_ios{
  background-image: url('/images/icons/AppStore.svg');
}
.icon_android{
  background-image: url('/images/icons/GooglePlay.svg');
}
.icon_web{
  background-image: url('/images/icons/WebBrowser.svg');
}
.download__block:hover .icon_ios{
  background-image: url('/images/icons/hover_AppStore.svg');
}
.download__block:hover .icon_android{
  background-image: url('/images/icons/hover_GooglePlay.svg');
}
.download__block:hover .icon_web{
  background-image: url('/images/icons/hover_WebBrowser.svg');
}
/*toggle*/
.toggle {
  width: 250px !important;
  height: 45px !important;
  border-radius: 50px !important;
  border-color: #72C2E9 !important;
}
.toggle.btn.off {
  color: #72C2E9 !important;
}
.btn{
  line-height: 1.3 !important;
}
.toggle-handle {
  position: relative !important;
  height: 41px !important;
  width: 41px !important;
  margin-top: 1px !important;
  margin-right: 45px !important;
  border-radius: 50%;
  border: 1px solid #72C2E9 !important;
  background-color: #fff !important;
}
.toggle.off .toggle-handle{
  background-color: #72C2E9 !important;
  margin-right: -45px !important;
}
.toggle-on{
  background-color: #72C2E9;
  text-align: left;
  font-size: 22px;
  font-family: 'Oswald Regular', sans-serif;
}
.toggle-on.btn-primary:hover {
  color: #fff;
  background-color: #72C2E9;
  border-color: #72C2E9;
}
.toggle-off{
  background-color: #fff;
  text-align: right;
  font-size: 22px;
  font-family: 'Oswald Regular', sans-serif;
}
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle{
  background-color: #72C2E9;
  border-color: #72C2E9;
}
.bgColor_why__professional{
  background-color: #72C2E9;
  transition: 1s;
}
.bgColor_why__private{
  background-color: #26404C;
  transition: 1s;
}
.why__img{
  margin-top: -2%;
  margin-bottom: -10%;
}
.block__why_broker{
  position: absolute;
  top: 34%;
  left: 21%;
  width: 20%;
}
.block__why_broker img{
  max-width: 66%;
}
.why__p {
  font-size: 2.5vw ;
  margin-top: 5px;
}
.why_10_reasons {
  position: absolute;
  top: 17%;
  left: 51%;
  width: 47%;
}
.reasons {
  column-count: 2;
  margin-top: 5%;
}
.reasons p {
  margin-left: 7%;
  padding-bottom: 5%;
}
#about__section{
  margin-top: 12%;
  margin-bottom: 50px;
}
.light__button,
.no_changable {
  padding: 10px;
  background-color: #72c2e9;
  display: block;
  margin-top: 30px;
  width: 150px;
  text-align: center;
  color: #fff;
  transition: .5s;
}
.light__button:hover,
.no_changable:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 5px 5px 0px rgb(0 0 0 / 0.15);
}
.header___btn{
  transition: .5s; 
}
.header___btn:hover {
  text-decoration: none;
  box-shadow: 0 5px 5px 0px rgb(0 0 0 / 0.15);
}
#spot__section{
  margin-top: 100px;
}
.bg_spot__professional{
  background-color: #F3F3F3;
}
.bg_spot__private{
  background-color: #26404C;
}
.spot__text_block {
  margin-top: 30px;
  padding-bottom: 50px;
}
.spot__img {
  margin-top: -7%;
}
.slick-slide img{
  height: 200px;
  object-fit: contain;
  padding: 50px 30px;
  transition: 1.5s;
  cursor: pointer;
}
.slick-slide img:hover{
  transform: scale(0.9);
}
.see_more{
  border-radius: 50px;
}
.light__button_private{
  background-color: #fff;
  color: #26404C;
}
.light__button_private:hover{
  color: #26404C;
}
.bg__faq_private,
.bg__contact_private,
.bg__partners_professional{
  background-color: #72C2E9;
}
.overflow-hidden{
  overflow: hidden;
}
.row.faq__row {
  padding-top: 130px;
}
.row.faq__accordion {
  margin-top: 30px;
  padding-bottom: 100px;
}
.faq__questions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
  font-size: 18px;
}
.accordion .card {
  position: relative;
  border-radius: 0 !important;
  margin-bottom: 10px;
  border: none;
}
.accordion .card-header {
  background-color: #f3f3f3;
  border-bottom: 1px solid rgb(38 64 76 / 0.20);
}
.accordion .card-body {
  background-color: #f3f3f3;
  color: #26404c;
}
.card-header a:hover{
  text-decoration: none;
}
#contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.half_right__container{
  max-width: 450px;
  margin-left: 0;
  margin-right: auto;
}
.contacts_row__body {
  margin: 60px 0;
  position: relative;
}
.overlay {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 400px;
  text-align: center;
  display: none;
}
.overlay img{
  width: 200px;
  margin-top: 50%;
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}
.thankyou_container {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  text-align: center;
  display: none;
  -webkit-animation: opacity_thankyou 2s forwards;
  -moz-animation: opacity_thankyou 2s forwards;
  -ms-animation: opacity_thankyou 2s forwards;
  -o-animation: opacity_thankyou 2s forwards;
  animation: opacity_thankyou 2s forwards;
}
@keyframes opacity_thankyou {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}


.thankyou_container h3 {
  margin: 40px auto 0 auto;
  font-weight: 900;
}
.thankyou_container p {
  font-size: 18px;
  margin: 40px auto;
}
.thankyou__img {
  height: auto;
  text-align: center;
  min-height: 35vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.professional__thankyou_container .thankyou__img{
  background-image: url('/images/bg_contact__professional.svg');
  transition: .5s;
}
.private__thankyou_container .thankyou__img{
  background-image: url('/images/bg_contact__private.svg');
  transition: .5s;
}
.bg__contact_arrow{
  margin-left: 60px;
  height: 80%;
  width: 40px;
  background-repeat: no-repeat;
}
.bg__contact_arrow__professional{
  background-image: url('/images/bg_contact_arrow__professional.svg');
  transition: .5s;
}
.bg__contact_arrow__private{
  background-image: url('/images/bg_contact_arrow__private.svg');
  transition: .5s;
}
#contacts.sending .overlay {
  display: block;
}
#contacts.sending .contacts_row__body {
  opacity: .1;
}
.contacts_row__body___form {
  display: flex;
  position: relative;
}
.contacts_row__body___form > div {
  width: 100%;
}
.contacts_row__body___form label {
  width: 100%;
  position: absolute;
  left: 0;
  top: -10px;
  color: #26404C;
  font-weight: 200;
  font-size: 16px;
  font-weight: 500;    
  -webkit-transition: 100ms ease-in;
  -moz-transition: 100ms ease-in;
  -ms-transition: 100ms ease-in;
  -o-transition: 100ms ease-in;
  transition: 100ms ease-in;
}
.input-gr.focus label {
  top: -25px;
  font-size: 14px;
}
.contacts_row__body___form input,
.contacts_row__body___form textarea {
  margin: 0;
  padding: 0;
  color: #26404C;
  display: block;
  width: 100%;
  outline: 0;
  border: 0;
  background: transparent;
  position: relative;
  border-bottom: 1px solid #26404C;
  -webkit-appearance: none;
}
.input-gr {
  position: relative;
}
.input-gr:not(:last-child) {
  margin-bottom: 35px;
}
.msg label {
  top: 0;
}
/*.input-gr.msg {
  border: 1px solid #26404C;
}*/
.input-gr.invalid .input-item {
  border-color: #e91e63;
}
.input-gr.invalid label {
  color: #e91e63;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #26404C;
  background-color: red;
}
.footer__lang_switcher .active{
  color: #72c2e9 !important;
  text-decoration: underline;
}
.fa-phone-volume {
  transform: rotate(-35deg);
}
.download_footer__block{
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: transparent;
  width: 140px;
  transition: .5s;
}
.download_footer__block small,
.download_footer__block p {
  color: #ffffff;
  transition: .5s;
}
.download_footer__block small{
  font-size: 12px;
}
.download_footer__block p {
  font-size: 14px;
}
.download_app__link:hover{
  text-decoration: none;
}
.download_footer__block:hover {
  background: #26404c;
  transform: scale(1.05);
}
.download_footer__block:hover p,
.download_footer__block:hover small {
  color: #fff;
}
.download_footer__block .icon__download{
  width: 25px;
  height: 25px;
  background-size: 20px;
  background-repeat: no-repeat;
  transition: .5s;
}
.download_footer__block .icon_ios{
  background-image: url('/images/icons/hover_AppStore.svg');
}
.download_footer__block .icon_android{
  background-image: url('/images/icons/hover_GooglePlay.svg');
}
.download_footer__block .icon_web{
  background-image: url('/images/icons/hover_WebBrowser.svg');
}
img.footer__logo {
  max-width: 200px;
}
footer .nav-link{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.navigator h5,
.navigator p{
  padding: .5rem 0;
  font-family: 'Oswald Regular', sans-serif;
}
.footer_left__block {
  border-right: 1px solid #fff;
}
.download_footer_app__link{
  padding-right: 10px;
}
.footer_left__block a:hover{
  text-decoration: none;
}
/*.toggle__btn {
  position: absolute;
  top: 235px;
}*/
#about__page,
#other__page,
#error__page,
#partners__page {
  margin-top: 120px;
  margin-bottom: 50px;
}
.about__text {
  max-width: 555px;
  margin-right: 0;
  margin-left: auto;
}
.partners__first {
  margin-top: 55px;
}
.partner__grey {
  height: 140px;
  background-color: #f3f3f3;
  line-height: 140px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 10px 15px rgb(0 0 0 / 0.16);
}
.partner__white {
  height: 140px;
  background-color: #f3f3f3;
  line-height: 140px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 10px 15px rgb(0 0 0 / 0.16);
}
.partner__block_img {
  max-width: 170px;
  height: 55px;
  object-fit: contain;
  transition: 1.5s;
  margin: 0 auto;
  text-align: center;
}
.partners__second {
  background-color: #72C2E9;
  padding: 50px 0 30px;
  margin-top: 50px;
}
.partners__third {
  background-image: url('/images/partner__bg_arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  padding: 70px 0;
}
.contact__image_block{
  display: flex;
}
.changed_contact__image_block,
.changed_contact__image .contact__image_block{
  display: none;
}
.changed_contact__image .changed_contact__image_block{
  display: flex;
}

#Rectangle_444,
#Rectangle_466{
  display: none;
  animation: arrow_one 2.2s 0s infinite;
}
#Rectangle_445,
#Rectangle_467{
  opacity: 0;
  animation: arrow_two 2.2s .1s infinite;
}
#Rectangle_446,
#Rectangle_468{
  opacity: 0;
  animation: arrow_three 2.2s .2s infinite;
}
#Rectangle_447,
#Rectangle_469{
  opacity: 0;
  animation: arrow_four 2.2s .3s infinite;
}
#Rectangle_448,
#Rectangle_470{
  opacity: 0;
  animation: arrow_five 2.2s .4s infinite;
}
#Rectangle_449,
#Rectangle_471{
  opacity: 0;
  animation: arrow_six 2.2s .5s infinite;
}
#Rectangle_450,
#Rectangle_472{
  opacity: 0;
  animation: arrow_seven 2.2s .6s infinite;
}
#Rectangle_451,
#Rectangle_473{
  opacity: 0;
  animation: arrow_eight 2.2s .7s infinite;
}
#Rectangle_452,
#Rectangle_474{
  opacity: 0;
  animation: arrow_nine 2.2s .8s infinite;
}
#Rectangle_453,
#Rectangle_475{
  opacity: 0;
  animation: arrow_ten 2.2s .9s infinite;
}
#Rectangle_454,
#Rectangle_476{
  opacity: 0;
  animation: arrow_eleven 2.2s 1s infinite;
}
#Rectangle_455,
#Rectangle_477{
  opacity: 0;
  animation: arrow_twelve 2.2s 1.1s infinite;
}
#Rectangle_456,
#Rectangle_478{
  opacity: 0;
  animation: arrow_thirteen 2.2s 1.2s infinite;
}
#Rectangle_457,
#Rectangle_479{
  opacity: 0;
  animation: arrow_fourteen 2.2s 1.3s infinite;
}
#Rectangle_458,
#Rectangle_480{
  opacity: 0;
  animation: arrow_fifteen 2.2s 1.4s infinite;
}
#Rectangle_459,
#Rectangle_481{
  opacity: 0;
  animation: arrow_sixteen 2.2s 1.5s infinite;
}
#Rectangle_460,
#Rectangle_482{
  opacity: 0;
  animation: arrow_eighteen 2.2s 1.6s infinite;
}
#Rectangle_461,
#Rectangle_483{
  opacity: 0;
  animation: arrow_nineteen 2.2s 1.7s infinite;
}
#Rectangle_462,
#Rectangle_484{
  opacity: 0;
  animation: arrow_default 2.2s 1.8s infinite;
}
#Rectangle_463,
#Rectangle_485{
  opacity: 0;
  animation: arrow_default 2.2s 1.9s infinite;
}
#Rectangle_464,
#Rectangle_486{
  opacity: 0;
  animation: arrow_default 2.2s 2s infinite;
}
#Rectangle_465,
#Rectangle_487{
  opacity: 0;
  animation: arrow_default 2.2s 2.1s infinite;
}
#Path_1377,
#Path_1378{
  opacity: 0;
  animation: arrow_default 2.2s 2.2s infinite;
}

@keyframes arrow_default {
  0% { opacity: 0; } 
  100% { opacity: 1; } 
}

@keyframes arrow_one {
  0% { opacity: 0; } 
  100% { opacity: 0.05; } 
}
@keyframes arrow_three {
  0% { opacity: 0; } 
  100% { opacity: 0.15; } 
}

@keyframes arrow_four {
  0% { opacity: 0; } 
  100% { opacity: 0.2; } 
}

@keyframes arrow_five {
  0% { opacity: 0; } 
  100% { opacity: 0.25; } 
}

@keyframes arrow_six {
  0% { opacity: 0; } 
  100% { opacity: 0.3; } 
}

@keyframes arrow_seven {
  0% { opacity: 0; } 
  100% { opacity: 0.35; } 
}

@keyframes arrow_eight {
  0% { opacity: 0; } 
  100% { opacity: 0.4; } 
}

@keyframes arrow_nine {
  0% { opacity: 0; } 
  100% { opacity: 0.45; } 
}

@keyframes arrow_ten {
  0% { opacity: 0; } 
  100% { opacity: 0.5; } 
}

@keyframes arrow_eleven {
  0% { opacity: 0; } 
  100% { opacity: 0.55; } 
}

@keyframes arrow_twelve {
  0% { opacity: 0; } 
  100% { opacity: 0.6; } 
}

@keyframes arrow_thirteen {
  0% { opacity: 0; } 
  100% { opacity: 0.65; } 
}

@keyframes arrow_fourteen {
  0% { opacity: 0; } 
  100% { opacity: 0.7; } 
}

@keyframes arrow_fifteen {
  0% { opacity: 0; } 
  100% { opacity: 0.75; } 
}

@keyframes arrow_sixteen {
  0% { opacity: 0; } 
  100% { opacity: 0.8; } 
}

@keyframes arrow_seventeen {
  0% { opacity: 0; } 
  100% { opacity: 0.85; } 
}

@keyframes arrow_eighteen {
  0% { opacity: 0; } 
  100% { opacity: 0.9; } 
}

@keyframes arrow_nineteen {
  0% { opacity: 0; } 
  100% { opacity: 0.95; } 
}

#Path_987 {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drow_line_first 2.5s ease-in forwards;
}
@keyframes drow_line_first {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
#Path_988 {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drow_line_second 2.3s ease-in forwards;
}
@keyframes drow_line_second {
  0% {
    stroke-dashoffset: -800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

#other__page svg{
  max-width: 100%;
}

#Path_1474 {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: sign 3s ease-in forwards;
}
@keyframes sign {
  0% {
    stroke-dashoffset: 800;
    fill: rgb(38 63 75 / 1%);
  }
  100% {
    stroke-dashoffset: 0;
    fill: #72C2E9;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }
}
@media(max-width: 992px){
  .header_banner,
  .header__bg_img{
    min-height: 550px;
  }
  .toggle__btn {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__text_block{
    max-width: 100%;
    position: relative;
  }
  .header__text_block h2, 
  .spot__text_block h3, 
  .about__text_block h3, 
  .contact__text_block h3, 
  .faq__text_block h3{
    font-size: 1.5rem;
  }
  .header__text_block h1, 
  .spot__text_block h2, 
  .about__text_block h2, 
  .contact__text_block h2, 
  .faq__text_block h2 {
    font-size: 2.5rem;
  }
  .header__text_block h2,
  .header__text_block h1{
    text-align: center;
  }
  .header__text_block h5{
    text-align: center;
  }
  .header__bg_img_professional{
    background-image: url('/images/mobile/bg_professional.svg');
  }
  .header__bg_img_private{
    background-image: url('/images/mobile/bg_private.svg');
  }
  .block__why_broker {
    position: absolute;
    top: 14.5%;
    left: 32%;
    width: 35%;
    align-items: center;
  }
  .why__p {
    font-size: 4.5vw;
  }
  .why_10_reasons {
    position: absolute;
    top: 44.5%;
    left: 10%;
    width: 80%;
  }
  .reasons {
    column-count: 1;
    margin-top: 5%;
  }
  .reasons p {
    margin-left: 5%;
  }
  .why_10_reasons h2 {
    font-size: 1.5rem;
  }
  #contacts {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer_left__block {
    border-right: none;
  }
  #spot__section {
    margin-top: 50px;
  }
  .no-transition {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: .5rem 0;
    background: #ffffff;
    z-index: 99;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15), 0 2px 1px -5px rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  }
  .header .navbar {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-flex: 1;
            flex: 1;
    flex-basis: auto;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .open-mobile-menu,
  .open-mobile-user {
    border: none;
    background: #fff;
  }
  .vertical-logo svg{
    width: 130px;
  }
  main.opacity{
    opacity: .3 !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  button{
    cursor: pointer;
  }
  button:focus{
    outline: none;
    border: none;
  }
  .header .navbar .open-mobile-menu i,
  .header .navbar .open-mobile-user i {
    font-size: 2rem;
    color: #26404C;
  }
  .header .navbar .top-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header .navbar .top-menu-user {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .header .navbar .top-menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 70%;
    height: 100%;
    overflow-y: auto;
    padding: 1rem;
    background: #26404C;
  }
  .header .navbar .top-menu-user {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 70%;
    height: 100%;
    overflow-y: auto;
    padding: 1rem;
    background: #26404C;
  }
  .nav-link {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .header .navbar .top-menu-wrapper.show-offcanvas::before,
  .header .navbar .top-user-menu-wrapper.show-offcanvas::before{
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .header .navbar .top-menu-wrapper.show-offcanvas .panel,
  .header .navbar .top-user-menu-wrapper.show-offcanvas .panel,
  .header .navbar .top-menu-wrapper.show-offcanvas .top-menu,
  .header .navbar .top-user-menu-wrapper.show-offcanvas .top-menu-user {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition-duration: 0.7s;
            transition-duration: 0.7s;
  }
  .header .navbar .top-menu-wrapper.show-offcanvas .top-menu,
  .header .navbar .top-user-menu-wrapper.show-offcanvas .top-menu-user {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .header .navbar .has-dropdown i {
    display: none;
  }
  .header .navbar .sub-menu {
    padding: 0.5rem 1.5rem 0 1.5rem;
  }
  .header .navbar .top-menu li + li{
    margin-top: 1.3rem;
    list-style-type: none;
  }
  .header .navbar .top-menu-user li + li {
    padding: 1.3rem 0;
    list-style-type: none;
  }
  .header .navbar .top-menu li  a,
  .header .navbar .top-menu-user li  a, {
    padding: .5rem 0;
  }
  .mob-block {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin-bottom: 2rem;
  }
  .close-mobile-menu,
  .close-mobile-user{
    border: none;
    background: transparent;
  }
  .mob-block i {
    color: #ffffff;
    font-size: 1.5rem;
  }
  .bt-1 {
    border-top: 1px solid #fff;
  }
  .bb-1 {
    border-bottom: 1px solid #fff;
  }
  li.download__user {
    margin-top: 50%;
  }
  .about__text,
  .half_right__container {
    max-width: 100%;
    margin-right: 15px;
    margin-left: 15px;
  }
  .about__img {
    padding: 50px !important;
  }
  img.footer__logo{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .download_footer_app__link {
    padding-right: 10px;
    margin-bottom: 10px;
  }
  #contacts.sending .overlay{
    left: 0;
    max-width: unset;
  }
  #preloader > .icon{
    left: 40%;
  }
  .lang-link{
    padding-right: 20px;
  }
  .row.faq__accordion {
    padding-bottom: 50px;
  }
}

@media(max-width: 699px){
  .header_banner{
    min-height: 520px;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
    -ms-flex-align: unset;
  }
  .header__bg_img {
    min-height: 280px;
    width: 97%;
    margin: 0 auto;
    background-position: center;
  }
  .toggle__btn{
    text-align: center;
    top: unset;
    top: 415px;
    left: 50%;
    transform: translateX(-50%);
  }
  .gear {
    width: 55px;
    right: 10px;
    bottom: 75px;
  }
  .why_10_reasons h2 {
    font-size: 1.2rem;
    margin-top: -5px;
  }
  #other__page svg{
    height: 300px !important;
  }

}