* {
  -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: #15212A;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: rgb(149, 217, 255);
}

*::-moz-selection {
  background: #15212A;
  color: #fff;
}

*::selection {
  background: #15212A;
  color: #fff;
}

h1, .h1 {
  font-size: 58px;
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
}
h1 span, .h1 span {
  font-size: 84px;
}

h2, .h2 {
  font-size: clamp(30px, 3.9vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

h3, .h3 {
  font-size: clamp(20px, 3.9vw, 32px);
  line-height: 1.2;
  margin: 0;
}

h4, .h4 {
  font-size: clamp(18px, 3.9vw, 24px);
  line-height: 1.2;
  margin: 0;
}

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: "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

.title-7 {
  font-size: clamp(20px, 3.9vw, 32px);
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 500;
}

.title-8 {
  font-size: clamp(18px, 3.9vw, 24px);
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.title-9 {
  font-size: clamp(18px, 3.9vw, 24px);
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 500;
}

.title-10 {
  font-size: clamp(14px, 3.9vw, 20px);
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 500;
}

.text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.text-1 {
  font-size: clamp(14px, 3.9vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.text-2 {
  font-size: clamp(14px, 3.9vw, 16px);
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.text-upper {
  text-transform: uppercase;
}

.w-100 {
  width: 100%;
}

.btn {
  position: relative;
  min-width: 310px;
  padding: 13px 24px;
  color: #fff;
  background-color: #000;
  font-size: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 8px;
  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;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 1px solid #000;
}

.btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.btn-2 {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
}

.btn-2:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}

.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: -o-linear-gradient(315deg, #00DBDE 0%, #FC00FF 100%) border-box;
  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;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn-arrow svg stop {
  -webkit-transition: 0.3s linear;
  -o-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;
  -o-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;
  -o-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) {
  .menu-header-menu-container ul ul {
    display: none ;
}
  .menu-headerit-container ul ul {
    display: none ;
}
   .menu-headeres-container ul ul {
    display: none ;
}
.menu-header-menu-container ul li:hover > ul {
    display: block;
}
.menu-headeres-container ul li:hover > ul {
    display: block;
}
.menu-headerit-container ul li:hover > ul {
    display: block;
}

.sub-menu{
  position: fixed;

}

.sub-menu li a {
  color:black !important; 
}

.sub-menu li  {
    margin-right: 0 !important;
    padding-left: 5px;
    padding-right:5px;
    padding-top:2px;
    padding-bottom: 2px;
background:linear-gradient(180deg, rgba(255, 255, 255, 0.63) 0%, rgba(255, 255, 255, 0) 134.51%);;
border-bottom:1px black solid;
}
.sub-menu li :hover {
 color:rgb(94, 94, 94) !important; 

}
  .btn {
    -webkit-transition: 0.3s linear !important;
    -o-transition: 0.3s linear !important;
    transition: 0.3s linear !important;
  }
  .btn:hover {
    -webkit-transition: 0.3s linear !important;
    -o-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;
    -o-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: "Inter", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  -o-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;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.63)), color-stop(134.51%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.63) 0%, rgba(255, 255, 255, 0) 134.51%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.63) 0%, rgba(255, 255, 255, 0) 134.51%);
}

header.active-layer-close .layer-close {
  position: fixed;
  display: block;
  z-index: 3;
  left: 0;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000B0B;
  -webkit-transition: 0.3s linear;
  -o-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;
  -o-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;
}
.header-inner .logo-img {
  font-size: 0;
  -webkit-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}
.header-inner .logo-img img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-inner .logo-text {
  margin-left: 10px;
  font-size: clamp(20px, 3.9vw, 24px);
  font-weight: 400;
  color: #fff;
}
.header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header-menu a {
  font-size: clamp(14px, 3.9vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
}
.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: 20px;
}
.header .header-menu .header-nav li:last-child {
  margin-right: 0;
}
.header .header-menu .header-nav li a {
  position: relative;
  color: #fff;
}
.header .header-menu .header-nav li a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .header-menu .header-nav li a:hover {
  opacity: 0.7;
}
.header .header-menu .header-nav li a:hover:before {
  left: 0;
  right: auto;
  width: 100%;
  opacity: 0.7;
}

.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);
  -o-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);
  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;
}

.active .line-menu.start {
  -webkit-transform: rotate(-90deg) translateX(2px);
      -ms-transform: rotate(-90deg) translateX(2px);
          transform: rotate(-90deg) translateX(2px);
}

.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);
  -o-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);
  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;
}

.active .line-menu.end {
  -webkit-transform: rotate(-90deg) translateX(-2px);
      -ms-transform: rotate(-90deg) translateX(-2px);
          transform: rotate(-90deg) translateX(-2px);
}

.bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: slidein 30s;
          animation: slidein 30s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes slidein {
  from {
    background-position: top;
    background-size: 2500px;
  }
  to {
    background-position: top;
    background-size: 1920px;
  }
}

@keyframes slidein {
  from {
    background-position: top;
    background-size: 2500px;
  }
  to {
    background-position: -100px 0px;
    background-size: 1920px;
  }
}
.bg.rellax {
  height: 102%;
}

.opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.banner {
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.banner-align {
  position: relative;
  z-index: 10;
  display: table-cell;
  vertical-align: middle;
  width: 10000px;
  padding-top: 110px;
  padding-bottom: 30px;
}
.banner-inner {
  position: relative;
  width: 100%;
}
.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: 60px;
}
.banner-wrapp > *:last-child {
  margin-bottom: 0;
}
.banner-wrapp h1 span {
  text-transform: uppercase;
  display: block;
}
.banner-wrapp .subtitle {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.2;
  font-weight: 400;
  max-width: 730px;
}
.banner-wrapp .text-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 300;
  max-width: 620px;
}
.banner .container {
  position: relative;
}

.banner-form {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(26.5px);
          backdrop-filter: blur(26.5px);
  padding: 24px 44px;
}

.form-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 900;
  text-align: center;
  color: #000;
  margin-bottom: 25px;
}

.form-wrapp > * {
  margin-bottom: 23px;
}
.form-wrapp > *:last-child {
  margin-bottom: 0;
}
.form-wrapp .btn {
  min-width: 100%;
}

.banner-rating {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.banner-rating .rating-desc {
  margin-left: 18px;
  font-size: 12px;
  font-weight: 600;
}

.disclaimer {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.43);
  margin-top: 30px;
}

.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-top: 160px;
}

.section-title {
  margin-bottom: 80px;
  text-align: center;
}

.decor {
  position: absolute;
  width: 1300px;
  height: 700px;
  left: -30%;
  top: -40%;
  -webkit-animation: icon1 30s infinite ease-in-out;
          animation: icon1 30s infinite ease-in-out;
}
.decor img {
  width: 100%;
  height: 100%;
}

