@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

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


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter-Regular';
}

.hidden-overflow {
    overflow: hidden;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
}

.spinner-body {
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999999999999999999;
}

button, a {
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease, transform 0.3s ease;
}


button:hover, a:hover {
  transform: scale(1.05);
}

.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}


.box {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.box.visible-ani {
  opacity: 1;
}

@keyframes animation1 {
  from {
      transform: translateY(50px);
  }

  to {
      transform: translateY(0);
  }
}

@keyframes animation2 {
  from {
      transform: translateX(-50px);
  }

  to {
      transform: translateX(0);
  }
}

@keyframes animation3 {
  from {
      transform: translateX(50px);
  }

  to {
      transform: translateX(0);
  }
}

@keyframes animation4 {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

@keyframes animation5 {
  from {
      transform: translate(0, 50px);
  }

  to {
      transform: translate(0, 0);
  }
}

@keyframes animation6 {
  from {
      transform: translateY(-50px);
  }

  to {
      transform: translateY(0);
  }
}


.box.animation1.visible-ani {
  animation: animation1 1s forwards;
}

.box.animation2.visible-ani {
  animation: animation2 1s forwards;
}

.box.animation3.visible-ani {
  animation: animation3 1s forwards;
}

.box.animation4.visible-ani {
  animation: animation4 4s forwards;
}

.box.animation5.visible-ani {
  animation: animation5 1s forwards;
}

.box.animation6.visible-ani {
  animation: animation6 1s forwards;
}


