@import url("fonts/steppe/stylesheet.css");
*{
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
html,body {
  overscroll-behavior: none;
}
html {
  scroll-behavior: smooth;
  }
:root {
  --border-radius: 2rem;
}
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
body{
  background: #f0f0f0;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  text-align: center;
  box-sizing: border-box;
}
::-webkit-scrollbar {
width: 8px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #888;
height: 4px;
border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
background: #d08709;
}
.no-resize {
resize: none !important;
}
.lang-dropdown-btn .fa-earth-americas {
display: none;
}
@media screen and (max-width: 700px) {
.header .logo {
  max-width: 150px !important;
  z-index: 1500;
}
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 15rem;
background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
pointer-events: none; 
z-index: 1000;
resize: horizontal; /
}
body.loading {
overflow: hidden;
}
.scroll-blocker {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}

/*---FAQ---*/
::selection{
background: #3e2b7a;
color: #fff;
}
.accordion {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-top: 30px;
}
.accordion-text .title::before {
  content: "";
  display: block;
  width: 115px;
  height: 1px; 
  background-color: rgba(128, 74, 228, 0.596);
  position: absolute;
  top: -20px; 
  left: 50%;
  transform: translateX(-50%);
}
.questions-container{
width: 75%;
margin: 0 auto;
}
.accordion-text .title {
font-size: 2.6rem;
font-weight: 600;
color: #100629;
text-align: center;
margin-bottom: 35px;
}
.question span {
text-align: left;
}
.question button{
width: 100%;
background-color: #e7e7e7;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 15px;
border: none;
outline: none;
font-size: 22px;
color: #3f3f3f;
font-weight: 600;
cursor: pointer;
border-radius: 10px;
}
.question p{
font-size: 18px;
max-height: 0;
opacity: 0;
padding-top: 15px;
line-height: 1.5;
overflow: hidden;
text-align: left;
transition: all 0.6s ease;
}
.d-arrow{
transition: transform 0.3s ease-in-out ;
color: #3f3f3f;
}
.question p.show{
max-height: 200px; 
opacity: 1;
padding: 12px 30px 30px 15px;
color: #00000096;
}
.question button .d-arrow.rotate{
transform: rotate(180deg);
}
@media (max-width: 700px) {
  .accordion-text .title {
    font-size: 2rem;
  }
  .questions-container{
    max-width: 85%;
    margin: 0 auto;
    }
  .question span {
    font-size: 1.1rem;
    }
  .question button {
    padding: 17px 15px;
  }
}
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 5000;
opacity: 1;
transition: opacity 1s ease-out;
}

.spinner {
margin-bottom: 30px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-top: 4px solid #3e2b7a;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 0.8s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.preloader-content {
text-align: center;
opacity: 1;
transition: opacity 1s ease-in-out, visibility 1s ease-in-out; 
animation: fadeIn 1s ease-in-out;
}

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

.preloader h2 {
margin: 0;
font-size: 24px;
color: #333;
}

.loaded .preloader {
opacity: 0;
pointer-events: none;
transition: opacity 0.5s ease-out;
}

.loaded .preloader-content {
opacity: 0;
}

@media only screen and (max-width: 600px) {
.preloader h2 {
    font-size: 1.1rem;
}

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

.header {
min-height: 100vh;
width: 100%;
position: relative;
overflow: hidden;
transition: box-shadow 0.3s ease;
}
#backgroundVideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(40%); 
z-index: -1;
}
.logo-container {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1501;
}
.header .logo {
width: 100%;
max-width: 170px;
height: 100%;
z-index: 1500;
transition: opacity 0.3s;
}
.header .logo:hover {
  opacity: 0.7;
}
button {
border: 0;
padding: 0;
background: transparent;
cursor: pointer;
}
.navbar,
.navbar-burger,
.menu {
position: fixed;
}
.navbar {
z-index: 1501;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 72px;
padding-left: 25px;
}
.navbar-burger {
z-index: 1501;
top: 30px;
left: 20px;
display: grid;
place-items: center;
width: 44px;
height: 75px;
pointer-events: visible;
background-image: url("./assets/menu.svg");
background-repeat: no-repeat;
filter: brightness(70%);
background-position: center;
transition: filter 0.3s;
}
.navbar-burger:hover {
filter: brightness(100%);
}
body.open .navbar-burger {
background-image: url("./assets/close.svg");
}
.menu {
z-index: 1200;
top: 0;
left: 0;
display: grid;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.959);
opacity: 0;
overflow: hidden;
visibility: hidden;
transition: 0.4s;
overflow-y: auto;
}

