/* global box-sizing */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*:focus-visible, button:focus-visible, a:focus-visible,
button:focus-visible, [type=button]:focus-visible, [type=reset]:focus-visible, [type=submit]:focus-visible {
  outline: 1.5px solid #ffffff;
}

video::-webkit-media-controls {
  display: none !important;
}

h1, .h1-style {
  font-family: "InterBold", sans-serif;
  font-weight: normal;
  font-size: 36px;
  line-height: 46px;
  color: #DCFFF2;
  margin: 0 0 24px 0;
  transition: color 0.3s;
}

h2, .h2-style {
  font-family: "InterBold", sans-serif;
  font-weight: normal;
  font-size: 32px;
  line-height: 40px;
  color: #DCFFF2;
  margin: 0 0 24px 0;
  transition: color 0.3s;
}

h3, .h3-style {
  font-family: "InterBold", sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  color: #DCFFF2;
  margin: 0 0 24px 0;
  transition: color 0.3s;
}

h4 {
  font-family: "InterBold", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #DCFFF2;
  margin: 0 0 24px 0;
  transition: color 0.3s;
}

h1 span, h2 span, h3 span, h4 span {
  font-family: "AlkatraBold", sans-serif;
}
h1 span.green-text, h2 span.green-text, h3 span.green-text, h4 span.green-text {
  font-family: "InterBold", sans-serif;
  font-style: italic;
  color: #49A883;
  background: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #49A883;
  background-clip: none;
  text-fill-color: #49A883;
}

.button-wrap {
  display: flex;
}

.button-wrap--center {
  justify-content: center;
}

.button-wrap--m-center {
  justify-content: center;
}

.button-wrap--space {
  margin-top: 40px;
}

button {
  display: block;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

.s-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/main-button.svg) no-repeat center center;
  background-size: cover;
  height: 48px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  color: #0D1814;
  font-family: "InterBold", sans-serif;
  font-size: 16px;
  line-height: 20px;
}
.s-button:hover {
  background: url(../images/main-button-hover.svg) no-repeat center center;
  background-size: cover;
}
.s-button:focus {
  background: url(../images/main-button-hover.svg) no-repeat center center;
  background-size: cover;
}
.s-button:disabled {
  opacity: 0.5;
}
.s-button.s-button--small {
  font-family: "InterSemiBold", sans-serif;
  height: 28px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 13px;
  line-height: 16px;
  background: #ffffff;
}
.s-button.s-button--small:hover {
  background: url(../images/main-button-hover.svg) no-repeat center center;
  background-size: cover;
}
.s-button.s-button--dark {
  color: #ffffff;
  background: url(../images/second-button.svg) no-repeat center center;
  background-size: cover;
}
.s-button.s-button--dark:hover {
  background: url(../images/second-button-hover.svg) no-repeat center center;
  background-size: cover;
}
.s-button.s-button--dark:focus {
  background: url(../images/second-button-hover.svg) no-repeat center center;
  background-size: cover;
}
.s-button.s-button--dark.s-button--small {
  background: rgba(147, 210, 194, 0.1);
  font-size: 16px;
  line-height: 22px;
  height: 50px;
}
.s-button.s-button--dark.s-button--small:hover {
  background: rgba(147, 210, 178, 0.3);
}
.s-button.s-button-width {
  min-width: 320px;
}
.s-button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  margin: 0;
}

.s-read-more {
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-family: "InterBold", sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  transition-duration: 0.2s;
}
.s-read-more span {
  display: block;
}
.s-read-more:hover .span {
  animation: slide-right 0.6s ease-out both;
}

.show-more-button {
  height: 50px;
  width: 100%;
  max-width: 740px;
  padding: 2px;
  border: none;
  border-radius: 30px;
  font-family: "InterBold", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #D4FFF4;
  background: #889591;
  background: linear-gradient(45deg, rgb(136, 149, 145) 10%, rgb(153, 128, 128) 30%, rgb(129, 163, 150) 60%, rgb(136, 149, 145) 90%);
  transition: background-color 0.3s linear, color 0.3s linear, background 0.3s linear;
}
.show-more-button .inner {
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111514;
  border-radius: 30px;
}
.show-more-button:hover {
  color: #93D2C2;
  background: rgba(147, 210, 194, 0.3);
}
.show-more-button:hover .inner {
  background: #0a0b0b;
}

