/*--------------------*/
/* - FONTS            */
/*--------------------*/
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@200;300;400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

/*--------------------*/
/* - CUSTOM PRELOADER */
/*--------------------*/
#loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--color-white);
  -webkit-animation: loader 1s linear;
  animation: loader 1s linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
  0% {
      opacity: 1;
  }
  70% {
      opacity: 1;
  }
  99% {
      opacity: 0;
  }
  100% {
      display: none;
      visibility: hidden;
      z-index: -10;
      opacity: 0;
  }
}

@keyframes loader {
  0% {
      opacity: 1;
  }
  70% {
      opacity: 1;
  }
  99% {
      opacity: 0;
  }
  100% {
      display: none;
      visibility: hidden;
      z-index: -10;
      opacity: 0;
  }
}

/*--------------------*/
/* - RESET */
/*--------------------*/
html {
  overflow-y: scroll;
}

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

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -webkit-locale: auto;
}

.clear {
  clear: both;
  overflow: hidden;
  height: 0;
  font-size: 0;
  display: block;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) ::-webkit-scrollbar-track {
  background: var(--color-blue_light-alt);
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) ::-webkit-scrollbar-thumb {
  background: var(--color-main);
}

body ::-moz-selection {
  color: #fff;
  background: var(--color-blue_light);
}

body ::selection {
  color: #fff;
  background: var(--color-blue_light);
}

body ::-moz-selection {
  color: #fff;
  background: var(--color-blue_light);
}

:focus,
:hover,
:active,
:visited {
  outline: none;
}

button {
  background: none;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  color: inherit;
  -webkit-transition: var(--transition-1);
  transition: var(--transition-1);
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

picture {
  font-size: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------*/
/* - GLOBAL SETTINGS  */
/*--------------------*/
:root {
  --color-main: #0065a3;
  --color-blue_light: #5192d5;
  --color-blue_light-alt: #9ac9e6;
  --color-blue_dark: #003b74;
  --color-green: #00ad68;
  --color-green_dark: #00795f;
  --color-green_light: #9ae6c7;
  --color-orange: #ff8049;
  --color-orange_light: #ffb177;
  --color-white: #ffffff;
  --color-charcoal: #333132;
  --color-charcoal_light: #5c5a5b;
  --transition: all 0.3s ease-in-out;
  --transition2: all 0.3s linear;
  --font2: "Archivo", sans-serif;
}

html {
  height: auto;
  -webkit-font-smoothing: antialiased;
}

html.keyboard-focus:focus {
  outline: auto;
}

html.overflow-menu {
  overflow: hidden;
}

body {
  height: auto;
  overflow: hidden;
  background: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-blue_dark);
}

#content-block {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  margin-top: 114px;
}

footer {
  margin-top: auto;
}

.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}

/*spacer*/
.spacer {
  clear: both;
}

.spacer-xxl {
  height: 130px;
}

.spacer-xl {
  height: 100px;
}

.spacer-lg {
  height: 90px;
}

.spacer-md {
  height: 80px;
}

.spacer-sm {
  height: 70px;
}

.spacer-s {
  height: 60px;
}

/*media*/
@media (max-width: 1560px) {
  main {
      margin-top: 90px;
  }
  
  .spacer-xxl {
    height: 100px;
  }

  .spacer-xl {
    height: 80px;
  }

  .spacer-lg {
    height: 70px;
  }

  .spacer-md {
    height: 60px;
  }

  .spacer-sm {
    height: 50px;
  }

  .spacer-s {
    height: 40px;
  }
}

@media (max-width: 1199px) {
  main {
      margin-top: 70px;
  }

  .spacer {
      height: 60px;
  }
}

/*end spacer*/

.swiper-slide:not(:first-child) {
  display: block;
}

.swiper-container {
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-container.swiper-initialized {
  opacity: 1;
}

/*image styles*/
.img_wrapp {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}

.img_wrapp img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
      object-position: center;
}

.img_wrapp2 {
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.img_wrapp2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

/* media */
@media (min-width: 992px) {
  .scale:hover img {
      -webkit-transform: scale(1.02);
              transform: scale(1.02);
  }
}

/*end image styles*/

/* typography */
b,
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: inherit;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

iframe {
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

picture {
  font-size: 0;
}

img {
  position: relative;
  max-width: 100%;
  height: auto;
  -webkit-transition: var(--transition2);
  transition: var(--transition2);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ededed;
  background-image: url(../img/default-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-blue_dark);
}

.text.text-xl {
  font-size: clamp(22px, 2.05vw, 32px);
  line-height: 1.5;
}

.text.text-lg {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
}

.text.text-sm {
  font-size: 16px;
  line-height: 1.4;
}

.text.text-bold {
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-main);
}

.text * {
  margin-bottom: 28px;
}

.text :last-child,
.text.no-margin * {
  margin-bottom: 0;
}

.text img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text ul li,
.text ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.text ul li ul,
.text ol li ol {
  margin-top: 10px;
}

.text ul li:before {
  content: "";
  position: absolute;
  border-radius: 100%;
  left: 10px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--color-blue_dark);
}

