/* ---------- base ---------- */
@font-face {
  font-family: 'FuturaPT-Book';
  src: url("../../fonts/FuturaPT-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT-Demi';
  src: url("../../fonts/FuturaPT-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  min-height: auto;
}

body {
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  background: #fff;
  color: #444;
}

body.fancybox-menu-modal .fancybox-slide--html {
  padding: 0;
}

body.fancybox-menu-modal .fancybox-bg {
  background: #000;
  opacity: .9;
}

body.fancybox-menu-modal .menu-modal .menu__list {
  display: block;
}

body.fancybox-menu-modal .menu-modal .menu__entry-btns {
  display: block;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

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

a {
  text-decoration: none;
}

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

button, select, input, textarea {
  outline: none;
}

figure {
  margin: 0;
}

img {
  display: block;
}

label {
  display: none;
}

/* ---------- classes ---------- */
/***** container *****/
.container {
  max-width: 100%;
  min-width: 320px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/***** nowrap *****/
.nowrap {
  white-space: nowrap;
}

/***** img-fluid *****/
.img-fluid {
  max-width: 100%;
  height: auto;
}

/***** responsive-iframe *****/
.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  /*16:9*/
  height: 0;
  overflow: hidden;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***** wrapper *****/
.wrapper {
  overflow: hidden;
  position: relative;
}

/***** burger-btn *****/
.burger-btn {
  position: relative;
  display: block;
  cursor: pointer;
  width: 30px;
  height: 23px;
}

.burger-btn:before, .burger-btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #40465a;
  transition: all .3s;
}

.burger-btn:before {
  box-shadow: 0 10px 0 #40465a;
  left: 0%;
  bottom: 100%;
  -webkit-transform: translate(0%, 100%) rotate(0deg);
      -ms-transform: translate(0%, 100%) rotate(0deg);
          transform: translate(0%, 100%) rotate(0deg);
}

.burger-btn:after {
  left: 0%;
  top: 100%;
  -webkit-transform: translate(0%, -100%) rotate(0deg);
      -ms-transform: translate(0%, -100%) rotate(0deg);
          transform: translate(0%, -100%) rotate(0deg);
}

.burger-btn_close {
  z-index: 200;
}

.burger-btn_close:before {
  left: 0%;
  bottom: 50%;
  -webkit-transform: translate(0%, 50%) rotate(-45deg);
      -ms-transform: translate(0%, 50%) rotate(-45deg);
          transform: translate(0%, 50%) rotate(-45deg);
  box-shadow: 0 -10px 0 -5px transparent;
}

.burger-btn_close:after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/***** menu *****/
.menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu__content {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu__list {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1199px) {
  .menu__list {
    display: none;
    opacity: 1;
    text-align: right;
    margin-top: 30px;
  }
}

.menu__list-link {
  display: inline-block;
  padding: 10px 15px 4px;
  font: 16px/1.2 "FuturaPT-Book", sans-serif;
  text-transform: uppercase;
  color: #fff;
  transition: color .3s;
}

@media (max-width: 1199px) {
  .menu__list-link {
    padding: 10px 0 10px 10px;
  }
}

@media (max-width: 575px) {
  .menu__list-link {
    padding: 5px 0 5px 5px;
  }
}

.menu__list-link:hover {
  color: #647097;
  text-decoration: underline;
}

.menu__list-item:first-child .menu__list-link {
  padding-left: 0;
}

@media (max-width: 1199px) {
  .menu__list-item:first-child .menu__list-link {
    padding: 10px 0 10px 10px;
  }
}

.menu__list-item:last-child .menu__list-link {
  padding-right: 0;
}

@media (max-width: 1199px) {
  .menu__list-item:last-child .menu__list-link {
    padding: 10px 0 10px 10px;
  }
}

.menu__burger-btn {
  display: none;
  position: relative;
  margin-left: 12px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 1199px) {
  .menu__burger-btn {
    display: block;
  }
}

@media (max-width: 575px) {
  .menu__entry-btns {
    display: none;
    width: 150px;
    margin-left: auto;
    margin-top: 20px;
  }
}

.menu__entry-btn {
  width: 150px;
}

@media (max-width: 767px) {
  .menu__entry-btn {
    width: auto;
  }
}

@media (max-width: 575px) {
  .menu__entry-btn {
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.menu__entry-btn:first-child {
  margin-right: 6px;
}

@media (max-width: 575px) {
  .menu__entry-btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .menu__acitve .menu__list {
    display: block;
    opacity: 0;
    position: absolute;
    z-index: 200;
    right: 0;
    top: 100%;
    -webkit-animation: showMenu .5s forwards;
            animation: showMenu .5s forwards;
  }
}

@media (max-width: 575px) {
  .menu__acitve .menu__list {
    position: static;
  }
}

@media (max-width: 575px) {
  .menu__acitve .menu__entry-btns {
    display: block;
  }
}

@media (max-width: 575px) {
  .menu__acitve .menu__content {
    display: block;
    position: absolute;
    z-index: 200;
    top: 100%;
    right: 0;
  }
}

/***** menu-modal *****/
.menu-modal {
  height: 100%;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
}

.menu-modal__burger-btn {
  margin: 23px 0 10px auto;
}

/***** callback-modal *****/
.callback-modal {
  max-width: 580px;
  width: 100%;
  padding: 30px 36px 22px;
}

@media (max-width: 767px) {
  .callback-modal {
    max-width: 350px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.callback-modal__title {
  margin-bottom: 26px;
  font: 24px/1.2 "FuturaPT-Book", sans-serif;
  color: #242939;
  text-align: center;
}

@media (max-width: 767px) {
  .callback-modal__title {
    max-width: 12em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.callback-modal__form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 500px) {
  .callback-modal__form {
    display: block;
  }
}

.callback-modal__input-box {
  width: 49%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 767px) {
  .callback-modal__input-box {
    width: 100%;
    margin-bottom: 10px;
  }
}

.callback-modal__textarea-box {
  width: 100%;
  height: 155px;
  margin: 12px 0 20px;
}

@media (max-width: 767px) {
  .callback-modal__textarea-box {
    margin: 0 0 20px;
  }
}

.callback-modal__submit-box {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.callback-modal__submit-box .submit-box__submit {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
}

/***** header *****/
.header {
  position: relative;
  z-index: 100;
  background: #1b202d;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.header__menu {
  width: 100%;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
}

.header__main {
  position: relative;
  padding: 5px 0 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 145px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 767px) {
  .header__logo {
    width: 125px;
  }
}

.header__lang {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 15px;
  margin-bottom: 4px;
}

/***** footer *****/
.footer {
  padding: 6px 0 17px;
  background: #1b202d;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
  .footer {
    padding: 30px 0 20px;
  }
}

.footer__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .footer__container {
    display: block;
  }
}

.footer__item:first-child {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.footer__logo {
  margin-left: -3px;
  margin-bottom: 3px;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 150px;
    margin: 0 auto 3px;
  }
}

@media (max-width: 500px) {
  .footer__logo {
    margin-left: 0;
  }
}

.footer__logo-subtitle {
  font: 16px/1.1 "FuturaPT-Book", sans-serif;
  color: #fff;
}

@media (max-width: 767px) {
  .footer__logo-subtitle {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .footer__logo-subtitle {
    text-align: left;
  }
}

.footer__soc-items {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .footer__soc-items {
    margin-bottom: 20px;
  }
}

.footer__links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -0.1em;
}

@media (max-width: 767px) {
  .footer__links {
    display: block;
    margin-bottom: 25px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .footer__links {
    text-align: left;
  }
}

.footer__links-item {
  margin-left: 25px;
}

@media (max-width: 767px) {
  .footer__links-item {
    margin-left: 0;
  }
}

.footer__links-item:first-child {
  margin-left: 0;
}

.footer__links-link {
  color: #fff;
  font: 18px/1.1 "FuturaPT-Book", sans-serif;
  transition: color .3s;
}

.footer__links-link:hover {
  color: #aaa;
}

/***** soc-items *****/
.soc-items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
  .soc-items {
    display: block;
  }
}

.soc-items__soc-item {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .soc-items__soc-item {
    margin-left: 0;
    margin-bottom: 10px;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 500px) {
  .soc-items__soc-item {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.soc-items__soc-item:first-child {
  margin-left: 0;
}

@media (max-width: 767px) {
  .soc-items__soc-item:last-child {
    margin-bottom: 0;
  }
}

.soc-items_vertical {
  display: block;
}

.soc-items_vertical .soc-items__soc-item {
  margin-left: 0;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .soc-items_vertical .soc-items__soc-item {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.soc-items_vertical .soc-items__soc-item:last-child {
  margin-bottom: 0;
}

/***** soc-item *****/
.soc-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
  color: #fff;
}

.soc-item__icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px;
}

.soc-item_green {
  color: #666;
}

.soc-item_big {
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
}

.soc-item_big .soc-item__icon {
  margin-right: 14px;
}

/***** lang *****/
.lang {
  position: relative;
}

.lang__current {
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.lang__current:after {
  content: "";
  display: block;
  background: url(../img/arrow-down-icon.png) no-repeat 0 0/contain;
  width: 10px;
  height: 7px;
}

.lang__text {
  width: 27px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font: 16px/1 "FuturaPT-Book", sans-serif;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  color: #647097;
}

.lang__list {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  left: 0;
}

.lang__list-item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 10px;
  background: transparent;
  transition: background-color .3s;
}

.lang__list-item:hover {
  background: #eee;
}

.lang__list-item > a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.lang__flag {
  width: 19px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

/***** btn *****/
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 35px;
  padding: 0 20px;
  font: 16px/35px "FuturaPT-Book", sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  color: #000;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color .3s ease-in-out, box-shadow .3s;
}

.btn_white-trsp {
  border: 1px solid #fff;
  color: #fff;
}

.btn_white-trsp:hover {
  background: #fff;
  color: #242939;
}

.btn_green-trsp {
  color: #0abb87;
  border: 1px solid #0abb87;
}

.btn_green-trsp:hover {
  color: #242939;
  background: #0abb87;
}

.btn_green-trsp-big {
  height: 50px;
  line-height: 50px;
  color: #0abb87;
  border: 1px solid #0abb87;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
}

.btn_green-trsp-big:hover {
  color: #fff;
  background: #0abb87;
}

.btn_green {
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
}

.btn_green:hover {
  background: rgba(66, 195, 255, 0.3);
  border-color: #42c3ff;
}

.btn_green-2 {
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
}

.btn_green-2:hover {
  background: rgba(10,187,135, 0.3);
  color: #96dac6;
}

.btn_green-3 {
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
}

.btn_green-3:hover {
  background: transparent;
  color: #0abb87;
}

.btn_green-4 {
  height: 50px;
  line-height: 50px;
  color: #fff;
  border: 1px solid #0abb87;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
}

.btn_green-4:hover {
  color: #0abb87;
  background: transparent;
}

.btn_green-5 {
  height: 50px;
  line-height: 50px;
  padding: 0 82px;
  color: #242939;
  border: 1px solid #0abb87;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
}

.btn_green-5:hover {
  color: #0abb87;
  background: rgba(255, 198, 0, 0.3);
}

.btn_green {
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
}

.btn_green:hover {
  background: rgba(66, 195, 255, 0.3);
  border-color: #42c3ff;
}

.btn_block {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.h1 {
  font: 60px/1.1 "FuturaPT-Demi", sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.error_message {
  width: 100%;
  margin : 0 0 10px;
  text-align: center;
  color: #000;
}

.form-section__container .error_message {
  color: #fff;
}

@media (max-width: 1199px) {
  .h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .h1 {
    font-size: 32px;
  }
}

.h2 {
  font: 48px/1.2 "FuturaPT-Demi", sans-serif;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1199px) {
  .h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .h2 {
    font-size: 30px;
  }
}

/***** ask-question *****/
.ask-question {
  max-width: 300px;
  width: 100%;
  text-align: center;
}

.ask-question__title {
  margin-bottom: 5px;
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #fff;
}

.ask-question__btn {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/***** num *****/
.num {
  padding: 20px 10px 16px;
  background: #263151;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

@media (max-width: 575px) {
  .num {
    padding: 30px 10px 40px;
  }
}

.num__title {
  white-space: nowrap;
  margin-bottom: 4px;
  font: 72px/1 "FuturaPT-Demi", sans-serif;
  color: #00e7a3;
}

@media (max-width: 1199px) {
  .num__title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .num__title {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .num__title {
    font-size: 60px;
  }
}

.num__subtitle {
  max-width: 11em;
  width: 100%;
  margin: 0 auto;
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #cfd5e5;
}

@media (max-width: 1199px) {
  .num__subtitle {
    font-size: 18px;
  }
}

.num__text-min {
  font-size: 0.333em;
  text-transform: uppercase;
}

/***** nums *****/
.nums {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 575px) {
  .nums {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }
}

.nums__num {
  width: 200px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .nums__num {
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .nums__num {
    margin-bottom: 15px;
  }
}

.nums__num:nth-child(1) {
  width: 19.299%;
}

@media (max-width: 1199px) {
  .nums__num:nth-child(1) {
    width: 16.299%;
  }
}

@media (max-width: 991px) {
  .nums__num:nth-child(1) {
    width: 29.299%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(1) {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(1) {
    width: 100%;
  }
}

.nums__num:nth-child(2) {
  width: 18.544%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(2) {
    width: 34.5%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(2) {
    width: 58%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(2) {
    width: 100%;
  }
}

.nums__num:nth-child(3) {
  width: 20.93%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(3) {
    width: 33.93%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(3) {
    width: 37%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(3) {
    width: 100%;
  }
}

.nums__num:nth-child(4) {
  width: 20.176%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(4) {
    width: 38.176%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(4) {
    width: 61%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(4) {
    width: 100%;
  }
}

.nums__num:nth-child(5) {
  width: 17.544%;
}

@media (max-width: 1199px) {
  .nums__num:nth-child(5) {
    width: 20.544%;
  }
}

@media (max-width: 991px) {
  .nums__num:nth-child(5) {
    width: 33.944%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(5) {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(5) {
    width: 100%;
  }
}

.nums__num:nth-child(6) {
  width: 18.79%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(6) {
    width: 25.79%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(6) {
    width: 48%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(6) {
    width: 100%;
  }
}

.nums__num:nth-child(7) {
  width: 23.176%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(7) {
    width: 25.176%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(7) {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(7) {
    width: 100%;
  }
}

.nums__num:nth-child(8) {
  width: 30.843%;
}

@media (max-width: 991px) {
  .nums__num:nth-child(8) {
    width: 40.743%;
  }
}

@media (max-width: 767px) {
  .nums__num:nth-child(8) {
    width: 58%;
  }
}

@media (max-width: 575px) {
  .nums__num:nth-child(8) {
    width: 100%;
  }
}

.nums__btn-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24.562%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .nums__btn-box {
    width: 31.562%;
  }
}

@media (max-width: 767px) {
  .nums__btn-box {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .nums__btn-box {
    height: 160px;
  }
}

.nums__btn {
  width: 100%;
  height: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/***** box-separator *****/
.box-separator {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 575px) {
  .box-separator {
    display: none;
  }
}

.box-separator__dot {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 20px 0 0 0 #fff,  -20px 0 0 0 #fff;
}

.box-separator_gray .box-separator__dot {
  background: #647097;
  box-shadow: 20px 0 0 0 #647097,  -20px 0 0 0 #647097;
}

.box-separator_light-gray .box-separator__dot {
  background: #ddd;
  box-shadow: 20px 0 0 0 #ddd,  -20px 0 0 0 #ddd;
}

/***** tech-item *****/
.tech-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .tech-item {
    display: block;
  }
}

.tech-item__text {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 42px;
  text-align: right;
}

@media (max-width: 991px) {
  .tech-item__text {
    margin-right: 25px;
  }
}

@media (max-width: 767px) {
  .tech-item__text {
    margin-top: 20px;
    padding: 0 5%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .tech-item__text {
    padding: 0;
    text-align: left;
  }
}

.tech-item__pic {
  -webkit-flex: 0 1 540px;
      -ms-flex: 0 1 540px;
          flex: 0 1 540px;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 1199px) {
  .tech-item__pic {
    -webkit-flex: 0 1 440px;
        -ms-flex: 0 1 440px;
            flex: 0 1 440px;
  }
}

@media (max-width: 991px) {
  .tech-item__pic {
    -webkit-flex: 0 1 325px;
        -ms-flex: 0 1 325px;
            flex: 0 1 325px;
  }
}

.tech-item__title {
  width: 340px;
  margin-left: auto;
  margin-top: -6px;
  margin-bottom: 32px;
  font: 30px/1 "FuturaPT-Demi", sans-serif;
  color: #067957;
}

@media (max-width: 991px) {
  .tech-item__title {
    font-size: 26px;
    margin-bottom: 22px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .tech-item__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.tech-item__subtitle {
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
  color: #666;
}

.tech-item_reverse .tech-item__text {
  text-align: left;
  margin-left: 40px;
  margin-right: 0;
}

@media (max-width: 991px) {
  .tech-item_reverse .tech-item__text {
    margin-left: 25px;
  }
}

@media (max-width: 767px) {
  .tech-item_reverse .tech-item__text {
    margin-top: 20px;
    padding: 0 5%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .tech-item_reverse .tech-item__text {
    padding: 0;
    text-align: left;
  }
}

.tech-item_reverse .tech-item__pic {
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.tech-item_reverse .tech-item__title {
  margin-left: 0;
}

/***** pic-shadow *****/
.pic-shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  transition: box-shadow .5s, -webkit-transform .5s;
  transition: box-shadow .5s, transform .5s;
  transition: box-shadow .5s, transform .5s, -webkit-transform .5s;
}

.pic-shadow:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.22);
  -webkit-transform: scale(1.002);
      -ms-transform: scale(1.002);
          transform: scale(1.002);
}

/***** tech-items *****/
.tech-items__tech-item {
  margin-bottom: 53px;
}

.tech-items__tech-item:last-child {
  margin-bottom: 0;
}

/***** header-box *****/
.header-box {
  text-align: center;
}

.header-box__title {
  margin-bottom: -6px;
  color: #4faaf0;
  font: 48px/1.2 "FuturaPT-Demi", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .header-box__title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .header-box__title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .header-box__title {
    font-size: 30px;
    margin-bottom: -2px;
  }
}

.header-box__subtitle {
  max-width: 45em;
  width: 100%;
  margin: 0 auto;
  font: 24px/1.2 "FuturaPT-Book", sans-serif;
  color: #666;
}

@media (max-width: 1199px) {
  .header-box__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .header-box__subtitle {
    font-size: 20px;
  }
}

/***** header-box *****/
.form-section {
  padding-bottom: 70px;
  background: #242939 url(../img/top-section-bg.jpg) no-repeat 50% 55px/cover;
}

@media (max-width: 575px) {
  .form-section {
    padding: 45px 0;
    background: #242939 url(../img/top-section-bg_mob.jpg) no-repeat 50% 50%/600px;
  }
}

.form-section__box-separator {
  padding: 40px 0 50px;
}

.form-section .header-box {
  margin-bottom: 20px;
}

.form-section .header-box__title {
  color: #fff;
}

@media (max-width: 575px) {
  .form-section .header-box__title {
    max-width: 10em;
    width: 100%;
    margin: 0 auto;
  }
}

.form-section .header-box__subtitle {
  color: #647097;
}

.form-section__subtitle {
  max-width: 860px;
  width: 100%;
  margin: 0 auto 56px;
  font: 18px/1.1 "FuturaPT-Book", sans-serif;
  color: #fff;
  text-align: center;
}

@media (max-width: 991px) {
  .form-section__subtitle {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .form-section__subtitle {
    font-size: 17px;
  }
}

/***** input-box *****/
.input-box__input {
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font: 16px/1 "FuturaPT-Book", sans-serif;
  color: #666;
  background: #fff;
  border: none;
}

.input-box__input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666;
}

.input-box__input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #666;
}

.input-box__input:-ms-input-placeholder {
  /* IE 10+ */
  color: #666;
}

.input-box__input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #666;
}

.input-box__input:focus {
  border-width: 2px;
}

.input-box__input:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666;
}

.input-box__input:focus::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #666;
}

.input-box__input:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #666;
}

.input-box__input:focus:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #666;
}

.input-box__input:-webkit-autofill, .input-box__input:-webkit-autofill:hover, .input-box__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

.input-box_border {
  border: 1px solid #d5d5d5;
}

/***** submit-box *****/
.submit-box__submit {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 35px;
  padding: 0 20px;
  font: 16px/35px "FuturaPT-Book", sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  color: #000;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color .3s ease-in-out, box-shadow .3s;
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
  color: #242939;
}

.submit-box__submit:focus {
  outline: none;
}

.submit-box__submit:hover {
  background: transparent;
  color: #0abb87;
}

/***** textarea-box *****/
.textarea-box__textarea {
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font: 16px/1 "FuturaPT-Book", sans-serif;
  color: #666;
  background: #fff;
  border: none;
  width: 100%;
  height: 100%;
  resize: none;
  padding-top: 1em;
}

.textarea-box__textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666;
}

.textarea-box__textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #666;
}

.textarea-box__textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #666;
}

.textarea-box__textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #666;
}

.textarea-box__textarea:focus {
  border-width: 2px;
}

.textarea-box__textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666;
}

.textarea-box__textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: #666;
}

.textarea-box__textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #666;
}

.textarea-box__textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: #666;
}

.textarea-box_border {
  border: 1px solid #d5d5d5;
}

/***** radio-box *****/
.radio-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.radio-box__title {
  margin-left: 10px;
  font: 18px/1 "FuturaPT-Book", sans-serif;
  color: #647097;
  transition: color .3s;
}

.radio-box__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-box__checkmark {
  position: relative;
  display: block;
  height: 16px;
  width: 16px;
  background-color: #eee;
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

.radio-box__input:checked ~ .radio-box__checkmark {
  background-color: #fff;
}

.radio-box__input:checked ~ .radio-box__checkmark {
  background-color: #fff;
}

.radio-box__checkmark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  opacity: 0;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s;
}

.radio-box__input:checked ~ .radio-box__checkmark:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.radio-box__input:checked ~ .radio-box__title {
  color: #0abb87;
}

.radio-box__checkmark:after {
  border-radius: 50%;
  background: #0abb87;
}

/***** reg-form *****/
.reg-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.reg-form__input-box {
  -webkit-flex: 0 0 250px;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  margin-left: 10px;
}

@media (max-width: 991px) {
  .reg-form__input-box {
    -webkit-flex: 0 0 220px;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
}

@media (max-width: 767px) {
  .reg-form__input-box {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.reg-form__input-box:first-child {
  margin-left: 0;
}

.reg-form__submit-box {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .reg-form__submit-box {
    margin-top: 35px;
  }
}

.reg-form__submit-box .submit-box__submit {
  height: 50px;
  line-height: 50px;
  padding: 0 82px;
  color: #242939;
  border: 1px solid #0abb87;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
}

.reg-form__submit-box .submit-box__submit:hover {
  color: #0abb87;
}

@media (max-width: 767px) {
  .reg-form__submit-box .submit-box__submit {
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.reg-form__radio-box {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .reg-form__radio-box {
    margin-left: 35px;
  }
}

@media (max-width: 767px) {
  .reg-form__radio-box {
    margin-left: 25px;
  }
}

.reg-form__radio-box:first-child {
  margin-left: 0;
}

.reg-form__top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 7px;
}

.reg-form__bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .reg-form__bottom {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

/***** access-box *****/
.access-box__top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 7px;
}

.access-box__radio-box {
  margin-left: 26px;
}

.access-box__radio-box:first-child {
  margin-left: 0;
}

.access-box__logo {
  max-width: 146px;
  width: 100%;
  margin: 0 auto;
  padding: 41px 0;
}

.access-box__title {
  margin-bottom: 20px;
  font: 24px/1.2 "FuturaPT-Book", sans-serif;
  color: #242939;
  text-align: center;
}

.access-box__main {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.access-box__form-box {
  padding: 18px 35px 25px;
  background: #fff;
}

@media (max-width: 575px) {
  .access-box__form-box {
    padding: 25px 20px;
  }
}

.access-box__bottom {
  text-align: center;
  margin-top: 10px;
}

.access-box__input-box {
  margin-bottom: 12px;
}

.access-box__input-box {
  margin-bottom: 20px;
}

.access-box .submit-box {
  margin-bottom: 20px;
}

.access-box .submit-box__submit {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  border: 1px solid #0abb87;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
}

.access-box .submit-box__submit:hover {
  color: #0abb87;
  background: transparent;
}

.access-box__create-account-btn {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
}

.access-box__password-recovery-btn {
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
  color: #9ca4bd;
  text-decoration: underline;
}

.access-box_reg .access-box__title {
  margin-bottom: 23px;
}

.access-box_reg .input-box_1 {
  margin-bottom: 12px;
}

.access-box_reg .input-box_2 {
  margin-bottom: 13px;
}

.access-box_reg .input-box_3 {
  margin-bottom: 20px;
}

.access-box__select{
  margin-bottom: 15px;
  border: 1px solid #d5d5d5;
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font: 16px/1 "FuturaPT-Book", sans-serif;
  color: #666;
}

.alert-text{
  margin-bottom: 20px;
  color: tomato;
  font-size: 18px;
  text-align: center;
}

/*reCaptcha*/
.rc-anchor-compact{
  background: red;
  height: 10px;
}

.g-recaptcha > div{
  margin: auto;
}





/***** country-item *****/
.country-item {
  display: inline-block;
  text-align: center;
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
}

@media (max-width: 575px) {
  .country-item {
    font-size: 16px;
  }
}

.country-item__flag {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
}

.country-item__title {
  text-transform: uppercase;
  color: #333e4d;
}

/***** country-items *****/
.country-items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -50px -83px;
}

@media (max-width: 991px) {
  .country-items {
    margin: 0 -50px -48px;
  }
}

@media (max-width: 575px) {
  .country-items {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 -50px;
  }
}

.country-items__country-item {
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 25px 83px;
}

@media (max-width: 991px) {
  .country-items__country-item {
    margin: 0 18px 48px;
  }
}

@media (max-width: 767px) {
  .country-items__country-item {
    margin: 0 28px 48px;
  }
}

@media (max-width: 575px) {
  .country-items__country-item {
    margin: 0 20px 50px;
    width: 6em;
  }
}

/***** login-box *****/
.login-box {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  .login-box {
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .login-box {
    padding-bottom: 50px;
  }
}

/***** geo-box-line *****/
.geo-box-line {
  overflow: hidden;
  background: #f1f1f1;
}

.geo-box-line__container {
  position: relative;
}

.geo-box-line__container:before {
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  background: url(../img/map-bg.jpg) no-repeat 0 0/contain;
  width: 14.65em;
  height: 7.8em;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50.3%);
      -ms-transform: translateX(-50.3%);
          transform: translateX(-50.3%);
}

.geo-box-line__main {
  position: relative;
  padding: 120px 0 180px;
}

@media (max-width: 991px) {
  .geo-box-line__main {
    padding: 120px 0 80px;
  }
}

@media (max-width: 575px) {
  .geo-box-line__main {
    padding: 90px 0 50px;
  }
}

.geo-box-line__text {
  max-width: 510px;
  width: 100%;
  margin-left: auto;
  margin-bottom: -5px;
}

@media (max-width: 1199px) {
  .geo-box-line__text {
    max-width: 480px;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .geo-box-line__text {
    max-width: 100%;
    padding-top: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}

.geo-box-line__pic {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 76px;
  left: -255px;
}

@media (max-width: 1199px) {
  .geo-box-line__pic {
    top: 90px;
    left: -390px;
    width: 900px;
  }
}

@media (max-width: 991px) {
  .geo-box-line__pic {
    position: relative;
    left: -15%;
    top: auto;
    width: 130%;
  }
}

@media (max-width: 575px) {
  .geo-box-line__pic {
    left: -40%;
    top: auto;
    width: 160%;
  }
}

.geo-box-line__title {
  margin-bottom: 25px;
  color: #4faaf0;
}

@media (max-width: 1199px) {
  .geo-box-line__title {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .geo-box-line__title {
    margin-bottom: 12px;
  }
}

.geo-box-line__subtitle {
  margin-bottom: 70px;
  padding-right: 50px;
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #444;
}

@media (max-width: 1199px) {
  .geo-box-line__subtitle {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .geo-box-line__subtitle {
    padding-left: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .geo-box-line__subtitle {
    padding: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .geo-box-line__bottom {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

.geo-box-line__btn {
  padding: 0 82px;
}

@media (max-width: 575px) {
  .geo-box-line__btn {
    display: block;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/***** contacts-section *****/
.contacts-section {
  padding: 83px 0 70px;
}

@media (max-width: 1199px) {
  .contacts-section {
    padding: 70px 0 60px;
  }
}

@media (max-width: 767px) {
  .contacts-section {
    padding: 60px 0 50px;
  }
}

@media (max-width: 575px) {
  .contacts-section {
    padding: 35px 0 86px;
  }
}

.contacts-section__box-separator {
  padding-bottom: 37px;
}

@media (max-width: 575px) {
  .contacts-section__box-separator {
    display: block;
  }
}

.contacts-section__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 56px;
  padding: 0 70px 0 33px;
}

@media (max-width: 1199px) {
  .contacts-section__main {
    padding: 0 40px 0 13px;
  }
}

@media (max-width: 991px) {
  .contacts-section__main {
    display: block;
    padding: 0;
  }
}

@media (max-width: 575px) {
  .contacts-section__main {
    margin-bottom: 0;
  }
}

.contacts-section__header-box {
  padding: 0 10px 0 37px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .contacts-section__header-box {
    padding: 0;
  }
}

.contacts-section__subtitle {
  text-align: center;
  max-width: 44em;
  width: 100%;
  margin: 0 auto 67px;
  font: 18px/1.1 "FuturaPT-Book", sans-serif;
  color: #444;
}

@media (max-width: 575px) {
  .contacts-section__subtitle {
    margin-bottom: 35px;
  }
}

.contacts-section__contacts-form {
  width: 510px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 1199px) {
  .contacts-section__contacts-form {
    width: 450px;
  }
}

@media (max-width: 991px) {
  .contacts-section__contacts-form {
    width: 100%;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .contacts-section__contacts-form {
    margin-bottom: 50px;
  }
}

.contacts-section__soc-items {
  margin-left: 32px;
}

@media (max-width: 575px) {
  .contacts-section__soc-items {
    margin-left: 0;
  }
}

.contacts-section__info {
  width: 477px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 43px 70px 40px 51px;
  background: #eee;
}

@media (max-width: 1199px) {
  .contacts-section__info {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .contacts-section__info {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contacts-section__info {
    padding: 30px 20px 40px;
  }
}

.contacts-section__info-title {
  margin-bottom: 35px;
  font: 24px/1.1 "FuturaPT-Book", sans-serif;
  color: #444;
}

.contacts-section__submit-box {
  width: 250px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 575px) {
  .contacts-section__submit-box {
    width: 220px;
  }
}

@media (max-width: 500px) {
  .contacts-section__submit-box {
    margin-top: 20px;
    max-width: 300px;
    width: 100%;
  }
}

.contacts-section__submit-box .submit-box__submit {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 35px;
  padding: 0 20px;
  font: 16px/35px "FuturaPT-Book", sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  color: #000;
  text-transform: uppercase;
  transition: color 0.15s ease-in-out, background-color .3s ease-in-out, box-shadow .3s;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background: #0abb87;
  border: 1px solid #0abb87;
  height: 50px;
  font: 24px/50px "FuturaPT-Demi", sans-serif;
  color: #fff;
}

.contacts-section__submit-box .submit-box__submit:hover {
  background: transparent;
  color: #0abb87;
}

.contacts-section__captcha {
  width: 183px;
  height: 48px;
}

/***** contacts-form *****/
.contacts-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 500px) {
  .contacts-form {
    display: block;
  }
}

.contacts-form__input-box {
  width: 49%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 500px) {
  .contacts-form__input-box {
    width: 100%;
    margin-bottom: 10px;
  }
}

.contacts-form__textarea-box {
  width: 100%;
  height: 203px;
  margin: 12px 0 20px;
}

@media (max-width: 500px) {
  .contacts-form__textarea-box {
    margin: 0 0 20px;
  }
}

.contacts-form__btn {
  padding: 0 60px;
}

/***** top-box-line *****/
.top-box-line {
  position: relative;
  z-index: 10;
  padding: 65px 0 77px;
  background: #242939 url(../img/top-section-bg.jpg) no-repeat 50% 0/cover;
}

@media (max-width: 575px) {
  .top-box-line {
    padding-top: 40px;
  }
}

.top-box-line__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 14px 0 26px;
}

@media (max-width: 991px) {
  .top-box-line__main {
    display: block;
    margin: 0;
  }
}

.top-box-line__text {
  -webkit-flex: 0 1 460px;
      -ms-flex: 0 1 460px;
          flex: 0 1 460px;
  margin-bottom: 20px;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .top-box-line__text {
    text-align: center;
    margin-right: 0;
  }
}

.top-box-line__pic {
  -webkit-flex: 0 1 539px;
      -ms-flex: 0 1 539px;
          flex: 0 1 539px;
}

@media (max-width: 991px) {
  .top-box-line__pic {
    max-width: 540px;
    width: 100%;
    margin: 0 auto -150px;
  }
}

@media (max-width: 575px) {
  .top-box-line__pic {
    margin: 0 auto -130px;
  }
}

.top-box-line__title {
  font: 48px/1.2 "FuturaPT-Demi", sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1199px) {
  .top-box-line__title {
    font-size: 37px;
  }
}

@media (max-width: 767px) {
  .top-box-line__title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .top-box-line__title {
    font-size: 34px;
  }
}

.top-box-line__subtitle {
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #7b86a9;
}

/***** top-box-line-2 *****/
.top-box-line-2 {
  position: relative;
  z-index: 5;
  background: #242939 url(../img/top-section-bg.jpg) no-repeat 50% 0/cover;
}

.top-box-line-2__main {
  position: relative;
  padding: 97px 0 72px;
}

@media (max-width: 991px) {
  .top-box-line-2__main {
    padding: 65px 0 72px;
  }
}

@media (max-width: 575px) {
  .top-box-line-2__main {
    padding-top: 40px;
  }
}

.top-box-line-2__text {
  max-width: 460px;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .top-box-line-2__text {
    max-width: 480px;
    margin-left: 26px;
  }
}

@media (max-width: 991px) {
  .top-box-line-2__text {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}

.top-box-line-2__title {
  font: 48px/1.2 "FuturaPT-Demi", sans-serif;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 1199px) {
  .top-box-line-2__title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .top-box-line-2__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .top-box-line-2__title {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .top-box-line-2__title {
    font-size: 34px;
  }
}

.top-box-line-2__subtitle {
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #7b86a9;
}

.top-box-line-2__pic {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  bottom: -51px;
  right: -236px;
}

@media (max-width: 1199px) {
  .top-box-line-2__pic {
    right: -450px;
    width: 980px;
  }
}

@media (max-width: 991px) {
  .top-box-line-2__pic {
    position: relative;
    width: 150%;
    margin-bottom: -130px;
    bottom: auto;
    left: -21%;
  }
}

@media (max-width: 767px) {
  .top-box-line-2__pic {
    left: -24%;
  }
}

@media (max-width: 575px) {
  .top-box-line-2__pic {
    left: -17%;
    width: 136%;
  }
}

@media (max-width: 500px) {
  .top-box-line-2__pic {
    width: 190%;
  }
}

/***** about-us-2 *****/
.about-us-2 {
  overflow: hidden;
  background: url(../img/about-us-bg.jpg) no-repeat 50% 60%/contain;
}

.about-us-2__container {
  position: relative;
}

.about-us-2__main {
  position: relative;
  padding: 80px 0 70px 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1199px) {
  .about-us-2__main {
    padding: 90px 0 70px 10px;
  }
}

@media (max-width: 991px) {
  .about-us-2__main {
    padding-left: 0;
    display: block;
  }
}

@media (max-width: 575px) {
  .about-us-2__main {
    padding: 70px 0 50px;
  }
}

.about-us-2__text {
  -webkit-flex: 0 0 525px;
      -ms-flex: 0 0 525px;
          flex: 0 0 525px;
  padding-top: 6px;
  margin-left: 30px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .about-us-2__text {
    -webkit-flex: 0 0 440px;
        -ms-flex: 0 0 440px;
            flex: 0 0 440px;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-us-2__text {
    margin: 0 0 40px 0;
    text-align: center;
  }
}

.about-us-2__pic {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

@media (max-width: 1199px) {
  .about-us-2__pic {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-us-2__pic {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }
}

.about-us-2__title {
  margin-bottom: 32px;
  color: #4faaf0;
}

@media (max-width: 991px) {
  .about-us-2__title {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .about-us-2__title {
    margin-bottom: 12px;
  }
}

.about-us-2__subtitle {
  margin-bottom: 54px;
  padding-right: 40px;
  padding-left: 4px;
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #444;
}

@media (max-width: 991px) {
  .about-us-2__subtitle {
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .about-us-2__subtitle {
    padding: 0;
    margin-bottom: 40px;
  }
}

.about-us-2__bottom {
  max-width: 320px;
  width: 100%;
}

@media (max-width: 1199px) {
  .about-us-2__bottom {
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .about-us-2__bottom {
    margin: 0 auto;
  }
}

.about-us-2__btn {
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/***** why-we *****/
.why-we {
  padding: 98px 0 145px;
  background: #232838 url(../img/dots-lines-bg.jpg) no-repeat 50% 150%/1400px;
  box-shadow: inset 0 10px 50px rgba(24, 26, 59, 0.3), inset 0 -10px 20px rgba(24, 26, 59, 0.3);
}

@media (max-width: 1199px) {
  .why-we {
    padding: 70px 0 115px;
  }
}

@media (max-width: 991px) {
  .why-we {
    padding: 90px 0 120px;
  }
}

@media (max-width: 767px) {
  .why-we {
    background-size: 800px;
    background-position: 50% 100%;
  }
}

@media (max-width: 575px) {
  .why-we {
    padding: 50px 0 75px;
  }
}

.why-we__title {
  text-align: right;
  margin-bottom: 37px;
  padding-right: 27px;
}

@media (max-width: 1199px) {
  .why-we__title {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .why-we__title {
    margin-bottom: 25px;
  }
}

/***** admin-panel *****/
.admin-panel {
  position: relative;
  padding-top: 82px;
  padding-bottom: 78px;
}

@media (max-width: 575px) {
  .admin-panel {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.admin-panel__header-box {
  margin-bottom: 55px;
}

@media (max-width: 575px) {
  .admin-panel__header-box {
    margin-bottom: 30px;
  }
}

.admin-panel__main {
  margin: 0 16px;
}

@media (max-width: 991px) {
  .admin-panel__main {
    margin: 0;
  }
}

/***** admin-panel-2 *****/
.admin-panel-2 {
  padding: 77px 0 106px;
}

@media (max-width: 575px) {
  .admin-panel-2 {
    padding: 45px 0 55px;
  }
}

.admin-panel-2__header-box {
  margin-bottom: 70px;
}

@media (max-width: 575px) {
  .admin-panel-2__header-box {
    margin-bottom: 30px;
  }
}

.admin-panel-2__header-box .header-box__subtitle {
  max-width: 846px;
  width: 100%;
  margin: 0 auto;
}

.admin-panel-2__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 18px -32px 14px;
}

@media (max-width: 991px) {
  .admin-panel-2__main {
    margin: 0 0 -32px 0;
  }
}

@media (max-width: 575px) {
  .admin-panel-2__main {
    display: block;
    margin-bottom: 0;
  }
}

.admin-panel-2__pic {
  -webkit-flex: 0 1 48.7%;
      -ms-flex: 0 1 48.7%;
          flex: 0 1 48.7%;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .admin-panel-2__pic {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .admin-panel-2__pic {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .admin-panel-2__pic:last-child {
    margin-bottom: 0;
  }
}

/***** reason-items *****/
.reason-items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -5px;
}

@media (max-width: 1199px) {
  .reason-items {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 575px) {
  .reason-items {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

.reason-items__reason-item {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 5px;
}

@media (max-width: 1199px) {
  .reason-items__reason-item {
    -webkit-flex: 0 1 250px;
        -ms-flex: 0 1 250px;
            flex: 0 1 250px;
    margin: 0 20px 30px;
  }
}

@media (max-width: 991px) {
  .reason-items__reason-item {
    -webkit-flex: 0 1 210px;
        -ms-flex: 0 1 210px;
            flex: 0 1 210px;
    margin: 0 10px 30px;
  }
}

@media (max-width: 767px) {
  .reason-items__reason-item {
    -webkit-flex: 0 1 240px;
        -ms-flex: 0 1 240px;
            flex: 0 1 240px;
  }
}

@media (max-width: 575px) {
  .reason-items__reason-item {
    margin: 0 10px 10px;
  }
}

@media (max-width: 575px) {
  .reason-items__reason-item:last-child {
    margin-bottom: 0;
  }
}

/***** reason-item *****/
.reason-item {
  padding: 17px 12px 25px;
  border: 1px solid transparent;
  background: rgba(38, 49, 81, 0.8);
  opacity: .65;
  text-align: center;
  transition: opacity .3s, border-color .3s, color .3s;
}

@media (max-width: 575px) {
  .reason-item {
    opacity: 1;
    border-color: #0acd94;
  }
}

.reason-item__title {
  width: 100%;
  margin: 0 auto;
  font: 24px/1 "FuturaPT-Book", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  transition: color .3s;
}

@media (max-width: 575px) {
  .reason-item__title {
    color: #fff;
  }
}

.reason-item__pic {
  height: 70px;
  width: 80px;
  margin: 28px auto 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: opacity .3s;
}

@media (max-width: 575px) {
  .reason-item__pic {
    opacity: 0.8;
  }
}

.reason-item__subtitle {
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
  color: #8b909c;
  transition: color .3s;
}

.reason-item:hover {
  opacity: 1;
  border-color: #0acd94;
}

.reason-item:hover .reason-item__title {
  color: #fff;
}

.reason-item:hover .reason-item__subtitle {
  color: #dbdde4;
}

@media (max-width: 575px) {
  .reason-item:hover .reason-item__pic {
    opacity: 1;
  }
}

/***** advantage-card *****/
.advantage-card {
  position: relative;
  max-width: 200px;
  width: 100%;
  text-align: center;
  color: #616f90;
  transition: color .3s;
}

@media (max-width: 575px) {
  .advantage-card {
    color: #fff;
  }
}

.advantage-card:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border: 1px solid #2e3a61;
}

.advantage-card__main {
  padding: 27px 15px 22px;
  position: relative;
  z-index: 10;
  background: #2d3a65;
  background: linear-gradient(to bottom, #2d3a65 0%, #1c2436 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d3a65', endColorstr='#1c2436',GradientType=0 );
}

.advantage-card__pic-box {
  max-width: 80px;
  width: 100%;
  margin: 0 auto 16px;
  opacity: .5;
  transition: opacity .3s;
}

@media (max-width: 575px) {
  .advantage-card__pic-box {
    opacity: 1;
  }
}

.advantage-card__pic-box:after {
  content: "";
  display: block;
  width: 31px;
  height: 20px;
  background: url(../img/arrow-down-icon-2.png) no-repeat 0 0/contain;
  margin: 0 auto;
}

.advantage-card__pic-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 74px;
  margin-bottom: 20px;
}

.advantage-card__title {
  font: 20px/1.2 "FuturaPT-Demi", sans-serif;
  text-transform: uppercase;
}

.advantage-card__subtitle {
  text-transform: none;
}

.advantage-card:hover {
  color: #fff;
}

@media (max-width: 575px) {
  .advantage-card:hover {
    color: #616f90;
  }
}

.advantage-card:hover .advantage-card__pic-box {
  opacity: 1;
}

@media (max-width: 575px) {
  .advantage-card:hover .advantage-card__pic-box {
    opacity: .5;
  }
}

/***** advantages *****/
.advantages {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: -2px;
  margin-bottom: -23px;
}

@media (max-width: 1199px) {
  .advantages {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
}

@media (max-width: 1199px) {
  .advantages__advantage-card {
    max-width: 240px;
    margin: 0 20px 30px;
  }
}

@media (max-width: 991px) {
  .advantages__advantage-card {
    max-width: 210px;
    margin: 0 10px 30px;
  }
}

@media (max-width: 767px) {
  .advantages__advantage-card {
    max-width: 220px;
    margin: 0 15px 30px;
  }
}

@media (max-width: 575px) {
  .advantages__advantage-card {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .advantages__advantage-card {
    max-width: 200px;
  }
}

/***** offer-cards *****/
.offer-cards__slider-box {
  position: relative;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .offer-cards__slider-box {
    padding: 0 50px;
  }
}

@media (max-width: 500px) {
  .offer-cards__slider-box {
    padding: 0;
  }
}

.offer-cards__slider-item {
  margin: 0 10px;
}

@media (max-width: 575px) {
  .offer-cards__slider-item {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .offer-cards__slider-arrows {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

.offer-cards__slider-arrow {
  position: absolute;
  bottom: 20px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .offer-cards__slider-arrow {
    position: static;
  }
}

.offer-cards__slider-arrow-prev {
  left: 0;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.offer-cards__slider-arrow-next {
  right: 0;
}

/***** offer-card *****/
.offer-card {
  width: 250px;
  background: #fff;
}

.offer-card__pic-box {
  position: relative;
  height: 0;
  padding-bottom: 60%;
}

.offer-card__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;';
}

.offer-card__price {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: #fff;
  color: #0abb87;
  padding: 1px 6px;
  font: 24px/1.2 "FuturaPT-Demi", sans-serif;
}

.offer-card__title {
  height: 2.2em;
  margin-bottom: 14px;
  color: #242939;
  font: 20px/1 "FuturaPT-Book", sans-serif;
}

.offer-card__bottom {
  padding: 15px 12px 15px;
}

.offer-card__data {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #647097;
  font: 18px/1.2 "FuturaPT-Book", sans-serif;
}

.offer-card__data-title {
  -webkit-flex: 0 1 90px;
      -ms-flex: 0 1 90px;
          flex: 0 1 90px;
}

/***** offers-section *****/
.offers-section {
  padding: 47px 0 65px;
}

@media (max-width: 575px) {
  .offers-section {
    padding: 0 0 65px;
  }
}

.offers-section__title {
  margin-bottom: 25px;
  text-align: center;
}

.offers-section__bottom {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 575px) {
  .offers-section__bottom {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .offers-section__btn {
    font-size: 20px;
  }
}

/***** companies *****/
.companies {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 68px 0 75px;
}

@media (max-width: 991px) {
  .companies {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.companies__company {
  position: relative;
  cursor: pointer;
}

@media (max-width: 991px) {
  .companies__company {
    position: relative;
    cursor: pointer;
    margin: 0 30px 40px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .companies__company {
    margin: 0 20px 35px;
  }
}

@media (max-width: 575px) {
  .companies__company {
    margin: 0 5px 35px;
  }
}

.companies__company:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .3s;
}

.companies__company_1:before {
  content: url(../img/company-1_hover.png);
}

.companies__company_2:before {
  content: url(../img/company-2_hover.png);
}

.companies__company_3:before {
  content: url(../img/company-3_hover.png);
}

.companies__company_4:before {
  content: url(../img/company-4_hover.png);
}

.companies__company_5:before {
  content: url(../img/company-5_hover.png);
}

.companies__company:hover:before {
  opacity: 1;
}

/***** partners-section *****/
.partners-section {
  padding-bottom: 81px;
}

@media (max-width: 575px) {
  .partners-section {
    padding-bottom: 50px;
  }
}

.partners-section__title {
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 1199px) {
  .partners-section__companies {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .partners-section__companies {
    margin-bottom: -40px;
  }
}

@media (max-width: 767px) {
  .partners-section__companies {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .partners-section__companies {
    max-width: 340px;
    width: 100%;
    margin: 0 auto -35px;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

/***** tt *****/
.tt {
  text-transform: uppercase;
}

/***** wsn *****/
.wsn {
  white-space: nowrap;
}

/***** tac *****/
.tac {
  text-align: center;
}

/***** hidden tmp blocks *****/
.tmp {
  display: none;
}

/* ---------- partials ---------- */
[data-page="home"] {
  /***** top-section *****/
  /***** .admin-panel *****/
  /***** about-us *****/
  /***** main-blocks *****/
  /***** bottom-blocks *****/
  /***** reasons-section *****/
  /***** geo-section *****/
}

[data-page="home"] .top-section {
  position: relative;
  margin-bottom: 83px;
  padding: 70px 0 1px;
  background: #242939;
}

@media (max-width: 767px) {
  [data-page="home"] .top-section {
    padding: 0;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .top-section {
    margin-bottom: 40px;
  }
}

[data-page="home"] .top-section canvas {
  display: block;
  vertical-align: bottom;
}

[data-page="home"] .top-section #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: none;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

[data-page="home"] .top-section__main {
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  [data-page="home"] .top-section__top-box {
    padding: 70px 0 100px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .top-section__top-box {
    padding: 40px 0 100px;
    background: #242939 url(../img/top-section-bg_mob.jpg) no-repeat 50% 50%/600px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .top-section__bottom-box {
    padding-top: 1px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .top-section__bottom-box-wrap {
    margin-top: -100px;
  }
}

[data-page="home"] .top-section__top {
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 575px) {
  [data-page="home"] .top-section__title {
    max-width: 10em;
    width: 100%;
    margin: 0 auto;
  }
}

[data-page="home"] .top-section__subtitle {
  font: 30px/1.2 "FuturaPT-Book", sans-serif;
  color: #647097;
}

@media (max-width: 991px) {
  [data-page="home"] .top-section__subtitle {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .top-section__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .top-section__subtitle {
    max-width: 12em;
    width: 100%;
    margin: 0 auto;
  }
}

[data-page="home"] .top-section__ask-question {
  margin: 0 auto 60px;
}

@media (max-width: 575px) {
  [data-page="home"] .top-section__ask-question {
    margin: 0 auto 35px;
  }
}

[data-page="home"] .top-section__advantages {
  margin-bottom: -23px;
}

@media (max-width: 1199px) {
  [data-page="home"] .top-section__advantages {
    margin-bottom: -64px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .admin-panel {
    padding-top: 20px;
  }
}

[data-page="home"] .about-us {
  padding: 14px 0 70px;
}

@media (max-width: 575px) {
  [data-page="home"] .about-us {
    padding: 14px 0 60px;
  }
}

[data-page="home"] .about-us__top {
  position: relative;
}

[data-page="home"] .about-us__top-main {
  position: relative;
}

[data-page="home"] .about-us__top-subtitle {
  position: relative;
  margin-left: 73px;
  padding-left: 11px;
  padding-top: 5px;
}

@media (max-width: 1199px) {
  [data-page="home"] .about-us__top-subtitle {
    margin-left: 40px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__top-subtitle {
    margin-left: 0;
  }
}

[data-page="home"] .about-us__top-subtitle:before {
  content: "";
  display: block;
  position: absolute;
  height: 90%;
  width: 2px;
  top: 0;
  left: 0;
  background: #0abb87;
}

[data-page="home"] .about-us__top-text {
  max-width: 550px;
  width: 100%;
  padding: 24px 0 137px 26px;
}

@media (max-width: 1199px) {
  [data-page="home"] .about-us__top-text {
    max-width: 480px;
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .about-us__top-text {
    padding-bottom: 70px;
    max-width: 620px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__top-text {
    padding-bottom: 35px;
  }
}

[data-page="home"] .about-us__top-pic {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  right: -317px;
}

@media (max-width: 1199px) {
  [data-page="home"] .about-us__top-pic {
    width: 850px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .about-us__top-pic {
    position: static;
    margin-left: 30px;
    width: 1000px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .about-us__top-pic {
    margin-left: -75px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__top-pic {
    width: 170%;
    margin-left: -11vw;
  }
}

[data-page="home"] .about-us__top-title {
  margin-bottom: 48px;
  color: #4faaf0;
}

@media (max-width: 1199px) {
  [data-page="home"] .about-us__top-title {
    margin-bottom: 38px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__top-title {
    margin-bottom: 20px;
    text-align: center;
  }
}

[data-page="home"] .about-us__bottom {
  background: url(../img/about-us-bg.jpg) no-repeat 50% 35px/contain;
}

[data-page="home"] .about-us__bottom-main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  [data-page="home"] .about-us__bottom-main {
    display: block;
  }
}

[data-page="home"] .about-us__bottom-list {
  -webkit-flex: 0 1 514px;
      -ms-flex: 0 1 514px;
          flex: 0 1 514px;
  margin: 121px 0 0 116px;
  padding: 14px 40px 10px 17px;
  background: #eee;
}

@media (max-width: 1199px) {
  [data-page="home"] .about-us__bottom-list {
    margin: 80px 0 0 50px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .about-us__bottom-list {
    margin: 50px auto 50px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__bottom-list {
    margin: 20px auto 20px;
    padding: 25px 10px 10px 10px;
  }
}

[data-page="home"] .about-us__bottom-list-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 17px;
  font: 20px/1.2 "FuturaPT-Book", sans-serif;
  color: #666;
}

@media (max-width: 575px) {
  [data-page="home"] .about-us__bottom-list-item {
    font-size: 18px;
  }
}

[data-page="home"] .about-us__bottom-list-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0abb87;
}

[data-page="home"] .about-us__bottom-list-item span {
  font-family: "FuturaPT-Demi", sans-serif;
  color: #0abb87;
}

[data-page="home"] .about-us__bottom-pic {
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  -webkit-flex: 0 1 449px;
      -ms-flex: 0 1 449px;
          flex: 0 1 449px;
  margin-left: 40px;
}

@media (max-width: 991px) {
  [data-page="home"] .about-us__bottom-pic {
    max-width: 449px;
    width: 100%;
    margin: 0 auto;
  }
}

[data-page="home"] .main-blocks {
  background: #232838 url(../img/dots-lines-bg.jpg) no-repeat 50% 100%/1400px;
  box-shadow: inset 0 10px 50px rgba(24, 26, 59, 0.3), inset 0 -10px 20px rgba(24, 26, 59, 0.3);
}

@media (max-width: 575px) {
  [data-page="home"] .main-blocks {
    background: #232838 url(../img/dots-lines-bg_mob.jpg) no-repeat 50% 100%/800px;
  }
}

@media (max-width: 500px) {
  [data-page="home"] .main-blocks {
    background-size: 700px;
  }
}

[data-page="home"] .bottom-blocks {
  background: #f1f1f1;
}

[data-page="home"] .bottom-blocks__box-separator {
  padding-top: 40px;
}

[data-page="home"] .reasons-section {
  padding: 78px 0 110px;
}

@media (max-width: 575px) {
  [data-page="home"] .reasons-section {
    padding: 40px 0 70px;
  }
}

[data-page="home"] .reasons-section__title {
  margin-bottom: 35px;
  padding-right: 27px;
  text-align: right;
}

@media (max-width: 767px) {
  [data-page="home"] .reasons-section__title {
    text-align: center;
    padding-right: 0;
  }
}

[data-page="home"] .geo-section {
  padding: 0 0 217px;
}

@media (max-width: 1199px) {
  [data-page="home"] .geo-section {
    padding: 0 0 120px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .geo-section {
    padding: 0 0 50px;
  }
}

[data-page="home"] .geo-section__container {
  position: relative;
}

[data-page="home"] .geo-section__container:before {
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  background: url(../img/map-bg.jpg) no-repeat 0 0/contain;
  width: 14.65em;
  height: 7.8em;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

[data-page="home"] .geo-section__main {
  position: relative;
}

[data-page="home"] .geo-section__text {
  max-width: 530px;
  width: 100%;
  padding-top: 6px;
  margin-left: auto;
  margin-bottom: -5px;
}

@media (max-width: 1199px) {
  [data-page="home"] .geo-section__text {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .geo-section__text {
    max-width: 100%;
  }
}

[data-page="home"] .geo-section__pic {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  left: -255px;
}

@media (max-width: 1199px) {
  [data-page="home"] .geo-section__pic {
    left: -380px;
    width: 900px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .geo-section__pic {
    position: relative;
    left: -100px;
    top: auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .geo-section__pic {
    width: 715px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .geo-section__pic {
    width: 160%;
    left: -36vw;
  }
}

[data-page="home"] .geo-section__header-box {
  position: relative;
  max-width: 1070px;
  width: 100%;
  margin: 0 auto 69px;
  padding-top: 46px;
  text-align: center;
}

@media (max-width: 991px) {
  [data-page="home"] .geo-section__header-box {
    margin: 0 auto 50px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .geo-section__header-box {
    padding-top: 40px;
    margin: 0 auto 20px;
  }
}

[data-page="home"] .geo-section__bottom {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 991px) {
  [data-page="home"] .geo-section__bottom {
    margin-top: 70px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .geo-section__bottom {
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  [data-page="home"] .geo-section__btn {
    font-size: 20px;
  }
}

[data-page="publisher"] .admin-panel {
  padding-bottom: 118px;
}

@media (max-width: 991px) {
  [data-page="publisher"] .admin-panel {
    padding-top: 82px;
    padding-bottom: 100px;
  }
}

@media (max-width: 575px) {
  [data-page="publisher"] .admin-panel {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

[data-page="publisher"] .admin-panel .header-box {
  margin-bottom: 107px;
}

@media (max-width: 991px) {
  [data-page="publisher"] .admin-panel .header-box {
    margin-bottom: 55px;
  }
}

@media (max-width: 575px) {
  [data-page="publisher"] .admin-panel .header-box {
    margin-bottom: 30px;
  }
}

[data-page="publisher"] .admin-panel .header-box__subtitle {
  max-width: 35em;
}

[data-page="publisher"] .admin-panel .tech-item {
  margin-bottom: 103px;
}

@media (max-width: 1199px) {
  [data-page="publisher"] .admin-panel .tech-item {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  [data-page="publisher"] .admin-panel .tech-item {
    margin-bottom: 70px;
  }
}

@media (max-width: 575px) {
  [data-page="publisher"] .admin-panel .tech-item {
    margin-bottom: 53px;
  }
}

[data-page="publisher"] .admin-panel .tech-item:last-child {
  margin-bottom: 0;
}

[data-page="publisher"] .admin-panel .tech-item__title {
  width: 100%;
}

[data-page="publisher"] .admin-panel .tech-item:nth-child(1) {
  padding-left: 10px;
}

@media (max-width: 1199px) {
  [data-page="publisher"] .admin-panel .tech-item:nth-child(1) {
    padding-left: 0;
  }
}

[data-page="publisher"] .admin-panel .tech-item:nth-child(1) .tech-item__title {
  padding-left: 160px;
}

@media (max-width: 1199px) {
  [data-page="publisher"] .admin-panel .tech-item:nth-child(1) .tech-item__title {
    padding-left: 70px;
  }
}

@media (max-width: 991px) {
  [data-page="publisher"] .admin-panel .tech-item:nth-child(1) .tech-item__title {
    padding-left: 0;
  }
}

[data-page="publisher"] .admin-panel .tech-item:nth-child(4) .tech-item__title {
  padding-right: 160px;
}

[data-page="contacts"] .top-section {
  height: 147px;
  background: #242939 url(../img/top-section-bg.jpg) no-repeat 50% 39%/1400px;
}

[data-page="login"] .login-box,
[data-page="reg"] .login-box {
  position: relative;
  z-index: 20;
}

[data-page="login"] .bg-page,
[data-page="reg"] .bg-page {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #242939;
}

[data-page="login"] .bg-page img,
[data-page="reg"] .bg-page img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ---------- plugins own settings ---------- */
.slick-slide {
  outline: none !important;
}

#privacy-modal {
  opacity: 0;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  transition: all .3s;
}

.fancybox-slide--complete #privacy-modal {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-is-open .fancybox-bg {
  background: #000;
  opacity: .9;
}

/* ---------- keyframes ---------- */
@-webkit-keyframes showMenu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showMenu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeMenu {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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