a {
  text-decoration: none;
}

.bg-black-fade {
  /* background: linear-gradient(#000000d7 60%, transparent); */
  background-color: #00000070;
  backdrop-filter: blur(10px);
}

.bg-more-info {
  backdrop-filter: blur(20px);
  top: -540px;
  height: 540px;
}

#header-section {
  height: 100vh;
  background-color: #000;
  background-image: url("/img/bg-header.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-box {
  position: relative;
  width: 200px;
  height: 200px;
  animation: logo 1s ease-in-out;
}

.logo-box .logo-blur {
  background-color: #195bc6;
  border-radius: 30px;
}

.bg-gold {
  background: linear-gradient(#ffc595, #be7d46);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse-wheel {
  width: 4px;
  height: 10px;
  background-color: #ff5e00;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

.masked-image {
  width: 500px;
  height: 500px;
  background-image: url("https://i.pinimg.com/474x/67/dc/de/67dcde18b7f7222d42ad5093c035cb4d.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mask-image: url("/img/logo-light.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.box-image-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

/* .box-image-section::after {
  content: "";
  width: 100px;
  height: 10px;
  background-color: #ff5e00;
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  border-radius: 10px;
  animation: orange-circles 10s infinite ease-in-out;
} */

.box-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-section {
  margin-top: 70px;
  margin-bottom: 70px;
}

.bg-section-orange {
  background-image: url("/img/bg-orange.png");
  background-size: cover;
  background-position: right;
}

.bg-blue-dark {
  background-color: #001435;
}

.tiny-text {
  font-size: 12px;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes orange-circles {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
  }
  100% {
    left: -20px;
  }
}

@keyframes logo {
  0% {
    transform: scale(200%);
  }
  100% {
    transform: scale(100%);
  }
}
