@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Google Sans Flex", sans-serif; */
  font-family: "Lexend Deca", sans-serif;
  /* font-family: "DM Sans", sans-serif; */
  color: #161616;
  transition: 0.3s;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  /* font-size: 2rem; */
}

h4 {}

h5 {}

a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
}

p {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
button{
  font-size: 15px;
}

@media screen and (max-width: 576px) {
  p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
  }
}

span {
  font-size: 15px;
}

ul,
li {
  list-style: none;
  font-size: 15px;
}

img {
  width: 100%;
}

/* div{
  --bg: radial-gradient(#000000 67%, rgba(0, 0, 0, 0) 68%);
  background: linear-gradient(#ff1493 calc(50% - 13em), #ffff00 calc(50% + 13em));
} */

div.waves {
  background-color: greenyellow;
  width: 100%;
  position: relative;
  height: 300px;
}

.svg1 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  animation-name: move-left;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.svg2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  animation-name: move-right;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.spacer {
  height: 100px;
  width: 100%;
}

@keyframes example {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: -2000px;
    top: 200px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}


.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  z-index: 9999999;
  background: #00d2fc;
  background: linear-gradient(195deg, #6d00fc 1%, rgba(0, 117, 234, 1) 99%);
  display: flex;
}

.loader-container.hide {
  display: none;
}


.loader-container p {
  color: white;
  text-align: center;
  font-size: 14px;
}


/* HTML: <div class="loader"></div> */
.loader {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #ffffff;
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}
@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}










