:root {
  --dark-color: hsl(var(--hue), 100%, 9%);
  --light-color: hsl(var(--hue), 95%, 98%);
  --base: hsl(var(--hue), 95%, 50%);
  --complimentary1: hsl(var(--hue-complimentary1), 95%, 50%);
  --complimentary2: hsl(var(--hue-complimentary2), 95%, 50%);
  --font-family: "Montserrat", system-ui;
  --bg-gradient: linear-gradient(to bottom,
      hsl(var(--hue), 95%, 99%),
      hsl(var(--hue), 95%, 84%));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* scroll-behavior: smooth; */
}

html,
body {
  text-rendering: optimizelegibility;
}

body {
  position: relative;
  max-width: 1920px;
  min-height: 100vh;
  font-family: var(--font-family);
  color: white;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
}

.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  border-radius: 2114px;
  background: radial-gradient(48.09% 49.02% at 50.00% 50.98%, #353434 0%, rgba(0, 0, 0, 0.00) 100%);
  z-index: -2;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  animation: fadeOut 2s ease-in-out forwards;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.navigation {
  position: fixed;
  top: 0px;
  z-index: 999;
  display: flex;
  width: 100%;
}

.navigation nav {
  opacity: 0;
  animation: fadeInNav 2s ease-in-out forwards;
  animation-delay: 1s;
  width: 100%;
  display: flex;
  padding: 1rem 0;
  position: relative;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(30px);
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

@keyframes fadeInNav{
  0%{
opacity: 0;
  }
  100%{
    opacity: 0.99;
  }
}

.logo-container {
  width: 200px;
  height: 45px;
  background-image: url("logo menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: content-box;
}

.globalnav-link {
  display: flex;
  width: 110px;
  height: 30px;
  text-indent: -9999px;
}

.colors-select {
  width: 100%;
  padding: 5px;
  max-width: 250px;
  height: 100%;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-color);
  border: none;
  border-radius: 0.5rem;
  transition: transform 150ms ease;
  outline-color: hsl(var(--hue), 95%, 50%);
  z-index: 99;
}

.colors-select:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.navigation .nav-links ul {
  display: flex;
  justify-content: flex-end;
}

.navigation .nav-links ul li {
  display: flex;
  margin: 0 25px;
}

.navigation a {
  font-size: 15px;
  font-weight: 800;
}

.menu a.active {
  background-image: linear-gradient(45deg,
      var(--base) 25%,
      var(--complimentary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 900;
}

.image {
  background-image: url('Untitled.png');
  position: absolute;
  transform: scale(1);
  opacity: 0.3;
}

.mobile-menu {
  display: none;
}

.columns {
  flex-direction: column;
}

/* .video.scrolled-past {
  position: relative;
}

.video{
  position: sticky;
  top: 0;
  height: 100vh; 
  z-index: 0;
}
.video video {
  width: 100vw;
}  */

.general {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vw;
  width: 100vw;
}

.general-text {
  position: absolute;
  z-index: 3;
  padding: 20vh 100vh 0vh 10vh;
  display: flex;
  top: 5%;
}

.general-text h1 {
  text-align: left;
  font-weight: 500;
}

.general-text h1 {
  opacity: 0;
  animation: fadeInH1 2s ease-in-out forwards;
  animation-delay: 1.5s;
}

@keyframes fadeInH1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.call-button-section {
  z-index: 3;
  position: absolute;
  top: 30%;
  padding: 10% 0vw 0vh 15%;
}

.btn-mix {
  opacity: 0;
  animation: fadeInButton 2s ease-in-out forwards;
  animation-delay: 2s;
  position: relative;
  font-weight: 900;
  border-radius: 50px;
  letter-spacing: 0px;
  padding: 1.4em 2.5em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  transition: all 500ms ease-in-out;
  outline: 0;
  font-size: 1em;
  overflow: hidden;
}

@keyframes fadeInButton{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.btn-mix:hover,
.btn-mix:focus {
  background: rgba(255, 255, 255, 0.8);
}

.btn-mix::after {
  background: #000000;
  border-radius: 120px;
  content: attr(data-text);
  color: #fff;
  padding: 1em 2em;
  top: 0.4em;
  left: 0.5em;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
}

.btn-mix::before {
  overflow: hidden;
  background: transparent;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  box-shadow: 0 1em 2em 3em rgba(255, 50, 0, 0.5), 4em 0em 2em 2em rgba(155, 50, 0, 0.6), -4em -2em 2em 2em rgba(255, 0, 150, 0.5), -4em 2em 2em 4em rgba(0, 0, 150, 0.5), 0 -3em 2em 3em rgba(120, 250, 0, 0.5), 2em -1em 2em 2em rgba(50, 10, 200, 0.5);
  width: 0;
  height: 0;
  animation: mix 5s linear infinite;
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
}

@keyframes mix {
  30% {
    box-shadow: 0 -1em 2em 3em rgba(255, 0, 200, 0.66), 4em -1em 2em 3em rgba(255, 50, 0, 0.8), -4em 2em 3em 2em rgba(153, 200, 0, 0.874), -4em -2em 2em 2em rgba(200, 0, 150, 0.883), 0 3em 2em 2em rgba(21, 250, 0, 0.73), 2em 1em 2em 2em rgba(50, 10, 250, 0.756);
  }

  60% {
    box-shadow: 2em 1em 2em 3em rgba(57, 0, 200, 0.649), 3em 1em 2em 3em rgba(25, 150, 0, 0.6), 3em -2em 3em 3em rgba(153, 200, 0, 0.709), -4em 2em 2em 3em rgba(200, 0, 50, 0.841), 0 -3em 2em 3em rgba(200, 250, 0, 0.756), -2em 1em 2em 3em rgba(50, 210, 250, 0.804);
  }
}

/* canvas {
  position: relative;
  display: block;
  
  margin-top: 0px;
  /* width: 100%;
  height: 100%; */

.spline {
  opacity: 0;
  position: absolute;
  height: 100vh;
  width: 200vh;
  /* padding: 10vh 0vh 0vh 50vw; */
  z-index: 2;
  display: flex;
  animation: fadeInSpline 2s ease-in-out forwards ;
  animation-delay: 3s;
}

@keyframes fadeInSpline {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.parent {
  margin: 0vh 0vh 50vw 0vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.overlay {
  position: relative;
  max-width: 300px;
  min-width: 270px;
  display: flex;
  height: 400px;
  background: rgba(88, 87, 87, 0.454);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
  z-index: 99;
  flex-direction: column;
  align-items: stretch;
}

.image-overlay {
  display: flex;
  padding: 1rem 0rem;
  max-height: 200px;
  justify-content: center;
}

.image-overlay img {
  width: 30%;
  display: flex;
  flex-shrink: 0;
}

.overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.overlay__title {
  text-align: center;
  font-size: 26px;
  line-height: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0rem;
}

.text-gradient {
  background-image: linear-gradient(45deg,
      var(--base) 25%,
      var(--complimentary2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.overlay__description {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.overlay__description strong {
  font-size: 18px;
  line-height: 1.5rem;
  font-weight: 500;
}

.overlay__btns {
  position: absolute;
  bottom: 0;
  right: 0;
}

#expandBtn {
  position: relative;
  z-index: 9999;
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  width: 0;
  height: 0;
  opacity: 1;
  transition: opacity 1s;
  z-index: 9998;
}

.overlay__btn {
  width: 120px;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 100;
  background: var(--dark-color);
  border: none;
  border-radius: 0.5rem;
  transition: transform 150ms ease;
  outline-color: hsl(var(--hue), 95%, 50%);
}

.overlay__btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.overlay__btn--transparent {
  background: transparent;
  color: var(--dark-color);
  display: flex;
}

.image-container-wrapper {
  height: 100vw; /* или другое значение, которое подходит вам */
}

.centered-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: -1;
}

.image-wrapper {
  width: calc(100% + 16px);
  margin: 0 -8px;
  /* position: sticky; */
}

/* .scroll-text {
  position: absolute;
  top: 50%;
  
  width: 100%;
  text-align: center;
  opacity: 0;
  
  z-index: 0;
  
} */
.section-text-below{
  justify-content: center;
  display: flex;
  padding: 0vh 30vh;
}

.text-below{
  line-height: .8;
  /* text-decoration:; */
  text-align:center;
color: #000000;
font-weight: 900;
font-size: 14vh;
  z-index: 1;
}

/* .fixed {
  position: fixed;
  top: 0;
  transition: top 0.3s ease-out;
}

.relative {
  position: relative;
  transition: none; 
} */

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.circle-customers {
  overflow: hidden;
  padding: 140px 0;
  white-space: nowrap;
  position: relative;
  width: 200%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.animate-marque {
  display: inline-block;
  position: absolute;
  animation: marquee 20s infinite linear;
}

.inline-block {
  display: inline-block;
  margin: 0 40px;
  height: 50px;
}

.inline-block img {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.overlay2 {
  margin: 10rem 10% 10% 50%;
  padding: 22vh 5vh;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.375);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.125);
  z-index: 99;
}

#scrollTopButton {
  display: none;
  bottom: 50px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  position: fixed;
  background-color: #55555577;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.5s;
  z-index: 9999;
}

#scrollTopButton:hover {
  opacity: 1;
}

.block2 {
  clear: both;
  margin: 0px;
  padding: 0rem 4rem;
  align-items: center;
}

.scale {
  word-wrap: break-word;
}


.overlay__description2 {
  opacity: 1;
  display: block;
  font-size: 10vw;
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
  text-align: center;
  margin: 50vh 0 0 0;
  z-index: 1;
}

.overlay__description3 {
  display: block;
  margin-top: 100vh;
  line-height: 1;
  font-size: 10vw;
  font-weight: 900;
  text-wrap: balance;
  text-align: center;
  margin: 100vh 0 0 0;
}

.overlay__btn-emoji {
  margin-left: 0.375rem;
}

a {
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us-section {
  padding: 70px 70px 70px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us-section .contact-container {
  width: 100%;
  max-width: 1446px;
}

.contact-us-section .contact-us-title p {
  font-weight: 800;
  font-size: 10vw;
}

.contact-us-body {
  display: flex;
  position: relative;
}

.contact-us-container {
  width: 34%;
}

.contact-us-container .border-line {
  padding: 8px;
  border: 2px solid #e6e8ea;
  border-radius: 16px;
  background-color: rgb(255 255 255 / 0.3);
}

.contact-us-section .input-container {
  width: 100%;
}

.contact-us-section .contact-input {
  background-color: #ffffff;
  margin: 0px 0px 8px 0px;
  width: 100%;
  height: 50px;
  border: 1px solid #ebedf1;
  border-radius: 9px;
  padding: 10px 10px 10px 15px;
  outline: none;
  color: #232328;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 16px;
}

.contact-us-section .contact-input::placeholder {
  color: #4242469d;
}

.contact-us-section textarea.contact-input {
  height: 160px;
  resize: none;
  margin: 0;
  display: block;
}

.contact-us-section .invalid-feedback {
  margin-left: 10px;
}

.select {
  position: relative;
  height: 50px;
  cursor: pointer;
  margin: 0px 0px 8px 0px;
}

.centered-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-section .input-container {
  width: 100%;
  display: block;
}

.input-container {
  vertical-align: baseline;
  margin: 0px;
  padding: 0px;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
  list-style: none;
}

.input-container ul {
  list-style: none;
}

.input-container li {
  list-style: none;
}

.select-close {
  display: none;
}

.select-label {
  transition: all 250ms cubic-bezier(.4, .25, .3, 1);
  display: block;
  height: 0;
  line-height: 50px;
  overflow: hidden;
  background-color: #ffffff;
  cursor: pointer;
  margin: 0px 10px 0px -25px;
  font-size: 16px;
}

.select-label-placeholder {
  height: 50px;
  position: absolute;
  color: #232328;
  background-color: transparent;
  opacity: 0.6;
  margin: auto;
  padding-left: 15px;
}

.select-items {
  padding-top: 50px;
  border: 1px solid #ebedf1;
  border-radius: 9px;
  background-color: #ffffff;
}

.select-close-label {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.select-input {
  display: none;
}

.select-input:checked+.select-label {
  height: 50px;
  margin-top: -50px;
}

.select-options {
  padding: 0;
  position: relative;
}

.select-option .select-label {
  padding-left: 5px;
  margin-left: 10px;
  color: black;
}

.select-expand {
  width: 0;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
}

.select-expand::after {
  box-sizing: inherit;
  /* content: url(../images/arrow.svg); */
  position: absolute;
  top: 15px;
  right: 10px;
  pointer-events: none;
  z-index: 2;
}

.select-expand:checked::after {
  transform: rotate(180deg);
}

.select-expand-label {
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.select-expand:checked+.select-close-label {
  display: block;
}

.select-expand:checked+.select-close-label+.select-options .select-label {
  height: 50px;
}

.select-expand:checked+.select-close-label+.select-options .select-label:hover {
  color: #ffaf60
}

.select-expand:checked+.select-close-label+.select-options+.select-expand-label {
  display: none;
}

.contact-us-section .contact-button-container {
  display: flex;
  justify-content: right;
  margin-top: 20px;
}

.contact-us-section .contact-button {
  color: rgb(253, 253, 253);
  cursor: pointer;
  padding: 0;
}

.contact-us-section .contact-us-logo-container {
  width: 66%;
  padding: 0 3%;
}

.contact-us-section .contact-us-logo {
  width: 100%;
}

.contact-us-section .contact-us-logo img {
  width: 100%;
}

.contact-us-section .contact-us-text {
  padding-top: 10px;
}

.contact-form-text {
  font-size: 10vw;
  font-weight: 900;
}

footer {
  position: absolute;
  backdrop-filter: blur(8px);
  padding: 1rem;
  color: #555;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.footer-menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer-menu ul li {
  display: inline-block;
  margin: 0 25px;
}

.footer-menu ul li a {
  color: #cfd0d2;
  text-decoration: none;
}

.footer-social ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.footer-social ul li {
  display: inline-block;
  margin-right: 0px;
}

.footer-social ul li a {
  color: #000A2E;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 0px 0px 0px 0px;
  font-size: 14px;
}

@media (prefers-contrast: high) {
  .orb-canvas {
    display: none;
  }
}

@media only screen and (max-width: 1190px) {
  .parent {}

  .overlay {}

  .footer-menu ul li {
    justify-content: flex-start;
    margin: 0 15px;
    font-size: 13px;
  }

  .navigation a {
    font-size: 13px;
  }

  .navigation .nav-links ul li {
    margin: 0 15px;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 940px) {

  .parent {}

  .overlay__description2 {
    font-size: 10vw;
  }

  .overlay__description3 {
    font-size: 10vw;
  }

  .nav-links ul li a {
    font-size: 12px;
  }

  .footer-menu ul li {
    margin: 10px 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 867px) {

  .mobile-menu {
    display: block;
    cursor: pointer;
    margin-right: 1rem;
  }

  .navigation nav {
    padding: 1rem 0rem;
    justify-content: space-between;
  }

  .mobile-menu .bar {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
  }

  .colors-select {}

  .nav-links {
    height: 0;
    position: relative;
    top: 1rem;
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
    background: rgba(27, 25, 25, 0.5);
  }

  .nav-links ul {
    display: block;
    width: fit-content;
    margin: 0px auto 0 auto;
    text-align: center;
    transition: .5s;
    flex-direction: column;
  }

  .nav-links ul li a {
    font-size: 9vw;
  }

  .nav-links.active {
    height: 100vh;
  }
}

@media only screen and (max-width: 695px) {
  .parent {}

  .overlay {}
}