:root {
  --main-font: "Manrope";
  --sub-title: #616161;
  --black: #000;
  --white: #fff;
  --mainTextColor: #121212;
  --primary: #18202e;
  --icon-color: #3d86ab40;
  --icon-gray: #bdc7d8;
  --border-color: #0157b0;
  --border-gray: #e3e3e3;
  --accent-color: #e8a800;
}

html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: var(--sub-title);
  background: var(--white);
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: var(--white);
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 118%;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: var(--main-font);
}

h2 {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.9);
}

h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #000000;
}

.button {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 16px 24px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.button.primary {
  background: #003973;
  border: 1px solid #0157b0;
  box-shadow: inset 0px 15px 16px 0px #105ead;
  border-radius: 24px;
  color: var(--white);
}
.button.primary:hover {
  box-shadow: unset;
}
.button.secondary {
  background: #ffffff;
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  color: #000;
}
.button.gold {
  background: #e8a800;
  border: 0.5px solid #e8a800;
  box-shadow: inset 0px 4px 4px #cba62c;
  border-radius: 24px;
  color: #000;
}

@media (max-width: 1250px) {
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 840px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 18px;
  }
}
#contact-form-result {
  padding: 0 20px;
}

#cookie-bar {
  background: #080d17 !important;
}

#cookie-bar-button {
  background: #013972 !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 24px 0;
  z-index: 100;
}
.header.sticky {
  animation: sticky 0.2s linear;
  background: #18202e;
  padding: 16px 0;
  position: fixed;
}
.header.black {
  background: #000;
}
.header.black.sticky {
  background: #000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__inner-action {
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__inner-logo {
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__inner-logo img {
  width: 100%;
  max-width: 147px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__inner-head {
  display: none;
}
.nav__inner-links {
  display: flex;
  padding: 10px 24px;
  align-items: center;
}
.nav__inner-links a {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  margin-right: 24px;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.nav__inner-links a.gold {
  color: var(--accent-color);
}
.nav__inner-links a:hover {
  color: var(--accent-color);
}
.nav__inner-links a.active {
  color: var(--accent-color);
}
.nav__inner-links a:last-child {
  margin-right: 0;
}

@keyframes sticky {
  0% {
    top: -30px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.burger {
  display: none;
}

@media (max-width: 1250px) {
  .header__inner-logo {
    width: 150px;
  }
  .header__inner-action {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .header {
    animation: sticky 0.2s linear;
    padding: 12px 0 !important;
  }
  .header__inner-action {
    width: unset;
  }
  .header__inner-action .button {
    padding: 8px 16px;
  }
  .header__inner-logo {
    width: 130px;
  }
  .header.black .burger.active::before {
    background: #fff;
  }
  .header.black .burger.active::after {
    background: #fff;
  }
  .header.black .nav__inner {
    background: #000;
  }
  .header.black .nav__inner-links a {
    color: #fff;
    border-bottom: 1px solid #414141;
  }
  .header.black .nav__inner-links a:last-child {
    background: #e8a800;
    border: 0.5px solid #e8a800;
    box-shadow: inset 0px 4px 4px #cba62c;
    border-radius: 24px;
    color: #000;
  }
  body.active {
    overflow: hidden;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transform: translateY(-100%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    overflow-y: auto;
    height: auto;
    background: var(--white);
    flex-direction: column;
  }
  .nav__inner-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
  }
  .nav__inner-logo {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__inner-logo img {
    width: 100%;
  }
  .nav__inner-links {
    padding: 10px 20px;
    flex-direction: column;
    width: 100%;
  }
  .nav__inner-links a {
    padding: 16px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    margin: 0;
  }
  .nav__inner-links a:last-child {
    text-align: center;
    padding: 14px 16px;
    background: #003973;
    border: 0.5px solid #0157b0;
    box-shadow: inset 0px 4px 4px #084b8e;
    border-radius: 9999px;
    margin-top: 20px;
    color: var(--white);
  }
  .burger {
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 20px;
    height: 20px;
    z-index: 10;
    margin-left: 12px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 10%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    right: 0;
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 10%;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    right: 0;
  }
  .burger.active::before {
    width: 100%;
    top: 50%;
    background: var(--black);
    transform: translate(0, -50%) rotate(45deg);
  }
  .burger.active span {
    background: var(--black);
    opacity: 0;
  }
  .burger.active::after {
    width: 100%;
    background: var(--black);
    bottom: 50%;
    transform: translate(0, 50%) rotate(-45deg);
  }
}
.footer {
  padding: 64px 0;
  background: #18202e;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.footer__inner-content {
  width: calc(33% - 15px);
  max-width: 376px;
}
.footer__inner-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}
.footer__inner-logo {
  width: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-links {
  width: calc(33% - 15px);
}
.footer__inner-links a {
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.footer__inner-links a:last-child {
  margin-bottom: 0;
}
.footer__inner-links a:hover {
  color: var(--accent-color);
}
.footer__inner-social {
  display: flex !important;
  align-items: center;
  margin-bottom: 16px;
}
.footer__inner-social:last-child {
  margin-bottom: 0;
}
.footer__inner-social svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.footer__inner-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 24px;
}
.footer__copy {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
}
.footer.black {
  background: #000;
}

@media (max-width: 840px) {
  .footer__inner {
    flex-wrap: wrap;
  }
  .footer__inner-content {
    width: 100%;
    margin-bottom: 50px;
    max-width: unset;
  }
  .footer__inner-links {
    width: 50%;
  }
}
@media (max-width: 540px) {
  .footer {
    padding: 48px 0;
  }
  .footer__inner-links {
    margin-bottom: 24px;
    width: 100%;
  }
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

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

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

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

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

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

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

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate(0%, 0%) scale(1.5, 1.5);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1, 1);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate(0%, 0%) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.typing.animated b::before {
  animation: max-height 0.4s cubic-bezier(0.61, 1, 0.88, 1) 1 normal both;
  color: #2c2c2c;
}

.typing.animated b::after {
  animation: max-width 0.7s cubic-bezier(0.61, 1, 0.88, 1) 1 normal both;
  color: #191919;
}

@keyframes max-width {
  from {
    max-width: 0;
  }
  to {
    max-width: 100%;
  }
}
@keyframes max-height {
  from {
    max-height: 0;
  }
  to {
    max-height: 100%;
  }
}
.hero {
  position: relative;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  height: 150%;
  object-position: bottom;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.hero__inner {
  padding: 90px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__inner h1 {
  width: 100%;
  max-width: 715px;
  margin-bottom: 36px;
}
.hero__inner-btns {
  margin-bottom: 50px;
}
.hero__inner-btns .button {
  margin-right: 10px;
}
.hero__inner-btns .button:last-child {
  margin-right: 0;
}
.hero h1 {
  color: var(--white);
  font-weight: 400;
}
.hero h1 span {
  background: linear-gradient(90deg, #e3e3e3 0%, #f9ce44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero.uniq .hero__bg img {
  height: 115%;
}
.hero.uniq .hero__inner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 712px;
  margin: 0 auto;
  white-space: nowrap;
  mask: linear-gradient(to left, #fff, transparent) left/50% 100%, linear-gradient(to right, #fff, transparent) right/50% 100%;
  mask-repeat: no-repeat;
}
.marquee::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  width: 100px;
  height: 100%;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgb(0, 0, 0) 100%);
}
.marquee::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: 1;
  width: 100px;
  height: 100%;
}
.marquee__inner {
  display: inline-block;
}
.marquee span {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #c4c4c4;
}

@media (max-width: 1024px) {
  .hero__bg img {
    object-position: 80%;
  }
  .hero__inner {
    padding: 60px 0;
  }
}
@media (max-width: 540px) {
  .hero.uniq h1 {
    font-size: 36px;
  }
  .hero.uniq p {
    font-size: 16px;
  }
  .hero h1 {
    margin-bottom: 38px;
  }
  .hero__inner-btns {
    flex-direction: column;
    margin-bottom: 45px;
    width: 100%;
  }
  .hero__inner-btns .button {
    margin: 0 0 10px 0;
    width: 100%;
    text-align: center;
  }
  .hero__inner-btns .button:last-child {
    margin-bottom: 0;
  }
}
.about .auto__container {
  height: 200vh; /* your long scroll area - fine */
  position: relative;
  max-width: 840px;
}
.about__inner {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
}
.about h2 {
  margin-bottom: 60px;
}
.about__par {
  display: flex;
  margin-bottom: 60px;
  justify-content: space-between;
}
.about__par-nav {
  width: 170px;
}
.about__par-nav button {
  font-family: var(--suzukiHead);
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #00368f;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  display: block;
  position: relative;
  padding: 3px;
  text-align: left;
  width: 100%;
  background: transparent;
  margin-bottom: 20px;
  z-index: 1;
}
.about__par-nav button:last-child {
  margin-bottom: 0;
}
.about__par-nav button::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  z-index: -1;
  left: -20px;
  border-radius: 0 20px 20px 0;
  width: 0;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: rgba(0, 54, 143, 0.86);
}
.about__par-nav button.active {
  color: #fff;
}
.about__par-nav button.active::before {
  width: calc(100% - 40px);
}
.about__par-main {
  width: calc(100% - 210px);
  height: 520px;
  position: relative;
}
.about__par-item {
  overflow: hidden;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  position: absolute; /* stack all items */
  top: 0;
  left: 0;
  width: 100%;
}
.about__par-item.active {
  pointer-events: auto;
}
.about__par-item-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about__par-item-image img {
  width: 100%;
}
.about__par-item-content ul li {
  font-family: var(--suzukiHead);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--mainTextcolor);
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.about__par-item-content ul li:last-child {
  margin-bottom: 0;
}
.about__par-item-content ul li svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.mfwError {
  border: solid red 1px;
}

.join {
  margin-bottom: 120px;
}
.join .auto__container {
  max-width: 840px;
}
.join h2 {
  margin-bottom: 40px;
}
.join__inner {
  padding: 40px;
  background: #f2f1ec;
}
.join__inner h3 {
  margin-bottom: 30px;
}
.join__inner .button {
  width: 100%;
}
.join p.sm {
  margin-bottom: 15px;
}
.join p.sm:last-child {
  margin-bottom: 0;
}
.join__gallery {
  display: flex;
  height: 380px;
  margin: 30px 0;
}
.join__gallery-main {
  height: 100%;
  width: calc(100% - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.join__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.join__gallery-nav {
  height: 100%;
}
.join__gallery-item {
  height: 33.3%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.needs {
  padding: 100px 0;
}
.needs h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--black);
}
.needs__inner {
  display: flex;
  flex-wrap: wrap;
}
.needs__item {
  padding: 24px;
  width: 20%;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.needs__item::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #f0f0f0;
  opacity: 0;
  background: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgba(0, 0, 0, 0) 100%);
}
.needs__item:nth-child(-n+4)::before {
  opacity: 1;
}
.needs__item:nth-child(n+6) {
  border-bottom: unset;
}
.needs__item:nth-child(n+6)::before {
  opacity: 1;
  background: linear-gradient(180deg, rgb(240, 240, 240) 0%, rgba(0, 0, 0, 0) 100%);
}
.needs__item:last-child::before {
  opacity: 0;
}
.needs__item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.needs__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.needs__reading {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  line-height: 2;
}
.needs__reading a {
  text-decoration-line: underline;
  color: #000000;
  margin: 0 8px;
  font-weight: 600;
}
.needs__reading a:hover {
  color: var(--accent-color);
}
.needs__reading img {
  border-radius: 50%;
  margin: 0 12px;
  max-width: 40px;
}

@media (max-width: 1250px) {
  .needs__item {
    padding: 24px 12px;
  }
}
@media (max-width: 1024px) {
  .needs__item {
    width: 50%;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 24px;
  }
  .needs__item:nth-child(even) {
    border-left: 1px solid #f0f0f0;
  }
  .needs__item::before {
    display: none !important;
  }
}
@media (max-width: 540px) {
  .needs {
    padding: 48px 0;
  }
  .needs h2 {
    margin-bottom: 32px;
  }
  .needs__item {
    width: 100%;
    border-left: unset !important;
    padding: 24px 12px;
    display: flex;
    align-items: center;
  }
  .needs__item:last-child {
    border-bottom: unset !important;
  }
  .needs__item-icon {
    margin: 0 24px 0 0;
  }
  .needs__item h3 br {
    display: none;
  }
}
.service {
  padding: 100px 0;
  background: #18202e;
}
.service h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}
.service__inner {
  flex-wrap: wrap;
  display: flex;
}
.service__item {
  padding: 24px;
  display: flex;
  align-items: center;
  width: 33.3%;
}
.service__item-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__item-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  flex: 1;
  margin-left: 12px;
}

@media (max-width: 1250px) {
  .service__item {
    padding: 24px 12px;
  }
  .service__item-text {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .service__item {
    width: 50%;
    padding: 24px;
  }
}
@media (max-width: 540px) {
  .service {
    padding: 48px 0;
  }
  .service h2 {
    margin-bottom: 32px;
  }
  .service__item {
    width: 100%;
    padding: 24px 12px;
  }
}
.contact {
  padding: 100px 0;
}
.contact__head {
  text-align: center;
  margin-bottom: 48px;
}
.contact__head h2 {
  color: var(--black);
  margin-bottom: 12px;
}
.contact__head p {
  color: var(--sub-title);
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
}
.contact__head p span {
  font-weight: 700;
  color: #108c27;
}
.contact__inner {
  display: flex;
  max-width: 776px;
  margin: 0 auto;
}
.contact__inner-form {
  padding: 12px 32px;
  border-right: 1px solid #f0f0f0;
  width: 50%;
}
.contact__inner-form h4 {
  margin-bottom: 24px;
}
.contact__inner-form .input {
  margin-bottom: 12px;
}
.contact__inner-sched {
  padding: 12px 32px;
  width: 50%;
}
.contact__inner-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.contact__inner-btn:hover {
  opacity: 0.6;
}
.contact__inner-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.support {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.support__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  width: 122px;
}
.support__avatar img {
  width: 100%;
  height: auto;
}
.support__content {
  flex: 1;
  margin-left: 16px;
}
.support__content h4 {
  margin-bottom: 18px;
}
.support__content a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #000000;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.support__content a:hover {
  color: var(--accent-color);
}
.support__content a svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.input input {
  padding: 16px 20px;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #000;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  width: 100%;
}
.input input::placeholder {
  color: #666d80;
}

@media (max-width: 840px) {
  .contact__inner {
    flex-direction: column;
  }
  .contact__inner-sched {
    order: -1;
    width: 100%;
    padding: 18px 24px;
  }
  .contact__inner-form {
    padding: 18px 24px;
    width: 100%;
  }
  .contact__inner-form .button {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .contact {
    padding: 48px 0;
  }
  .contact__head p {
    font-size: 16px;
  }
}
.portfolio {
  padding: 100px 0;
}
.portfolio h2 {
  margin-bottom: 72px;
  text-align: center;
  color: var(--black);
}
.portfolio__item {
  padding: 8px;
}
.portfolio__item-content {
  padding: 12px;
}
.portfolio__item-content-title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000000;
}
.portfolio__item-content-title img {
  max-height: 30px;
}
.portfolio__item-content-stats {
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 14px;
}
.portfolio__item-content-stats-content {
  display: flex;
  align-items: center;
}
.portfolio__item-content-stats-content img {
  max-height: 16px;
  opacity: 0.6;
}
.portfolio__item-content-stats-content-text {
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 12px;
}
.portfolio__item-content-stats-content-text span {
  font-weight: 600;
}
.portfolio__item-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #616161;
}
.portfolio__item-image {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.portfolio__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.portfolio__slider {
  overflow: hidden;
  max-width: 1230px;
  margin: 0 auto;
}
.portfolio__nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio__nav button {
  width: 56px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-right: 24px;
}
.portfolio__nav button:last-child {
  margin-right: 0;
}
.portfolio__nav button:hover {
  opacity: 0.7;
}
.portfolio__nav button svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

@media (max-width: 840px) {
  .portfolio__item-content-title {
    font-size: 18px;
  }
  .portfolio__item-content p {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .portfolio {
    padding: 48px 0;
    overflow: hidden;
  }
  .portfolio h2 {
    margin-bottom: 48px;
  }
  .portfolio__slider {
    overflow: visible;
  }
}
.testimonials {
  padding: 100px 0;
  background: #18202e;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  width: 250px;
  height: 100%;
  background: linear-gradient(270deg, rgba(24, 32, 46, 0) 0%, #18202e 100%);
}
.testimonials::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: 1;
  width: 250px;
  height: 100%;
  background: linear-gradient(270deg, #18202e 0%, rgba(24, 32, 46, 0) 100%);
}
.testimonials__nav {
  padding: 24px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__nav button {
  width: 56px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-right: 24px;
}
.testimonials__nav button:last-child {
  margin-right: 0;
}
.testimonials__nav button:hover {
  opacity: 0.7;
}
.testimonials__nav button svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}
.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}
.testimonials__slider {
  max-width: 590px;
  margin: 0 auto;
}
.testimonials__item {
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials__item-content {
  margin-bottom: 24px;
}
.testimonials__item-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #000000;
}
.testimonials__item-contact {
  display: flex;
  align-items: center;
  flex: 1;
  margin-right: 12px;
}
.testimonials__item-contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__item-contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.testimonials__item-contact-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #616161;
  margin-left: 8px;
}
.testimonials__item-contact-text span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
.testimonials__item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e3e3e3;
}
.testimonials__item-social {
  width: 24px;
  height: 24px;
  color: #18202e;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.testimonials__item-social svg {
  width: 100%;
  height: 100%;
}
.testimonials__item-social:hover {
  color: var(--accent-color);
}
.testimonials .swiper-slide {
  height: auto;
}

@media (max-width: 1250px) {
  .testimonials::before {
    width: 150px;
  }
  .testimonials::after {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .testimonials::before {
    width: 80px;
  }
  .testimonials::after {
    width: 80px;
  }
  .testimonials__item-content p {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .testimonials {
    padding: 48px 0;
  }
  .testimonials__item-content p {
    font-size: 16px;
  }
  .testimonials__item-social {
    margin-top: 24px;
    width: 32px;
    height: 32px;
  }
  .testimonials__item-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials::before {
    width: 30px;
  }
  .testimonials::after {
    width: 30px;
  }
  .testimonials__slider {
    padding: 0 10px;
  }
}
.how {
  background-color: #ECECEC;
  border-bottom: 8px solid var(--primary);
  padding: 100px 0;
}
.how__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}
.how__head h2 {
  color: var(--black);
  margin-bottom: 12px;
}
.how__head p {
  font-size: 18px;
  line-height: 150%;
}
.how__inner {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}
.how__item {
  width: calc(50% - 24px);
  margin: 12px;
  padding: 12px;
}
.how__item-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}
.how__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how__item h4 {
  margin-bottom: 12px;
}
.how__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #616161;
}

@media (max-width: 540px) {
  .how {
    padding: 48px 0;
  }
  .how__head p {
    font-size: 16px;
    line-height: 120%;
  }
  .how__inner {
    margin: 0;
  }
  .how__item {
    width: 100%;
    margin: 0 0 16px 0;
  }
  .how__item-icon {
    width: 24px;
    height: 24px;
  }
  .how__item:last-child {
    margin-bottom: 0;
  }
  .how__item h4 {
    font-size: 18px;
  }
}
.article {
  padding: 150px 0 100px 0;
  background: linear-gradient(180deg, rgba(0, 57, 115, 0.3) 0%, rgb(255, 255, 255) 660px);
  color: #000;
}
.article h2 {
  margin-bottom: 5px;
}
.article-info {
  display: flex;
  color: #4c4c4c;
  margin-bottom: 20px;
}
.article-info img {
  border-radius: 4px;
  max-height: 24px;
  margin: 0 10px;
}
.article p {
  margin: 15px 0;
  line-height: 1.6;
  color: #232323;
}
.article h3 {
  font-size: 32px;
  margin: 30px 0 20px 0;
}
.article h4 {
  margin: 20px 0 15px 0;
}
.article a {
  color: rgb(17, 93, 192);
}
.article a:hover {
  text-decoration: underline;
}
.article table {
  overflow: scroll;
}
.article table th {
  background-color: #e6e6e6;
  padding: 10px 15px;
}
.article table td {
  padding: 5px 15px;
  text-align: center;
}
.article table tbody tr > td:first-child {
  font-weight: 600;
}
.article table tbody tr:nth-child(even) td {
  background-color: #f7f7f7;
}
.article ul, .article ol {
  margin: 0 40px;
  line-height: 1.7;
}
.article ul li, .article ol li {
  list-style: disc;
}
.article ol li {
  list-style: decimal;
}

@media (max-width: 1024px) {
  .article {
    padding: 70px 0 50px 0;
  }
}
.tech {
  padding: 100px 0;
  background: #000;
}
.tech h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.tech__head {
  text-align: center;
  margin-bottom: 48px;
}
.tech__head p {
  color: var(--white);
  font-size: 18px;
}
.tech__inner {
  max-width: 432px;
  margin: 0 auto;
}
.tech__inner .button {
  width: 100%;
  margin-bottom: 24px;
}
.tech__inner p {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #e3e3e3;
}
.tech__inner p a {
  font-weight: 700;
}
.tech__inner p a:hover {
  color: var(--accent-color);
}
.tech .input input {
  background: #141414;
  border: 1px solid #414141;
  border-radius: 12px;
  color: var(--white);
}
.tech .input input::placeholder {
  color: #9e9e9e;
}
.tech .input__outer {
  margin-bottom: 24px;
}
.tech .input__outer label {
  display: block;
  font-family: "Manrope";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}
.tech .input__outer label span {
  color: #6b6b6b;
}
.tech .input__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tech .input__row .input__outer {
  width: calc(50% - 12px);
  margin: 0;
}

@media (max-width: 540px) {
  .tech {
    padding: 48px 0;
  }
  .tech__inner {
    max-width: unset;
  }
  .tech .input__row {
    flex-direction: column;
    margin: 0;
  }
  .tech .input__row .input__outer {
    width: 100%;
    margin: 0 0 24px 0;
  }
}
.estim {
  padding: 100px 0;
  background: #000;
}
.estim__head {
  text-align: center;
  margin-bottom: 48px;
}
.estim__head h2 {
  color: var(--white);
}
.estim__inner {
  display: flex;
  justify-content: space-between;
}
.estim__action {
  width: calc(50% - 24px);
}
.estim__info {
  width: calc(50% - 24px);
  padding: 24px;
  background: #141414;
  border: 1px solid #414141;
  border-radius: 12px;
}
.estim__info-title {
  margin-bottom: 12px;
  color: #fff;
}
.estim__info-input {
  padding: 20px;
  background: #292929;
  border-radius: 12px;
  margin-bottom: 32px;
}
.estim__info-input p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #e3e3e3;
  margin-bottom: 12px;
}
.estim__info-amount {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.estim__info-amount span {
  color: #555555;
}
.estim__info-time {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}
.estim__info-time svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.estim__info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #fff;
}
.estim__info ul li svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.attent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  color: var(--accent-color);
}
.attent svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 10px;
}
.attent {
  text-align: left;
}

