.container {
  width: 100%;
  max-width: 1700px;
  padding: 0 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
:root {
  --body-bg: #FFF;
  --blue: #052659;
  --text-color: var(--blue);
  --light-blue: #5483B3;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.25;
  color: var(--text-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-bg);
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

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

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

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

.clearfix:after {
  clear: both;
}

.slick-slide {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("./img/bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top -50px center;
}
.wrap.is-home {
  background-position: top center;
}

@media only screen and (max-width: 1920px) {
  .wrap {
    background-size: auto 930px;
  }
}
@media only screen and (min-width: 2500px) {
  .wrap {
    background-position: top -210px center;
  }
  .wrap.is-home {
    background-position: top -160px center;
  }
}
.main {
  margin-top: 92px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.section {
  margin: 120px 0;
  position: relative;
}
.section--dark {
  background-color: var(--blue);
  padding: 120px 0;
  margin: 0;
  color: #fff;
}

.format-text-p p {
  margin: 30px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}
.format-text-p b, .format-text-p strong {
  font-weight: 600;
}

.h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}
.h1--center {
  text-align: center;
}

.h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}
.h2--center {
  text-align: center;
}
.h2 span {
  color: var(--light-blue);
}

.h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.h3--center {
  text-align: center;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 10em 10em 10em 0;
  font-size: 18px;
  font-weight: 600;
  padding: 30px 60px;
  color: #fff;
  background-color: var(--light-blue);
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 17px 21px 0 rgba(40, 145, 253, 0.25);
          box-shadow: 0 17px 21px 0 rgba(40, 145, 253, 0.25);
}
.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(#2892fe), to(#052659));
  background-image: linear-gradient(90deg, #2892fe 0%, #052659 100%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.btn:hover:before {
  opacity: 0;
}
.btn--bdr {
  border: 1px solid var(--light-blue);
  border-radius: 10em;
  color: var(--text-color);
  background-color: transparent;
  padding: 28px 58px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.btn--bdr:after, .btn--bdr:before {
  display: none;
}
.btn--bdr:hover {
  background-color: var(--light-blue);
  color: #fff;
}
.btn--white {
  background-color: #fff;
  color: var(--text-color);
}
.btn--white:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#81afde));
  background-image: linear-gradient(90deg, #fff 0%, #81afde 100%);
}

.back,
.next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10em 10em 0 10em;
  border: 1px solid var(--light-blue);
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-transition: border-color 0.3s, opacity 0.3s;
  transition: border-color 0.3s, opacity 0.3s;
}
.back svg path,
.next svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.back:active,
.next:active {
  border-color: #fff;
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

@media (hover) {
  .wow {
    visibility: hidden;
  }
  .back:hover,
  .next:hover {
    border-color: #fff;
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
}
.page-hero {
  text-align: center;
  padding: 100px 0;
}
.page-section {
  padding-bottom: 100px;
}

.breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
  line-height: 1.4;
}
.breadcrumbs a {
  color: var(--light-blue);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.5s;
  transition: text-decoration-color 0.5s;
  margin-right: 50px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.breadcrumbs a::after {
  position: absolute;
  top: 9px;
  right: -37px;
  content: "";
  display: inline-block;
  width: 23px;
  height: 4px;
  background-image: url("./img/dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  text-decoration-color: var(--light-blue);
}

.breadcrumb_last {
  white-space: nowrap;
  display: inline-block;
}

@media only screen and (max-width: 1699px) {
  .wrap {
    background-size: auto 830px;
    background-position: top -80px center;
  }
  .wrap.is-home {
    background-position: top -60px center;
  }
  .h1 {
    font-size: 48px;
  }
  .section {
    margin: 90px 0;
  }
  .section--dark {
    padding: 90px 0;
    margin: 0;
  }
  .page-hero {
    padding: 60px 0;
  }
  .page-section {
    padding-top: 30px;
    padding-bottom: 90px;
  }
  .breadcrumbs {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .wrap {
    background-size: auto 630px;
    background-position: top -20px center;
  }
  .wrap.is-home {
    background-image: none;
  }
  .page-section {
    padding-top: 15px;
  }
  .breadcrumbs {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .wrap {
    background-position: top -55px center;
  }
  .section {
    margin: 50px 0;
  }
  .section--dark {
    padding: 50px 0;
    margin: 0;
  }
  .page-hero {
    padding: 40px 0;
  }
  .page-section {
    padding-bottom: 50px;
    padding-top: 35px;
  }
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 36px;
  }
  .h3 {
    font-size: 24px;
  }
  .btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 359px) {
  .h2 {
    font-size: 32px;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slideInLeftHand {
  0% {
    -webkit-transform: translateX(-100px) translateY(-50%);
            transform: translateX(-100px) translateY(-50%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@keyframes slideInLeftHand {
  0% {
    -webkit-transform: translateX(-100px) translateY(-50%);
            transform: translateX(-100px) translateY(-50%);
  }
  100% {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@media only screen and (max-width: 1199px) {
  @-webkit-keyframes slideInLeftHand {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInLeftHand {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
.logo {
  max-width: 160px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header.is-fixed {
  position: fixed;
  height: 72px;
  background-color: #FFF;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.08);
}
.header.is-fixed .header-block {
  height: 72px;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 92px;
}
.header__logo {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
  padding: 15px 40px;
  font-size: 15px;
  -webkit-box-shadow: 0 10px 21px 0 rgba(40, 145, 253, 0.25);
          box-shadow: 0 10px 21px 0 rgba(40, 145, 253, 0.25);
}

.menu {
  margin-left: auto;
  margin-right: auto;
}
.menu__toggle {
  display: none;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.menu__item {
  margin-right: 30px;
  position: relative;
}
.menu__item.current_page_item .menu__link,
.menu__item.current_page_parent .menu__link {
  background-color: var(--light-blue);
  color: #fff;
}
.menu__item.current_page_item .menu__link.has-toggle:after,
.menu__item.current_page_parent .menu__link.has-toggle:after {
  border-color: #fff;
}
.menu__item:last-child {
  margin-right: 0px;
}
.menu__link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10em 10em 10em 0;
  white-space: nowrap;
}
.menu__link:active {
  color: #fff;
  background-color: var(--light-blue);
}
.menu__link:active.has-toggle:after {
  border-color: #fff;
}
.menu__link.has-toggle {
  padding-right: 35px;
}
.menu__link.has-toggle:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 2px solid var(--text-color);
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 20px;
  top: calc(50% - 5px);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.sub-menu {
  min-width: 100%;
  position: absolute;
  top: calc(100% + 10px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
  padding: 15px 20px;
  padding-top: 25px;
}
.sub-menu:before {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--blue);
  border-radius: 20px;
  z-index: -1;
}
.sub-menu li {
  margin-right: 0;
}
.sub-menu li.current_page_item .menu__link,
.sub-menu li.current_page_parent .menu__link{
  text-decoration: underline;
  text-decoration-color: #fff;
}
.sub-menu a {
  font-size: 16px;
  color: #fff;
  padding: 10px 0;
  display: block;
  white-space: nowrap;
  background-color: transparent !important;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.sub-menu a:active {
  text-decoration: underline;
  text-decoration-color: #fff;
}

.hamburger {
  display: none;
}

@media (hover) {
  .header.open-popup {
    right: 17px;
  }
  .menu__item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  .menu__item:hover .menu__link {
    color: #fff;
    background-color: var(--light-blue);
  }
  .menu__item:hover .menu__link.has-toggle:after {
    border-color: #fff;
  }
  .sub-menu a:hover {
    text-decoration: underline;
    text-decoration-color: #fff;
  }
}
@media only screen and (max-width: 1699px) {
  .menu__item {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .menu__item {
    margin-right: 10px;
  }
  .menu__link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .header__logo {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    margin-right: auto;
  }
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: center;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 12;
    background-color: var(--blue);
    opacity: 0;
    visibility: hidden;
    padding: 100px 0;
  }
  .menu__container {
    margin-top: auto;
    margin-bottom: auto;
  }
  .menu.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .menu__toggle {
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 10px;
  }
  .menu__toggle:before {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    content: "";
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu__item {
    margin-right: 0;
    height: auto;
    text-align: center;
  }
  .menu__item + .menu__item {
    margin-top: 30px;
  }
  .menu__link {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    height: auto;
    width: auto;
    display: inline-block;
  }
  .menu__link.has-toggle {
    padding-right: 45px;
  }
  .menu__link.has-toggle:after {
    display: none;
  }
  .sub-menu {
    position: relative;
    height: 0;
    overflow: hidden;
    top: auto;
    color: #fff;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    padding: 0;
    padding-top: 0;
    -webkit-transition: none;
    transition: none;
  }
  .sub-menu:before {
    display: none;
  }
  .sub-menu.visible {
    height: auto;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .sub-menu.visible + .menu__toggle {
    top: 15px;
  }
  .sub-menu.visible + .menu__toggle:before {
    -webkit-transform: rotate(45deg) scale(-1, -1);
            transform: rotate(45deg) scale(-1, -1);
  }
  .sub-menu li.current_page_item .menu__link,
  .sub-menu li.current_page_parent .menu__link{
    text-decoration: underline;
    text-decoration-color: #fff;
  }
  .sub-menu a {
    font-size: 16px;
    color: #fff;
    padding: 0px 0;
    display: block;
    white-space: nowrap;
    background-color: transparent !important;
    text-decoration: none;
    text-decoration-color: transparent;
    -webkit-transition: -webkit-text-decoration 0.3s;
    transition: -webkit-text-decoration 0.3s;
    transition: text-decoration 0.3s;
    transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
  }
  .sub-menu a:active {
    text-decoration: underline;
    text-decoration-color: #fff;
  }
  .hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: 0;
    height: 24px;
    background-color: transparent;
    margin-right: 40px;
  }
  .hamburger .hamburger-box {
    width: 40px;
    height: 24px;
  }
  .hamburger .hamburger-inner,
  .hamburger .hamburger-inner::after,
  .hamburger .hamburger-inner::before {
    background-color: var(--text-color);
    height: 4px;
    width: 40px;
    border-radius: 0;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger .hamburger-inner::before {
    top: 10px;
    width: 27px;
  }
  .menu__hamburger {
    position: absolute;
    top: 30px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 13;
  }
  .menu__hamburger.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .menu__hamburger .hamburger-inner,
  .menu__hamburger .hamburger-inner::after,
  .menu__hamburger .hamburger-inner::before {
    background-color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .hamburger {
    margin-right: 30px;
  }
  .header__btn {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .hamburger {
    margin-right: 20px;
  }
  .header__btn {
    margin-left: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .header__logo {
    width: auto;
    max-width: 170px;
  }
}

.hero {
  position: relative;
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero__info {
  width: 765px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 140px 0 120px;
  position: relative;
  z-index: 2;
}
.hero__subtitle {
  font-size: 48px;
  margin: 0;
  margin-top: 20px;
  font-weight: 800;
  color: var(--light-blue);
}
.hero__text {
  max-width: 660px;
  margin-top: 40px;
  font-weight: 500;
}
.hero__actions {
  margin-top: 40px;
}
.hero__actions-text {
  font-size: 20px;
  font-weight: 500;
}
.hero__actions-btns {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.hero__actions-btns .btn + .btn {
  margin-left: 20px;
}
.hero__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -135px;
  margin-bottom: -2px;
  pointer-events: none;
}

@media only screen and (max-width: 1699px) {
  .hero__info {
    width: 560px;
    padding: 70px 0 100px;
  }
  .hero__subtitle {
    font-size: 32px;
  }
  .hero__text {
    max-width: 500px;
  }
  .hero__image {
    margin-left: 50px;
    position: relative;
    margin-top: -75px;
  }
  .hero__image > img {
    height: 700px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .hero__image {
    margin-left: -80px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .hero__image > img {
    height: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero__info {
    padding-bottom: 50px;
  }
  .hero__actions-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero__actions-btns .btn + .btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .hero__image {
    margin-left: 0;
    margin-top: -360px;
    position: relative;
    left: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__info {
    width: 100%;
    padding-top: 20px;
  }
  .hero__text {
    width: 100%;
  }
  .hero__image > img {
    height: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .hero .h1 {
    font-size: 30px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__text {
    margin-top: 30px;
    font-size: 14px;
  }
  .hero__actions {
    margin-top: 30px;
  }
  .hero__actions-text {
    font-size: 16px;
  }
  .hero__actions-btns {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .hero__actions-btns .btn {
    padding: 25px 40px;
  }
  .hero__actions-btns .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .hero__image {
    left: -10px;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-right: -5px;
  }
  .hero__image > img {
    height: auto;
    max-width: calc(100% + 20px);
  }
}
@media only screen and (max-width: 399px) {
  .hero__actions-btns .btn {
    padding: 25px 35px;
  }
}
.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tizers-section {
  padding: 70px 0;
  position: relative;
  z-index: 2;
  background-color: var(--blue);
  color: #fff;
}
.tizers__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 100px;
}
.tizers__item-icon {
  width: 120px;
  height: 120px;
}
.tizers__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  text-align: center;
}

@media only screen and (max-width: 1699px) {
  .tizers {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tizers__item {
    margin: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .tizers-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .tizers {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -50px;
  }
  .tizers__item {
    width: calc(50% - 20px);
    margin: 0 10px 50px;
  }
}
@media only screen and (max-width: 575px) {
  .tizers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .tizers__item {
    width: 100%;
    margin: 0;
  }
  .tizers__item + .tizers__item {
    margin-top: 50px;
  }
}
.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 50px;
}
.advantages__item {
  width: calc(25% - 20px);
  margin: 0 10px;
  background-color: #F4F7FB;
  padding: 50px 50px 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.advantages__item-icon {
  width: 52px;
  height: 52px;
}
.advantages__item-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 39px;
}
.advantages__item-text {
  margin: 12px 0 39px;
}
.advantages__item-more {
  font-size: 15px;
  margin-top: auto;
  border: 1px solid var(--light-blue);
  width: 53px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  background-image: url("./img/arrow-more.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  border-radius: 10em 10em 10em 0;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}
.advantages__item-more span {
  opacity: 0;
  visibility: hidden;
}

@media (hover) {
  .advantages__item:hover {
    background-color: var(--light-blue);
    color: #fff;
  }
  .advantages__item:hover path {
    stroke: #fff;
  }
  .advantages__item:hover .advantages__item-more {
    width: auto;
    padding: 0 30px;
    border-color: #fff;
    background-color: #fff;
    background-image: none;
  }
  .advantages__item:hover .advantages__item-more span {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 1299px) {
  .advantages {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -20px;
  }
  .advantages__item {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages__item {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .advantages {
    margin-top: 30px;
  }
  .advantages__item {
    width: calc(100% - 20px);
  }
}
.opportunities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.opportunities-section {
  z-index: 2;
}
.opportunities__info {
  max-width: 680px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.opportunities__text {
  margin-top: 60px;
}
.opportunities__text p {
  margin: 20px 0;
}
.opportunities__btn {
  margin-top: 60px;
}
.opportunities__image {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: -120px;
  right: 100px;
  height: 878px;
  width: auto;
  pointer-events: none;
}
.opportunities__image > img {
  max-height: 100%;
  position: relative;
  z-index: 2;
}
.opportunities__image:before {
  position: absolute;
  content: "";
  width: 595px;
  height: 550px;
  background-color: var(--light-blue);
  border-radius: 50%;
  opacity: 0.78;
  rotate: 13deg;
  bottom: 120px;
  right: 90px;
  -webkit-filter: blur(149px);
          filter: blur(149px);
}

@media only screen and (max-width: 1699px) {
  .opportunities-section {
    overflow: hidden;
  }
  .opportunities__info {
    max-width: 500px;
  }
  .opportunities__text {
    margin-top: 40px;
  }
  .opportunities__text p {
    margin: 30px 0;
  }
  .opportunities__image {
    height: 686px;
    right: 5%;
    bottom: -90px;
  }
  .opportunities__image:before {
    right: 20px;
  }
  .opportunities__btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .opportunities {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .opportunities-section {
    padding-bottom: 0;
  }
  .opportunities__info {
    max-width: 100%;
  }
  .opportunities__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: auto;
    right: auto;
    bottom: auto;
    position: relative;
    margin-top: 20px;
    margin-left: -40px;
  }
  .opportunities__image:before {
    bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .opportunities__image:before {
    width: 300px;
    height: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 265px 0;
}
.about__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: 800px;
  position: relative;
  z-index: 2;
}
.about-section {
  margin: 0;
}
.about__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 60px;
}
.about__pretext {
  margin-top: 37px;
  font-size: 20px;
  max-width: 700px;
}
.about__text {
  margin-top: 20px;
}
.about__btn {
  margin-top: 60px;
}
.about__image {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.about__image img {
  height: 100%;
}
@media only screen and (min-width: 2000px) {
  .about__image {
    left: auto;
    right: calc(50% - 250px);
  }
}
@media only screen and (max-width: 1699px) {
  .about {
    padding: 200px 0;
  }
  .about__info {
    width: 500px;
  }
}
@media only screen and (max-width: 1499px) {
  .about {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 1299px) {
  .about {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about {
    padding: 0;
  }
  .about-section {
    margin: 90px 0;
  }
  .about__info {
    width: 100%;
  }
  .about__image {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .about-section {
    margin: 50px 0;
  }
  .about__subtitle {
    margin-top: 30px;
  }
  .about__pretext {
    margin-top: 30px;
  }
  .about__btn {
    margin-top: 30px;
  }
}
.testimonial {
  padding: 50px 30px 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #F4F7FB;
  color: var(--text-color);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.testimonial.is-active {
  -webkit-box-shadow: 0 31px 39px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 31px 39px 0 rgba(0, 0, 0, 0.03);
}
.testimonial__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.testimonial__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial__name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  white-space: nowrap;
}
.testimonial__text {
  font-size: 16px;
  margin-top: 25px;
  max-width: 290px;
  height: 130px;
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(linear, left 50%, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  margin-bottom: 0;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.testimonial__text.is-visible {
  -webkit-mask-image: none;
}
.testimonial__stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 25px;
}
.testimonial__star--no-star {
  opacity: 0.3;
}

.testimonials-slider {
  margin-top: 60px;
}
.testimonials-slider__navigation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 30px;
}
.testimonials-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1699px) {
  .testimonials-slider {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-slider {
    overflow: visible;
  }		
  .testimonials-slider__header .h2 {
    width: 100%;
  }
  .testimonials-slider__navigation {
    position: absolute;
    bottom: 90px;
    left: 50%;
    right: 0;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .testimonials-slider__section-block {
    padding-bottom: 90px;
  }
  .testimonial {
    width: 320px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonials-slider {
    margin-top: 30px;
  }
  .testimonials-slider__navigation {
    bottom: 50px;
  }
  .testimonials-slider__section-block {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 399px) {
  .testimonial {
    width: 310px;
  }
}
.fancybox-is-open .fancybox-bg {
  background-color: var --blue;
  opacity: 0.75;
}

.form {
  width: 100%;
}
.form label {
  display: block;
  position: relative;
}
.form label + label {
  margin-top: 20px;
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-ms-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::placeholder {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form textarea {
  position: relative;
  font-size: 16px;
  height: 70px;
  font-weight: 600;
  text-align: center;
  background-color: #4A76A4;
  padding: 0 30px;
  color: #fff;
  border: none;
  border-radius: 10em;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=tel]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=tel]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=tel]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=tel]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=tel]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  height: 176px;
  resize: none;
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 40px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 70px #4A76A4;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s
}
.form__btn {
  line-height: normal;
  margin-top: 30px;
  width: 100%;
  background-color: #fff;
  color: var(--text-color);
  height: 100px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.form__btn:hover {
  background-color: #F4F7FB;
}
.form__forgot-password {
  margin-top: 40px;
  font-size: 16px;
}
.form__forgot-password a {
  color: #fff;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.form__forgot-password a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
}
.form__redirect {
  margin-top: 40px;
  font-size: 20px;
}
.form__redirect a {
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  white-space: nowrap;
}
.form__redirect a:hover {
  text-decoration: underline;
  text-decoration-color: #FFF;
}
.wpcf7-spinner {
  display: none!important;
}

.popup {
  width: 100%;
  max-width: 550px;
  padding: 50px 60px;
  background-color: var(--light-blue);
  text-align: center;
  color: #fff;
}
.popup__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 19px;
  width: 19px;
  background-color: transparent;
  z-index: 3;
  top: 20px;
  right: 20px;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup__close svg rect {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.popup__close:hover svg rect {
  fill: #F4F7FB;
}

.iti {
  width: 100%;
}
.iti__selected-flag {
  padding-right: 8px;
  border-radius: 10em 0 0 10em;
}
.iti__divider {
  margin-bottom: 0;
  padding-bottom: 0;
}
.iti__dial-code {
  color: #F4F7FB;
  font-weight: 600;
}
.iti__arrow {
  border-top: 4px solid #fff;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fff;
}
.iti--container {
  z-index: 100000;
}
.iti__country {
  white-space: normal;
  background-color: #4A76A4;
  color: #fff;
}
.iti__country.iti__highlight {
  background-color: var(--blue);
}
.iti__country-list {
  width: 430px;
  max-height: 280px;
  border: none;
  margin-top: 10px;
}
.iti-mobile .iti__dial-code {
  color: var(--text-color);
}
.iti-mobile .iti__country {
  background-color: #fff;
  color: var(--text-color);
}
.iti-mobile .iti__country.iti__highlight {
  background-color: var(--blue);
  color: #fff;
}
.iti-mobile .iti__country.iti__highlight .iti__dial-code {
  color: #fff;
}
.iti-mobile .iti__country-list {
  width: calc(100% - 60px);
  margin-top: 0;
}

.phone {
  padding-left: 30px !important;
}

@media only screen and (max-width: 1199px) {
  .fancybox-slide > * {
    margin: 0;
    padding: 0;
  }
  .popup {
    max-width: 100%;
    height: 100dvh;
  }
  .popup__inner {
    padding: 95px 40px;
    width: 100%;
    max-width: 510px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100%;
  }
  .popup__close {
    width: 26px;
    height: 26px;
    top: 30px;
    right: 40px;
  }
  .popup__close svg {
    width: 26px;
    height: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .iti__country-list {
    width: auto;
  }
}
.subscribe {
  position: relative;
  z-index: 2;
}
.subscribe-section {
  margin-bottom: 0px;
  padding-bottom: 90px;
}
.subscribe__bg {
  position: absolute;
  top: 0;
  left: 30px;
  width: 100%;
  bottom: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  pointer-events: none;
}
.subscribe__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}
.subscribe__text {
  margin-top: 40px;
}
.subscribe__form {
  color: #fff;
  background-color: var(--light-blue);
  width: 800px;
  padding: 70px 135px 83px;
  margin-right: auto;
  text-align: center;
}
.subscribe__form .form {
  margin-top: 30px;
}
.subscribe__form .form label + label {
  margin-top: 10px;
}
.subscribe__form .form__btn {
  margin-top: 45px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.subscribe__form .form .iti__country-list {
  width: 530px;
}

@media only screen and (max-width: 1699px) {
  .subscribe__form {
    width: 700px;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 70px;
  }
  .subscribe__form .form__btn {
    margin-top: 30px;
  }
  .subscribe__form .form .iti__country-list {
    width: 520px;
  }
}
@media only screen and (max-width: 1399px) {
  .subscribe__form {
    width: 650px;
  }
  .subscribe__form .form .iti__country-list {
    width: 470px;
  }
}
@media only screen and (max-width: 1199px) {
  .subscribe__bg {
    display: none;
  }
  .subscribe__form {
    margin-right: 0;
    width: 100%;
    padding-left: 135px;
    padding-right: 135px;
  }
}
@media only screen and (max-width: 991px) {
  .subscribe__form {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .subscribe__form {
    padding: 50px 40px;
  }
}
@media only screen and (max-width: 575px) {
  .subscribe-section {
    padding-bottom: 50px;
  }
  .subscribe__form {
    padding: 50px 20px;
  }
}
.contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
}
.contact__icon {
  width: 26px;
  height: 26px;
  margin-right: 14px;
}
.contact a {
  color: #fff;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.contact a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
}

.footer {
  background-color: var(--blue);
  color: #fff;
  padding: 100px 0;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 315px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__contacts {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 50px;
}
.footer__contacts .contact + .contact {
  margin-top: 20px;
}
.footer-menu {
  margin: 0 110px;
}
.footer-menu__list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 68px;
     -moz-column-gap: 68px;
          column-gap: 68px;
}
.footer-menu__item {
  margin-bottom: 30px;
}
.footer-menu__link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  white-space: nowrap;
}
.footer-menu__link:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
}
.footer__info {
  width: 100%;
  max-width: 795px;
}
.footer__title {
  font-weight: 500;
  font-size: 16px;
}
.footer__text {
  margin-top: 20px;
  font-size: 13px;
}
.footer__text p {
  margin: 20px 0;
}

@media only screen and (max-width: 1199px) {
  .footer {
    padding: 90px 0;
  }
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__left {
    margin-right: 70px;
  }
  .footer-menu {
    margin: 0;
  }
  .footer-menu__list {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .footer__info {
    width: 100%;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__left {
    width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
  .footer__left {
    margin-right: 0;
    width: 100%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .footer-menu {
    width: 100%;
    margin-top: 60px;
  }
  .footer__info {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-menu__list {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    text-align: center;
  }
}
.accounts {
  background-color: var(--blue);
  padding: 90px 60px;
  color: #fff;
  overflow: hidden;
}
.accounts__table {
  width: 100%;
  border-collapse: collapse;
}
.accounts__tr {
  border-bottom: 1px solid #288187;
}
.accounts__tr:last-child {
  border: none;
}
.accounts__th {
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
}
.accounts__th strong, .accounts__th b {
  display: block;
  font-size: 24px;
  margin-top: 15px;
}
.accounts__th:nth-child(2n) {
  background-color: #113162;
}
.accounts__tbody tr:last-child td {
  padding: 20px;
}
.accounts__tbody td:nth-child(1) {
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding-left: 0;
  padding-right: 40px;
  width: 300px;
}
.accounts__tbody td:nth-child(2n) {
  background-color: #113162;
}
.accounts__td {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  height: 60px;
}
.accounts__td img {
  position: relative;
  top: 3px;
  width: 28px;
  height: 28px;
}
.accounts__btn {
  font-size: 13px;
  padding: 15px 30px;
  background-color: #fff;
  color: var(--text-color);
  border-radius: 10em;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.accounts__btn:before, .accounts__btn:after {
  display: none;
}
.accounts__btn:hover {
  background-color: var(--light-blue);
  color: #fff;
}

@media only screen and (max-width: 1699px) {
  .accounts {
    padding: 60px 50px;
  }
  .accounts__th {
    font-size: 18px;
    padding: 20px 10px;
  }
  .accounts__th strong, .accounts__th b {
    font-size: 22px;
  }
  .accounts__tbody tr:last-child td {
    padding: 20px 10px;
  }
  .accounts__tbody td:nth-child(1) {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1299px) {
  .accounts {
    padding-left: 0;
    padding-right: 0;
  }
  .accounts__th {
    font-size: 20px;
    padding: 20px;
  }
  .accounts__th strong, .accounts__th b {
    font-size: 24px;
  }
  .accounts__tbody tr:last-child td {
    padding: 20px;
  }
  .accounts__tbody td:nth-child(1) {
    padding-right: 40px;
    min-width: 300px;
  }
  .accounts__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .accounts {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .accounts__table {
    padding: 0;
  }
  .accounts__tr {
    border: none;
  }
  .accounts__td {
    min-width: 300px;
    position: relative;
    padding: 10px 20px;
    padding-right: 40px;
    height: 80px;
  }
  .accounts__td img {
    top: 10px;
  }
  .accounts__td:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 0;
    content: "";
    background-color: var(--blue);
    z-index: -1;
  }
  .accounts__td:after {
    position: absolute;
    top: -15px;
    left: 50px;
    right: 70px;
    height: 40px;
    content: attr(data-title);
    font-weight: 500;
    font-size: 13px;
    opacity: 0.45;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .accounts__tbody tr:last-child td {
    padding: 0 20px 20px;
    padding-right: 40px;
  }
  .accounts__tbody td:nth-child(1) {
    display: none;
  }
  .accounts__tbody td:nth-child(2n) {
    background-color: transparent;
  }
  .accounts__th {
    min-width: 300px;
    padding-right: 40px;
    position: relative;
  }
  .accounts__th:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 0;
    content: "";
    background-color: var(--blue);
    z-index: -1;
  }
  .accounts__th:nth-child(1) {
    display: none;
  }
  .accounts__th:nth-child(2n) {
    background-color: transparent;
  }
}
.web-platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 58px 100px 52px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: var(--blue);
  color: #fff;
}
.web-platform__mockup {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 563px;
  position: relative;
}
.web-platform__mockup:before {
  position: absolute;
  content: "";
  width: 595px;
  height: 550px;
  background-color: var(--light-blue);
  opacity: 0.78;
  rotate: 13.461deg;
  border-radius: 50%;
  top: 50%;
  translate: 0 -50%;
  left: 50px;
  -webkit-filter: blur(149px);
          filter: blur(149px);
}
.web-platform__mockup img {
  height: 100%;
  width: auto;
  position: relative;
}
.web-platform__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 690px;
  margin-right: 60px;
  position: relative;
  top: -15px;
  z-index: 2;
}
.web-platform__text {
  margin-top: 60px;
  max-width: 684px;
}
.web-platform__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  margin-right: -20px;
}
.web-platform__actions .btn {
  border-radius: 10em;
  margin-right: 20px;
  padding: 25px 50px;
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.web-platform__actions .btn:before, .web-platform__actions .btn:after {
  display: none;
}
.web-platform__actions .btn svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.web-platform__actions .btn:hover {
  background-color: var(--light-blue);
  color: #fff;
}
.web-platform__actions .btn:hover svg path {
  fill: #fff;
}

.mobile-platform {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mobile-platform__mockup {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-platform__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 800px;
  margin-left: 47px;
  position: relative;
  top: 35px;
}
.mobile-platform__text {
  margin-top: 60px;
}
.mobile-platform__btn {
  margin-top: 60px;
}

@media only screen and (max-width: 1699px) {
  .web-platform {
    padding-left: 90px;
    padding-right: 90px;
  }
  .web-platform__info {
    width: 550px;
    margin-right: 0;
  }
  .mobile-platform__info {
    width: 550px;
    top: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .web-platform {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 90px;
  }
  .web-platform__info {
    width: 100%;
    margin-right: 0;
  }
  .web-platform__text {
    margin-top: 40px;
    max-width: 100%;
  }
  .web-platform__actions {
    margin-top: 40px;
  }
  .web-platform__mockup {
    margin-top: 75px;
    height: auto;
    margin-left: -20px;
    margin-right: -20px;
  }
  .web-platform__mockup:before {
    left: 50%;
    translate: -50% -50%;
  }
  .mobile-platform {
    margin-top: 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mobile-platform__info {
    width: 100%;
    margin-left: 0;
  }
  .mobile-platform__text {
    margin-top: 40px;
  }
  .mobile-platform__btn {
    margin-top: 40px;
  }
  .mobile-platform__mockup {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .web-platform__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
  }
  .web-platform__actions .btn {
    margin: 0 10px 20px;
  }
  .web-platform__mockup:before {
    translate: 0%;
    bottom: -50px;
    top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .web-platform {
    padding: 50px 40px;
  }
  .web-platform__text {
    margin-top: 30px;
  }
  .web-platform__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .web-platform__actions .btn {
    margin: 0;
  }
  .web-platform__actions .btn + .btn {
    margin-top: 20px;
  }
  .web-platform__mockup {
    margin-top: 35px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .mobile-platform {
    margin-top: 50px;
  }
  .mobile-platform__text {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .mobile-platform__mockup {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}
.education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
	-ms-flex-wrap: wrap;
        flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -20px;
}
.education__item {
  background-color: var(--blue);
  padding: 50px;
  margin: 0 10px 20px;
  width: calc(33.33% - 20px);
  aspect-ratio: 0.988;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.education__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.education__item-more {
  font-size: 15px;
  margin-top: 30px;
  border: 1px solid #fff;
  width: 53px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  background-image: url("./img/arrow-more-white.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  border-radius: 10em 10em 10em 0;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}
.education__item-more span {
  opacity: 0;
  visibility: hidden;
  color: var(--text-color);
}

@media (hover) {
  .education__item:hover .education__item-more {
    width: auto;
    padding: 0 30px;
    border-color: #fff;
    background-color: #fff;
    background-image: none;
  }
  .education__item:hover .education__item-more span {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .education__item {
    padding: 40px;
  }
  .education__item-more {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .education {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .education__item {
    width: 100%;
    max-width: 526px;
    margin: 0;
  }
  .education__item + .education__item {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .education__item {
    padding: 30px;
  }
  .education__item-more {
    margin-top: 20px;
  }
}
.analytics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -20px;
}
.analytics__item {
  background-color: var(--blue);
  padding: 50px;
  margin: 0 10px 20px;
  width: calc(25% - 20px);
  aspect-ratio: 0.733;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.analytics__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.analytics__item-more {
  font-size: 15px;
  margin-top: 30px;
  border: 1px solid #fff;
  width: 53px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  background-image: url("./img/arrow-more-white.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  border-radius: 10em 10em 10em 0;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}
.analytics__item-more span {
  opacity: 0;
  visibility: hidden;
  color: var(--text-color);
}

@media (hover) {
  .analytics__item:hover .analytics__item-more {
    width: auto;
    padding: 0 30px;
    border-color: #fff;
    background-color: #fff;
    background-image: none;
  }
  .analytics__item:hover .analytics__item-more span {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .analytics__item {
    padding: 40px;
  }
  .analytics__item-more {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .analytics {    
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .analytics__item {
    width: calc(50% - 20px);
    max-width: 390px;
  }
}
@media only screen and (max-width: 767px) {
  .analytics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .analytics__item {
    width: 100%;
    max-width: 526px;
    padding: 50px;
    margin: 0;
  }
  .analytics__item + .analytics__item {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .analytics__item {
    padding: 30px;
  }
  .analytics__item-more {
    margin-top: 20px;
  }
}
.offer-section {
  background-color: var(--blue);
  padding: 50px 80px;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}
.offer__text {
  font-size: 20px;
  font-weight: 700;
  max-width: 1200px;
  display: inline-block;
}

@media only screen and (max-width: 1199px) {
  .offer-section {
    padding: 40px;
  }
  .offer__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .offer-section {
    padding: 20px;
  }
  .offer__text {
    font-size: 14px;
  }
}
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
  width: 780px;
  position: relative;
  z-index: 2;
  padding: 160px 0 200px;
}
.banner__text {
  margin-top: 60px;
}
.banner__image {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  pointer-events: none;
}
@media only screen and (min-width: 2000px) {
  .banner__image {
    left: auto;
    right: calc(50% - 50px);
  }
}
@media only screen and (max-width: 1699px) {
  .banner__info {
    padding: 150px 0;
    width: 700px;
  }
  .banner__image {
    left: -30px;
    max-width: 60%;
  }
}
@media only screen and (max-width: 1499px) {
  .banner__info {
    padding: 100px 0;
  }
  .banner__image {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1299px) {
  .banner__image {
    max-width: 45%;
  }
}
@media only screen and (max-width: 1199px) {
  .banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-section {
    padding-top: 60px;
  }
  .banner__info {
    width: 100%;
    padding: 0;
  }
  .banner__text {
    margin-top: 40px;
  }
  .banner__image {
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section {
    padding-top: 40px;
  }
  .banner__text {
    margin-top: 30px;
  }
  .banner__text p {
    margin: 20px 0;
  }
}
.safety-section {
  position: relative;
  overflow: hidden;
  background-color: var(--blue);
  color: #fff;
  padding: 100px 0;
}
.safety__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% - 600px);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left center;
  overflow: hidden;
  pointer-events: none;
}
.safety__info {
  max-width: 684px;
  position: relative;
  z-index: 2;
}
.safety__info strong {
  font-weight: 700;
}
.safety__text {
  margin-top: 60px;
}
.safety__btn {
  margin-top: 60px;
}

@media only screen and (max-width: 1699px) {
  .safety__bg {
    left: calc(50% - 300px);
    background-size: auto 1000px;
  }
}
@media only screen and (max-width: 1499px) {
  .safety__bg {
    left: calc(50% - 250px);
    background-size: auto 870px;
  }
}
@media only screen and (max-width: 1199px) {
  .safety-section {
    padding: 90px 0;
    padding-bottom: 400px;
  }
  .safety__info {
    max-width: 100%;
  }
  .safety__text {
    margin-top: 40px;
  }
  .safety__btn {
    margin-top: 40px;
  }
  .safety__bg {
    left: 0;
    top: auto;
    bottom: 0;
    right: 0;
    height: 400px;
    background-size: auto 700px;
    background-position: center;
  }
}
@media only screen and (max-width: 575px) {
  .safety-section {
    padding: 50px 0;
    padding-bottom: 300px;
  }
  .safety__text {
    margin-top: 30px;
  }
  .safety__btn {
    margin-top: 30px;
  }
  .safety__bg {
    background-size: auto 480px;
    height: 300px;
  }
}
.goal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.goal-section {
  position: relative;
  margin: 80px 0;
}
.goal__image {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  margin-right: 90px;
  position: relative;
}
.goal__image:before, .goal__image:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  aspect-ratio: 1.08;
  z-index: -1;
  -webkit-filter: blur(149px);
          filter: blur(149px);
}
.goal__image:before {
  width: 65%;
  background-color: #0C71FF;
  opacity: 0.17;
  top: 0;
  left: 2%;
}
.goal__image:after {
  width: 45%;
  background-color: #1A8AFF;
  opacity: 0.33;
  right: 9%;
  bottom: 14%;
}
.goal__info {
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: 800px;
}
.goal__text {
  margin-top: 60px;
}
.goal__btn {
  margin-top: 60px;
}

@media only screen and (max-width: 1699px) {
  .goal__info {
    width: 700px;
  }
  .goal__image {
    left: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .goal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .goal__image {
    width: auto;
    margin: 40px 0 0;
  }
  .goal__info {
    width: 100%;
  }
  .goal__text {
    margin-top: 40px;
  }
  .goal__btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .goal-section {
    margin: 50px 0;
  }
  .goal__text {
    margin-top: 30px;
  }
  .goal__btn {
    margin-top: 30px;
  }
}
.our {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 95px -10px 0;
}
.our-section {
  margin: 80px 0;
}
.our__item {
  width: calc(33.33% - 20px);
  margin: 0 10px;
  background: #F4F7FB;
  padding: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.our__item-icon {
  width: 52px;
  height: 52px;
}
.our__item-title {
  margin-top: 39px;
  font-size: 22px;
  font-weight: 700;
}
.our__item-text {
  margin-top: 39px;
}

@media only screen and (max-width: 1199px) {
  .our {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 60px 0 0;
  }
  .our__item {
    width: 100%;
    margin: 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our__item + .our__item {
    margin-top: 20px;
  }
  .our__item-text {
    max-width: 426px;
  }
}
@media only screen and (max-width: 575px) {
  .our-section {
    margin: 50px 0;
  }
  .our__item {
    padding: 50px 40px;
  }
}
.objective-section {
  position: relative;
  overflow: hidden;
  background-color: var(--light-blue);
  color: #fff;
  padding: 100px 0;
  margin-top: 100px;
  margin-bottom: -102px;
}
.objective-section .h2 span {
  color: var(--blue);
}
.objective__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% - 50px);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left center;
  overflow: hidden;
  pointer-events: none;
}
.objective__info {
  max-width: 684px;
  position: relative;
  z-index: 2;
}
.objective__info strong {
  font-weight: 700;
}
.objective__text {
  margin-top: 60px;
}

@media only screen and (max-width: 1699px) {
  .objective-section {
    margin-bottom: -92px;
  }
  .objective__bg {
    left: 50%;
  }
}
@media only screen and (max-width: 1499px) {
  .objective__bg {
    left: calc(50% + 100px);
    background-size: auto 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .objective-section {
    margin-top: 90px;
    padding: 90px 0;
  }
  .objective__info {
    max-width: 100%;
  }
  .objective__text {
    margin-top: 40px;
  }
  .objective__bg {
    left: 0;
    top: 50px;
    bottom: 50px;
    right: 0;
    background-size: contain;
    background-position: center;
    opacity: 0.3;
  }
}
@media only screen and (max-width: 575px) {
  .objective-section {
    margin-top: 50px;
    margin-bottom: -52px;
    padding: 50px 0;
  }
  .objective__text {
    margin-top: 30px;
  }
}
.contacts-section {
  padding-bottom: 0;
}
.contacts-items {
  background-color: var(--blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px;
  color: #fff;
}
.contacts-item {
  margin-right: 200px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
}
.contacts-item:last-child {
  margin-right: 0;
}
.contacts-item__icon {
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
}
.contacts-item__title {
  font-size: 20px;
  font-weight: 600;
}
.contacts-item__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts-item__text a {
  color: #fff;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  white-space: nowrap;
}
.contacts-item__text a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
}

@media only screen and (max-width: 1699px) {
  .contacts-item {
    margin-right: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .contacts-item {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .contacts-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts-item {
    margin-right: 0;
    margin-bottom: 70px;
  }
  .contacts-item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .contacts-items {
    padding: 50px;
  }
  .contacts-item {
    margin-bottom: 50px;
  }
  .contacts-item__text {
    margin-top: 20px;
  }
}
.extensions {
  background-color: var(--blue);
  padding: 100px 120px;
}
.extensions__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: -60px;
}
.extensions__item {
  width: 300px;
  height: 110px;
  margin: 0 30px 60px;
  padding: 26px 50px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
}
.extensions__item:hover {
  background-color: var(--light-blue);
}

@media only screen and (max-width: 1199px) {
  .extensions {
    padding: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .extensions {
    padding: 100px 20px;
  }
  .extensions__item {
    width: 100%;
    max-width: 300px;
  }
}
.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.legal__tabs {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.legal__tab {
  padding: 0px 40px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  border-radius: 10em 10em 10em 0;
  font-size: 16px;
  font-weight: 600;
}
.legal__tab + .legal__tab {
  margin-top: 10px;
}
.legal__tab.active {
  background-color: var(--light-blue);
  color: #fff;
  pointer-events: none;
}
.legal__tab-cnt {
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.legal__tab-cnt.visible {
  display: block;
}
.legal__tab-cnt.fade-in {
  opacity: 1;
  visibility: visible;
}
.legal__tab-cnt-block + .legal__tab-cnt-block {
  margin-top: 60px;
}
.legal__tab-cnt-block h3 {
  margin: 0;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
.legal__tab-cnt-block p {
  margin: 20px 0;
}
.legal__tab-cnt-block p b, .legal__tab-cnt-block p strong {
  font-weight: 500;
}
.legal__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.legal__contacts-text {
  font-weight: 500;
  margin-bottom: 30px;
}
.legal__contacts .contact {
  font-weight: 500;
}
.legal__contacts .contact + .contact {
  margin-top: 30px;
}
.legal__contacts .contact a {
  color: var(--text-color);
}
.legal__contacts .contact a:hover {
  text-decoration-color: var(--text-color);
}

@media (hover) {
  .legal__tab:hover {
    background-color: #F4F7FB;
  }
}
@media only screen and (max-width: 1199px) {
  .legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .legal__tabs {
    width: 100%;
    margin-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -10px;
    margin-bottom: -10px;
    margin-bottom: 50px;
  }
  .legal__tab {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #F4F7FB;
  }
  .legal__tab + .legal__tab {
    margin-top: 0;
  }
  .legal__tab-cnt-block + .legal__tab-cnt-block {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .legal__tabs {
    margin-bottom: 40px;
  }
  .legal__tab {
    padding: 0px 30px;
    height: 46px;
    font-size: 13px;
  }
  .legal__tab-cnt {
    font-size: 14px;
  }
  .legal__tab-cnt-block h3 {
    font-size: 24px;
  }
  .legal__tab-cnt-block + .legal__tab-cnt-block {
    margin-top: 40px;
  }
  .legal__contacts-text {
    font-size: 14px;
  }
}
.review {
  padding: 50px 30px;
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #F4F7FB;
}
.review__photo {
  width: 140px;
  height: 140px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.review__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.review__name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
  white-space: nowrap;
}
.review__text {
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 290px;
}
.review__btn {
  margin-top: auto;
  padding: 15px 30px;
  font-size: 15px;
}
.review__stars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 25px;
}
.review__star--no-star {
  opacity: 0.3;
}

.reviews {
  margin: 0 -10px -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}

@media only screen and (max-width: 1699px) {
  .reviews {
    margin-top: 40px;
  }
  .reviews-section .h2 {
    font-size: 36px;
  }
  .review {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .review {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .reviews {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .review {
    width: calc(100% - 20px);
    max-width: 390px;
  }
}
@media only screen and (max-width: 575px) {
  .reviews {
    margin-top: 30px;
  }
  .reviews-section .h2 {
    font-size: 24px;
  }
}