.decor2 {
  top: 10%;
  left: auto;
  right: -20%;
  -webkit-animation: icon3 30s infinite ease-in-out;
          animation: icon3 30s infinite ease-in-out;
}

.decor-circle2 {
  position: absolute;
  width: 838px;
  height: 838px;
  background: -o-radial-gradient(50% 50%, 50% 50%, #1712E3 0%, rgba(0, 133, 240, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #1712E3 0%, rgba(0, 133, 240, 0) 100%);
  opacity: 0.15;
  right: -20%;
  top: -60%;
  -webkit-animation: icon1 35s infinite ease-in-out;
          animation: icon1 35s infinite ease-in-out;
  z-index: -1;
}

.btn-2.mobile {
  display: none;
  margin-top: 20px;
}

.lock {
  overflow: hidden;
}

.header-inner .header-menu.open {
  right: 0;
  top: 0;
}

.sponsors {
  padding-top: 80px;
}
.sponsors .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sponsor-item {
  text-align: center;
}
.sponsor-item img {
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.sponsor-item a {
  font-size: 0;
}
.sponsor-item a:hover img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.sponsor-item a:first-child:hover img {
  opacity: 0.6;
}

.choose .decor {
  min-width: 1800px;
  height: 870px;
  top: 0;
  left: -5%;
}

.choose-item {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.43);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  padding: 16px 24px;
}
.choose-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.choose-item .choose-title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 700;
  margin-left: 20px;
}

.choose-img svg path {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  -webkit-animation: dashItem 6s linear alternate infinite;
          animation: dashItem 6s linear alternate infinite;
}

.keys .section-title {
  text-align: left;
}

.keys .decor {
  width: 1600px;
  height: 1000px;
  bottom: 0;
  top: auto;
  right: -10%;
  left: auto;
  -webkit-animation: icon3 60s infinite ease-in-out;
          animation: icon3 60s infinite ease-in-out;
}
.keys .lines-decor {
  position: absolute;
  inset: 0;
  top: 300px;
  bottom: -500px;
}
.keys .lines-decor #canv {
  -webkit-filter: invert(17%) sepia(76%) saturate(5261%) hue-rotate(246deg) brightness(106%) contrast(101%);
          filter: invert(17%) sepia(76%) saturate(5261%) hue-rotate(246deg) brightness(106%) contrast(101%);
}

.key-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(229, 229, 229, 0.1);
  background: rgba(255, 255, 255, 0.54);
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  padding: 16px 24px;
  margin-bottom: 16px;
}
.key-item:last-child {
  margin-bottom: 0;
}

.key-number {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 900;
  min-width: 150px;
  text-align: center;
  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;
}

.key-title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
}

.services {
  margin-top: 160px;
  padding: 160px 0;
}
.services .row {
  margin-bottom: -20px;
}
.services .decor2 {
  top: auto;
  bottom: -20%;
  left: auto;
  right: -20%;
}

.service-item {
  padding: 16px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 0px 30px 0px #95D9FF;
          box-shadow: 0px 0px 30px 0px #95D9FF;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  color: #fff;
  margin-bottom: 20px;
}
.service-item .h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
}
.service-item .text {
  font-size: clamp(14px, 3vw, 20px);
}

.discovering-left {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.discovering-left .discover-wrapp {
  border-radius: 24px;
  background: #000;
  padding: 24px;
  color: #fff;
}
.discovering-left .h2 {
  margin-bottom: 30px;
}
.discovering-left .text p {
  margin-bottom: 10px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  line-height: 1.2;
}
.discovering-left .text ul li {
  padding-left: 15px;
  position: relative;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  line-height: 1.2;
}
.discovering-left .text ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 7px;
  left: 0;
  background-color: #fff;
}
.discovering-left .discover-arrow {
  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;
  margin: 50px 0;
}
.discovering-left .discover-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.discover-item {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
.discover-item:last-child {
  margin-bottom: 0;
}
.discover-item .title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 900;
  margin-bottom: 10px;
}

.faq .decor {
  top: 20%;
  left: 10%;
}

.promo-wrapp {
  background: #000;
  padding: 80px 0;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}
.promo-wrapp .title {
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
}
.promo-wrapp .btn-2 {
  margin: 40px auto 0px;
}
.promo-wrapp .decor {
  top: -20%;
  left: -10%;
}
.promo-wrapp .decor2 {
  top: auto;
  left: auto;
  right: -30%;
  bottom: -30%;
}

.promo2 {
  padding-top: 80px;
}

.simple-page h3 {
  font-size: clamp(20px, 3vw, 32px);
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: 900;
}
.simple-page p {
  margin-top: 0;
  margin-bottom: 20px;
}

.privacy-wrapp {
  padding-top: 80px;
}
.privacy-wrapp .decor {
  top: 0;
  right: -30%;
  left: auto;
  bottom: 0;
  min-height: 1800px;
}

.banner2 {
  padding: 210px 0 140px 0;
  color: #fff;
}
.banner2 .h1 {
  text-transform: uppercase;
}
.banner2 .decor {
  left: 20%;
}

.about-desc .section-title {
  text-align: left;
}
.about-desc .text {
  font-size: clamp(14px, 3vw, 16px);
}
.about-desc .decor {
  left: -5%;
  top: 10%;
  min-width: 1800px;
}

.about-text .decor {
  left: auto;
  right: -30%;
  bottom: -50%;
  top: auto;
}

.container-fluid {
  padding: 0;
}

.abs-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.abs-right .banner-image {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  margin-top: 160px;
}
.abs-right .banner-image .lr-img {
  position: relative;
  overflow: hidden;
  padding-bottom: 58.1%;
  max-width: 71%;
  margin-left: auto;
}
.abs-right .banner-image .lr-img picture {
  font-size: 0;
}
.abs-right .banner-image .lr-img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  right: 0;
}

.about-items .row {
  margin-bottom: -60px;
}

.about-item {
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: 60px;
}
.about-item .title {
  font-weight: 900;
  margin-bottom: 10px;
}

.accordion-wrapper .accordion {
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: 0.5s linear;
  -o-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 #000;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 20px);
  cursor: pointer;
}

.accordion-title:before, .accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 1.5px;
  width: 12px;
  background: #000;
  -webkit-transform: translate(-50%, -50%) rotate(0);
      -ms-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.accordion-title:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.accordion.active .accordion-title:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 50%;
}

.accordion.active .accordion-title:after {
  content: none;
}