.text ol {
  counter-reset: number;
}

.text ol li {
  padding-left: 20px;
}

.text ol li:before {
  font-weight: inherit;
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
}

.text ul li:last-child,
.text ol li:last-child {
  margin-bottom: 0;
}

.text ul li span,
.text ol li span {
  font-weight: 600;
}

.text a:not(.btn) {
  position: relative;
  color: var(--color-main);
  cursor: pointer;
  white-space: pre-wrap;
}

.text a:not(.btn)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-main);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.ul-two-column {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

blockquote {
  position: relative;
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-blue_dark);
  padding: 20px 0 20px 40px;
}

blockquote::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--color-orange);
  position: absolute;
  left: 0;
  top: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font2);
  color: var(--color-blue_dark);
  font-weight: 200;
  line-height: 1;
}

h1,
.h1 {
  font-size: clamp(48px, 5vw, 98px);
}

h2,
.h2 {
  font-size: clamp(34px, 3.8vw, 72px);
  line-height: 1.06;
}

.h2-sm {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--color-green_dark);
}

h3,
.h3 {
  font-size: clamp(34px, 3.8vw, 68px);
  line-height: 1.15;
}

h4,
.h4 {
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1.3;
}

h5,
.h5 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.3;
}

h6,
.h6 {
  font-size: clamp(28px, 2.4vw, 32px);
  line-height: 1.3;
}

.subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.text-truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-line-1 {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-2 {
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-3 {
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-4 {
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-5 {
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-6 {
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-8 {
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

/* media */
@media (min-width: 992px) {
  .text a:not(.btn):hover::after {
      width: 0;
  }
}

@media (max-width: 1199px) {
  .hide-md {
      display: none !important;
  }

  .text {
      font-size: 18px;
      line-height: 22px;
  }

  .text ul li:before {
      top: 9px;
  }

  blockquote {
      padding: 10px 0 10px 20px;
  }
}

@media (max-width: 991px) {
  .hide-sm {
      display: none !important;
  }

  .text * {
      margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  br {
      display: none;
  }

  .ul-two-column {
      -webkit-column-gap: 20px;
      -moz-column-gap: 20px;
      column-gap: 20px;
  }

  .text-line-1,
  .text-line-2,
  .text-line-3,
  .text-line-4,
  .text-line-5 {
      -webkit-line-clamp: inherit;
  }
}

/* end typography */

/* container styles */
@media (min-width: 1200px) {
  .container {
      max-width: 86%;
  }
}
@media (min-width: 2000px) {
  .container {
      max-width: 2196px;
  }
}

@media (min-width: 1200px) and (max-width: 1750px) {
  .container {
      max-width: 1716px;
      padding-left: 60px;
      padding-right: 60px;
  }
}

/* end container styles */

/* colors */
.color_red {
  color: var(--color-red);
}

.color_text {
  color: var(--color-text);
}

.color_black {
  color: var(--color-black);
}

.color_white {
  color: var(--color-white);
}

/* end colors */

/* button styles */
.btn {
  font-family: var(--font2);
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  background: var(--color-orange);
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  font-size: 18px;
  letter-spacing: 0.01em;
  padding: 24px 35px 24px 63px;
  min-width: 284px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  border: solid 2px var(--color-orange);
}

.btn .icon {
  width: 20px;
  height: 22px;
  background-image: url("../img/icons/book-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn.type-form .icon {
  width: 26px;
  height: 20px;
  background-image: url("../img/icons/send-icon.svg");
}

.btn.big {
  height: 100%;
  font-size: 22px;
  padding: 24px 20px 24px 52px;
  min-width: 302px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.btn.type-next {
  min-width: 220px;
  padding: 24px 24px;
}

.btn.type-next i {
  position: relative;
  padding-right: 22px;
}

.btn.type-next i::after {
  content: '';
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.btn.type-2 {
  padding: 24px 35px;
}

.btn.big .icon {
  left: 26px;
}

.btn-link {
  position: relative;
  font-family: var(--font2);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-main);
  padding-bottom: 8px;
}

.btn-link::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-prev {
  position: relative;
  font-family: var(--font2);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: var(--color-main);
  padding-left: 22px;
}

.btn-prev::before {
  content: '';
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--color-main);
  border-left: 1px solid var(--color-main);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.btn-prev.white {
  color: var(--color-white);
  font-weight: 500;
}

.btn-prev.white::before {
  border-color: var(--color-white);
}

/* media */
@media (min-width: 992px) {
  .btn:hover {
      /* background: var(--color-orange);
      border-color: var(--color-orange); */
      background: var(--color-main);
      border-color: var(--color-main);
  }

  .btn-link:hover {
      color: var(--color-orange);
  }

  .btn-link:hover::after {
      width: 0;
  }

  .btn-prev:hover {
      color: var(--color-orange);
  }

  .btn-prev:hover::before {
      border-color: var(--color-orange);
  }
}

@media (max-width: 1199px) {
  .btn.big {
      font-size: 18px;
      padding: 24px 35px 24px 63px;
      min-width: 284px;
  }

  .btn.big .icon {
      left: 35px;
  }
}

@media (max-width: 991px) {
  .btn.big {
      display: inline-block;
      height: auto;
  }
}

/* end button styles */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background-color: var(--color-white);
}

.header_inner {
  height: 114px;
  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;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.header.scrolled .header_inner {
  height: 90px;
}

.header #logo {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  max-width: 160px;
  width: 100%;
}
.header #logo img {
  display: block;
  width: 100%;
}

.header.scrolled #logo {
  max-width: 100px;
}

.toggle-block {
  height: 100%;
}

.steps-page .toggle-block {
  display: none;
}

.steps_close {
  display: none;
}

.steps-page .header_inner .steps_close {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
}

.steps-page .header_inner .steps_close::before {
  content: '';
  width: 42px;
  height: 1px;
  background-color: var(--color-charcoal_light);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.steps-page .header_inner .steps_close::after {
  content: '';
  width: 42px;
  height: 1px;
  background-color: var(--color-charcoal_light);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.toggle-block .inner {
  position: relative;
  padding: 0 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.nav {
  margin-right: 160px;
}

.nav ul {
  font-size: 0;
}

.nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 70px;
}

.nav ul li a {
  position: relative;
}

.nav ul li a::after {
  content: "";
  height: 2px;
  background-color: var(--color-blue_dark);
  width: 0;
  position: absolute;
  left: 0;
  bottom: -3px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.nav ul li.active a::after {
  width: 100%;
}

.nav ul li:last-child {
  margin: 0;
}

.nav ul a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font2);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.12;
  color: var(--color-blue_dark);
}

.nav-wrapp > ul:first-of-type > li.active a:not(.btn) {
  color: var(--color-red);
}

.mobile-button {
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  z-index: 101;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--color-main);
}

.mobile-button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -13px;
  background: var(--color-white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-button:before,
.mobile-button:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  margin-left: -13px;
  background: var(--color-white);
  margin-top: 6.5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-button:before {
  margin-top: -9.5px;
}

.mobile-button.active:before,
.mobile-button.active:after {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.mobile-button.active:after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.mobile-button.active span {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  opacity: 0;
}

header .contact_detail,
header .social {
  display: none;
}

/* media */
@media (min-width: 992px) {
  #logo:hover img {
      opacity: 0.8 !important;
  }

  .nav ul li:hover a::after {
      width: 100%;
  }

  .steps-page .header_inner .steps_close:hover::before,
  .steps-page .header_inner .steps_close:hover::after {
      background-color: var(--color-orange);
  }
}

@media (max-width: 1560px) {
  .header_inner {
      height: 90px;
  }

  .header #logo {
      max-width: 110px;
  }

  .header.scrolled #logo {
      max-width: 100px;
  }

  .header.scrolled .header_inner {
      height: 70px;
  }

  .nav {
      margin-right: 100px;
  }

  .nav ul li {
      margin-right: 40px;
  }

  .nav ul a {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .nav ul a {
      font-size: 20px;
  }

  .header_inner,
  .header.scrolled .header_inner {
      height: 70px;
  }

  .nav ul li {
      margin-right: 30px;
  }

  .nav {
      margin-right: 40px;
  }

  .header #logo,
  .header.scrolled #logo {
      max-width: 92px;
  }
}

@media (max-width: 991px) {
  header {
    -webkit-box-shadow: inset 0px -0.5px 0px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0px -0.5px 0px rgba(0, 0, 0, 0.1);
  }

  header.open-menu .layer-close {
    top: 70px;
  }

  .nav {
    margin-right: 0;
    margin-bottom: 26px;
  }

  .toggle-block {
    display: block;
    width: 100%;
    left: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    position: fixed;
    top: 70px;
    height: calc(100vh - 70px);
    height: calc((var(--vh, 1vh) * 100) - 70px);
    background: var(--color-white);
    padding: 15px 16px;
    text-align: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 101;
    overflow: hidden;
  }

  header.open-menu .toggle-block {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .toggle-block::before {
    content: "";
    width: 64px;
    height: 140px;
    background-image: url("../img/icons/header-ellipse-1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    z-index: -1;
  }

  .toggle-block::after {
    content: "";
    width: 66px;
    height: 90px;
    background-image: url("../img/icons/header-ellipse-2.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .toggle-block .inner {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden auto;
    padding: 0;
  }

  .nav ul li {
      display: block;
      margin: 0 0 26px;
  }

  .nav ul a {
      font-family: "IBM Plex Sans", sans-serif;
      font-size: 32px;
      line-height: 1.3;
      font-weight: 400;
  }

  .mobile-button {
      display: block;
  }

  header .btn.big {
      margin-bottom: 44px;
  }

  header .contact_detail {
      margin: 0 auto 24px;
      display: block;
  }

  header .social {
      display: block;
  }

  .steps-page .mobile-button {
      display: none;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  header {
      position: relative;
  }

  header + * {
      margin-top: 0;
  }

  .toggle-block {
      padding: 0 0 40px;
  }
}

/* end header */

/* BANNER */
.bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.parallax-bg {
  overflow-y: hidden;
}

.parallax-bg .bg {
  position: absolute;
  width: 100%;
  height: 130%;
  top: -10%;
}

.banner {
  position: relative;
}

.banner:not() + * {
  margin-top: 30px;
}

.banner + .sec-full-width {
  margin-top: 0;
}

.banner-align {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 10000px;
  padding: 15px 0;
  height: 350px;
  z-index: 1;
  overflow: hidden;
}

.banner-align.align-top {
  vertical-align: top;
}

.banner-content {
  position: relative;
}

.banner-content > * {
  margin-bottom: 40px;
}

.banner-content > *:last-child {
  margin-bottom: 0;
}

.banner-align .bg.mobile {
  display: none;
}

.video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  clip: rect(auto, auto, auto, auto);
  display: none;
}

.video video {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-present .video {
  display: block;
  overflow: hidden;
}

/*media*/
@media (max-width: 1560px) {
  .banner-content > * {
      margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .banner-align .bg:not(.mobile) {
      display: none;
  }

  .banner-align .bg.mobile {
      display: block;
  }

  .banner-content > * {
      margin-bottom: 15px;
  }

  .banner + * {
      margin-top: 50px;
  }
}

/* btn wr */
.btn_wr {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn_wr > *:first-child {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .btn_wr {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      max-width: 284px;
  }

  .btn_wr > *:first-child {
      margin-right: 0;
      margin-bottom: 40px;
  }
}

/* home banner */
.home_banner {
  position: relative;
  padding-top: 78px;
}

.home_banner::before {
  content: "";
  width: 314px;
  height: 540px;
  background-image: url("../img/icons/home-bg-icon-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 8px;
  z-index: -1;
}

.home_banner::after {
  content: "";
  width: 202px;
  height: 260px;
  background-image: url("../img/icons/home-bg-icon-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.home_banner .inner {
  max-width: 950px;
  margin-bottom: 100px;
}

.home_banner .title {
  margin-bottom: 30px;
}

.home_banner .text {
  position: relative;
  max-width: 760px;
  margin-bottom: 22px;
}
.home_banner .text * {
  margin-bottom: 15px;
}

.home_banner .text.text-xl {
  font-size: 26px;
}

.home_img-inner {
  max-width: 75vw;
  margin-left: auto;
  position: relative;
  z-index: -1;
  margin-top: -19.5%;
}

.home_img-inner .img_wrapp {
  padding-bottom: 64.3205574912892%;
}

@media (max-width: 1560px) {
  .home_banner {
    padding-top: 40px;
  }

  .home_img-inner {
    max-width: 64vw;
    margin-top: -23.5%;
  }

  .home_banner .text.text-xl {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .home_banner::before {
      width: 138px;
      height: 220px;
      top: 30px;
  }

  .home_banner::after {
      width: 100px;
      height: 120px;
  }

  .home_banner .inner {
      margin-bottom: 0;
  }

  .home_img-inner {
      display: none;
  }

  .home_banner .text.text-xl {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .home_banner .title {
      margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .home_banner::after {
      content: none;
  }

  .home_banner .text::after {
      content: "";
      width: 50px;
      height: 120px;
      background-image: url("../img/icons/home-bg-icon-3.svg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 100% 100%;
      position: absolute;
      right: -16px;
      bottom: 0;
      -webkit-transform: translateY(30%);
              transform: translateY(30%);
      z-index: -1;
  }
}