.selection {
  margin-bottom: 24px;
}
.selection:last-child {
  margin-bottom: 0;
}
.selection p {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 16px;
}
.selection__row {
  display: flex;
  justify-content: space-between;
  margin: 0 -6px;
}
.selection__item {
  width: calc(33.3% - 12px);
  position: relative;
}
.selection__item label {
  position: relative;
  margin: 0 6px;
  padding: 16px 12px 16px 16px;
  background: #141414;
  border: 1px solid #414141;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.selection__item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.selection__item input:checked + label {
  background: var(--accent-color);
  color: var(--black);
}

.range {
  margin: 16px 0;
  position: relative;
}
.range input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.range__outer {
  margin-bottom: 24px;
}
.range__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.range__head p {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.range__head p span {
  color: var(--accent-color);
  font-weight: 700;
}
.range__foot p {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #e3e3e3;
}
.range__inner {
  height: 16px;
  width: 100%;
  background: #282828;
  border: 1px solid #414141;
  border-radius: 12px;
}
.range__inner-steps {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.range__inner span {
  width: 24px;
  height: 24px;
  background: #282828;
  border: 1px solid #414141;
  border-radius: 50px;
  position: relative;
}
.range__inner span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.range__inner span.active {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}
.range__inner span.active::before {
  opacity: 1;
}
.range__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #a67a07;
  border-radius: 12px;
  width: 0%;
  transition: width 0.2s ease;
}

@media (max-width: 1250px) {
  .estim__action {
    width: calc(50% - 12px);
  }
  .estim__info {
    width: calc(50% - 12px);
  }
  .selection__item {
    width: calc(33.3% - 4px);
  }
}
@media (max-width: 840px) {
  .estim__head h2 {
    margin-bottom: 12px;
  }
  .estim__inner {
    flex-direction: column;
  }
  .estim__info {
    width: 100%;
  }
  .estim__action {
    width: 100%;
    margin-bottom: 48px;
  }
  .attent {
    padding: 12px 0;
  }
}
@media (max-width: 540px) {
  .estim {
    padding: 48px 0;
  }
  .range__head p {
    font-size: 16px;
  }
  .range__foot p {
    font-size: 12px;
  }
  .selection p {
    font-size: 16px;
  }
  .selection__item label {
    font-size: 14px;
  }
}

/*# sourceMappingURL=main.css.map */
