@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

:-moz-placeholder {
  color: inherit;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
  transition: all 0.3s ease;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: normal;
  transition: 0s;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #EBEAE5;
  background: #111619;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button {
  background-color: transparent;
  border: none;
}

a:focus,
a:active {
  color: inherit;
  outline: 0;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

a,
input[type=submit] {
  transition: all 0.3s ease;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

textarea {
  resize: none;
}

.table-respond {
  overflow: auto;
}

.table-respond td,
.table-respond th {
  white-space: nowrap;
}

.btn,
.btn:focus,
.btn:hover {
  outline: none;
  box-shadow: none;
}

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

/**START HEADER **/
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 40px;
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header {
    width: calc(100% - 20px);
    top: 11px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
  header.active {
    background: #182121;
  }
}
@media (max-width: 767px) {
  header.inner {
    justify-content: center;
  }
}
header .logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
header .logo svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards;
}
header ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 60px;
}
header ul li {
  margin: 0 9.5px;
}
header ul li a {
  text-transform: uppercase;
  position: relative;
  left: 0;
  font-size: 14px;
  line-height: 18px;
}
header ul li a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A0E9C2;
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
header ul li a:hover {
  color: #A0E9C2;
  padding-left: 5px;
}
header ul li a:hover:before {
  left: -4px;
  opacity: 1;
  visibility: visible;
}
header .btn {
  background: #A0E9C2;
  padding: 15px 24px 13px;
  border: none;
  color: #111619;
  font-size: 14px;
  font-weight: 600;
}
header .btn span:before {
  content: none;
}
header .btn:hover {
  background: #EBEAE5;
}
header .btn:hover span {
  padding-left: 0;
}
header.sticky {
  max-width: 767px;
  padding: 10px 15px;
  backdrop-filter: blur(50px);
  background: rgba(235, 234, 229, 0.05);
  border: 1px solid rgba(142, 216, 255, 0.1);
  border-radius: 53px;
  top: 20px;
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  header.sticky {
    background: #1f2b2a;
    backdrop-filter: none;
  }
}
@media (max-width: 767px) {
  header.sticky {
    top: 11px;
    padding: 9px 15px;
  }
}
header.sticky.active {
  background: #182121;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border: none;
  backdrop-filter: blur(0px);
}
header.sticky.active .btn {
  padding: 16px 24px;
}
header.sticky .logo {
  max-width: 53px;
}
@media (max-width: 767px) {
  header.sticky .logo {
    max-width: 39px;
  }
}
header.sticky .btn {
  padding: 8px 16px;
}
@media (max-width: 991px) {
  header.sticky .btn {
    padding: 16px 24px;
  }
}
header.sticky .btn span:before {
  content: "";
}
header.sticky .btn:hover span {
  padding-left: 9px;
}
header.inner {
  position: static;
  transform: none;
  background: #A0E9C2;
  border: none;
}
header .hamburger {
  display: none;
}

body.hidden {
  overflow: hidden;
}

.loader {
  transition: all 0.3s ease;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: #111619;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}
.loader svg.active .svg-elem-1 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}
.loader svg.active .svg-elem-2 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}
.loader svg.active .svg-elem-3 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}
.loader svg.active .svg-elem-4 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
.loader svg.active .svg-elem-5 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.loader svg.active .svg-elem-6 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
.loader svg.active .svg-elem-7 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
.loader svg.active .svg-elem-8 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
.loader svg.active .svg-elem-9 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
.loader svg.active .svg-elem-10 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
.loader svg.active .svg-elem-11 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
.loader svg.active .svg-elem-12 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
.loader svg.active .svg-elem-13 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}
.loader svg.active .svg-elem-14 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}
.loader svg.active .svg-elem-15 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}
.loader svg.active .svg-elem-16 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}
.loader svg.active .svg-elem-17 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
.loader svg.active .svg-elem-18 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
.loader svg.active .svg-elem-19 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
.loader svg.active .svg-elem-20 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-21 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
.loader svg.active .svg-elem-21 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-22 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
.loader svg.active .svg-elem-22 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-23 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
.loader svg.active .svg-elem-23 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-24 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}
.loader svg.active .svg-elem-24 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-25 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}
.loader svg.active .svg-elem-25 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}
.loader svg.active .svg-elem-26 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-27 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}
.loader svg.active .svg-elem-27 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-28 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}
.loader svg.active .svg-elem-28 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}
.loader svg.active .svg-elem-29 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-30 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}
.loader svg.active .svg-elem-30 {
  fill: rgb(160, 233, 194);
}
.loader svg .svg-elem-31 {
  fill: transparent;
  -webkit-transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}
.loader svg.active .svg-elem-31 {
  fill: rgb(160, 233, 194);
}

.mob-nav {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #182121;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0 20px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid #182121;
  border-top: none;
}
.mob-nav.visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .mob-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mob-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 0;
  }
  .mob-nav ul li {
    margin-bottom: 20px;
  }
  .mob-nav .btn {
    display: flex;
  }
}
@media (max-width: 767px) {
  .mob-nav {
    padding-top: 8px;
  }
}

.wrapper {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: rgba(160, 233, 194, 0.1);
  border: 1px solid rgba(160, 233, 194, 0.1);
  border-radius: 45px;
  line-height: 1;
  color: #A0E9C2;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .btn {
    padding: 16px 32px;
  }
}
.btn span {
  position: relative;
  transition: all 0.3s ease;
}
.btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #111619;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .btn span:before {
    content: none;
  }
}
.btn:hover {
  background: #A0E9C2;
  border-color: #A0E9C2;
  color: #111619;
}
.btn:hover span {
  padding-left: 16px;
}
@media (max-width: 767px) {
  .btn:hover span {
    padding-left: 0;
  }
}
.btn:hover span:before {
  opacity: 1;
  visibility: visible;
}