.accordion .accordion-body {
  font-weight: 400;
  position: relative;
  margin-top: 20px;
  display: none;
  width: 620px;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-section {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subscribe-form {
  margin-top: 45px;
}
.subscribe-form .form-row {
  display: none;
  border-radius: 6px;
  overflow: hidden;
}
.subscribe-form .form-row .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  outline: none;
  border: 0;
  width: 50%;
}
.subscribe-form .form-row .btn {
  padding: 16px 10px;
  height: auto;
  font-family: "Inter", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.subscribe-form .form-row .btn:before {
  content: none;
}
.subscribe-form .form-row .btn:hover {
  opacity: 0.7;
}
.subscribe-form .form-row input {
  outline: none;
  border: 0;
  padding: 16px 10px;
  font-size: clamp(14px, 3.9vw, 18px);
  width: 50%;
  font-family: "Inter", sans-serif;
  color: #000B0B;
}
.subscribe-form .form-row input::-webkit-input-placeholder {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #505858;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.subscribe-form .form-row input::-moz-placeholder {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #505858;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.subscribe-form .form-row input:-ms-input-placeholder {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #505858;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.subscribe-form .form-row input::-ms-input-placeholder {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #505858;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.subscribe-form .form-row input::placeholder {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #505858;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.subscribe-form .form-row .input-item {
  width: 100%;
}
.subscribe-form .form-row .upload-wrapper {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 0;
}
.subscribe-form .form-row .input-resume {
  width: 100%;
  font-size: 18px;
  background: #fff;
  padding: 17px;
  color: #505858;
  border-radius: 4px;
  height: 60px;
}
.subscribe-form .form-row .input-resume svg {
  top: 23px;
}
.subscribe-form .form-row .input-item .input:before {
  content: none;
}
.subscribe-form .form-row .input-row {
  position: relative;
}
.subscribe-form .form-row.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subscribe-form .form-row.error {
  border: 2px solid red;
}
.subscribe-form .form-row.error input::-webkit-input-placeholder {
  color: red;
}
.subscribe-form .form-row.error input::-moz-placeholder {
  color: red;
}
.subscribe-form .form-row.error input:-ms-input-placeholder {
  color: red;
}
.subscribe-form .form-row.error input::-ms-input-placeholder {
  color: red;
}
.subscribe-form .form-row.error input::placeholder {
  color: red;
}
.subscribe-form .form-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.subscribe-form .form-last .form-wrap:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.footer {
  padding: 0;
  position: relative;
  margin-top: 160px;
}
.footer .banner-form {
  background: rgba(0, 0, 0, 0.05) !important;
  -webkit-backdrop-filter: blur(26.5px) !important;
          backdrop-filter: blur(26.5px) !important;
}
.footer .footer-arrow {
  margin-top: 40px;
}
.footer .footer-arrow img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .decor {
  top: -30%;
  left: 20%;
}
.footer .container {
  position: relative;
  z-index: 10;
}
.footer .social {
  position: static;
}
.footer .subscribe-text > * {
  margin-bottom: 20px;
}
.footer .subscribe-text > *:last-child {
  margin-bottom: 0;
}
.footer-menu ul li {
  text-align: right;
  margin-bottom: 40px;
}
.footer-menu ul li:last-child {
  margin-bottom: 0;
}
.footer-menu ul li a {
  font-size: clamp(14px, 3.9vw, 16px);
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.footer-menu ul li a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-menu ul li a:hover:before {
  left: 0;
  right: auto;
  width: 100%;
}
.footer .social {
  margin-top: 30px;
}
.footer .social li {
  margin-bottom: 35px;
}
.footer .social li a:before {
  content: none;
}
.footer .social li a:hover {
  opacity: 0.7;
}
.footer-copy {
  text-align: center;
  padding: 60px 0;
}

.footer-copy-police{
  text-align: center;
  padding: 50px 0 0;
}

.values .decor-circle2 {
  top: 0;
  right: 15%;
  bottom: auto;
}

.values .opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000B0B;
  opacity: 0.9;
}

.value-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
}
.value-row:last-child {
  margin-bottom: 0;
}
.value-row .value-marker {
  margin-right: 34px;
}
.value-row .value-marker img {
  -webkit-animation: rotate 3s infinite;
          animation: rotate 3s infinite;
  -webkit-animation-timing-function: cubic-bezier(1, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(1, 0, 0.5, 1);
  min-width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 60px;
}
.value-row .value-desc > * {
  margin-bottom: 8px;
}
.value-row .value-desc > *:last-child {
  margin-bottom: 0;
}

.team .swiper-container {
  overflow: visible;
}
.team .decor-circle {
  right: 0;
  left: auto;
}

.join .decor-circle2 {
  left: 0;
  bottom: 0;
}

.team-img-wrapp img {
  width: 100%;
  max-height: 450px;
  border-radius: 6px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-wrapp > * {
  margin-bottom: 16px;
}
.team-wrapp > *:last-child {
  margin-bottom: 0;
}
.team-wrapp .title-10 {
  text-align: right;
}
.team-wrapp .team-name {
  margin-bottom: 4px;
}

picture {
  font-size: 0;
}

.vacancies.section-head .description .desc-wrapp:nth-child(2) {
  padding: 0 26px;
}

.simple-page ul li {
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: clamp(14px, 3.9vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  position: relative;
}
.simple-page ul li:last-child {
  margin-bottom: 0;
}
.simple-page ul li:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 8px;
  width: 2px;
  height: 2px;
  background: #fff;
}
.simple-page .title-9 {
  margin-bottom: 24px;
}
.simple-page .block-wrapp {
  margin-bottom: 40px;
}
.simple-page .block-wrapp:last-child {
  margin-bottom: 0;
}

.join .service-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.join2 .service-row {
  padding: 40px 0;
}
.join2 .btn-wrapp {
  min-height: 70px;
}
.join2 .decor-circle {
  -webkit-animation: icon3 25s infinite ease-in-out;
          animation: icon3 25s infinite ease-in-out;
  top: 0;
}
.join2 .decor-circle2 {
  top: 50%;
  -webkit-animation: icon1 25s infinite ease-in-out;
          animation: icon1 25s infinite ease-in-out;
}

.upload-input {
  position: relative;
}

.upload-wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 32px;
}
.upload-wrapper .btn-2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.upload-wrapper .btn-2 svg {
  margin-right: 8px;
}

.upload-wrapper input[type=file] {
  position: absolute;
  cursor: pointer;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 0;
  font-size: 0;
  line-height: 0;
  z-index: 5;
}

.decor-image {
  position: absolute;
  top: 0;
  right: -190px;
  width: 380px;
  height: 380px;
  background: url("../img/decor-image1.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: icon3 35s infinite ease-in-out;
          animation: icon3 35s infinite ease-in-out;
}

.decor-image1 {
  width: 100px;
  height: 100px;
  right: 30%;
  top: 40%;
}

.decor-image2 {
  width: 200px;
  height: 200px;
  top: auto;
  bottom: 5%;
  right: 10%;
}

.advantage > * {
  margin-bottom: 24px;
}
.advantage > *:last-child {
  margin-bottom: 0;
}

.advantage {
  padding: 48px 64px;
  border-radius: 5px;
  background: rgba(32, 0, 47, 0.03);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
          box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  margin-bottom: 48px;
}

.advantages2 .decor-circle {
  top: auto;
  bottom: -40%;
}
.advantages2 .row-advantages {
  margin-bottom: -48px;
}

h6 {
  margin: 0;
}

.popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: -100%;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  letter-spacing: 0;
}

.popup.active {
  left: 0;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.popup.active .popup-overlay {
  opacity: 0.9;
}

.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;
  -o-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;
  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: #1B1A1A;
  -webkit-transition: 0.3s all ease;
  -o-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;
  -o-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;
  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: 15px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.popup-content .text {
  font-size: clamp(16px, 3vw, 20px);
  margin-top: 20px;
}

.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%;
  max-width: 840px;
  max-height: 98vh;
  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;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  color: #000;
  padding: 100px 120px;
}

.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;
  -o-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;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  background: #000;
}

.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);
}