body.open .menu {
opacity: 1;
visibility: visible;
}

.menu nav:hover a {
  opacity: 1;
  transition: 0.3s;
  }
  .menu nav .dropbtn {
    opacity: 1;
    }
  .menu nav a:hover {
  opacity: 0.25;
  transition: 0.3s;
  }
.menu nav {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.menu .dropbtn::after {
content: "";
position: absolute;
left: 0;
bottom: 10px;
width: 100%;
height: 2px;
border-radius: 2px;
background: #f7f7f7;
transform: scaleX(0);
transform-origin: 50% 50%;
transition: 0.3s;
}
.menu .dropbtn:hover::after {
transform: scaleX(0.9);
}

body.open .menu .dropbtn {
  animation: appear 0.2s backwards;
  }
  
  @keyframes appear {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
  }
  }
  .dropdown {
    position: relative;
    display: block;
  }
.dropbtn {
  position: relative;
  font-family: "Steppe";
  color: white;
  padding: 16px;
  font-size: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 4em;
}
.dropbtn:hover, .dropbtn:focus {
  background-color: transparent;
}
@media screen and (max-width: 400px) {
  .dropbtn {
    font-size: 18px;
    margin-left: 2px;
    padding: 12px;
  }
}
@media (min-width: 401px) and (max-width: 700px) {
  .dropbtn {
    font-size: 22px;
    margin-left: 20px;
    padding: 14px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1200px) {
  .dropbtn {
    font-size: 26px;
  }
  .menu {
    z-index: 1200;
    top: 0;
    left: 0;
    display: grid;
    place-items: flex start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.959);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.5s;
  }
  .dropbtn {
    margin-left: 50px;
  }
}
.phone {
position: fixed;
top: 62px;
right: 1em;
display: flex;
align-items: center;
z-index: 1501;
}
.phone-link {
display: flex;
align-items: center;
color: #9e9e9e; 
text-decoration: none;
margin-right: 20px; 
transition: color 0.5s ease;
}
.phone-link:hover {
color: #e4e4e4; 
}

.phone .fa-phone-flip {
margin-right: 10px; 
font-size: 20px;
}
@media (max-width: 700px) {
.header {
  min-height: 100vh;
}
.phone {
  right: 0.7em;
}
.phone-number {
display: none;
}
}
.text-box {
  width: 100%;
  color: #f7f7f7;
  position: absolute;
  top: 34%;
  text-align: center;
  text-shadow: 20px 10px 92px #100124;
}
.text-box h1 {
  font-size: 6.5em;
  color: #ffffff;
  font-weight: 600;
}
.text-box p{
margin: 15px 15px 40px;
font-size: 1.1em;
color: #d1d1d1;
}
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.c-button {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 0.7em 1.6em;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
.c-button--register {
  background-color: transparent;
  border: 2px solid #fff;
}
.c-button--register:hover {
  border: 2px solid #ffa405;
}
@media (max-width: 400px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .c-button {
    padding: 0.6em 1.1em;
    font-size: 13px;
  }
}

.c-button--gooey {
  color: #ffffff;
  background-color: #3e2b7a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 2px solid #3e2b7a;
  border-radius: 5px;
  position: relative;
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
}

.c-button--gooey .c-button__blobs div {
  background-color: #ffa405;
  width: 34%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 30ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}

.c-button--gooey:hover {
  color: #0e0e0e;
  border: 2px solid #ffa405;
}

.c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}
@media (max-width: 801px) {
.text-box h1 {
  font-size: 3.5em;
}
.text-box p {
  font-size: 0.9em;
}
}