input[type=text], input[type=email], input[type=password], input[type=tel], textarea, .s-input {
  display: block;
  width: 100%;
  height: 56px;
  padding: 18px 22px;
  border: 1px solid #ffffff;
  background: none;
  font-size: 14px;
  line-height: 18px;
  color: #8B8B8B;
  border-radius: 100px;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=tel]::placeholder, textarea::placeholder, .s-input::placeholder {
  font-size: 14px;
  line-height: 18px;
  color: #8B8B8B;
}
input[type=text].input--black, input[type=email].input--black, input[type=password].input--black, input[type=tel].input--black, textarea.input--black, .s-input.input--black {
  border: 1px solid #0D1814;
}

input[type=submit] {
  border: none;
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  font-family: "InterRegular", sans-serif;
  color: #C6D7D1;
  font-size: 16px;
  line-height: 22px;
  background: #0a0b0b;
}

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

a:hover {
  text-decoration: none;
}

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

picture, section, header, footer, nav, aside {
  display: block;
}

label {
  cursor: pointer;
}

picture {
  width: 100%;
  height: 100%;
}

.responsive-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.responsive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hide {
  display: none !important;
}

.svg {
  display: block;
}
.svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.no-padding-t {
  padding-top: 0 !important;
}

.none {
  display: none;
}

.swiper-slide {
  height: auto;
}

.t-center, .m-t-center {
  text-align: center;
}

.mobile-hide, .mobile-hide-flex {
  display: none;
}

.tablet-container {
  max-width: 764px;
  margin-left: auto;
  margin-right: auto;
}