.popup-body {
  padding: 60px 60px 75px;
  text-align: center;
}
.popup-body__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}

.popup-send .popup-align {
  padding: 86px 63px;
}

.popup iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

video {
  width: 100%;
}

html {
  overflow-x: hidden;
}

.popup-form {
  padding: 0;
}
.popup-form .popup-container-form {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.popup-form .popup-container-form .popup-align {
  width: 100%;
  min-height: 100vh;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 100px;
}
.popup-form .header-inner {
  margin-bottom: 42px;
}
.popup-form .row-title > * {
  margin-bottom: 64px;
}
.popup-form .row-title > *:last-child {
  margin-bottom: 0;
}
.popup-form .popup-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popup-form .popup-btns .btn {
  margin-right: 30px;
}
.popup-form form > * {
  margin-bottom: 24px;
}
.popup-form form > *:last-child {
  margin-bottom: 0;
}
.popup-form .decor-image {
  width: 380px;
  height: 380px;
  left: 0;
  right: auto;
  top: 300px;
  z-index: -1;
  -webkit-animation: icon1 25s infinite ease-in-out;
          animation: icon1 25s infinite ease-in-out;
}
.popup-form .decor-image-medium {
  width: 100px;
  height: 100px;
  top: 100px;
  right: 50%;
  left: auto;
  -webkit-animation: icon1 25s infinite ease-in-out;
          animation: icon1 25s infinite ease-in-out;
}
.popup-form .decor-image-center {
  width: 195px;
  height: 195px;
  top: 140px;
  right: 35%;
  left: auto;
  -webkit-animation: icon1 35s infinite ease-in-out;
          animation: icon1 35s infinite ease-in-out;
}
.popup-form .decor-image-bottom {
  width: 380px;
  height: 380px;
  bottom: -10%;
  right: -5%;
  left: auto;
  top: auto;
  -webkit-animation: icon1 35s infinite ease-in-out;
          animation: icon1 35s infinite ease-in-out;
}

button {
  outline: none;
  border: none;
  font-family: "Inter", sans-serif;
}

.btn-close {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  cursor: pointer;
}
.btn-close:hover {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media screen and (max-width: 1500px) {
  .popup-container {
    max-width: 820px;
  }
}
@media screen and (max-width: 991px) {
  .popup-header {
    padding: 16px 40px;
  }
}
@media screen and (max-width: 580px) {
  .popup-content {
    padding: 0;
  }
  .popup-container {
    padding: 0 20px;
  }
  .popup-container.popup-container-form {
    padding: 0 !important;
  }
  .popup-header {
    padding: 8px 20px;
  }
  .popup-header .btn-close {
    padding: 12px;
  }
  .popup-header .h4 {
    display: none;
  }
  .popup-header {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .popup-body {
    padding: 32px 20px 40px;
  }
  .popup-body__title {
    margin-bottom: 16px;
  }
}
.tab-title {
  position: relative;
  display: none;
  padding: 15px;
  padding-right: 40px;
  cursor: pointer;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #44A547;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  border: 1px solid #D9D9D9;
  z-index: 6;
}
.tab-title:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-left: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab-nav.active .tab-title:before {
  top: 24px;
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
      transform: rotate(-225deg);
}

.tab {
  display: none;
  padding-left: 0;
}
.tab.active {
  display: block;
}

.tab-nav {
  font-size: 0;
  display: block;
  position: relative;
}

.tab-toggle {
  position: relative;
  font-size: 0;
}

.tab-nav .tab-toggle div {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
  cursor: pointer;
  white-space: nowrap;
}
.tab-nav .tab-toggle div .tab-caption {
  position: relative;
  display: inline-block;
  padding: 17px 30px;
  font-size: 15px;
  line-height: 20px;
  color: #44A547;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid #D9D9D9;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab-toggle div.active .tab-caption {
  color: #fff;
  background: #44A547;
  border-color: #44A547;
}

.tab-partners .tab-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-tab {
  border-radius: 6px;
  background: rgba(32, 0, 47, 0.03);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
          box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 16px;
  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;
  min-height: 90px;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
}
.btn-tab:last-child {
  margin-bottom: 0;
}
.btn-tab svg {
  min-width: 24px;
  min-height: 24px;
}
.btn-tab .title-9 {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn-tab:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.btn-tab.active .title-9 {
  background: var(--linear-gradient-08, linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn-tab.active svg stop:first-child {
  stop-color: #00DBDE;
}
.btn-tab.active svg stop:last-child {
  stop-color: #FC00FF;
}
.btn-tab.active:before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 6px;
  border: 1px solid transparent;
  background: -o-linear-gradient(315deg, #00DBDE 0%, #FC00FF 100%) border-box;
  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: 1;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

@media (min-width: 991px) {
  .btn-tab:hover {
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
  }
  .btn-tab.active:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
  }
}
@media (max-width: 460px) {
  .btn-tab {
    font-size: 16px;
    padding: 10px 20px 11px;
  }
}
@media (max-width: 360px) {
  .btn-tab {
    font-size: 14px;
    padding: 10px 20px 11px;
    margin-right: 5px;
    padding: 7px 14px 8px;
  }
}
.tab h6 {
  margin-bottom: 64px;
}
.tab .tab-list {
  padding: 40px;
  border-radius: 5px;
  background: rgba(32, 0, 47, 0.03);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
          box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 68px 0px rgba(255, 255, 255, 0.05) inset;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
.tab .tab-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3%;
          flex: 0 0 33.3%;
  text-align: center;
}
.tab .tab-list-item .tab-list-text {
  padding: 0 15px;
}
.tab .tab-list-item .tab-list-icon {
  margin-bottom: 32px;
}
.tab .tab-list-item .tab-list-icon img {
  min-width: 60px;
  height: 60px;
}
.tab ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.tab ol li {
  padding-left: 5px;
}
.tab .wrapp {
  margin-bottom: 64px;
}
.tab .wrapp:last-child {
  margin-bottom: 0;
}
.tab .btn {
  margin-top: 24px;
}

.btn-wrapp {
  min-height: 70px;
}

.services2 .decor-circle2 {
  top: 50%;
  right: 50%;
}

.contacts {
  overflow: hidden;
}
.contacts-social .social {
  position: static;
}
.contacts-wrapp > * {
  margin-bottom: 16px;
}
.contacts-wrapp .title-8 {
  margin-top: 48px;
}
.contacts-right {
  padding-bottom: 7px;
}

.contacts form > * {
  margin-bottom: 24px;
}
.contacts form > *:last-child {
  margin-bottom: 0;
}

.input-item input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 0.5px solid var(--black-400, #BDBDBD);
  background: rgba(255, 255, 255, 0.58);
  font-family: "Inter", sans-serif;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.input-item input::-webkit-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.15px;
}
.input-item input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.15px;
}
.input-item input:-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.15px;
}
.input-item input::-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.15px;
}
.input-item input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.15px;
}
.input-item select {
  width: 100%;
  position: relative;
  color: #000B0B;
}
.input-item textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #fff;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  position: relative;
  resize: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000B0B;
}
.input-item textarea:placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #505858;
  line-height: 1;
}
.input-item .input {
  position: relative;
}
.input-item .input:before {
  position: absolute;
  content: "";
  inset: -2px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: -o-linear-gradient(315deg, #00DBDE 0%, #FC00FF 100%) border-box;
  background: linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.input-item .input:hover:before {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 4px solid transparent;
  inset: -4px;
}
.input-item .input svg {
  position: absolute;
  right: 12px;
  top: 14px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.input-item .input.focus:before {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border: 4px solid transparent;
  inset: -4px;
  opacity: 0.5;
}
.input-item .input.focus svg {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.input-item .input.invalid:before {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  background: #EA1313;
  border: 2px solid transparent;
  inset: -2px;
  opacity: 0.5;
}
.input-item .textarea:before {
  bottom: 1px;
}
.input-item button {
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
}

.iti--separate-dial-code .iti__selected-flag {
  padding: 12px;
  background-color: #BDBDBD;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.iti__selected-dial-code {
  color: #333;
  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: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.iti__country-name {
  font-size: 14px;
  color: #333333;
}

.iti__dial-code {
  font-size: 14px;
}

.input-error {
  font-size: 16px;
  color: #EA1313;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  height: 1px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.input-error svg {
  margin-right: 6px;
}

.input-item.invalid .input-error {
  margin-top: 8px;
  opacity: 1;
  visibility: visible;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.input-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-checkbox input {
  width: auto;
}

.popup-form .upload-wrapper {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 0;
}
.popup-form .input-resume {
  width: 100%;
  font-size: 18px;
  background: #fff;
  padding: 12px;
  color: #505858;
  border-radius: 4px;
}
.popup-form .input-resume svg {
  top: 16px;
}
.popup-form .input-row {
  position: relative;
}

.checkbox {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox input {
  display: none;
}
.checkbox a {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration-line: underline;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.checkbox a:hover {
  background: var(--linear-gradient-08, linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.checkbox span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  padding-left: 30px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.checkbox span:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: none;
  border: 2px solid #fff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.checkbox span:after {
  position: absolute;
  content: "";
  inset: -2px;
  width: 24px;
  height: 25px;
  background: url("../img/check.svg") no-repeat;
  background-size: cover;
  background-position: 50%, 50%;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.checkbox input:checked + span {
  color: #fff;
}

.checkbox input:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox input:checked + span:before {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.input-submit input {
  border: none;
  outline: none;
  background: -o-linear-gradient(181.98deg, #0085F0 0%, #00EAF1 100%);
  background: linear-gradient(268.02deg, #0085F0 0%, #00EAF1 100%);
}

.choices {
  margin-bottom: 0;
}

.choices:after {
  content: none !important;
}

.choices__list--dropdown.is-active {
  position: absolute;
  width: calc(100% + 8px);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin: -4px;
  margin-top: 0;
}
.choices__list--dropdown.is-active .choices__list {
  position: relative;
  overflow: hidden;
  padding: 4px;
  padding-top: 0;
}
.choices__list--dropdown.is-active .choices__list:before {
  position: absolute;
  content: "";
  inset: -2px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: -o-linear-gradient(315deg, #1b6465 0%, #872889 100%) border-box;
  background: linear-gradient(135deg, #1b6465 0%, #872889 100%) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.choices__item {
  background-color: #fff;
  color: #000B0B;
  font-size: 18px;
  font-weight: 400;
}

.choices__placeholder {
  opacity: 1;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  content: none;
}

.choices__list--dropdown .choices__item {
  font-size: 18px !important;
  padding: 10px 12px !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #fff;
}

.choices__list--dropdown {
  border: none;
}

.choices__inner {
  background-color: #fff;
  border: none;
}

.privacy-policy .wrapp {
  margin-bottom: 64px;
}
.privacy-policy .wrapp:last-child {
  margin-bottom: 0;
}
.privacy-policy ol {
  list-style: none;
  list-style-type: none;
  counter-reset: num;
}
.privacy-policy ol li {
  position: relative;
  margin-top: 64px;
}
.privacy-policy ol li:first-child {
  margin-top: 0;
}
.privacy-policy ol li .title-9 {
  padding-left: 30px;
}
.privacy-policy ol li:before {
  content: counter(num) ".";
  counter-increment: num;
  font-size: clamp(18px, 3.9vw, 24px);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  font-weight: 500;
  position: absolute;
  top: 1px;
}
.privacy-policy .decor-image {
  top: 1600px;
  left: 0;
  right: auto;
}
.privacy-policy .decor-image1 {
  width: 150px;
  height: 150px;
  top: 600px;
  right: 0;
  left: auto;
}
.privacy-policy .decor-image2 {
  top: 2000px;
  right: 5%;
  left: auto;
  bottom: auto;
}
.privacy-policy .decor-image3 {
  top: 3000px;
  width: 190px;
  height: 190px;
  right: 0;
  left: auto;
  bottom: auto;
}
.privacy-policy .decor-image4 {
  top: 4000px;
  width: 190px;
  height: 190px;
  left: 0;
  right: auto;
  bottom: auto;
}
.privacy-policy .decor-image4 {
  top: auto;
  width: 320px;
  height: 320px;
  right: 0;
  left: auto;
  bottom: 1000px;
}
.privacy-policy .decor-circle2 {
  top: 100px;
}
.privacy-policy .decor-circle3 {
  top: 2500px;
  right: auto;
  left: -10%;
}
.privacy-policy .decor-circle4 {
  top: 5000px;
  right: -10%;
  left: auto;
}
.privacy-policy .decor-circle5 {
  top: auto;
  bottom: 500px;
  left: -10%;
  right: auto;
}

@-webkit-keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@-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 icon1 {
  0%, 100% {
    -webkit-transform: scale(0.6) translateY(0) translateX(0);
            transform: scale(0.6) translateY(0) translateX(0);
  }
  20% {
    -webkit-transform: scale(0.8) translateY(50px) translateX(10%);
            transform: scale(0.8) translateY(50px) translateX(10%);
  }
  80% {
    -webkit-transform: scale(0.9) translateY(100px) translateX(20%);
            transform: scale(0.9) translateY(100px) translateX(20%);
  }
}
@keyframes icon1 {
  0%, 100% {
    -webkit-transform: scale(0.6) translateY(0) translateX(0);
            transform: scale(0.6) translateY(0) translateX(0);
  }
  20% {
    -webkit-transform: scale(0.8) translateY(50px) translateX(10%);
            transform: scale(0.8) translateY(50px) translateX(10%);
  }
  80% {
    -webkit-transform: scale(0.9) translateY(100px) translateX(20%);
            transform: scale(0.9) translateY(100px) translateX(20%);
  }
}
@-webkit-keyframes icon3 {
  0%, 100% {
    -webkit-transform: scale(0.6) translateY(0) translateX(0);
            transform: scale(0.6) translateY(0) translateX(0);
    margin-left: 0;
  }
  20% {
    -webkit-transform: scale(0.8) translateY(50px) translateX(100px);
            transform: scale(0.8) translateY(50px) translateX(100px);
  }
  80% {
    -webkit-transform: scale(0.9) translateY(-150px) translateX(50%);
            transform: scale(0.9) translateY(-150px) translateX(50%);
    margin-left: 110%;
  }
}
@keyframes icon3 {
  0%, 100% {
    -webkit-transform: scale(0.6) translateY(0) translateX(0);
            transform: scale(0.6) translateY(0) translateX(0);
    margin-left: 0;
  }
  20% {
    -webkit-transform: scale(0.8) translateY(50px) translateX(100px);
            transform: scale(0.8) translateY(50px) translateX(100px);
  }
  80% {
    -webkit-transform: scale(0.9) translateY(-150px) translateX(50%);
            transform: scale(0.9) translateY(-150px) translateX(50%);
    margin-left: 110%;
  }
}
@-webkit-keyframes dashItem {
  from {
    stroke-dashoffset: 130;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dashItem {
  from {
    stroke-dashoffset: 130;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes opac {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes opac {
  0% {
    opacity: 0.1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}
@-webkit-keyframes fillDecor {
  50% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 100;
  }
}
@keyframes fillDecor {
  50% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 100;
  }
}
.swiper-pagination {
  position: static !important;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 4px !important;
  background: #787272 !important;
  opacity: 0.7 !important;
  margin: 0 15px !important;
}

.swiper-pagination-bullet-active {
  background: rgba(19, 0, 235, 0.8) !important;
  opacity: 1 !important;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 72px;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 18px;
}
.breadcrumbs .arrow {
  margin: 0 10px;
  width: 16px;
  height: 20px;
}
.breadcrumbs .active {
  background: var(--linear-gradient-08, linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.breadcrumbs a {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.breadcrumbs a:hover {
  opacity: 0.8;
}

.section-head .description {
  margin-bottom: 68px;
}

.page-404 .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-404 svg {
  margin-right: 8px;
}
.page-404 .banner-wrapp > * {
  margin-bottom: 32px;
}
.page-404 .banner-wrapp > *:last-child {
  margin-bottom: 0;
}
.page-404 .banner-wrapp > * .btn {
  margin-right: 0 !important;
}
.page-404 h1 {
  font-size: 150px;
  margin-bottom: 0 !important;
}

.container {
  max-width: 1280px;
  padding: 0;
  position: relative;
  z-index: 6;
}

.row {
  position: relative;
}

.choices__list--dropdown .choices__item:hover {
  position: relative;
  color: #000;
}
.choices__list--dropdown .choices__item:hover:before {
  position: absolute;
  content: "";
  inset: 3px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: -o-linear-gradient(315deg, #00DBDE 0%, #FC00FF 100%) border-box;
  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: 1;
}

.splash .header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.splash .title-9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.splash .title-9 svg {
  margin-left: 16px;
}
.splash .banner-btns > * {
  width: 340px;
  padding-left: 15px;
  padding-right: 15px;
}
.splash .social {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 50% !important;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}
.splash .social-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(14px, 3.9vw, 20px);
  margin-bottom: 16px;
}

.social-title, .splash .h2, .splash .title-9 {
  opacity: 0;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}

.loaded .social-title, .loaded.splash .h2, .loaded.splash .title-9 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1.5s, visibility 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, -webkit-transform 1.5s;
  -o-transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s, -webkit-transform 1.5s;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #000B0B;
  z-index: 20;
  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;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.preloader .container {
  position: relative;
  height: 100%;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.preloader-row {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-animation: topLeft 1.5s;
          animation: topLeft 1.5s;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}
.preloader-logo {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.preloader-logo svg {
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-animation: rotate90 1s;
          animation: rotate90 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.preloader-logo svg path:nth-child(2) {
  -webkit-animation: opacSvg 1s;
          animation: opacSvg 1s;
}
.preloader-logo svg path:nth-child(1) {
  -webkit-animation: opacSvg2 1s;
          animation: opacSvg2 1s;
}
.preloader-logo svg path:nth-child(3) {
  -webkit-animation: opacSvg3 1.5s;
          animation: opacSvg3 1.5s;
}
.preloader-text {
  margin-left: 24px;
}
.preloader-text > * {
  margin-right: 5px;
}
.preloader-text > *:last-child {
  margin-right: 0;
}
.preloader-text > *:nth-child(1) {
  -webkit-animation: text1 5s;
          animation: text1 5s;
}
.preloader-text > *:nth-child(2) {
  -webkit-animation: text1 5.5s;
          animation: text1 5.5s;
}
.preloader-text > *:nth-child(3) {
  -webkit-animation: text1 6s;
          animation: text1 6s;
}
.preloader-text > *:nth-child(4) svg {
  -webkit-animation: scaleLogo 4.5s;
          animation: scaleLogo 4.5s;
}

.preloader.hide {
  opacity: 0;
  background: transparent;
  display: none !important;
  width: 0;
  height: 0;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

@-webkit-keyframes opacSvg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacSvg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opacSvg2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacSvg2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opacSvg3 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacSvg3 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rotate90 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate90 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes text1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes text2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes text2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes scaleLogo {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60vw) scale(5);
            transform: translateX(60vw) scale(5);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(60vw) scale(5);
            transform: translateX(60vw) scale(5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@keyframes scaleLogo {
  0% {
    opacity: 0;
    -webkit-transform: translateX(60vw) scale(5);
            transform: translateX(60vw) scale(5);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateX(60vw) scale(5);
            transform: translateX(60vw) scale(5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@-webkit-keyframes topLeft {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -111px;
  }
}
@keyframes topLeft {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -111px;
  }
}
@-webkit-keyframes topLeft1400 {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -95px;
  }
}
@keyframes topLeft1400 {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -95px;
  }
}
@-webkit-keyframes topLeft991 {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -68px;
  }
}
@keyframes topLeft991 {
  100% {
    -webkit-transform: translate(0) scale(0.4);
            transform: translate(0) scale(0.4);
    top: -30px;
    left: -68px;
  }
}
@-webkit-keyframes topLeft776 {
  100% {
    -webkit-transform: translate(0) scale(0.25);
            transform: translate(0) scale(0.25);
    top: -38px;
    left: -38%;
  }
}
@keyframes topLeft776 {
  100% {
    -webkit-transform: translate(0) scale(0.25);
            transform: translate(0) scale(0.25);
    top: -38px;
    left: -38%;
  }
}
@-webkit-keyframes topLeft580 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -130px;
  }
}
@keyframes topLeft580 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -130px;
  }
}
@-webkit-keyframes topLeft400 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -115px;
  }
}
@keyframes topLeft400 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -115px;
  }
}
@-webkit-keyframes topLeft380 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -110px;
  }
}
@keyframes topLeft380 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -110px;
  }
}
@-webkit-keyframes topLeft370 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -105px;
  }
}
@keyframes topLeft370 {
  100% {
    -webkit-transform: translate(0) scale(0.5);
            transform: translate(0) scale(0.5);
    top: -12px;
    left: -105px;
  }
}

 .sub-menu li {margin-bottom: 0px !important;}


/* Style The Dropdown Button */
.dropbtn {
  background-color: white;
  color: black;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-align:start
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  z-index:20
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: rgb(204, 204, 204);
}

.navigation{
grid-gap:30px}
/*Hidden class for adding and removing*/
:root {
    --main-color: #ecf0f1;
    --point-color: #555;
    --size: 5px;
}

.alert-svg{
    display: inline !important;
}
.loader-main_text{
   font-size: 22px; font-weight: bold; color:#555
}
.loader-main {
background-color: #ecf0f175; 
overflow: hidden;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
justify-content: center;
z-index: 100000;
}
.loader {
  
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
   
}

.loader__element {
    border-radius: 100%;
    border: var(--size) solid var(--point-color);
    margin: calc(var(--size)*2);
}

.loader__element:nth-child(1) {
    animation: preloader .6s ease-in-out alternate infinite;
}

.loader__element:nth-child(2) {
    animation: preloader .6s ease-in-out alternate .2s infinite;
}

.loader__element:nth-child(3) {
    animation: preloader .6s ease-in-out alternate .4s infinite;
}

@keyframes preloader {
    100% {
        transform: scale(2);
    }
}

.phone {
    display: inline-block !important;
}

input[name="phone"] {
    padding-left: 91px !important;
}

.successValidate {
    border: 3px solid rgb(169, 243, 58) !important;
}


/* new style */
input:focus {
    outline: none;
}

/* new style */



.failedValidate {
    border: 3px solid red !important;
}

.iti__country-name,
.iti__dial-code {
    color: black;
}

.iti {
    width: 100%;
    height: 100%;
}

.video-wrapper,
video {
    width: 100% !important;
    height: 100% !important;
}

.video-js:hover .vjs-control-bar {
    visibility: visible !important;
    opacity: 1 !important;
    transition: visibility .1s, opacity .1s !important;
}

.shake {
    display: inline-block;
    animation: shake 1s cubic-bezier(0, .50, 1, .50) 0s infinite;
}

@keyframes shake {
    0% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1);
    }

    20% {
        transform: scale(1.1);
    }

    30% {
        transform: rotate3d(0, 0, 1, -25deg) scale(1.1);
    }

    40% {
        transform: rotate3d(0, 0, 1, 25deg) scale(1.1);
    }

    50% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1.1);
    }

    60% {
        transform: rotate3d(0, 0, 1, -25deg) scale(1.1);
    }

    80% {
        transform: rotate3d(0, 0, 1, 25deg) scale(1.1);
    }

    90% {
        transform: rotate3d(0, 0, 1, 0deg) scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.alertFormWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alertForm {
    /*width: 400px;*/
    /*height: 300px;*/
    background-repeat: round;
    padding: 50px 30px;
}

.alertForm form {
    background-image: none !important;
}

.alertForm button {
    position: relative !important;
}

.alertForm .heading-wrapper {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 4px;
}

.alertForm .heading-wrapper .first-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
}

.alertForm .heading-text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 54px;
    color: #ffb400;
    padding-top: 30px;
}

.alertForm .heading-wrapper .second-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
}

.alertForm .no-thanks-paragraph {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
    padding-left: 120px;
    cursor: pointer;
}

.alertForm #alertForm {
    background-color: rgba(255, 255, 255, 0.3);
    max-width: 320px;
    border-radius: 4px;
    margin-top: 15px;
    padding: 17px;
}

.alertForm button {
    max-width: 285px;
    height: 52px;
    color: #000000;
    background-color: #ffb400;
    font-family: "Ubuntu", sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #b27e00;
    border-bottom-width: 4px;
    margin-left: auto;
    margin-right: auto;
}

.alertForm .input-wrapper:last-child {
    display: flex;
    justify-content: center;
}



body {
    -webkit-perspective: none !important;
    perspective: none !important;
}

#messageContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 400px;
    z-index: 100000;

}



.messagebrigade {

    background: #F59E0B;
    color: #f4f4f4;
    font-weight: bolder;
    box-shadow: 0 0 0 1px rgba(0 0 0 .2), 0 20px 90px 0 rgba(0 0 0 .4);
    border-radius: 2px;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*align-items: center;*/
    white-space: pre;
    font-size: 18px;
    cursor: pointer;
    font-family: San Francisco, -apple-system, BlinkMacSystemFont, \.SFNSText-Regular, sans-serif;
}




.messageText {
    width: 100%;
    margin-left: 5px;
    margin-top: 2px;
    overflow: hidden;
    white-space: pre-wrap;
}

@media (max-width: 780px) {
    #messageContainer {
        max-width: 100vw;
        /*bottom: auto;*/
        /*top: 0;*/
    }

    .messagebrigade{
        height: auto !important;
    }
}

.video-wrapper{
	border-radius: 30px;
	overflow: hidden;
	height: 500px;
	font-size: 0
}

.video-wrapper video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(max-width: 580px){
	.video-wrapper{
		border-radius: 15px;
	}
	.video-wrapper{
		height: 350px;
	}
}

#wpadminbar{
  display: none!important;
}





.popup-video{
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-video:hover svg path{
  fill: #000002;
}

.video-btn .icon{
  margin-right: 10px;
  font-size: 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.active {
  left: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.popup.active .popup-overlay {
  opacity: 0.5;
  background: #161616;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.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;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  opacity: 0;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.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: 15px;
  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%;
  max-width: 100vw;
  max-height: 98vh;
  text-align: left;
  margin-right: 0;
  margin: 0 auto;
}

.popup-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 10000px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.popup-align {
  overflow: hidden;
  position: relative;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #272727;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 40px 30px;
}

.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 video {
  width: 100%;
  height: 100%;
  position: absolute;
}

video {
  width: 100%;
}

.embed-responsive-16by9 {
  padding-bottom: 56.3%;
  min-width: 1000px;
}


.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: -50px;
  right: -100px;
}

@media screen and (max-width: 1500px) {
  .popup-container {
    max-width: 820px;
  }
}
@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;
}

.st3 {
  fill: #ffffff;
}

.video-btn{
  position: relative;
  max-width: 300px;
}

.pointer{
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateX(50%);
}

.pointer img{
  width: 45px;
  height: 45px;
  -webkit-animation: opacity .8s step-end .8s infinite;
  animation: opacity .8s step-end .8s infinite;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.embed-responsive-item{
  overflow: hidden;
}

.video-popup-align{
  border-radius: 30px;
}

@media(max-width: 580px){
  .popup video{
    position: static;
    width: 100%;
    margin: 0;
    min-height: 400px;
  }
  .embed-responsive-16by9{
    padding-bottom: 0;
    min-width: 100%;
    min-height: 400px;
  }
  .popup video{
    margin: 0;
    width: 100%;
    min-height: 400px;
    object-fit: contain;
  }

  .video-popup-align{
    background: none;
  }

  .video-popup-align .btn-close{
    top: 30px;
    right: 0;
  }


}












.bg-form{
  padding: 40px 60px;
}

#form input, .iti{
  width: 100%!important;
  max-width: 100%!important;
}
.container .form-outer{
  width: 100%;
  overflow: hidden;
}
.hero-form{
  margin-bottom: 0!important;
}
.bg-form{
  padding-bottom: 0!important;
}
.container .form-outer form{
  display: flex;
  width: 400%;
}
.form-outer form .page{
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}
.form-outer form .page .title{
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.form-outer form .page .field{
  height: 45px;
  margin: 45px 0;
  display: flex;
  position: relative;
}

.form form .input-wrapper input:not(.phone):placeholder-shown:not(:focus)::placeholder{
  opacity: 1!important;
}
form .page .field .label{
  position: absolute;
  top: -30px;
  font-weight: 500;
}
form .page .field input{
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 18px;
}
form .page .field select{
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-weight: 500;
}
form .page .field button{
  width: 100%;
  height: calc(100% + 5px);
  border: none;
  /* background: #fff; */
  margin-top: -20px;
  /* border-radius: 4px; */
  /* color: #fff; */
  /* border: 2px solid #ffc600; */
  cursor: pointer;
  /* font-weight: bold; */
  letter-spacing: 1px;
  color: #fff;
  background-color: #000;
  font-size: 16px;
  border-radius: 8px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.5s ease;
}
form .page .field button:hover{
  background: #fff;
  color: #000;
}
form .page .btns button{
  margin-top: -20px!important;
}
form .page .btns button.prev{
  margin-right: 3px;
  font-size: 17px;
}
form .page .btns button.next{
  margin-left: 3px;
}
.container .progress-bar{
  display: flex;
  margin: 40px 0;
  user-select: none;
}
.container .progress-bar .step{
  text-align: center;
  width: 100%;
  position: relative;
}
.container .progress-bar .step p{
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}
.progress-bar .step .bullet{
  height: 25px;
  width: 25px;
  border: 2px solid #000;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
}
.progress-bar .step .bullet.active{
  border-color: #d43f8d;
  background: #d43f8d;
}
.progress-bar .step .bullet span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar .step .bullet.active span{
  display: none;
}
.progress-bar .step .bullet:before,
.progress-bar .step .bullet:after{
  position: absolute;
  content: '';
  bottom: 11px;
  right: -51px;
  height: 3px;
  width: 44px;
  background: #262626;
}
.progress-bar .step .bullet.active:after{
  background: #d43f8d;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after{
  display: none;
}
.progress-bar .step p.active{
  color: #d43f8d;
  transition: 0.2s linear;
}
.progress-bar .step .check{
  position: absolute;
  left: 50%;
  top: 70%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}
.progress-bar .step .check.active{
  display: block;
  color: #fff;
}


form .page .btns .submit{
  background-color: #fff;
  color: #000;
}



.progress-wrapper{
  position: fixed;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background: #15212A;
  z-index: 10;
}



.progress-bar {
  background: rgb(149, 217, 255);
  height: 8px;
  width: 0%;
  position: fixed;
  bottom: 0;
  z-index: 20;
}



@media(max-width: 580px){
  .bg-form{
    padding: 40px 10px;
    padding-bottom: 0;
    border-radius: 20px;
  }
  
  .form{
      padding: 0!important;
  }
  .form-div, .form-div{
      padding-left: 0;
  }
  #form-element-1{
      width: 100%;
  }
  .form form .input-wrapper input, .form form .password-wrapper .password-btn{
      height: 45px;
  }
  .advisor-item{
      width: 100%;
  }
  .partner-item{
      min-height: 100%;
      margin-bottom: 20px;
  }
  .form form .input-wrapper input, .form form .password-wrapper .password-btn{
      height: 45px!important;
  }
}

.form-div{
  width: 100%;
}

.formhere{
  width: 100%;
}

.popup-video{
  border: 1px solid #fff;
}


.form-wrapp .input-item{
  margin-bottom: 10px;
}


@media(max-width: 580px){
  .banner-form .container{
    padding: 0;
  }
  .banner-align .container{
    padding-left: 0px;
  }
  .video-btn{
    max-width: 100%;
  }
}