#preloader {
  position: fixed;
  inset: 0;
  background-color: #0E131B;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader .logo-loader {
  width: 112px;
  animation: zoomingLogo 2s ease-in-out infinite;
}
#preloader .logo-loader-elements {
  fill: white;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 0;
  animation: loading 1.5s ease-in-out infinite;
}
#preloader .logo-loader-elements:nth-child(1) {
  animation-delay: 0.2s;
}
#preloader .logo-loader-elements:nth-child(2) {
  animation-delay: 0.4s;
}
#preloader .logo-loader-elements:nth-child(3) {
  animation-delay: 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomingLogo {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* ==== RESET (Modern) ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure,
blockquote, dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.cloudlex-header {
  width: 100%;
  position: fixed;
  z-index: 999;
}
.cloudlex-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 144px;
  background-image: linear-gradient(to bottom, #0e131b 0%, rgba(14, 19, 27, 0) 100%);
  position: fixed;
}

.cloudlex-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  font-family: "Exo 2";
  background-color: rgba(14, 19, 27, 0.6);
  margin: 0;
  padding: 16px 40px;
  box-shadow: inset 0 4px 16px 0 rgba(255, 255, 255, 0.02), inset 0 4px 8px 0 rgba(255, 255, 255, 0.04), inset 0 1px 4px 0 rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  backdrop-filter: blur(16px);
}
.cloudlex-menu li {
  margin-right: 40px;
}
.cloudlex-menu li a {
  color: var(--e-global-color-primary);
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.cloudlex-menu li:last-child {
  margin-right: 0px;
}

.lang-switcher {
  background-color: rgba(14, 19, 27, 0.6);
  margin: 0;
  box-shadow: inset 0 4px 16px 0 rgba(255, 255, 255, 0.02), inset 0 4px 8px 0 rgba(255, 255, 255, 0.04), inset 0 1px 4px 0 rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  backdrop-filter: blur(16px);
}

.mobile-nav {
  max-width: 400px;
  transform: scale(0, 0) !important;
  transform-origin: top right;
}
.mobile-nav.active {
  transform: scale(1, 1) !important;
}

.main-menu-mobile .cloudlex-menu {
  flex-direction: column;
  align-items: end;
}
.main-menu-mobile .cloudlex-menu li {
  margin-right: 0;
  margin-bottom: 16px;
  display: block;
  text-align: right;
}

.header-button .elementor-button {
  background-color: rgba(14, 19, 27, 0.6) !important;
  margin: 0;
  box-shadow: inset 0 4px 16px 0 rgba(255, 255, 255, 0.02), inset 0 4px 8px 0 rgba(255, 255, 255, 0.04), inset 0 1px 4px 0 rgba(255, 255, 255, 0.04) !important;
  border-radius: 50px;
  backdrop-filter: blur(16px);
}

.burger-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  padding-left: 16px;
  padding-right: 16px;
}
.burger-menu.active {
  display: grid;
  grid-template-rows: 1fr;
  padding-top: 48px;
  padding-bottom: 48px;
}
.burger-menu > div {
  overflow: hidden;
}
.burger-menu .cloudlex-main-menu {
  flex-direction: column;
}
.burger-menu .cloudlex-main-menu li {
  margin-right: 0px;
  margin-bottom: 40px;
}
.burger-menu .cloudlex-main-menu li:last-child {
  margin-bottom: 0;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar__burger .burger {
  width: 24px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
}
.navbar__burger .burger__layer {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  position: absolute;
  transition: all 0.4s ease;
}
.navbar__burger .burger__layer:nth-child(1) {
  top: 0px;
}
.navbar__burger .burger__layer:nth-child(2) {
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.navbar__burger .burger__layer:nth-child(3) {
  bottom: 0px;
}
.navbar__burger_open .burger__layer:nth-child(1) {
  transform-origin: top left;
  transform: rotate(45deg) translate(4px, -4px);
}
@media only screen and (min-width: 320px) and (max-width: 840px) {
  .navbar__burger_open .burger__layer:nth-child(1) {
    transform: rotate(45deg) translate(1px, 0px);
  }
}
.navbar__burger_open .burger__layer:nth-child(2) {
  transform: scaleX(0);
  transform-origin: 60% center;
}
.navbar__burger_open .burger__layer:nth-child(3) {
  transform-origin: bottom left;
  transform: rotate(-45deg) translate(4px, 4px);
}
@media only screen and (min-width: 320px) and (max-width: 840px) {
  .navbar__burger_open .burger__layer:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 0px);
  }
}

.hero-section {
  height: 100vh;
  height: 100dvh;
  background-color: #151C28;
  background-image: linear-gradient(to bottom, #151C28 0%, #3B537D 100%);
  position: relative;
}
.hero-section::after {
  content: "";
  width: 100%;
  height: 208px;
  background-image: url("../assets/clouds.png");
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  transform: translateY(50%);
  z-index: 1;
}
.hero-section .cloudlex-video-bg-wrapper {
  display: flex;
  justify-content: center;
}
.hero-section .cloudlex-video-bg {
  mix-blend-mode: lighten;
  max-width: 400px;
  max-height: 400px;
  filter: brightness(6);
}

.cloudlex-button {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cloudlex-button .button-text {
  background-color: rgba(14, 19, 27, 0.6);
  margin: 0;
  padding: 16px 24px;
  box-shadow: inset 0 4px 16px 0 rgba(255, 255, 255, 0.02), inset 0 4px 8px 0 rgba(255, 255, 255, 0.04), inset 0 1px 4px 0 rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  backdrop-filter: blur(16px);
}
.cloudlex-button .button-icon {
  display: flex;
  background-color: rgba(14, 19, 27, 0.6);
  margin: 0;
  padding: 16px 16px;
  box-shadow: inset 0 4px 16px 0 rgba(255, 255, 255, 0.02), inset 0 4px 8px 0 rgba(255, 255, 255, 0.04), inset 0 1px 4px 0 rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  backdrop-filter: blur(16px);
}

.elementor-element.elementor-widget-cloudlex_starfield.elementor-absolute {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.cloudlex-starfield {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cloudlex-starfield span {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.15;
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.75);
  }
}
body {
  background-color: #0E131B;
}

.sticky-title {
  position: sticky !important;
  top: 120px;
}
.sticky-title-parent {
  position: relative !important;
}

.separator svg {
  width: 100%;
}

.contact-us-form {
  overflow: hidden;
  position: relative;
}

.dot-waves {
  max-width: 100% !important;
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  position: absolute;
  overflow: hidden !important;
}
.dot-waves .dot-wave {
  display: block;
  animation: wave 5s infinite ease-in-out;
  bottom: 0;
}
.dot-waves .dot-wave:first-child {
  position: absolute;
  bottom: 0;
  animation-duration: 11s;
}

@keyframes wave {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

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