* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.overflow-hidden {
  overflow: hidden;
}

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

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
  background: #E8F6F3;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: #4497D2;
}

*::-moz-selection {
  background: #4497D2;
  color: #fff;
}

*::selection {
  background: #4497D2;
  color: #fff;
}

h1, .h1 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.45;
  margin: 0;
  font-weight: bold;
  position: relative;
}
/* h1:before, .h1:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 2px;
  background: #8DD8FF;
  bottom: -24px;
} */

h2, .h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  position: relative;
  /* text-transform: uppercase; */
}
/* h2:before, .h2:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 2px;
  background: #8DD8FF;
  bottom: -24px;
} */

h3, .h3 {
  font-size: clamp(20px, 3.9vw, 32px);
  line-height: 1.45;
  margin: 0;
  position: relative;
}
/* h3:before, .h3:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 2px;
  background: #8DD8FF;
  bottom: -24px;
} */

h4, .h4 {
  font-size: clamp(18px, 3.9vw, 24px);
  line-height: 1.2;
  margin: 0;
  position: relative;
}
/* h4:before, .h4:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 2px;
  background: #8DD8FF;
  bottom: -24px;
} */

h5, .h5 {
  font-size: clamp(18px, 3.9vw, 20px);
  line-height: 1.2;
  margin: 0;
}