.m-container {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.m-container-tablet {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.m-container-tablet-full {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.shevron {
  width: 24px;
  height: 24px;
}

.socials {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.socials a {
  display: block;
  width: 32px;
  height: 32px;
}

.white-color {
  color: #ffffff;
}

.section-description {
  margin: 0;
  transition: color 0.3s;
}
.section-description p {
  margin: 0;
}

.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-space-b {
  padding-bottom: 80px;
}

.section-height {
  position: relative;
}

.screen-section {
  min-height: 100vh;
  position: relative;
}
.screen-section.screen-section--mob {
  min-height: 50px;
}
.screen-section.screen-section--mob .screen-section__inner, .screen-section.screen-section--mob .screen-section__inner--full {
  min-height: 50px;
}
.screen-section.screen-section--content {
  min-height: 50px;
}

.screen-section__inner, .screen-section__inner--full {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.screen-section__inner--full {
  padding-left: 0;
  padding-right: 0;
}

.screen-section__inner.screen-section__hero {
  padding-bottom: 0;
}

.t-stars {
  display: block;
  width: 112px;
  height: 20px;
}

.section-768 {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.overflow {
  overflow: hidden;
}

.slider-controls {
  width: 100px;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: 40px;
}
.slider-controls button {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}
.slider-controls button:disabled {
  opacity: 0.4;
}
.slider-controls button:disabled path {
  fill: rgba(210, 210, 215, 0.64);
}

.hamburger {
  width: 24px;
  height: 16px;
}

.menu-close {
  width: 18px;
  height: 18px;
}

.section-630 {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.section-740 {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.text-g-green {
  background: #FFF;
  background: radial-gradient(circle, rgb(84, 255, 181) -30%, rgb(255, 255, 255) 30%, rgb(84, 255, 181) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-g-green-l {
  background: #BDFFE2;
  background: linear-gradient(145deg, rgb(189, 255, 226) 0%, rgb(255, 255, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.running-line {
  overflow: hidden;
  display: flex;
}
.running-line:hover .running-line-wrap {
  animation-play-state: paused;
}
.running-line.running-line--reverse .running-line-wrap {
  animation: moveReverse 30s linear infinite;
  transform: translateX(-100%);
}
.running-line.running-line--reverse:hover .running-line-wrap {
  animation-play-state: paused;
}

.running-line-wrap {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  animation: move 40s linear infinite;
  animation-delay: 1s;
  box-sizing: content-box;
  transition: transform 2s ease-out;
}

.initial-child-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: auto;
  column-gap: 20px;
  padding-left: 20px;
  height: 100%;
}

.running-line-item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.temp-section {
  height: 600px;
  max-width: 300px;
  border: 1px solid red;
  margin: 0 auto;
}

.running-line-logos .running-line-item img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 48px;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moveReverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveStop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.decoration-line-left, .decoration-line-right {
  width: 0.7px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: #3b3c3c;
}

.decoration-line-top, .decoration-line-bottom {
  height: 0.7px;
  width: 94%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: #3b3c3c;
}

.decoration-line-left {
  left: 20px;
}

.decoration-line-right {
  right: 20px;
}

.decoration-line-top {
  top: 20px;
}

.decoration-line-bottom {
  bottom: 20px;
}

.card-section__image .rotate-image img {
  margin-left: auto;
  margin-right: auto;
  width: 78%;
  max-width: 424px;
}
.card-section__image .image-decoration {
  display: none;
}

.rotate-image {
  perspective: 1000px;
}
.rotate-image .rotate-image__inner {
  position: relative;
  transform-style: preserve-3d;
  animation: flipAnimation 6s ease-in-out infinite;
}
.rotate-image .front, .rotate-image .back {
  backface-visibility: hidden;
}
.rotate-image .back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
}

@keyframes flipAnimation {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.lang-menu {
  display: block;
  position: relative;
  height: 44px;
  font-family: "InterBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.lang-menu.lang-menu--black {
  color: #0D1814;
}
.lang-menu.lang-menu--black .shevron svg path {
  fill: #0D1814;
}
.lang-menu.lang-menu--drop-top .lang-menu__drop {
  top: auto;
  bottom: 48px;
}

.lang-menu__active {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 10px;
  border-radius: 14px;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}

.lang-menu__cur-lang {
  margin-right: 4px;
}

.lang-menu__cur-icon {
  display: block;
  width: 25px;
  height: 24px;
  margin-right: 14px;
}

.lang-menu__drop {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background: url(../images/main-button.svg) no-repeat center center;
  background-size: cover;
  border-radius: 14px;
  padding: 3px;
}
.lang-menu__drop a {
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 6px 18px 6px 18px;
  font-family: "InterBold", sans-serif;
  font-size: 16px;
  color: #0D1814;
  text-decoration: none;
}
.lang-menu__drop a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.lang-menu.active .lang-menu__active {
  background: rgba(28, 20, 20, 0.2);
}
.lang-menu.active .shevron {
  transform: rotate(180deg);
}
.lang-menu.active .lang-menu__drop {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  z-index: 100;
  backdrop-filter: blur(20px);
}
.header .m-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .main-menu-nav {
  display: none;
}
.header .lang-menu {
  margin-right: 5px;
}

.header__central-part {
  display: none;
}

.header__right-part {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-button {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.menu-button p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

.logo {
  width: 84px;
  height: 50px;
}

.main-menu-button {
  position: relative;
  width: 32px;
  height: 32px;
}
.main-menu-button svg {
  position: absolute;
  top: 0;
  left: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}

.main-menu-button--open {
  opacity: 1;
  z-index: 1;
}

.main-menu-button--close {
  opacity: 0;
  z-index: 0;
}

.main-menu-button.active .main-menu-button--open {
  opacity: 0;
  z-index: 0;
}
.main-menu-button.active .main-menu-button--close {
  opacity: 1;
  z-index: 1;
}

.menu-section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 100vh;
  background: #0a0b0b;
  overflow: auto;
}
.menu-section.active {
  display: block;
}
.menu-section .hero-wrapper {
  height: 100vh;
}

.menu-section-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.menu-section-content .socials {
  margin-top: 64px;
}
.menu-section-content .footer-logo {
  margin-top: 36px;
}

.menu-section-header {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}
.menu-section-header .logo {
  transform: translateX(4px);
}

.menu-section-main-nav li {
  margin-top: 24px;
  text-align: center;
}
.menu-section-main-nav li:first-child {
  margin-top: 0;
}
.menu-section-main-nav li.current-menu-item a {
  color: #89AC9F;
  background: #89AC9F;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.menu-section-main-nav a {
  font-family: "InterSemiBold", sans-serif;
  font-size: 32px;
  line-height: 40px;
  text-decoration: none;
  background: #FFF;
  background: radial-gradient(circle, rgb(84, 255, 181) -30%, rgb(255, 255, 255) 30%, rgb(84, 255, 181) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.menu-section-secondary-nav {
  margin-top: 64px;
}
.menu-section-secondary-nav li {
  margin-top: 16px;
  text-align: center;
}
.menu-section-secondary-nav a {
  font-size: 16px;
  line-height: 22px;
  color: #9fa5a2;
  text-decoration: none;
}

.menu-section__lang-menu {
  display: flex;
  justify-content: center;
}

.menu-section-footer {
  margin-top: 40px;
}

.hero-wrapper {
  height: 120vh;
  overflow: hidden;
}

.template-bg-hero-top-left-top-center {
  background-image: url(../images/template-bgs/hero-left-top-bg.svg), url(../images/template-bgs/hero-top-center-bg.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, top center;
  background-size: contain, contain;
  height: 100%;
}

.template-bg-hero-skeleton-bg {
  background: url(../images/template-bgs/hero-skeleton-bg.svg) repeat-x top center;
  height: 100%;
}

.template-bg-hero-left-center-right-center-bottom-center {
  background-image: url(../images/template-bgs/hero-left-center-bg.svg), url(../images/template-bgs/hero-right-center-bg.svg), url(../images/template-bgs/hero-bottom-center-bg.svg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left center, right 10%, bottom center;
  height: 100%;
  background-size: contain, contain, contain;
}

.hero {
  padding-top: 58px;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-decoration-top-center {
  background: url(../images/template-bgs/hero-top-center-bg.svg) no-repeat center top;
  background-size: contain;
  max-width: 1046px;
  max-height: 839px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-decoration-top-left {
  background: url(../images/template-bgs/hero-left-top-bg-2.svg) no-repeat top left;
  background-size: contain;
  max-width: 1139px;
  max-height: 1130px;
  z-index: 5;
}

.hero-decoration-ellipse {
  background: url(../images/template-bgs/hero-ellipse-clear.svg) no-repeat center center;
  background-size: contain;
  max-height: 1432px;
  z-index: 3;
}

.hero-decoration-ellipse-full {
  background: url(../images/template-bgs/hero-ellipse-clear-full.svg) no-repeat center center;
  background-size: contain;
  max-width: 2334px;
  max-height: 1432px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-decoration-skeleton {
  background-image: url(../images/template-bgs/hero-skeleton-bg.svg), url(../images/template-bgs/hero-left-center-bg-clear.svg), url(../images/template-bgs/hero-right-center-bg-clear.svg);
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-position: top center, left center, right 10%;
  background-size: contain;
  z-index: 8;
}

.hero-decoration-bottom-center {
  background: url(../images/template-bgs/hero-bottom-center-bg-clear.svg) no-repeat bottom center;
  background-size: contain;
  max-width: 1074px;
  max-height: 687px;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-decoration-skeleton-full {
  background: url(../images/template-bgs/hero-back-skeleton.svg) no-repeat top center;
  background-size: cover;
  z-index: 8;
}

.hero-decoration-back {
  background: url(../images/template-bgs/Back.svg) no-repeat top center;
  background-size: cover;
  z-index: 5;
}

.main-page-hero {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.main-page-hero .h3-style {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.main-page-hero__top, .main-page-hero__bottom {
  position: relative;
  z-index: 15;
}

.main-page-hero__top {
  max-width: 810px;
}

.hero-logo {
  display: block;
  width: 160px;
  height: 142px;
  margin: 0 auto 10px auto;
}

.main-page-hero__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100vw;
  max-width: 100%;
  height: auto;
}
.main-page-hero__image img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.main-page-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  max-width: 790px;
  height: auto;
  padding-top: 90%;
}
.main-page-hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.main-page-hero__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(../images/video-filter.svg) no-repeat center center;
  background-size: cover;
}
.main-page-hero__video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: url(../images/video-overlay.svg) no-repeat center center;
  background-size: cover;
}

.scroll-down {
  display: block;
  width: 12px;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.card-section {
  margin-top: 52px;
  background: url(../images/template-bgs/card-section-decoration-center.svg) no-repeat center center;
  background-size: contain;
}
.card-section .m-container {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}
.card-section .m-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 13px;
  width: 14px;
  height: 261px;
  z-index: 2;
}
.card-section .m-container.firefly-left:before {
  content: "";
  top: 0;
  transform: translateY(-100%);
  opacity: 1;
  animation: fireflyLeft 6s linear forwards;
  background: url(../images/template-bgs/border-decoration-left-light.svg) no-repeat top center;
  background-size: cover;
  will-change: auto;
}
.card-section .m-container.firefly-right:before {
  content: "";
  width: 15px;
  height: 259px;
  top: auto;
  left: auto;
  bottom: 0;
  right: 13px;
  transform: translateY(100%);
  opacity: 1;
  background: url(../images/template-bgs/border-decoration-right-light.svg) no-repeat top center;
  background-size: cover;
  animation: fireflyRight 6s linear forwards;
}
.card-section .m-container.firefly-bottom:before {
  content: "";
  top: auto;
  left: 0;
  bottom: 12px;
  opacity: 1;
  transform: translateX(-100%);
  width: 262px;
  height: 15px;
  background: url(../images/template-bgs/border-decoration-bottom-light.svg) no-repeat left center;
  background-size: cover;
  animation: fireflyBottom 3s linear forwards;
}
.card-section .m-container.firefly-top:before {
  content: "";
  top: 13px;
  left: auto;
  bottom: auto;
  right: 0;
  opacity: 1;
  transform: translateX(100%);
  width: 259px;
  height: 15px;
  background: url(../images/template-bgs/border-decoration-top-light.svg) no-repeat left center;
  background-size: cover;
  animation: fireflyTop 3s linear forwards;
}
.card-section .card-section__wrapper {
  padding-top: 80px;
  padding-bottom: 58px;
  background: url(../images/template-bgs/hero-skeleton-bg.svg) repeat-x top center;
}

.card-section__hand {
  margin-left: -20px;
  margin-top: 20px;
}

.card-section__text {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  width: 84%;
  max-width: 740px;
}

@keyframes fireflyLeft {
  0% {
    top: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes fireflyRight {
  0% {
    bottom: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
@keyframes fireflyBottom {
  0% {
    left: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes fireflyTop {
  0% {
    right: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}
.general-info {
  margin-top: 70px;
  padding-bottom: 100px;
  position: relative;
}
.general-info .section-description {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.general-info .running-line {
  margin-top: 52px;
  height: 50px;
  position: relative;
  z-index: 10;
}
.general-info .running-line .initial-child-container {
  column-gap: 40px;
  padding-left: 40px;
}
.general-info > .m-container {
  position: relative;
  z-index: 10;
}
.general-info .general-info__decoration {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.general-info .general-info__decoration--map {
  background: url(../images/template-bgs/map-bg.png) no-repeat top center;
  background-size: cover;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1118px;
  max-height: 993px;
}
.general-info .general-info__decoration--skeleton {
  background: url(../images/template-bgs/general-info-skeleton.svg) no-repeat bottom center;
  background-size: cover;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1440px;
  max-height: 1141px;
}
.general-info .general-info__decoration--ellipse {
  background: url(../images/template-bgs/general-info-ellipse-2.svg) no-repeat center center;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1956px;
  max-height: 1432px;
  z-index: 2;
}
.general-info .general-info__decoration--top-right {
  background: url(../images/template-bgs/general-info-right-top.svg) no-repeat top right;
  background-size: contain;
  top: 0;
  right: 0;
  max-width: 973px;
  max-height: 1584px;
}
.general-info .general-info__decoration--bottom-right {
  background: url(../images/template-bgs/general-info-right-bottom.svg) no-repeat bottom right;
  background-size: cover;
  bottom: 0;
  right: 0;
  max-width: 722px;
  max-height: 1232px;
}

.descriptions-cards-section {
  margin-top: 60px;
  position: relative;
  z-index: 5;
}

.description-card {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  background: #0A0B0B url(../images/description-card-bg.svg) no-repeat center center;
  background-size: cover;
  min-height: 520px;
  border: 1px solid #24322d;
  position: relative;
  padding: 0 24px 32px 24px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.description-card:after {
  content: "";
  background: url(../images/description-card-top-right.svg) no-repeat center center;
  width: 433px;
  height: 338px;
  position: absolute;
  top: 0;
  right: 0;
}
.description-card:before {
  content: "";
  background: url(../images/description-card-left-bottom.svg) no-repeat center center;
  width: 264px;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.description-card:first-child {
  margin-top: 0;
}
.description-card .icon, .description-card .title, .description-card .description, .description-card .button-wrap, .description-card .s-button {
  position: relative;
  z-index: 1;
}
.description-card .icon {
  padding-top: 83%;
  position: relative;
}
.description-card .icon picture {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.description-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.description-card .title {
  font-family: "InterBold", sans-serif;
  font-size: 20px;
  color: #DCFFF2;
  margin: 0;
}
.description-card .description {
  margin: 16px 0 0 0;
}
.description-card .button-wrap {
  margin-top: 32px;
  display: block;
}

.motivation-section {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.motivation-section__list {
  display: flex;
  column-gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.motivation-section__list .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.motivation-section__list p {
  font-family: "InterMedium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0 0 0;
}
.motivation-section__list li {
  display: flex;
}
.motivation-section__list.motivation-section__list--inline li {
  display: flex;
  column-gap: 8px;
}
.motivation-section__list.motivation-section__list--inline p {
  margin: 0;
}
.motivation-section__list.motivation-section__list--center {
  justify-content: center;
}
.motivation-section__list.motivation-section__list--3 li {
  width: 29.3%;
}

.reviews-section {
  margin-top: 100px;
  position: relative;
}
.reviews-section h2 {
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.reviews-section .running-line-shadows {
  position: relative;
  z-index: 10;
}
.reviews-section .button-wrap {
  margin-top: 74px;
  position: relative;
  z-index: 10;
}
.reviews-section .initial-child-container {
  column-gap: 10px;
}
.reviews-section .running-line-item {
  border: 1px solid #27302a;
  background: #FFF;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 16px;
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 330px;
}
.reviews-section .review {
  margin: 16px 0 0 0;
  font-size: 15px;
  line-height: 20px;
}
.reviews-section .review-author {
  margin: 16px 0 0 0;
  font-family: "InterBold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #626b66;
}
.reviews-section .running-line--reverse {
  margin-top: 10px;
}

.reviews-section__decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  max-width: 402px;
  max-height: 1215px;
  background: url(../images/template-bgs/trust-pilot-decoration.svg) no-repeat top center;
  background-size: cover;
}

.s-accordion-item {
  padding: 12px 0 12px 0;
  border-top: 1px dashed #2b332e;
}
.s-accordion-item:first-child {
  border-top: none;
}
.s-accordion-item .close-msg {
  display: none;
}
.s-accordion-item.active .close-msg {
  display: block;
}
.s-accordion-item.active .more-msg {
  display: none;
}

.s-accordion-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "InterSemiBold", sans-serif;
  color: #DCFFF2;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.s-accordion-item-head p {
  margin: 0;
}
.s-accordion-item-head .open-close {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  margin-left: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.s-accordion-item-head .open-close .plus {
  width: 16px;
  height: 16px;
  transform: rotate(0);
  transition: transform 0.3s;
  position: relative;
  z-index: 5;
}
.s-accordion-item-head .open-close .s-accordion-open {
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.s-accordion-item-head .open-close .s-accordion-close {
  opacity: 0;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.s-accordion-item-head:hover {
  color: #D8EFE7;
}

.s-accordion-item-content {
  font-size: 16px;
  line-height: 22px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s;
}
.s-accordion-item-content p {
  margin: 20px 0 0 0;
}

.active .s-accordion-item-head {
  color: #D8EFE7;
}
.active .s-accordion-item-head .open-close .plus {
  transform: rotate(45deg);
}
.active .s-accordion-item-head .open-close .s-accordion-open {
  opacity: 0;
  z-index: 0;
}
.active .s-accordion-item-head .open-close .s-accordion-close {
  opacity: 1;
  z-index: 1;
}
.active .s-accordion-item-content {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.3s, opacity 0.3s;
}

.faq-section {
  padding-top: 110px;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  overflow: hidden;
}
.faq-section:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/faq-decoration.svg) no-repeat top center;
  background-size: contain;
}

.faq-section__wrap {
  position: relative;
  z-index: 10;
}

.faq-accordion {
  margin-top: 40px;
}

.have-questions {
  margin-top: 48px;
}
.have-questions h3 {
  font-family: "AlkatraBold", sans-serif;
}
.have-questions .section-description {
  font-size: 15px;
  line-height: 21px;
  color: rgba(198, 215, 209, 0.7);
  margin: 0;
}

.have-questions__text {
  max-width: 562px;
  margin-left: auto;
  margin-right: auto;
}

.bottom-left-decoration {
  background: url(../images/footer-bottom-left-decoration-m.svg) no-repeat bottom left;
  background-size: contain;
}

.bottom-right-decoration {
  background: url(../images/footer-bottom-right-decoration-m.svg) no-repeat bottom right;
  background-size: contain;
}

.footer-skeleton-decoration {
  background: url(../images/footer-skeleton-decoration-m.svg) no-repeat top center;
  background-size: cover;
}

footer {
  margin-top: 62px;
}

.footer-container {
  padding-top: 134px;
  padding-left: 20px;
  padding-right: 20px;
}

.full-footer {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.full-footer .copy {
  display: none;
}
.full-footer .socials {
  display: none;
}

.mobile-footer {
  margin-top: 60px;
}
.mobile-footer .socials {
  justify-content: center;
  margin-top: 50px;
}

.copy {
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.socials {
  display: flex;
  column-gap: 16px;
}
.socials a {
  display: block;
  width: 40px;
  height: 40px;
  transition: fill 0.3s;
}
.socials a:hover .hover {
  fill: #223732;
}

.footer-main-menu {
  width: 40%;
}
.footer-main-menu li {
  margin-top: 20px;
}
.footer-main-menu li:first-child {
  margin: 0;
}
.footer-main-menu li a {
  font-family: "InterMedium", sans-serif;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  color: #ffffff;
}
.footer-main-menu li a:hover {
  color: #52F2C8;
}
.footer-main-menu li a:focus {
  color: #89AC9F;
}

.footer-secondary-menu {
  width: 40%;
}
.footer-secondary-menu li {
  margin-top: 20px;
}
.footer-secondary-menu li:first-child {
  margin: 0;
}
.footer-secondary-menu li a {
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  color: #9d9d9d;
}
.footer-secondary-menu li a:hover {
  color: #52F2C8;
}
.footer-secondary-menu li a:focus {
  color: #89AC9F;
}

.footer-logo {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 36px;
}
.footer-logo img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}