/**END HEADER **/
/** START CONTENT **/
.section-main {
  padding: 282px 0 154px;
  overflow: hidden;
}
.section-main .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.section-main .text {
  max-width: 808px;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (max-width: 1400px) {
  .section-main .text {
    max-width: 600px;
  }
}
.section-main .text small {
  font-size: 14px;
  color: #EBEAE5;
  padding: 5px 10px;
  border-radius: 48px;
  background: rgba(235, 234, 229, 0.1);
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-main .text .section-title {
  margin-bottom: 10px;
}
.section-main .text .description {
  margin-bottom: 35px;
}
.section-main .image {
  position: relative;
  z-index: -1;
  padding: 15px 115px 0 0;
}
.section-main .image img {
  position: relative;
  z-index: 3;
}
.section-main .image .mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .section-main .image .mobile-image {
    display: flex;
  }
  .section-main .image .mobile-image img.dollars {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%) scale(0);
  }
}
.section-main .image:after {
  content: "";
  position: absolute;
  top: -100px;
  right: -161px;
  width: 753px;
  height: 853px;
  background: url("../img/main-img-before.png") center no-repeat;
  background-size: contain;
}
.section-main .image .layers {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-main .image .layers img {
  position: absolute;
}
.section-main .image .layers img:nth-child(1) {
  left: -80%;
  top: -29%;
  animation: dollar1 3s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(2) {
  left: -17%;
  top: 7%;
  animation: dollar2 4.3s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(3) {
  left: 28%;
  top: -8%;
  animation: dollar3 6s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(4) {
  right: -6%;
  top: -9%;
  animation: dollar4 4.6s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(5) {
  left: -95%;
  top: 56%;
  animation: dollar5 4.2s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(6) {
  bottom: -14%;
  left: -37%;
  animation: dollar6 3.8s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(7) {
  bottom: -15%;
  right: 30%;
  animation: dollar7 4.7s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(8) {
  right: -20%;
  bottom: 4%;
  animation: dollar8 6s ease-in-out infinite;
}
.section-main .image .layers img:nth-child(9) {
  right: 19%;
  top: 29%;
  animation: check 3.5s ease-in-out infinite;
}
.section-main.visible .mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .section-main.visible .mobile-image {
    display: flex;
  }
  .section-main.visible .mobile-image img.dollars {
    transform: translateX(-50%) scale(1);
    animation: zoomInOut 3s ease-in-out infinite;
  }
  .section-main.visible .mobile-image img.phone {
    animation: moveUpDown 3s ease-in-out infinite;
    animation-delay: 1s;
  }
}

@keyframes zoomInOut {
  0% {
    transform: translateX(-50%) scale(0.7);
  }
  50% {
    transform: translateX(-50%) scale(1);
  }
  100% {
    transform: translateX(-50%) scale(0.7);
  }
}
@keyframes dollar1 {
  0% {
    left: -80%;
    top: -29%;
  }
  50% {
    left: -71%;
    top: -25%;
  }
  100% {
    left: -80%;
    top: -29%;
  }
}
@keyframes dollar2 {
  0% {
    left: -17%;
    top: 7%;
  }
  50% {
    left: -7%;
    top: 14%;
  }
  100% {
    left: -17%;
    top: 7%;
  }
}
@keyframes dollar3 {
  0% {
    left: 28%;
    top: -8%;
  }
  50% {
    left: 25%;
    top: -1%;
  }
  100% {
    left: 28%;
    top: -8%;
  }
}
@keyframes dollar4 {
  0% {
    right: -6%;
    top: -9%;
  }
  50% {
    right: 10%;
    top: -7%;
  }
  100% {
    right: -6%;
    top: -9%;
  }
}
@keyframes dollar5 {
  0% {
    left: -95%;
    top: 56%;
  }
  50% {
    left: -85%;
    top: 54%;
  }
  100% {
    left: -95%;
    top: 56%;
  }
}
@keyframes dollar6 {
  0% {
    bottom: -14%;
    left: -37%;
  }
  50% {
    bottom: 3%;
    left: -29%;
  }
  100% {
    bottom: -14%;
    left: -37%;
  }
}
@keyframes dollar7 {
  0% {
    bottom: -15%;
    right: 30%;
  }
  50% {
    bottom: 21%;
    right: 39%;
  }
  100% {
    bottom: -15%;
    right: 30%;
  }
}
@keyframes dollar8 {
  0% {
    right: -20%;
    bottom: 4%;
  }
  50% {
    right: -5%;
    bottom: 6%;
  }
  100% {
    right: -20%;
    bottom: 4%;
  }
}
@keyframes check {
  0% {
    right: 19%;
    top: 29%;
    transform: rotate(0deg);
  }
  50% {
    right: 32%;
    top: 28%;
    transform: rotate(14deg);
  }
  100% {
    right: 19%;
    top: 29%;
    transform: rotate(0deg);
  }
}
.section-title {
  font-weight: 700;
  font-size: 41px;
  line-height: 53px;
  color: #EBEAE5;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-title span {
  color: #A0E9C2;
}

.description {
  max-width: 690px;
  line-height: 24px;
}

.section-growth {
  padding: 102px 0 135px;
}
.section-growth .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-growth .text {
  max-width: 808px;
}
.section-growth .text .section-title {
  margin-bottom: 16px;
}
.section-growth .countries {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 570px;
  margin-top: 15px;
  width: 100%;
}
.section-growth .countries .country-col {
  width: calc(50% - 10px);
  padding: 12px 22px 16px;
  border-radius: 20px;
  background: rgba(160, 233, 194, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.section-growth .countries .country-col p {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 34px;
  color: #A0E9C2;
}
.section-growth .countries .country-col span {
  font-size: 16px;
  line-height: 24px;
  display: block;
  text-align: right;
  transition: all 0.3s ease;
}
.section-growth .countries .country-col:hover {
  border-color: rgba(160, 233, 194, 0.1);
}
.section-growth .countries .country-col:hover span {
  color: #A0E9C2;
}
.section-growth.visible .parallax-wrapper img:nth-child(1) {
  left: -27px;
  top: -41px;
}
@media (max-width: 767px) {
  .section-growth.visible .parallax-wrapper img:nth-child(1) {
    width: 42px;
    height: 42px;
    left: 5px;
    top: -45px;
  }
}
.section-growth.visible .parallax-wrapper img:nth-child(2) {
  bottom: -45px;
  left: 48%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-growth.visible .parallax-wrapper img:nth-child(2) {
    width: 140px;
    height: 140px;
  }
}
.section-growth .parallax-wrapper img:nth-child(1) {
  left: -47px;
  top: -61px;
}
@media (max-width: 767px) {
  .section-growth .parallax-wrapper img:nth-child(1) {
    width: 42px;
    height: 42px;
    left: 5px;
    top: -45px;
  }
}
.section-growth .parallax-wrapper img:nth-child(2) {
  bottom: -65px;
  left: 58%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-growth .parallax-wrapper img:nth-child(2) {
    width: 140px;
    height: 140px;
  }
}

.parallax-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.parallax-wrapper img {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  transition: all 1s ease;
}

.section-videos {
  padding: 123px 0 150px;
}
@media (max-width: 767px) {
  .section-videos .wrapper {
    padding-right: 0;
  }
}
.section-videos .section-title {
  margin-bottom: 14px;
}
.section-videos .description {
  margin-bottom: 41px;
}
.section-videos .video-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  width: 100%;
}
.section-videos .video-row::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1400px) {
  .section-videos .video-row {
    overflow: auto;
  }
}
@media (max-width: 767px) {
  .section-videos .video-row {
    column-gap: 10px;
  }
}
.section-videos .video-row .video-col {
  width: 217px;
  min-width: 217px;
  min-height: 385px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section-videos .video-row .video-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.section-videos .video-row .video-col:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: none;
}
.section-videos .video-row .video-col:hover:after {
  opacity: 0;
  visibility: hidden;
}
.section-videos .video-row .video-col .yt-icon {
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.section-videos.visible .parallax-wrapper img:nth-child(1) {
  top: 289px;
  left: -29px;
}
@media (max-width: 767px) {
  .section-videos.visible .parallax-wrapper img:nth-child(1) {
    top: 170px;
    left: 168px;
    width: 49px;
    height: 49px;
  }
}
.section-videos.visible .parallax-wrapper img:nth-child(2) {
  right: -95px;
  top: 90px;
}
@media (max-width: 767px) {
  .section-videos.visible .parallax-wrapper img:nth-child(2) {
    width: 92px;
    height: 92px;
    top: auto;
    right: 30px;
    bottom: -120px;
  }
}
.section-videos .parallax-wrapper img:nth-child(1) {
  top: 219px;
  left: -9px;
}
@media (max-width: 767px) {
  .section-videos .parallax-wrapper img:nth-child(1) {
    top: 170px;
    left: 168px;
    width: 49px;
    height: 49px;
  }
}
.section-videos .parallax-wrapper img:nth-child(2) {
  right: -45px;
  top: 40px;
}
@media (max-width: 767px) {
  .section-videos .parallax-wrapper img:nth-child(2) {
    width: 92px;
    height: 92px;
    top: auto;
    right: 30px;
    bottom: -120px;
  }
}

.modal.video-modal .modal-dialog {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.video-modal .modal-dialog .modal-content {
  background: transparent;
  width: auto;
  border: none;
}
.modal.video-modal .modal-dialog .modal-content .modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
}
.modal.video-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}
.modal.video-modal .modal-dialog .modal-content .modal-body video,
.modal.video-modal .modal-dialog .modal-content .modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 693px;
  display: block;
  min-width: 390px;
}
@media (max-width: 767px) {
  .modal.video-modal .modal-dialog .modal-content .modal-body video,
  .modal.video-modal .modal-dialog .modal-content .modal-body iframe {
    min-width: 300px;
    min-height: 480px;
  }
}
.modal.form-modal .modal-dialog {
  max-width: 415px;
}
.modal.form-modal .modal-dialog .modal-content {
  background: transparent;
  border: none;
}
.modal.form-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form {
  padding: 80px 56px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .modal.form-modal .modal-dialog .modal-content .modal-body .form {
    padding: 80px 26px;
  }
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .close-modal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  padding: 0;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .form-title {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 16px;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .form-subtitle {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 40px;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .form-group-wrapper span {
  font-size: 12px;
  line-height: 18px;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .form-group-wrapper .form-group .form-control {
  min-height: 40px;
}
.modal.form-modal .modal-dialog .modal-content .modal-body .form .btn {
  min-width: 100%;
}
.modal.form-modal.thnx .modal-dialog .modal-content .modal-body .form {
  padding: 60px 40px 40px;
}
.modal.form-modal.thnx .modal-dialog .modal-content .modal-body .form .form-subtitle {
  margin-bottom: 0;
}

.section-works {
  padding: 142px 0 130px;
}
.section-works .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-works .section-title {
  margin-bottom: 14px;
}
.section-works .subtitle {
  color: #A0E9C2;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 18px;
}
.section-works .description {
  margin-bottom: 42px;
}
.section-works .image {
  position: relative;
  padding-right: 43px;
  top: -22px;
}
.section-works .image img {
  position: relative;
  z-index: 3;
  animation: moveUpDown 2s ease-in-out infinite;
}
.section-works .image:after {
  content: "";
  position: absolute;
  right: -67px;
  top: -190px;
  width: 831px;
  height: 955px;
  background: url("../img/work-img-after.png") center no-repeat;
  background-size: contain;
}
.section-works .btn.mobile {
  display: none;
}
@media (max-width: 991px) {
  .section-works .btn.mobile {
    display: flex;
  }
}
.section-works.visible .parallax-wrapper img:nth-child(1) {
  left: -85px;
  top: -70px;
}
.section-works.visible .parallax-wrapper img:nth-child(2) {
  left: 49%;
  transform: translateX(-50%);
  bottom: -50px;
}
.section-works .parallax-wrapper img:nth-child(1) {
  left: -25px;
  top: -30px;
}
.section-works .parallax-wrapper img:nth-child(2) {
  left: 29%;
  transform: translateX(-50%);
  bottom: -10px;
}

.content {
  overflow: hidden;
}

.section-integration {
  padding: 103px 0 100px;
}
.section-integration .section-title {
  margin-bottom: 14px;
}
.section-integration .description {
  margin-bottom: 40px;
}
.section-integration .steps-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.section-integration .steps-row .step-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(33.3333333333% - 16px);
}
.section-integration .steps-row .step-col p {
  font-weight: 700;
  font-size: 115px;
  line-height: 90px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #A0E9C2;
  opacity: 0.1;
  transition: all 0.3s ease;
}
.section-integration .steps-row .step-col span {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #A0E9C2;
  margin-left: 16px;
  transition: all 0.3s ease;
}
.section-integration .steps-row .step-col:hover p {
  color: #EBEAE5;
}
.section-integration .steps-row .step-col:hover span {
  color: #EBEAE5;
}

.section-start {
  padding: 92px 0 100px;
}
.section-start .start-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.section-start .start-row .start-col {
  width: calc(50% - 5px);
  padding: 40px;
  background: #1c2123;
  border-radius: 20px;
  position: relative;
  min-height: 353px;
  overflow: hidden;
  z-index: 1;
}
.section-start .start-row .start-col .text {
  max-width: 366px;
  width: 65%;
}
.section-start .start-row .start-col .text p {
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  color: #A0E9C2;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .section-start .start-row .start-col .text p {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
.section-start .start-row .start-col .text span {
  line-height: 24px;
}
.section-start .start-row .start-col .image {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
  z-index: -1;
  max-width: 35%;
}
@media (max-width: 767px) {
  .section-start .start-row .start-col .image {
    max-width: 159px;
  }
}
.section-start .start-row .start-col .btn span {
  margin: 0;
}
.section-start .start-row .start-col:nth-child(1) .image {
  padding-right: 25px;
  padding-bottom: 24px;
}
.section-start .start-row .start-col:nth-child(2) .image {
  bottom: -7px;
}
.section-start .start-row .start-col:hover .image {
  transform: rotate(7deg);
}
.section-start .start-row .start-col:nth-child(2):hover .image {
  transform: rotate(-7deg);
}
.section-start .start-row .start-col.action {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-start .start-row .start-col.action {
    padding: 0;
    padding-top: 40px;
  }
}
.section-start .start-row .start-col.action p {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
}
.section-start .start-row .start-col.action span {
  margin-bottom: 35px;
  display: block;
  text-align: center;
}
.section-start .start-row .start-col.action .btn span {
  margin: 0;
}
.section-start.visible .parallax-wrapper img:nth-child(1) {
  left: -205px;
  top: -110px;
}
@media (max-width: 767px) {
  .section-start.visible .parallax-wrapper img:nth-child(1) {
    width: 103px;
    height: 103px;
    left: auto;
    right: 0;
    top: -75px;
  }
}
.section-start.visible .parallax-wrapper img:nth-child(2) {
  right: -45px;
  bottom: -64px;
}
@media (max-width: 767px) {
  .section-start.visible .parallax-wrapper img:nth-child(2) {
    display: none;
  }
}
.section-start .parallax-wrapper img:nth-child(1) {
  left: -105px;
  top: -50px;
}
@media (max-width: 767px) {
  .section-start .parallax-wrapper img:nth-child(1) {
    width: 103px;
    height: 103px;
    left: auto;
    right: 0;
    top: -75px;
  }
}
.section-start .parallax-wrapper img:nth-child(2) {
  right: -15px;
  bottom: -24px;
}
@media (max-width: 767px) {
  .section-start .parallax-wrapper img:nth-child(2) {
    display: none;
  }
}

.section-map {
  padding: 90px 0 100px;
}
.section-map .section-title {
  margin-bottom: 14px;
}
.section-map .description {
  margin-bottom: 42px;
  max-width: 100%;
}
.section-map .map-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  display: none;
}
@media (max-width: 991px) {
  .section-map .map-row {
    display: flex;
  }
}
.section-map .map-row .map-item {
  width: calc(50% - 4px);
  border-radius: 20px;
  padding: 16px;
  background: rgba(160, 233, 194, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section-map .map-row .map-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-map .map-row .map-item p {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .section-map .map-row .map-item p {
    font-size: 16px;
    line-height: 24px;
    color: #A0E9C2;
    font-weight: 600;
  }
}
.section-map .map-row .map-item span {
  color: #A0E9C2;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}
@media (max-width: 767px) {
  .section-map .map-row .map-item span {
    margin: 15px 0 0 auto;
    font-size: 12px;
    line-height: 18px;
    color: #EBEAE5;
    font-weight: 400;
  }
}
.section-map .map {
  position: relative;
}
.section-map .map svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-map.visible .parallax-wrapper img:nth-child(1) {
  bottom: 65px;
  left: 15px;
}
@media (max-width: 767px) {
  .section-map.visible .parallax-wrapper img:nth-child(1) {
    display: none;
  }
}
.section-map.visible .parallax-wrapper img:nth-child(2) {
  left: 47%;
  transform: translateX(-50%);
  top: -55px;
}
@media (max-width: 767px) {
  .section-map.visible .parallax-wrapper img:nth-child(2) {
    width: 41px;
    height: 41px;
    transform: none;
    left: 16px;
    top: -270px;
  }
}
.section-map .parallax-wrapper img:nth-child(1) {
  bottom: 15px;
  left: -15px;
}
@media (max-width: 767px) {
  .section-map .parallax-wrapper img:nth-child(1) {
    display: none;
  }
}
.section-map .parallax-wrapper img:nth-child(2) {
  left: 47%;
  transform: translateX(-50%);
  top: -15px;
}
@media (max-width: 767px) {
  .section-map .parallax-wrapper img:nth-child(2) {
    width: 41px;
    height: 41px;
    transform: none;
    left: 16px;
    top: -270px;
  }
}

.section-advantages {
  padding: 88px 0 100px;
}
@media (max-width: 767px) {
  .section-advantages {
    padding: 40px 0;
  }
}
.section-advantages .section-title {
  margin-bottom: 12px;
}
.section-advantages .description {
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .section-advantages .description {
    margin-bottom: 32px;
  }
}
.section-advantages .advantage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .section-advantages .advantage-row {
    gap: 8px;
  }
}
.section-advantages .advantage-row .advantage-col {
  width: calc(100% - 592px);
  background: #182121;
  border-radius: 20px;
  padding: 32px 40px;
  position: relative;
  min-height: 299px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .section-advantages .advantage-row .advantage-col {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .section-advantages .advantage-row .advantage-col {
    width: calc(50% - 10px);
  }
  .section-advantages .advantage-row .advantage-col:nth-child(2n) .advantage-img {
    order: -1;
  }
}
@media (max-width: 767px) {
  .section-advantages .advantage-row .advantage-col {
    padding: 16px;
    width: 50%;
    min-height: initial;
  }
}
.section-advantages .advantage-row .advantage-col.highlighted {
  max-width: 572px;
  width: 100%;
  background: #1f2b2a;
}
@media (max-width: 991px) {
  .section-advantages .advantage-row .advantage-col.highlighted {
    max-width: 100%;
    width: calc(50% - 10px);
  }
}
.section-advantages .advantage-row .advantage-col.highlighted span {
  color: #A0E9C2;
}
@media (max-width: 767px) {
  .section-advantages .advantage-row .advantage-col.highlighted span {
    color: #EBEAE5;
  }
}
.section-advantages .advantage-row .advantage-col span {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .section-advantages .advantage-row .advantage-col span {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
.section-advantages .advantage-row .advantage-col p {
  color: #A0E9C2;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-advantages .advantage-row .advantage-col p {
    font-size: 16px;
    line-height: 21px;
  }
}
.section-advantages .advantage-row .advantage-col .advantage-img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .section-advantages .advantage-row .advantage-col .advantage-img {
    position: static;
    transform: none;
    margin: auto 0 0 auto;
  }
}
@media (max-width: 767px) {
  .section-advantages .advantage-row .advantage-col .advantage-img {
    max-width: 140px;
  }
}
@media (max-width: 767px) {
  .section-advantages.visible .parallax-wrapper {
    display: none;
  }
}
.section-advantages.visible .parallax-wrapper img:nth-child(1) {
  bottom: 110px;
  left: -40px;
}
.section-advantages.visible .parallax-wrapper img:nth-child(2) {
  right: -110px;
  top: 60px;
}
@media (max-width: 767px) {
  .section-advantages .parallax-wrapper {
    display: none;
  }
}
.section-advantages .parallax-wrapper img:nth-child(1) {
  bottom: 50px;
  left: -10px;
}
.section-advantages .parallax-wrapper img:nth-child(2) {
  right: -50px;
  top: 30px;
}

.section-faq {
  padding: 89px 0 100px;
}
.section-faq .section-title {
  margin-bottom: 28px;
}
.section-faq .faq-wrapper {
  display: flex;
  justify-content: space-between;
}
.section-faq .faq {
  max-width: 828px;
  width: 100%;
  padding-right: 20px;
}
.section-faq .faq-item {
  margin-bottom: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(160, 233, 194, 0.15);
  background: rgba(160, 233, 194, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .section-faq .faq-item {
    margin-bottom: 10px;
  }
}
.section-faq .faq-item:nth-last-child(1) {
  margin-bottom: 0;
}
.section-faq .faq-item.active {
  border: 1px solid #A0E9C2;
}
.section-faq .faq-item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #EBEAE5;
}
@media (max-width: 767px) {
  .section-faq .faq-item .question {
    font-size: 12px;
    line-height: 18px;
  }
}
.section-faq .faq-item .question svg {
  transition: transform 0.3s ease;
}
.section-faq .faq-item .question.active svg {
  transform: rotate(180deg);
}
.section-faq .faq-item .answer {
  padding: 12px 0 0;
  color: #c1c2be;
  font-size: 14px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .section-faq .faq-item .answer {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .section-faq.visible .parallax-wrapper {
    display: none;
  }
}
.section-faq.visible .parallax-wrapper img {
  right: -55px;
  bottom: -85px;
  z-index: -1;
}
@media (max-width: 767px) {
  .section-faq .parallax-wrapper {
    display: none;
  }
}
.section-faq .parallax-wrapper img {
  right: -15px;
  bottom: -15px;
  z-index: -1;
}

.form {
  max-width: 572px;
  width: 100%;
  padding: 70px 40px;
  background: rgba(160, 233, 194, 0.05);
  border: 1px solid rgba(160, 233, 194, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(50px);
}
@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
  .form {
    background: #1f2b2a;
    backdrop-filter: none;
  }
}
.form .form-title {
  color: #A0E9C2;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  text-transform: uppercase;
}
.form .form-subtitle {
  color: #EBEAE5;
  line-height: 24px;
  margin-bottom: 30px;
}
.form form {
  width: 100%;
}
.form form .btn {
  margin-top: 25px;
}

.form-group-wrapper {
  margin-bottom: 14px;
  width: 100%;
}
.form-group-wrapper span {
  font-size: 14px;
  line-height: 21px;
  color: #EBEAE5;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .form-group-wrapper span {
    font-size: 12px;
    line-height: 18px;
  }
}
.form-group-wrapper .form-group {
  margin: 0;
}
.form-group-wrapper .form-group .form-control {
  background: rgba(160, 233, 194, 0.05);
  border: 1px solid rgba(160, 233, 194, 0.1);
  border-radius: 10px;
  padding: 0px 10px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 42px;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  color: #EBEAE5;
}
@media (max-width: 767px) {
  .form-group-wrapper .form-group .form-control {
    min-height: 40px;
    font-size: 12px;
  }
}
.form-group-wrapper .form-group .form-control::-webkit-input-placeholder {
  color: #717875;
}
.form-group-wrapper .form-group .form-control::-moz-placeholder {
  color: #717875;
}
.form-group-wrapper .form-group .form-control:-ms-input-placeholder {
  color: #717875;
}
.form-group-wrapper .form-group .form-control:-moz-placeholder {
  color: #717875;
}
.form-group-wrapper .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.form-group-wrapper .form-group .form-control:focus:-moz-placeholder {
  color: transparent;
}
.form-group-wrapper .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-group-wrapper .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.form-group-wrapper .form-group .wpcf7-not-valid {
  border-color: #821e1e;
}
.form-group-wrapper .form-group .wpcf7-not-valid-tip {
  color: red;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

.section-blog {
  padding: 89px 0 110px;
}
.section-blog .blog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-blog .blog-heading .section-title {
  margin-bottom: 0;
}
.section-blog .blog-heading .btn {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .section-blog .blog-heading .btn {
    display: none;
  }
}
.section-blog .parallax-wrapper img {
  left: 444px;
  top: -49px;
}
.section-blog .btn-mobile {
  display: none;
}
@media (max-width: 767px) {
  .section-blog .btn-mobile {
    display: flex;
    margin-top: 30px;
  }
}

.blog-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 56px;
}
@media (max-width: 767px) {
  .blog-row {
    row-gap: 30px;
  }
}
.blog-row .blog-col {
  width: calc(33.3333333333% - 14px);
}
.blog-row .blog-col .post-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.blog-row .blog-col .post-heading p {
  color: #A0E9C2;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .blog-row .blog-col .post-heading p {
    font-size: 12px;
    line-height: 18px;
  }
}
.blog-row .blog-col .post-heading span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #73807f;
}
@media (max-width: 767px) {
  .blog-row .blog-col .post-heading span {
    font-size: 12px;
    line-height: 18px;
  }
}
.blog-row .blog-col .post-image {
  height: 231px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .blog-row .blog-col .post-image {
    margin-bottom: 10px;
  }
}
.blog-row .blog-col .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.blog-row .blog-col .post-title {
  color: #EBEAE5;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .blog-row .blog-col .post-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-row .blog-col:hover img {
  transform: scale(1.05);
}
.blog-row .blog-col:hover .post-title {
  color: #A0E9C2;
}

.breadcrumbs {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .breadcrumbs ul {
    overflow: auto;
    white-space: nowrap;
  }
}
.breadcrumbs ul li a {
  position: relative;
  font-size: 16px;
  color: #686b6b;
  line-height: 24px;
}
.breadcrumbs ul li a:after {
  content: "/";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  font-weight: 300;
  font-size: 16px;
  color: #686b6b;
  line-height: 24px;
}
@media (max-width: 767px) {
  .breadcrumbs ul li a:after {
    font-size: 12px;
    line-height: 18px;
  }
}

.section-blog-inner {
  padding: 122px 0 36px;
}
.section-blog-inner .main-post {
  display: flex;
  justify-content: flex-start;
  background: rgba(160, 233, 194, 0.05);
  border-radius: 40px;
  min-height: 400px;
  margin-bottom: 56px;
  position: relative;
}
.section-blog-inner .main-post .post-left {
  padding: 45px 34px 50px 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  width: calc(100% - 453px);
}
.section-blog-inner .main-post .post-left .post-heading .mobile {
  display: none;
}
@media (max-width: 767px) {
  .section-blog-inner .main-post .post-left .post-heading .mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #A0E9C2;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .section-blog-inner .main-post .post-left .post-heading .mobile span {
    color: #818583;
  }
}
.section-blog-inner .main-post .post-left .post-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 22px;
}
.section-blog-inner .main-post .post-left .post-title span {
  color: #A0E9C2;
}
.section-blog-inner .main-post .post-left .post-description {
  line-height: 24px;
}
.section-blog-inner .main-post .post-left .post-footer {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-blog-inner .main-post .post-left .post-footer p {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #A0E9C2;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
}
.section-blog-inner .main-post .post-left .post-footer p span {
  color: #818583;
  margin-left: 20px;
}
.section-blog-inner .main-post .post-right {
  max-width: 453px;
  width: 100%;
}
.section-blog-inner .main-post .post-right img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (max-width: 991px) {
  .section-blog-inner .main-post .post-right img {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .section-blog-inner .main-post .post-right img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .section-blog-inner .parallax-wrapper {
    display: none;
  }
}
.section-blog-inner .parallax-wrapper img:nth-child(1) {
  left: -81px;
  bottom: 68px;
}
.section-blog-inner .parallax-wrapper img:nth-child(2) {
  right: -95px;
  top: -69px;
}

.pagination {
  margin: 56px 0 0;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
.pagination ul li {
  transition: all 0.3s ease;
}
.pagination ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.pagination ul li.prev a, .pagination ul li.next a {
  position: relative;
}
.pagination ul li.prev a:after, .pagination ul li.next a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/pagination-arrow.svg") center no-repeat;
  width: 40px;
  transition: all 0.3s ease;
  height: 40px;
}
.pagination ul li.prev.disabled, .pagination ul li.next.disabled {
  pointer-events: none;
}
.pagination ul li.prev.disabled a:after, .pagination ul li.next.disabled a:after {
  background: url("../img/pagination-arrow-disabled.svg") center no-repeat;
}
.pagination ul li.prev.disabled a:hover:after, .pagination ul li.next.disabled a:hover:after {
  filter: none;
}
.pagination ul li.prev a:after {
  transform: translate(-50%, -50%) scale(-1);
}
.pagination ul li.prev.disabled {
  pointer-events: none;
}
.pagination ul li.prev.disabled a:after {
  transform: translate(-50%, -50%) scale(1);
}
.pagination ul li.prev.disabled a:hover:after {
  filter: none;
}
.pagination ul li.next.disabled a:after {
  transform: translate(-50%, -50%) scale(-1);
}
.pagination ul li.active a, .pagination ul li:hover a {
  border-color: #A0E9C2;
  color: #A0E9C2;
}

.section-blog-single {
  padding: 142px 0 80px;
}
@media (max-width: 767px) {
  .section-blog-single {
    padding-top: 70px !important;
  }
}
.section-blog-single .post-image {
  height: 400px;
  border-radius: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .section-blog-single .post-image .parallax-wrapper {
    display: none;
  }
}
.section-blog-single .post-image .parallax-wrapper img:nth-child(1) {
  left: -81px;
  bottom: 68px;
}
.section-blog-single .post-image .parallax-wrapper img:nth-child(2) {
  right: -95px;
  top: -69px;
}
@media (max-width: 767px) {
  .section-blog-single .post-image {
    height: 200px;
    margin-bottom: 16px;
  }
}
.section-blog-single .post-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}
.section-blog-single .post-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 730px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .section-blog-single .post-date {
    margin: 0 auto 40px;
  }
}
.section-blog-single .post-date p {
  color: #A0E9C2;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-blog-single .post-date p {
    font-size: 12px;
    line-height: 18px;
  }
}
.section-blog-single .post-date span {
  color: #7e807f;
}
@media (max-width: 767px) {
  .section-blog-single .post-date span {
    font-size: 12px;
    line-height: 18px;
  }
}
.section-blog-single .form {
  max-width: 730px;
  margin: 0 auto;
  padding: 50px 51px;
}
@media (max-width: 767px) {
  .section-blog-single .form {
    padding: 40px 20px;
  }
}
.section-blog-single .form .column-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .section-blog-single .form .column-2 {
    flex-direction: column;
    gap: 0;
  }
}

.default-content {
  max-width: 730px;
  margin: 0 auto 80px;
}
@media (max-width: 767px) {
  .default-content {
    margin: 0 auto 40px;
  }
}
.default-content h1 {
  font-weight: 700;
  font-size: 41px;
  line-height: 53px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .default-content h1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
  }
}
.default-content h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .default-content h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.default-content h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .default-content h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.default-content h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .default-content h4 {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}
.default-content h5 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .default-content h5 {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}
.default-content h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .default-content h6 {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 8px;
  }
}
.default-content p {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.default-content p a {
  text-decoration: underline;
  color: #A0E9C2;
}
.default-content p a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .default-content p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 16px;
  }
}
.default-content a {
  text-decoration: underline;
  color: #A0E9C2;
}
.default-content a:hover {
  text-decoration: none;
}

/** END CONTENT **/
/** START FOOTER **/
footer {
  padding: 21px 0 30px;
}
footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .wrapper {
    flex-wrap: wrap;
  }
}
footer .footer-left {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
}
footer .footer-left .logo {
  margin-right: 15px;
}
@media (max-width: 767px) {
  footer .footer-left .logo {
    max-width: 69px;
  }
  footer .footer-left .logo svg {
    width: 100%;
  }
}
footer .footer-left .logo svg {
  display: block;
}
footer .footer-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  footer .footer-right {
    flex-wrap: wrap;
  }
}
footer .footer-right ul {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
footer .footer-right ul li {
  margin-left: 10px;
}
footer .footer-right ul li a svg {
  display: block;
  transition: all 0.3s ease;
  opacity: 0.2;
}
footer .footer-right ul li a svg path {
  transition: all 0.3s ease;
}
footer .footer-right ul li a:hover svg {
  opacity: 1;
}
footer .copy {
  font-size: 10px;
  line-height: 13px;
  color: #7e807f;
}
@media (max-width: 767px) {
  footer .copy {
    display: none;
  }
}
footer .copy.mobile {
  display: none;
}
@media (max-width: 767px) {
  footer .copy.mobile {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    justify-content: center;
  }
}
footer .btn {
  background: #A0E9C2;
  padding: 15px 24px 13px;
  border: none;
  color: #111619;
  font-size: 14px;
  font-weight: 600;
  margin-left: 40px;
}
footer .btn.mobile {
  display: none;
}
@media (max-width: 767px) {
  footer .btn {
    display: none;
  }
  footer .btn.mobile {
    display: inline-flex;
    align-self: center;
    margin-left: 0;
  }
}
footer .btn span:before {
  content: none;
}
footer .btn:hover {
  background: #EBEAE5;
}
footer .btn:hover span {
  padding-left: 0;
}
footer .btn-wrapper {
  display: none;
}
@media (max-width: 767px) {
  footer .btn-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
}

/** END FOOTER **/
.map-tooltip {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: flex;
}
@media (max-width: 991px) {
  .map-tooltip {
    display: none;
  }
}
.map-tooltip:after {
  content: "";
  width: 2px;
  height: 50px;
  background: #A0E9C2;
  position: absolute;
  left: 50%;
  z-index: 1;
  border-right: 1px solid #111619;
}
.map-tooltip:nth-of-type(1)::after {
  height: 75px;
  transform: rotate(10deg);
  bottom: 0;
  left: 24px;
}
.map-tooltip:nth-of-type(2)::after {
  height: 45px;
  bottom: 0;
  transform: rotate(15deg);
}
.map-tooltip:nth-of-type(3)::after {
  height: 60px;
  transform: rotate(40deg);
  top: 0;
}
.map-tooltip p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0px 3px;
  color: #111619;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.map-tooltip .country-title {
  background-color: #A0E9C2;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.map-tooltip .country-info {
  background-color: #EBEAE5;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.map-tooltip.active {
  opacity: 1;
}

.countries-map path {
  fill-opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 991px) {
  .countries-map path {
    fill-opacity: 1;
  }
}
.countries-map path.active {
  fill-opacity: 1;
}

.error-content {
  padding: 0;
  background-color: #A0E9C2;
}
.error-content .wrapper {
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
.error-content .wrapper .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 715px;
  width: calc(51% - 25px);
}
.error-content .wrapper .info .title,
.error-content .wrapper .info .text {
  color: #111619;
}
.error-content .wrapper .info .title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
}
.error-content .wrapper .info .text {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  margin-top: 16px;
}
.error-content .wrapper .info a {
  margin-top: 45px;
  background: rgba(17, 22, 25, 0.1);
  color: #111619;
  border-radius: 45px;
  padding: 18px 32px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.3;
  display: block;
}
.error-content .wrapper img {
  width: calc(49% - 25px);
  animation: moveUpDown 2s ease-in-out infinite;
}
.error-content + footer {
  display: none;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.content {
  position: relative;
}
.content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 5;
}
.content.menu-visible:after {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .section-growth .parallax-wrapper {
    z-index: -1;
  }
  .section-videos {
    padding: 123px 0 60px;
  }
  .section-works {
    padding: 60px 0 60px;
  }
  .section-works .wrapper {
    flex-direction: column;
  }
  .section-works .wrapper > a {
    display: block;
    margin: 54px auto 0;
  }
  .section-works .parallax-wrapper {
    display: none;
  }
  .section-works .image {
    padding: 0;
    top: auto;
    margin: 0 auto;
    z-index: -1;
  }
  .section-works .text {
    width: 100%;
  }
  .section-works .text a {
    display: none;
  }
  .section-works .description {
    max-width: 100%;
  }
  .map-tooltip:nth-of-type(1)::after {
    transform: rotate(16deg);
  }
  .map-tooltip:nth-of-type(2)::after {
    height: 40px;
  }
  .map-tooltip:nth-of-type(3)::after {
    left: 33%;
    height: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .section-main {
    padding: 100px 0 30px;
    overflow: visible;
  }
  .section-main .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }
  .section-main .image {
    position: relative;
    right: -75px;
    top: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .section-main .image {
    padding: 0;
    right: 0;
  }
  .section-main .image:After {
    content: none;
  }
  .section-main .image > img {
    display: none;
  }
  .section-main .image .layers {
    display: none;
  }
  .section-main .image .layers img {
    max-width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .section-main .text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .section-main .text a {
    margin: 0 auto;
    width: 100%;
  }
  .section-main .description {
    max-width: 100%;
  }
  .section-growth {
    padding: 102px 0 60px;
    margin-top: -120px;
  }
  .section-growth .parallax-wrapper img:nth-child(2) {
    bottom: -75px;
    left: auto;
    transform: none;
    right: -20px;
  }
  .section-growth .parallax-wrapper img:nth-child(1) {
    left: 16px;
    top: -61px;
  }
  .section-growth .wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .section-growth .text {
    width: 100%;
    max-width: 100%;
  }
  .section-growth .countries {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }
  .section-growth .countries .country-col {
    display: flex;
    justify-content: space-between;
    padding: 11px 16px;
    align-items: center;
    border-radius: 30px;
  }
  .section-growth .countries .country-col p {
    margin: 0;
  }
  .section-videos {
    padding: 60px 0;
  }
  .section-integration {
    padding: 40px 0;
  }
  .section-integration .wrapper {
    flex-direction: column;
  }
  .section-integration .steps-row {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .section-integration .steps-row .step-col {
    width: 100%;
  }
  .section-start {
    padding: 40px 0;
  }
  .section-map {
    padding: 40px 0;
  }
}
@media screen and (max-width: 992px) {
  header {
    padding: 23px 24px;
  }
  header .logo {
    max-width: 40px;
  }
  header ul {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .hamburger {
    display: flex;
    background: url("../img/hamburger.svg") center no-repeat;
    width: 24px;
    height: 24px;
  }
  header .hamburger.active {
    background: url("../img/close-menu.svg") center no-repeat;
  }
  .section-start .start-row {
    flex-direction: column;
  }
  .section-start .start-row .start-col {
    width: 100%;
    min-height: auto;
  }
  .section-faq .faq-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .section-faq .faq-wrapper .faq {
    max-width: 100%;
    padding: 0;
  }
  .section-faq .faq-wrapper .form {
    max-width: 100%;
  }
  .section-blog .blog-row {
    flex-direction: column;
  }
  .section-blog .blog-row .blog-col {
    width: 100%;
    max-width: 100%;
  }
  .section-blog-inner .main-post {
    flex-direction: column;
    border-radius: 25px;
    overflow: hidden;
  }
  .section-blog-inner .main-post .post-left {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
  .section-blog-inner .main-post .post-left .post-footer {
    margin-top: 20px;
    align-items: center;
  }
  .section-blog-inner .main-post .post-left .post-footer p {
    position: static;
  }
  .section-blog-inner .main-post .post-right {
    order: 0;
    width: 100%;
    max-width: 100%;
  }
  .section-blog-inner .main-post .post-right img {
    width: 100%;
  }
  .section-blog-inner .blog-row {
    gap: 30px;
  }
  .section-blog-inner .blog-row .blog-col {
    width: calc(50% - 15px);
  }
  .error-content .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .error-content .wrapper .info {
    width: 100%;
    max-width: 100%;
    order: 1;
    align-items: center;
  }
  .error-content .wrapper .info .title {
    font-size: 24px;
    text-align: center;
  }
  .error-content .wrapper .info .text {
    text-align: center;
  }
  .error-content .wrapper img {
    width: 100%;
    max-width: 75%;
    order: 0;
    margin-bottom: 20px;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  header {
    padding: 12px 14px;
  }
  .section-title {
    font-size: 20px;
    line-height: 1;
  }
  .description {
    font-size: 10px;
    line-height: 1.5;
  }
  .section-main {
    padding: 95px 0 30px;
  }
  .section-main .text small {
    font-size: 10px;
  }
  .section-main .image:after {
    top: 80%;
    left: 50%;
    width: 160%;
    height: 160%;
    transform: translate(-50%, -50%);
  }
  .section-growth {
    padding: 30px 0;
  }
  .section-growth .countries {
    gap: 8px;
  }
  .section-growth .countries .country-col {
    max-width: 100%;
    width: 100%;
  }
  .section-growth .countries .country-col p {
    font-size: 18px;
    line-height: 1.5;
  }
  .section-growth .countries .country-col span {
    font-size: 14px;
    line-height: 1.5;
  }
  .section-works .subtitle {
    font-size: 12px;
    line-height: 1.2;
  }
  .section-works .wrapper > a {
    width: 100%;
  }
  .section-works .image {
    max-width: 63%;
  }
  .section-works .image:after {
    right: auto;
    left: 15%;
    top: 75%;
    width: 250%;
    transform: translate(-50%, -50%);
    height: 250%;
  }
  .section-integration .steps-row .step-col p {
    font-size: 63px;
    line-height: 1.3;
    min-width: 80px;
  }
  .section-integration .steps-row .step-col span {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 15px;
  }
  .section-start .start-row .start-col {
    flex-direction: column;
    display: flex;
    gap: 30px;
    padding: 16px 16px 0;
  }
  .section-start .start-row .start-col .text {
    width: 100%;
    max-width: 100%;
  }
  .section-start .start-row .start-col .text p {
    font-size: 20px;
    line-height: 20px;
  }
  .section-start .start-row .start-col .text span {
    font-size: 10px;
    line-height: 15px;
    display: block;
    margin-bottom: 0;
  }
  .section-start .start-row .start-col .image {
    position: static;
    padding: 0 !important;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-start .start-row .start-col .btn {
    min-width: 100%;
  }
  .section-faq .faq-wrapper .form {
    padding: 40px 20px;
  }
  .section-faq .faq-wrapper .form .form-title {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 26px;
  }
  .section-faq .faq-wrapper .form .form-subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 40px;
  }
  .section-faq .faq-wrapper .form .btn {
    width: 100%;
    max-width: 100%;
  }
  .section-blog-inner {
    padding-top: 70px;
  }
  .section-blog-inner .main-post {
    flex-direction: column;
    border-radius: 25px;
    overflow: hidden;
  }
  .section-blog-inner .main-post .post-left {
    padding: 16px;
  }
  .section-blog-inner .main-post .post-left .post-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-blog-inner .main-post .post-left .post-description {
    font-size: 12px;
    line-height: 1.5;
  }
  .section-blog-inner .main-post .post-left .post-footer p {
    display: none;
  }
  .section-blog-inner .main-post .post-left .post-footer a {
    width: 100%;
  }
  .section-blog-inner .blog-row .blog-col {
    width: 100%;
  }
  .section-blog-inner .blog-row .blog-col .post-heading p,
  .section-blog-inner .blog-row .blog-col .post-heading span {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
  }
  .section-blog-inner .blog-row .blog-col .post-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .pagination ul {
    gap: 10px;
  }
  .breadcrumbs ul li a,
  .breadcrumbs ul li span {
    font-size: 12px;
    line-height: 1.5;
  }
}

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