/*---- pluses ----*/

.pluses {
  margin: 5vh 0; 
  min-height: 21vh;
  width: 85%;
  margin: 0 auto;
  border-radius: var(--border-radius);
  background-blend-mode: normal, multiply;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
}

.mission-content {
  width: 90%; 
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.pluses h1 {
  font-size: 3.5em; 
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
}

.pluses p {
  text-align: left;
  color: #c4c4c4;
  font-size: 1.4em; 
  font-weight: 500;
  padding: 1.5em;
  line-height: 1.4;
}
#about {
  background-image: radial-gradient(circle at center , #000000c4 5%, #1a002b 55%), url(images/aboutusdesc.jpg);
}
#sreda {
  background-image: radial-gradient(circle at center , #000000c4 5%, #1a002b 55%), url(images/img-5.jpg);
}
#uslovia {
  background-image: radial-gradient(circle at center , #000000c4 5%, #1a002b 55%), url(images/creative.jpg);
}
@media (max-width: 767px) {
  .pluses {
    margin-top: 100px;
    margin-bottom: 80px;
    width: 90%;
    line-height: 1.2;
  }
  .pluses h1 {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 2em;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 0px;
  }
  #sreda h1 {
    font-size: 1.9em;
  }
  .pluses p {
    padding: 10px;
    font-size: 0.8em;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .pluses {
    margin-top: 100px;
    margin-bottom: 80px;
    width: 85%;
    line-height: 1.2;
  }
  .pluses h1 {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 4em; 
    text-align: center;
    padding-top: 10px;
    margin-bottom: 0px;
  }
  .pluses p {
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
  }
}

@media (min-width: 1201px) {
  .mission-content {
    flex-direction: row; 
  }
  .pluses p {
    margin-left: 100px; 
  }
}



h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  position: relative;
  opacity: 1;
}
p{
  color: #afafaf;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

/*---- call to action ----*/
.cta {
  margin: 100px auto;
  width: 85%;
  position: relative;
  border-radius: 10px;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.background-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  background: linear-gradient(rgba(2, 4, 14, 0.418),rgba(2, 4, 14, 0.418)), url('images/background.png') center/cover no-repeat; 
}

.cta h1{
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
  font-weight: 600;
}

@media (max-width: 1000px){
  .cta h1{
    font-size: 1.5em;
    padding: 5px 5px;
  }
  .cta {
    width: 85%;
  }
}

@media (max-width: 700px) {
  .cta {
    padding: 45px 10px; 
  }

  .cta h1 {
    margin-bottom: 25px; 
  }
}
@media (max-width: 400px) {
  .cta h1 {
    font-size: 1.2em;
    font-weight: 550;
  }
}

/*---footer---*/
.footer {
  position: relative;
  margin-top: 100px;
  width: 100%;
  background: #3e2b7a;
  min-height: 100px;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999; 
}
.social-icon,
.menufoot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 1.9rem;
  color: #fff;
  margin: 20px 15px 0 0;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-5px);
}
.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.7;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  text-align: center;
  font-weight: 300;
}
.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("images/wave.png");
  background-size: 1000px 100px;
  z-index: 998;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 7s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.6;
  bottom: 10px;
  animation: animate 7s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.4;
  bottom: 15px;
  animation: animateWaves 6s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 5s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 0px 0px;
  }
  .menu__link {
    font-size: 1.2rem;
    align-items: center;
  }
  .social-icon__link {
    font-size: 1.8rem;
    align-items: center;
  }
}