html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}
body a, body button {
  text-decoration: none;
  transition: all 0.5s ease-in-out !important;
}
body a:hover, body button:hover {
  transition: all 0.5s ease-in-out !important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body strong, body b {
  font-family: "SF-Pro-Bold";
}
body img {
  -o-object-fit: contain;
     object-fit: contain;
}
body .text-gold {
  color: rgba(255, 247, 235, 0.8);
}
body .text-white {
  color: #ffffff;
}
body .bg-transparent {
  background: transparent;
}
body .min-vh-80 {
  min-height: 80vh;
}

.cta {
  transition: all 0.5s ease-in-out !important;
  z-index: 100;
  position: relative;
}
.cta img {
  animation: color-showdow 2s ease-out infinite;
}
@media screen and (max-width: 768px) {
  .cta img {
    height: 90px;
  }
}
@media screen and (max-width: 575px) {
  .cta img {
    height: 70px;
  }
}

@keyframes color-showdow {
  0% {
    filter: drop-shadow(2px 4px 12px #fde784);
  }
  50% {
    filter: drop-shadow(0 0 0 #fde784);
  }
  100% {
    filter: drop-shadow(2px 4px 12px #fde784);
  }
}
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Hidden initially */
  background-color: rgb(221, 5, 97);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

#scrollToTopBtn:hover {
  background-color: #031875;
}

.modal .modal-content {
  background: transparent;
  border: none;
}/*# sourceMappingURL=style.css.map */