h6, .h6 {
  font-size: clamp(20px, 3.9vw, 32px);
  font-family: "Noto Sans", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

.text {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.text-2 {
  font-size: clamp(16px, 3.9vw, 22px);
  font-weight: 400;
  line-height: 1.5;
}

.w-100 {
  width: 100%;
}

.btn {
  position: relative;
  min-width: 270px;
  padding: 15px;
  color: #fff;
  background-color: #8DD8FF;
  font-size: clamp(14px, 3vw, 20px);
  font-weight: bold;
  border-radius: 15px;
  max-height: 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.stars-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stars-wrapp .stars-description {
  margin-left: 10px;
  font-size: 14px;
}
.stars-wrapp .stars-description span {
  color: #8DD8FF;
}

.btn:hover {
  background-color: #8DD8FF;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.row-button {
  margin-bottom: 0;
}

.btn-2 {
  background-color: #4497D2;
  color: #fff;
}

.btn-2:hover {
  color: #121721;
  background-color: #2bc9b4;
}

.btn-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 0;
  margin-left: auto;
}
.btn-arrow:before {
  position: absolute;
  content: "";
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn-arrow svg stop {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn-arrow:hover svg stop:first-child {
  stop-color: #00DBDE;
}
.btn-arrow:hover svg stop:last-child {
  stop-color: #FC00FF;
}
.btn-arrow:hover:before {
  opacity: 1;
}

.btn-2:active {
  background: #15212A;
}
.btn-2:active::before {
  content: none;
}

.swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-arrow i {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 40px;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.btn-arrow i:before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-right: 4px solid #FF8C00;
  border-top: 4px solid #FF8C00;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  border-radius: 2px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.6 !important;
}

.swiper-navigation .swiper-button-next {
  margin-left: 0;
}

.btn-arrow.left {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn-arrow.left i:before {
  top: 21px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: none !important;
}

@media screen and (min-width: 991px) {
  .btn {
    -webkit-transition: 0.3s linear !important;
    transition: 0.3s linear !important;
  }
  .btn:hover {
    -webkit-transition: 0.3s linear !important;
    transition: 0.3s linear !important;
  }
  .btn2:hover i {
    -webkit-box-shadow: 0px 8px 25px rgba(4, 36, 103, 0.5);
            box-shadow: 0px 8px 25px rgba(4, 36, 103, 0.5);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
  .btn-arrow:hover i:before {
    -webkit-box-shadow: 0px 8px 25px #FFFFFF;
            box-shadow: 0px 8px 25px #FFFFFF;
  }
  .btn-arrow:hover i:after {
    -webkit-box-shadow: 0px 8px 25px #FFFFFF;
            box-shadow: 0px 8px 25px #FFFFFF;
  }
  .btn-arrow.left:hover i:before {
    -webkit-box-shadow: -2px -8px 25px #fff;
            box-shadow: -2px -8px 25px #fff;
  }
  .btn-arrow.left:hover i:after {
    -webkit-box-shadow: -2px -8px 25px #fff;
            box-shadow: -2px -8px 25px #fff;
  }
}
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 48, 143, 1) 44.27%, #110126 74.11%, #000000 98.44%);
  overflow-x: hidden;
  position: relative;
  z-index: 5;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  outline: none;
  color: inherit;
  cursor: pointer;
}

section, header {
  position: relative;
}

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

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

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

header .layer-close {
  right: -50%;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

header.active-layer-close .layer-close {
  position: fixed;
  display: block;
  z-index: -1;
  left: 0;
  height: calc(100vh - 58px);
  top: 58px;
  right: 0;
  bottom: 0;
  background: #4497D2;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.header-menu.open {
  right: 0;
  top: 75px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

#countdown {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.btn svg {
  margin-left: 8px;
}

.header {
  position: fixed;
  z-index: 20;
  width: 100%;
  padding: 12px 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-img img{
  max-width: 250px;
  object-fit: contain;
}
/* .header-inner .logo .logo-img {
  width: 46px;
  height: 46px;
}
.header-inner .logo .logo-img img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 2px;
  overflow: visible;
}
.header-inner .logo .logo-img svg path:first-child {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.header-inner .logo .logo-img svg path:nth-child(2), .header-inner .logo .logo-img svg path:nth-child(3), .header-inner .logo .logo-img svg path:nth-child(4) {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  transform-box: fill-box;
} */
.header-inner .logo-text {
  margin-left: 10px;
  font-size: clamp(18px, 3.9vw, 24px);
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  color: #fff;
}
.header-inner .header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #fff;
}
.header-inner .header-btns .btn {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  color: #fff;
  background-color: #2bc9b4;
  padding: 10px 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  font-size: clamp(14px, 3vw, 16px);
}
.header-inner .header-btns .btn:hover {
  color: #fff;
  background-color: #4497D2;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.header-inner .header-btns .item {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  position: relative;
  margin-right: 80px;
}
.header-inner .header-btns .item:hover {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: #2bc9b4;
}
.header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  /* -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; */
}
.header .header-menu a {
  font-size: clamp(16px, 3.9vw, 18px);
  font-weight: 500;
}
.header .header-menu .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-menu .navigation .header-btn {
  margin-left: 40px;
}
.header .header-menu .navigation .header-btn .btn {
  max-width: 180px;
  min-width: 180px;
}
.header .header-menu .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header-menu .header-nav li {
  margin-right: 32px;
}
.header .header-menu .header-nav li:last-child {
  margin-right: 0;
}
.header .header-menu .header-nav li a {
  position: relative;
  color: #fff;
  font-size: clamp(16px, 3.9vw, 18px);
  font-weight: 500;
  font-family: "Noto Sans", sans-serif;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  position: relative;
}
/* .header .header-menu .header-nav li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  bottom: -22px;
  background: url("../img/arrow.png") no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
} */
.header .header-menu .header-nav li a:hover {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: #8DD8FF;
}
.header .header-menu .header-nav li a:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  /* -webkit-transform: translateX(-25%) translateY(0px);
      -ms-transform: translateX(-25%) translateY(0px); */
    transform: translateX(0) translateY(0px);
}

.wrapper-menu {
  display: none;
}

.line-menu {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  height: 4px;
}

.line-menu.half {
  width: 50%;
}

.line-menu.start {
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 75%;
}

.active .line-menu.start {
  -webkit-transform: rotate(-90deg) translateX(2px) translateY(-15px);
      -ms-transform: rotate(-90deg) translateX(2px) translateY(-15px);
          transform: rotate(-90deg) translateX(2px) translateY(-15px);
  width: 100%;
}

.line-menu.end {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  opacity: 1;
}

.active .line-menu.end {
  -webkit-transform: rotate(-90deg) translateX(-8px);
      -ms-transform: rotate(-90deg) translateX(-8px);
          transform: rotate(-90deg) translateX(-8px);
  opacity: 0;
}

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

.bg.rellax {
  height: 102%;
}

.opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(31, 31, 31, 0.5);
}

@-webkit-keyframes slidein {
  from {
    background-position: top;
    background-size: 2500px;
  }
  to {
    background-position: -100px 0px;
    background-size: 1920px;
  }
}

@keyframes slidein {
  from {
    background-position: top;
    background-size: 2500px;
  }
  to {
    background-position: -100px 0px;
    background-size: 1920px;
  }
}
.bg.rellax {
  height: 102%;
}

.banner {
  color: #fff;
  overflow: hidden;
}
.banner .banner-form {
  padding: 50px 40px;
  border-radius: 30px;
  background: #4497D2;
  /* border: 1px solid #8DD8FF; */
}
.banner .banner-form .text {
  margin: 10px 0;
}
.banner .banner-form .form-title {
  margin-bottom: 0;
}
.banner .banner-form .h2 {
  margin-bottom: 32px;
}
.banner .banner-form .h2:before {
  content: none;
}
.banner .banner-form input {
  background: none;
  border: 1px solid #F0F3FF;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
}
.banner .banner-form input:focus {
  border: 1px solid #8DD8FF;
}
.banner .banner-form input::-webkit-input-placeholder {
  color: #C8C6D6;
  font-size: 14px;
}
.banner .banner-form input::-moz-placeholder {
  color: #C8C6D6;
  font-size: 14px;
}
.banner .banner-form input:-ms-input-placeholder {
  color: #C8C6D6;
  font-size: 14px;
}
.banner .banner-form input::-ms-input-placeholder {
  color: #C8C6D6;
  font-size: 14px;
}
.banner .banner-form input::placeholder {
  color: #C8C6D6;
  font-size: 14px;
}
.banner .banner-form .form-desc .text {
  text-align: center;
  font-size: 12px;
  margin: 0;
}
.banner .banner-form .form-desc {
  margin: 0 -50px;
  padding-top: 20px;
  border-top: 1px solid #fff;
}
.banner .banner-form .form-desc a {
  text-decoration: underline;
}
.banner .banner-form .form-desc a:hover {
  color: #2bc9b4;
}
.banner-align {
  position: relative;
  z-index: 10;
  vertical-align: middle;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.banner-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner-wrapp > * {
  margin-bottom: 30px;
}
.banner-wrapp > *:last-child {
  margin-bottom: 0;
}
.banner-wrapp .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.banner-wrapp .btns .btn-2 {
  max-height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-wrapp .btns .btn-2 .icon {
  font-size: 0;
}
.banner-wrapp .btns .btn-2 svg {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.banner-wrapp .btns .btn-2:hover svg {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.banner .row-button {
  position: relative;
  z-index: 1;
}
.banner .row-phone {
  position: relative;
  z-index: 10;
}
.banner-icon {
  -webkit-animation: transY 10s linear infinite;
          animation: transY 10s linear infinite;
}
.banner .sponsors-title {
  text-transform: uppercase;
  font-weight: bold;
  color: #F0F3FF;
  font-size: clamp(20px, 3vw, 32px);
  margin-bottom: 24px;
}
.banner .sponsors-images img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.banner .sponsors-images a {
  margin-right: 40px;
}
.banner .sponsors-images a:last-child {
  margin-right: 0;
}
.banner .sponsors-images a:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.banner .container {
  position: relative;
}

.banner-decor {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.banner-decor .decor-one, .banner-decor .decor-two {
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-animation: icon1 40s infinite ease-in-out;
          animation: icon1 40s infinite ease-in-out;
  /* width: 360px;
  height: 360px;
  background: #8DD8FF;
  -webkit-filter: blur(100px);
          filter: blur(100px); */
  top: 300px;
}
.banner-decor .decor-two {
  top: 100px;
  /* width: 240px;
  height: 240px; */
  right: 35%;
  /* background: #8DD8FF; */
  -webkit-animation: icon2 40s infinite ease-in-out;
          animation: icon2 40s infinite ease-in-out;
}

.dropdown.user {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

@media (max-width: 991px) {
  .dropdown.user > a {
    display: none;
  }
}
.dropdown.user .current {
  color: #fff;
  font-size: clamp(16px, 3vw, 20px);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dropdown.user .current .img-lang {
  font-size: 0;
}
.dropdown.user .current img {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  margin-right: 6px;
}

.header__user li {
  margin-bottom: 15px;
}
.header__user li a {
  font-size: clamp(16px, 3vw, 20px);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__user li a .img-lang {
  font-size: 0;
  margin-right: 5px;
}
.header__user li a img {
  min-width: 30px;
  max-width: 30px;
  height: 20px;
  border-radius: 4px;
  margin-right: 6px;
}

header.scrolled .dropdown.user .current, header.type2 .dropdown.user .current {
  color: #fff;
}

.dropdown.user:after {
  position: absolute;
  content: "";
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  height: 5px;
  width: 5px;
  right: -15px;
  top: 8px;
  -webkit-transform: rotate(313deg);
      -ms-transform: rotate(313deg);
          transform: rotate(313deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

header.scrolled .dropdown.user:after, header.type2 .dropdown.user:after {
  border-color: #727272;
}

.dropdown.user ul {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  border-radius: 6px;
  font-size: 14px;
  visibility: hidden;
  -webkit-transform: translateY(-5%) translateX(-15%);
      -ms-transform: translateY(-5%) translateX(-15%);
          transform: translateY(-5%) translateX(-15%);
  position: absolute;
  top: 40px;
  width: auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-animation: 0.5s fadeUp;
          animation: 0.5s fadeUp;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.header__user li {
  margin-bottom: 5px;
}
.header__user li:last-child {
  margin-bottom: 0;
}

@media (min-width: 991px) {
  .dropdown.user:hover:after {
    -webkit-transform: rotate(136deg);
        -ms-transform: rotate(136deg);
            transform: rotate(136deg);
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
    top: 8px;
  }
  .dropdown.user:hover ul {
    visibility: visible;
    background-color: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    -webkit-animation: 0.5s fadeIn;
            animation: 0.5s fadeIn;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
.header-inner-cabinet .dropdown.user .header__user {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 15px 20px;
}

.header-inner-cabinet .dropdown.user .header__user a {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-transform: initial;
}

.header-inner-cabinet .dropdown.user .header__user li {
  margin-bottom: 10px;
}

.header-inner-cabinet .dropdown.user .header__user li:last-child {
  margin-bottom: 0;
}

.header-inner-cabinet .dropdown.user .header__user a img {
  margin-right: 15px;
  min-width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 991px) {
  .header-inner-cabinet .dropdown.user .header__user li {
    margin-bottom: 20px;
  }
}
@-webkit-keyframes morph {
  0% {
    border-radius: 58% 52% 61% 43%/79% 42% 64% 22%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  75% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  100% {
    border-radius: 58% 52% 61% 43%/79% 42% 64% 22%;
  }
}
@keyframes morph {
  0% {
    border-radius: 58% 52% 61% 43%/79% 42% 64% 22%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  75% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  100% {
    border-radius: 58% 52% 61% 43%/79% 42% 64% 22%;
  }
}
@-webkit-keyframes icon1 {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0) translateX(0);
            transform: rotate(0) translateY(0) translateX(0);
    margin-top: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) translateY(20px) translateX(100px);
            transform: rotate(45deg) translateY(20px) translateX(100px);
  }
  80% {
    -webkit-transform: rotate(360deg) translateY(50px) translateX(50%);
            transform: rotate(360deg) translateY(50px) translateX(50%);
    margin-top: 40%;
  }
}
@keyframes icon1 {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0) translateX(0);
            transform: rotate(0) translateY(0) translateX(0);
    margin-top: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) translateY(20px) translateX(100px);
            transform: rotate(45deg) translateY(20px) translateX(100px);
  }
  80% {
    -webkit-transform: rotate(360deg) translateY(50px) translateX(50%);
            transform: rotate(360deg) translateY(50px) translateX(50%);
    margin-top: 40%;
  }
}
@-webkit-keyframes icon2 {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0) translateX(0);
            transform: rotate(0) translateY(0) translateX(0);
    margin-top: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) translateY(20px) translateX(100px);
            transform: rotate(45deg) translateY(20px) translateX(100px);
  }
  80% {
    -webkit-transform: rotate(360deg) translateY(50px) translateX(50%);
            transform: rotate(360deg) translateY(50px) translateX(50%);
    margin-top: -20%;
  }
}
@keyframes icon2 {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0) translateX(0);
            transform: rotate(0) translateY(0) translateX(0);
    margin-top: 0;
  }
  20% {
    -webkit-transform: rotate(45deg) translateY(20px) translateX(100px);
            transform: rotate(45deg) translateY(20px) translateX(100px);
  }
  80% {
    -webkit-transform: rotate(360deg) translateY(50px) translateX(50%);
            transform: rotate(360deg) translateY(50px) translateX(50%);
    margin-top: -20%;
  }
}
.row-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 90px;
  padding: 6px;
  padding-left: 0;
}

.section {
  padding: 80px 0;
}
.section .container {
  /* position: relative; */
  z-index: 10;
}

.privacy-detail .container{
    position: relative;
}

.promo .container, .faq .container{
    position: relative;
}
.section .banner-decor .decor-two {
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
}
.section-title .h2 {
  font-weight: bold;
}

.container {
  max-width: 1180px;
}

.items {
  /* background-color: rgba(131, 111, 255, 0.4); */
  /* padding: 60px 0; */
  transform: translateY(-120px);
  position: relative;
  z-index: 11;
}

.item-wrapp {
  text-align: center;
  background-color: #4497D2;
  border-radius: 30px;
  padding: 50px 0;
}
.item-wrapp .item-title {
  color: #8DD8FF;
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 10px;
  font-weight: bold;
}
.item-wrapp .item-desc {
  color: #F0F3FF;
  font-size: clamp(16px, 3vw, 20px);
}

.heights .row {
  position: relative;
}
.heights .container {
  position: relative;
  z-index: 6;
}

.heights {
  background: #E8F6F3;
}
.heights .h2 {
  color: #131313;
  text-transform: none;
}

.height-item {
  border-radius: 8px;
  background: #4497D2;
  padding: 30px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.height-item .height-icon svg {
  max-width: 70px;
}
.height-item .height-title {
  font-weight: 700;
}
.height-item > * {
  margin-bottom: 20px;
}
.height-item > *:last-child {
  margin-bottom: 0;
}

.height-desc {
  min-height: 320px !important;
  position: relative;
  z-index: 4;
}

.row-decor {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: -20px;
  padding-right: 150px;
}

.decor-bottom {
  font-size: 0;
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
}

.decor-bottom-2 {
  right: 46px;
}

.decor-bottom-3 {
  right: -35%;
  bottom: -60px;
}

.decor-bottom-4 {
  right: 0;
}

.decor-bottom-5 {
  right: auto;
  left: -15%;
  bottom: -10px;
}

.decor-bottom-6 {
  left: 16%;
  right: auto;
}

.decor-bottom-7 {
  right: -35%;
  bottom: -10px;
}

.decor-bottom-8 {
  left: 0;
  right: auto;
}

.decor-bottom-9 {
  right: 0;
}

.row-last {
  margin-top: 20px;
}

.btn-row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.decor-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 0;
}

.decor-bg-2 {
  top: 0;
  bottom: -100px;
}
.decor-bg-2 svg {
  height: 100%;
}
.decor-bg-2 svg path {
  height: 100%;
}

.decor-bg-3 {
  left: auto;
  right: 0;
}

.text-b {
  font-weight: 700;
}

.subtitle {
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #2C4E67;
  font-weight: 600;
}

.support .image-wrapp {
  width: 100%;
  position: relative;
  height: 100%;
}
.support .image-wrapp:before {
  border-radius: 8px;
  background: linear-gradient(128deg, #136E61 0%, #4497D2 100%);
  position: absolute;
  content: "";
  top: 50px;
  width: 100%;
  height: calc(100% - 50px);
  left: 0;
}
.support .image-wrapp .image-desc {
  position: absolute;
  font-size: 0;
  bottom: 0;
  text-align: center;
}
.support .image-wrapp .image-desc img {
  width: 70%;
  margin: 0 auto;
}
.support .image-mobile {
  display: none;
}

.what-about .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.what-about .banner-decor .decor-two {
  right: 0;
  left: auto;
  top: 0;
}
.what-about .banner-decor .decor-one svg{
    width: 40px;
    height: 40px;
}

.what-about .banner-decor .decor-two svg{
    width: 66px;
    height: 66px;
}

.get-started {
  background: #E8F6F3;
}
.get-started img {
  max-height: 480px;
}

.support-desc {
  position: relative;
  z-index: 6;
}
.support-desc .h2 {
  margin-bottom: 40px;
}
.support-desc .text-b {
  margin-bottom: 20px;
}

.support-desc {
  position: relative;
  z-index: 7;
}

.work {
  background: #4497D2;
  color: #fff;
  position: relative;
}
.work .container {
  position: relative;
  z-index: 6;
}

.work-decor {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 200px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 200px;
}
.work-decor .work-circle {
  -webkit-animation: rotate 10s infinite;
          animation: rotate 10s infinite;
  display: inline-block;
  width: 120px;
  height: 120px;
}
.work-decor .work-circle:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 40px solid transparent;
  border-top-color: #136E61;
  border-right-color: #136E61;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 50%;
  animation: rotate 10s infinite reverse linear;
}
.work-decor .work-circle:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border: 40px solid transparent;
  border-bottom-color: #2bc9b4;
  border-left-color: #2bc9b4;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 50%;
  -webkit-animation: rotate 10s infinite linear;
          animation: rotate 10s infinite linear;
}

.work-item {
  border-radius: 8px;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0px 14px 64px -4px rgba(35, 21, 91, 0.05), 0px 8px 12px -6px rgba(35, 21, 91, 0.05);
          box-shadow: 0px 14px 64px -4px rgba(35, 21, 91, 0.05), 0px 8px 12px -6px rgba(35, 21, 91, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  padding: 20px;
}
.work-item:last-child {
  margin-bottom: 0;
}
.work-item .work-number {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
  margin-right: 20px;
  color: #2bc9b4;
}
.work-item .work-wrapper .h3 {
  text-transform: capitalize;
  margin-bottom: 15px;
  font-size: clamp(20px, 3vw, 24px);
}

.start .section-title {
  margin-bottom: 80px;
}

.start .container{
    position: relative;
    z-index: 10;
}
.start .section-title .h2:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.start .swiper-slide{
    position: relative;
}
.start .swiper-slide:before{
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateX(100%);
    content: "";
    background: url("../img/arrow-n.svg") no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
    width: 100px;
    height: 30px;

}

.start .swiper-slide:last-child::before{
    content: none;
}

.start-item {
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 12px 12px rgba(255, 255, 255, 0.12);
  /* background: rgba(245, 192, 109, 0.8); */
  color: #fff;
  height: 100%;
}

.start-number {
  font-size: clamp(26px, 3vw, 32px);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.start-title {
  margin-bottom: 10px;
}

.start-desc {
  font-size: clamp(18px, 3vw, 20px);
  text-align: left;
}

.advantage-item {
  padding: 48px 40px;
  border-radius: 10px;
  /* background: rgba(245, 192, 109, 0.8); */
  box-shadow: 0 12px 12px rgba(255, 255, 255, 0.12);
  height: 100%;
}

.advantages .container{
    position: relative;
    z-index: 10;
}
.advantage-item .advantage-image {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantage-item img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(86%) sepia(51%) saturate(4024%) hue-rotate(169deg) brightness(106%) contrast(104%);
}
.advantage-item .advantage-title {
  margin-bottom: 16px;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: bold;
}

.row-priority {
  margin-top: 40px;
}

.number-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.number-wrapp .number-item {
  text-align: center;
}
.number-wrapp .number-item-top {
  background: linear-gradient(45deg, #4497D2 0%, #6e19c2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
  font-weight: 600;
}
.number-wrapp .number-item-top span {
  margin-right: 1px;
}

.cust-about-wrapp {
  color: #fff;
}

.cust-about .h2 {
  text-transform: none;
}

picture {
  font-size: 0;
}

.input-item label {
  margin-bottom: 10px;
  font-size: clamp(14px, 3vw, 20px);
  display: block;
}
.input-item input, .input-item textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1px solid #fff;
  font-weight: bold;
  outline: none;
  background: none;
  color: #fff!important;
  font-family: "Noto Sans", sans-serif;
}
.input-item input::-webkit-input-placeholder, .input-item textarea::-webkit-input-placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.input-item input::-moz-placeholder, .input-item textarea::-moz-placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.input-item input:-ms-input-placeholder, .input-item textarea:-ms-input-placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.input-item input::-ms-input-placeholder, .input-item textarea::-ms-input-placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.input-item input::placeholder, .input-item textarea::placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

main {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 48, 143, 1) 44.27%, #110126 74.11%, #000000 98.44%);
}

.footer {
  position: fixed;
  padding-bottom: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  color: #fff;
}
.footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
.footer .section-title {
  margin-bottom: 0;
}
.footer .row-footer {
  border-top: 1px solid rgba(21, 245, 186, 0.3);
  padding: 80px 0;
  border-bottom: 1px solid rgba(21, 245, 186, 0.3);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-logo a .logo-text {
  margin-left: 10px;
  font-size: clamp(18px, 3vw, 24px);
  color: #F0F3FF;
  font-family: "Bruno Ace SC", sans-serif;
}
.footer .footer-logo a .logo-img svg {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 2px;
  overflow: visible;
}
.footer .footer-logo a .logo-img svg path {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.footer .footer-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.footer .footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer .footer-links ul li {
  margin-right: 40px;
  text-align: center;
}
.footer .footer-links ul li:last-child {
  margin-right: 0;
}
.footer .footer-links ul li a {
  font-size: clamp(14px, 3vw, 16px);
}
.footer .footer-links ul li a:hover {
  color: #8DD8FF;
}
.footer .disc {
  font-size: clamp(14px, 3vw, 18px);
  text-align: right;
}
.footer .decor-three {
  position: absolute;
  right: -40%;
  bottom: -60%;
}
.footer .decor-three svg path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  -webkit-animation: dashItem 10s linear alternate infinite;
          animation: dashItem 10s linear alternate infinite;
}
.footer .text {
  font-size: 14px;
}
.footer .container {
  margin-top: 0;
  position: relative;
  z-index: 10;
}
.footer .footer-con {
  margin-top: 0;
  padding: 40px 0;
}
.footer .footer-con .footer-text {
  font-size: 14px;
}

.form-wrapp .row {
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-wrapp .row .btn {
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  outline: none;
  border: none;
}

.disclaimer {
  margin: 30px 0 !important;
}

.disclaimer.row > * {
  padding: 0;
}

.disclaimer .text {
  font-size: 12px;
  font-weight: 600;
}
.disclaimer .text p {
  margin-bottom: 10px;
}
.disclaimer .text p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding: 40px 0;
  background-color: #171D2B;
  margin-bottom: -60px;
  margin-top: 60px;
}
.footer-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.footer-bottom ul li {
  padding-right: 5px;
  border-right: 1px solid #fff;
  margin-right: 5px;
}
.footer-bottom ul li:last-child {
  border: none;
  margin: 0;
  right: 0;
}
.footer-bottom ul li a {
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  font-weight: 400;
}
.footer-bottom ul li a:hover {
  color: #4497D2;
}

.footer-copy {
  text-align: center;
}
.footer-copy span {
  margin-right: 5px;
}

.step-investing img {
  max-height: 460px;
}

.explore-world img {
  max-height: 610px;
}

.swiper-pagination {
  position: static !important;
  margin-top: 30px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination-bullet {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 32px !important;
  height: 2px !important;
  padding: 0 !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  border: none !important;
  background: #8DD8FF !important;
  font-size: 14px;
  font-weight: 700;
  color: #131313;
}

.swiper-pagination-bullet-active {
  border: 1px solid #4497D2 !important;
  background-color: #4497D2 !important;
}

.text p {
  margin: 0;
  margin-bottom: 20px;
}
.text p:last-child {
  margin-bottom: 0;
}

.popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  letter-spacing: 0;
}
.popup .popup-form {
  position: relative;
  z-index: 10;
}
.popup .decor-three {
  position: absolute;
  bottom: 30%;
  right: 8%;
  animation: icon1 40s infinite ease-in-out;
}

.popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.popup.active .popup-overlay {
  opacity: 0.7;
}

.popup.active .popup-content {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  left: 0;
  -webkit-transition: opacity 0.3s ease-out, left 0s 0s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, left 0s 0s, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, left 0s 0s;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, left 0s 0s, -webkit-transform 0.3s ease-out;
  position: relative;
}

.popup-overlay {
  position: absolute;
  left: 0;
  top: -100px;
  right: 0;
  bottom: -100px;
  background: #4497D2;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
}

.popup-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  font-size: 0;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-out, left 0s 0.3s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, left 0s 0.3s, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, left 0s 0.3s;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, left 0s 0.3s, -webkit-transform 0.3s ease-out;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  left: -10000px;
  padding: 0;
  background: rgba(16, 16, 16, 0.5);
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

.popup-content:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.popup-container {
  display: none;
}

.popup-container.active {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  width: 100vw;
  height: 100vh;
  text-align: left;
  margin-right: 0;
  margin: 0 auto;
}

.popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10000px;
}

.w-100 {
  width: 100%;
}

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

.popup-align {
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
  color: #fff;
}

.popup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    justify-content: flex-start;
    margin-left: -100px;
}
.popup-form .banner-form {
  padding: 48px 40px;
  background-color: #4497D2;
  /* border: 1px solid #8DD8FF; */
  border-radius: 30px;
}

.popup-image {
  width: 60%;
  overflow: hidden;
  /* box-shadow: 0 50px 50px 50px rgba(0,0,0,0.3); */
}
.popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-form {
  overflow: hidden;
  color: #fff;
}
.popup-form input {
  color: #fff;
  border: 1px solid #C8C6D6;
}
.popup-form input::-webkit-input-placeholder {
  color: #C8C6D6;
}
.popup-form input::-moz-placeholder {
  color: #C8C6D6;
}
.popup-form input:-ms-input-placeholder {
  color: #C8C6D6;
}
.popup-form input::-ms-input-placeholder {
  color: #C8C6D6;
}
.popup-form input::placeholder {
  color: #C8C6D6;
}
.popup-form .iti__selected-dial-code {
  color: #fff;
}
.popup-form .iti__arrow {
  border-top: 4px solid #fff;
}

.popup-wrapper {
  text-align: center;
}
.popup-wrapper .text-2 {
  font-weight: 700;
  margin-bottom: 15px;
}
.popup-wrapper .img {
  margin-bottom: 40px;
}
.popup-wrapper .img img {
  width: 100px;
  height: 100px;
}
.popup-wrapper .btn {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

video {
  width: 100%;
}

.embed-responsive-16by9 {
  padding-bottom: 56.3%;
  min-width: 1000px;
}

html {
  overflow-x: hidden;
}

.btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-close span {
  height: 25px;
  width: 25px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.btn-close span:before, .btn-close span:after {
  content: "";
  height: 2px;
  width: 25px;
  display: block;
  position: absolute;
  top: 14px;
  left: -6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  background: #fff;
}

.btn-close span:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.btn-close:hover {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}

.video-popup-align {
  overflow: visible;
  max-height: 100vh;
  padding: 0;
}

.video-popup-align .btn-close {
  top: -100px;
  right: -100px;
}

.popup .h2:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 580px) {
  .popup-content {
    padding: 0;
  }
  .popup-container {
    max-height: 100vh;
  }
  .popup-align {
    min-height: 100vh;
    padding: 44px 20px;
    width: 100%;
  }
  .popup-send .popup-align {
    min-height: 100px;
    padding: 40px 20px;
  }
  .popup-send .popup-align .btn {
    width: 100%;
  }
  .popup-container.active {
    max-height: 100vh;
  }
  .popup-form {
    text-align: left;
  }
}
html.lock {
  overflow: hidden;
}

.iti--separate-dial-code .iti__selected-flag {
  padding: 12px;
  /* background-color: #8DD8FF; */
  background: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.iti__selected-dial-code {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.iti__country-list {
  border-radius: 12px;
  z-index: 5;
  max-width: 300px;
  overflow-x: hidden;
}

.iti__country {
  padding: 10px;
}

.iti__flag-box {
  margin-right: 10px;
}

.iti {
  width: 100%;
}

.row-submit {
  position: relative;
  z-index: 1 !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.iti__country-name {
  font-size: 14px;
  color: #333333 !important;
}

.iti__dial-code {
  font-size: 14px;
  color: #999 !important;
}

.makes {
  background: #171D2B;
}
.makes .h2 {
  margin-bottom: 40px;
}
.makes .makes-wrapp {
  margin-top: 40px;
  margin-bottom: -40px;
}
.makes .makes-item {
  margin-bottom: 40px;
}
.makes .makes-item .makes-img {
  margin-bottom: 30px;
}
.makes .makes-item .makes-img img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.makes .makes-item .makes-title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

p{
    margin: 0;
}

.customers .customer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.customers .container{
    position: relative;
    z-index: 10;
}
.customers .customer-top .customer-image {
  font-size: 0;
}
.customers .customer-top .customer-image img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 15px;
}
.customers .customer-top .customer-author {
  margin-left: 16px;
  font-weight: bold;
  font-size: clamp(18px, 3vw, 20px);
}

.cust-about-row-mobile {
  display: none;
}

.cust-about-item {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(25deg, #2bc9b4 0%, #4497D2 100%);
}

.cust-about-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.cust-about-name {
  margin-left: 15px;
  font-weight: 600;
}

.cust-about-icon img {
  min-width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 35px;
}

.cust-about-wrapp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-rows: 380px;
  grid-auto-flow: row dense;
  grid-gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cust-about-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.cust-about-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

.cust-about-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.cust-about-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.cust-about-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.cust-about-item:nth-child(6) {
  grid-column: span 1;
  grid-row: span 1;
}

.cust-about-item:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}

.customers-svg {
  -webkit-animation: transY 10s linear infinite;
          animation: transY 10s linear infinite;
}

.faq .faq-item {
  margin-bottom: 32px;
  background-color: #4497D2;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 9px 9px rgba(0, 0,0,0.2);
  padding: 24px;

}
.faq .faq-title h3{
  margin-bottom: 16px;
  font-weight: bold;
  font-size: clamp(16px, 3.9vw, 22px);
}

.faq-wrapp {
  margin-bottom: -32px;
}

.left-right .h2 {
  font-size: clamp(30px, 3vw, 40px);
  text-transform: none;
}
.left-right .btn {
  margin-top: 24px;
}

.promo {
  background: #4497D2;
  padding: 160px 0;
}
.promo .btn {
  width: 460px;
}

/* .title-center {
  margin-bottom: 80px;
} */
.title-center .h2:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.promo-wrapp {
  text-align: center;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.promo-wrapp > * {
  position: relative;
  z-index: 4;
}
.promo-wrapp .h3, .promo-wrapp .text {
  margin-bottom: 30px;
}
.promo-wrapp .btn {
  margin: 0 auto;
}
.promo-wrapp .banner-decor {
  position: absolute;
  z-index: 1;
}

.footer-2 .section-title .text {
  margin: 40px 0;
}

.container-overview {
  border-radius: 8px;
  background: #4497D2;
  padding: 40px 54px;
  position: relative;
}
.container-overview .row-decor, .container-overview .row-decor-2 {
  bottom: 0;
  left: 0;
}
.container-overview .row-decor-3 {
  left: auto;
  right: 0;
}
.container-overview .row-decor-2 {
  left: 0 !important;
  right: auto !important;
}

.overview {
  background: #E8F6F3;
}
.overview .h2 {
  text-transform: none;
  margin-bottom: 30px;
}
.overview .row-decor {
  left: 0;
  bottom: 0;
}
.overview .row-decor-2, .overview .row-decor-3 {
  left: auto;
  right: 0;
  padding-right: 0;
}
.overview .banner-decor {
  z-index: 1;
}

.container-overview {
  z-index: 6;
}

.overview-wrapp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: relative;
  z-index: 6;
}
.overview-wrapp:last-child {
  border: none;
  padding-bottom: 0;
}
.overview-wrapp:first-child {
  padding-top: 0;
}

.overview-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overview-icon {
  margin-right: 25px;
}
.overview-icon img {
  min-width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.overview-title {
  font-weight: 700;
}

.banner3 .banner-align, .banner3 .banner-inner {
  height: auto;
}
.banner3 .banner-align {
  padding: 200px 0 100px 0;
}
.banner3 .container {
  position: relative;
  z-index: 10;
}
.banner3 .banner-decor {
  z-index: 0;
}
.banner3 .banner-decor > * {
  z-index: 3;
}

.about-desc .h2 {
  text-align: left;
  text-transform: none;
}
.about-desc .about-desc-image {
  border-radius: 8px;
  overflow: hidden;
  font-size: 0;
}
.about-desc .about-desc-image img {
  max-height: 540px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.about-desc img {
  -o-object-position: top;
     object-position: top;
}

.want .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.want .section-title {
  text-align: left;
}
.want .section-title .h2 {
  margin-bottom: 40px;
}
.want-svg {
  -webkit-animation: transY 10s linear infinite;
          animation: transY 10s linear infinite;
}

.promo-2 {
  padding-bottom: 0;
}

.footer-not .footer-bottom {
  margin-top: 0;
}

.purpose-wrapp ul li {
  position: relative;
}
.purpose-wrapp ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  top: 11px;
  left: 5px;
}
.purpose-wrapp ul li span {
  padding-left: 20px;
  font-weight: 700;
  font-size: clamp(16px, 3.9vw, 24px);
  margin-bottom: 15px;
  display: block;
}

.purpose-desc .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.purpose-svg {
  -webkit-animation: transY 10s linear infinite;
          animation: transY 10s linear infinite;
}

.team-img {
  border-radius: 8px;
  background: #171D2B;
  font-size: 0;
}
.team-img img {
  max-height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-name {
  margin-top: 20px;
  font-weight: 700;
}

.team-prof {
  margin-top: 10px;
  margin-bottom: 25px;
}

.team-item {
  margin-bottom: 30px;
}

.contact-us .banner-form {
  padding: 50px 100px;
  border-radius: 30px;
  background: rgba(245, 192, 109, 0.8);
  border: 1px solid #8DD8FF;
  color: #fff;
}
.contact-us .row {
  margin-bottom: 20px;
}
.contact-us .row:last-child {
  margin-bottom: 0;
}
.contact-us .row textarea {
  resize: none;
}
.contact-us .row input, .contact-us .row textarea {
  background: #fff;
  color: #000 !important;
}
.contact-us .row input::-webkit-input-placeholder, .contact-us .row textarea::-webkit-input-placeholder {
  color: #333;
}
.contact-us .row input::-moz-placeholder, .contact-us .row textarea::-moz-placeholder {
  color: #333;
}
.contact-us .row input:-ms-input-placeholder, .contact-us .row textarea:-ms-input-placeholder {
  color: #333;
}
.contact-us .row input::-ms-input-placeholder, .contact-us .row textarea::-ms-input-placeholder {
  color: #333;
}
.contact-us .row input::placeholder, .contact-us .row textarea::placeholder {
  color: #333;
}
.contact-us .btn {
  outline: none;
  border: none;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
}

.simple-page ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.simple-page ul li:last-child {
  margin-bottom: 20px;
}
.simple-page ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  top: 12px;
  left: 5px;
}
.simple-page h4 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.simple-page h4:before {
  content: none;
}
.simple-page p b {
  margin-top: 40px;
  display: block;
}
.simple-page a {
  text-decoration: underline;
}
.simple-page a:hover {
  color: #8DD8FF;
}


.simple-page .alignleft{
    float: left;
    margin-right: 20px;
}
.simple-page .alignright{
    float: right;
    margin-left: 20px;
}

.simple-page img.alignright, .simple-page img.alignleft{
    border-radius: 30px;
}

.privacy-detail .h2 {
  text-align: left;
  text-transform: none;
}

.terms-menu-wrapp {
  padding: 40px 50px;
  border-radius: 30px;
  background: rgba(245, 192, 109, 0.8);
  color: #fff;
}
.terms-menu-wrapp ol {
  counter-reset: my-awesome-counter;
}
.terms-menu-wrapp ol li {
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  counter-increment: my-awesome-counter;
}
.terms-menu-wrapp ol li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  content: counter(my-awesome-counter) ". ";
  font-size: clamp(14px, 3vw, 24px);
}
.terms-menu-wrapp ol li:last-child {
  margin-bottom: 0;
}
.terms-menu-wrapp ol li a {
  font-size: clamp(14px, 3vw, 24px);
}
.terms-menu-wrapp ol li a:hover {
  color: #2bc9b4;
}

.img-wrapper img {
  border-radius: 30px;
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 6;
}

@-webkit-keyframes transY {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes transY {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dashItem {
  from {
    stroke-dashoffset: 250;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dashItem {
  from {
    stroke-dashoffset: 250;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.accordion-wrapper .accordion {
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.accordion-wrapper .accordion:last-child {
  margin-bottom: 0;
}

.accordion-wrapper .accordion-title {
  position: relative;
  padding: 18px 20px;
  padding-left: 0;
  border-bottom: 1px solid #789DFC;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  cursor: pointer;
}
.accordion-wrapper .accordion-title svg {
  position: absolute;
  right: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  top: 21px;
}

.accordion.active .accordion-title svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.accordion .accordion-body {
  font-weight: 400;
  position: relative;
  margin-top: 20px;
  display: none;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.accordion-title .arrow {
  position: absolute;
  width: 15px;
  height: 6px;
  right: 0;
  bottom: 26px;
}

.accordion-title .arrow:before {
  content: "";
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background-color: #4497D2;
  display: block;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  left: -8px;
  position: absolute;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.accordion-title .arrow:after {
  content: "";
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background-color: #4497D2;
  display: block;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.accordion.active .accordion-title .arrow:before {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.accordion.active .accordion-title .arrow:after {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.text-wrapp {
  margin-bottom: 140px;
}
.text-wrapp:last-child {
  margin-bottom: 0;
}

@media(min-width: 991px){
    .swiper-autoheight, .swiper-autoheight .swiper-slide{
    height: 100%!important;
    }
}

.gt_float_switcher .gt_options{
    position: absolute!important;
    background: #fff;
    border-radius: 4px;
 }

 .gt_float_switcher img{
    width: 30px!important;
    height: 20px!important;
    border-radius: 4px!important;
    margin-right: 6px!important;
 }

 .gt_float_switcher .gt-selected .gt-current-lang{
    color: #fff!important;
 }

 .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow{
    filter: brightness(0) invert(1);
 }
 .gt_float_switcher .gt-selected{
    background-color: transparent!important;
 }

 .gt_float_switcher{
    background-color: transparent!important;
    box-shadow: none!important;
 }
 .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow{
    transform: rotate(0deg)!important;
 }

 .gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow.gt_arrow_rotate{
    transform: rotate(180deg)!important;
 }


 .breadcrumbs{
	margin-bottom: 10px;
}

.breadcrumbs a{
    color: #8DD8FF;
}


.trp-language-switcher{
    width: auto;
}

.trp-language-switcher > div{
    padding: 0;
}

.trp-language-switcher > div > a > img{
    width: 30px!important;
    height: 20px!important;
    border-radius: 4px!important;
    margin-right: 10px!important;
}
.trp-language-switcher > div{
    background: none!important;
    border: none!important;

}

.trp-language-switcher > div > a{
    color: #fff;
}

.trp-language-switcher .trp-ls-shortcode-language{
    background: #fff!important;
}
.trp-language-switcher .trp-ls-shortcode-language a{
    color: #333!important;
}
.trp-language-switcher > div > a.trp-ls-shortcode-disabled-language, .trp-language-switcher .trp-ls-shortcode-language a{
    display: flex;
    align-items: center;
}

.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language{
    width: auto!important;
    padding: 0;
}

.trp-language-switcher .trp-ls-shortcode-current-language{
    position: relative;
    /* width: 100%!important; */
}
.trp-language-switcher .trp-ls-shortcode-current-language:after{
    position: absolute;
    content: "";
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    height: 5px;
    width: 5px;
    right: 15px;
    top: 14px;
    -webkit-transform: rotate(313deg);
    -ms-transform: rotate(313deg);
    transform: rotate(313deg);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

/* .trp-language-switcher > div */

.banner .banner-align .text-2{
    font-size: clamp(14px, 3vw, 16px);
}


@media(min-width: 991px){
    .advantage-desc{
        min-height: 380px;
    }
}


@media(max-width:767px){
    .simple-page .alignleft{
        float: none;
        display: block;
        margin: 10px 0;
        
    }
    .simple-page .alignright{
        float: none;
        display: block;
        margin: 10px 0;
    }
}

@media(max-width:580px){
    .simple-page img{
        width: 100%;
    }
    .banner-image img{
        max-height: 350px!important;
        min-height: 350px!important;
    }
}


@media(max-width: 580px){
    .simple-page ul li:before{
        top: 7px!important;
    }
}



.page404 {
  text-align: center;
}
.page404 .section-title {
  font-size:  250px;
  color: #8DD8FF;
  font-weight: bold;
}
.page404 .text-2 {
  margin-bottom: 30px;
  font-size: clamp(20px, 3vw, 32px)!important;
}
.page404 .btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.page404 .btn svg{
    margin-right: 5px;
}
@media(max-width: 991px){
    .page404 .section-title {
        font-size:  150px;
    }
}

/* @media screen and (max-width: 991px) {
  .page404 .banner-inner, .page404 .banner-align {
    height: 100vh;
  }
} */


@media(max-width: 991px){
    .header-inner .header-btns{
        padding-left: 0;
        border: none;
    }
    .bg{
        max-height: 100%!important;
    }
    .items{
        transform: translateY(0);
    }
    .item-wrapp{
        margin-bottom: 20px;
        padding: 30px 0;
    }
    .banner .banner-form{
        background: #4497D2 !important;
    }
    .start .swiper-slide:before{
        content: none;
    }
}


.left-image{
    position: absolute;
    left: 0;
    width: 48%;
    max-height: 500px;
    font-size: 0;
    top: 40px;
}

.left-image img{
    max-height: 500px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.land2 .left-image{
    max-height: 300px;
}

.land2 .left-image img{
    max-height: 300px;
}

.land2 .right-image{
    max-height: 300px;
}

.land2 .right-image img{
    max-height: 300px;
}

.right-image{
    position: absolute;
    right: 0;
    width: 45%;
    max-height: 500px;
    top: 30px;
}

.right-image img{
    max-height: 450px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media(max-width: 991px){
    .left-image, .right-image{
        position: static;
        width: 100%;
    }
}

.about-one .left-image{
    top: 160px;
}

.testimonail-title-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
}
.testimonail-author{
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
}

.testimonail-price{
  font-size: 14px;
  font-weight: 400;
}

.testimonail-price span{
  margin-left: 20px;
  font-size: clamp(18px, 3vw, 20px);
}

.testimonail-video{
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.testimonail-video video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonail-video .video-wrapper, .testimonail-video .video-wrapper img, .testimonails .testimonail-video {
  border-radius: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  
}

.testimonails .swiper-entry{
  z-index: 7;
}

.testimonail-video .video-wrapper img{
  width: 100%;
}

.testimonail-video .video-wrapper:before{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}


.testimonail-desc{
  background: #4497D2;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


.testimonail-video .video-btn svg{
  width: 80px;
  height: 80px;
}
.testimonail-video .video-wrapper .btn-wrapp{
  padding: 10px;
}

.testimonail-video .video-wrapper, .testimonail-video .video-wrapper img{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.testimonail-video, .testimonail-video .video-wrapper, .testimonail-video .video-wrapper img{
  height: 260px;
}

.testimonail-saldo{
  font-size: clamp(14px, 3vw, 16px);
}
.testimonail-saldo span{
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-left: 5px;
}
.testimonail-author{
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
}
.saldo-price{
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
}