.costume-fonts {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  max-width: 1280px;
}

.bg-color {
  background-color: #0f3f7e !important;
}

.text-color {
  color: #0f3f7e !important;
}

body {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
}

.navbar {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.navbar .nav-link {
  font-family: "Outfit", sans-serif;
  color: #0f3f7e !important;
  font-size: 20px;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: #4fcafe !important;
  text-shadow: 0 0 2px #0f3f7e;
}

.navbar.bg-transparent {
  backdrop-filter: blur(0);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  position: absolute;
  z-index: 1000;
}

.custom-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #0f3f7e transparent;
  z-index: 999;
}

.hero-section {
  height: 100vh;
  background-color: #fdfdfd;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-logo {
  max-width: 300px;
  position: relative;
  top: -250px;
  animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
}

.snow-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.snow-particles .snowflake {
  position: absolute;
  bottom: -10px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation-name: snow-up;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes snow-up {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-25vh) translateX(calc(var(--x-drift) * -1));
  }
  50% {
    transform: translateY(-50vh) translateX(var(--x-drift));
  }
  75% {
    transform: translateY(-75vh) translateX(calc(var(--x-drift) * -0.5));
  }
  100% {
    transform: translateY(-110vh) translateX(0) scale(0.5);
    opacity: 0;
  }
}

.main-content {
  background-color: #fdfdfd;
  background-image: url('../img/bg-main.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  top: -150px;
  margin: 0 0 -150px 0;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(75, 75, 75, 0.1);
  /* box-shadow: 0 0 15px rgba(0, 140, 255, 0.1); */
  backdrop-filter: blur(1px);
  border-radius: 15px;
}

.card-title {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #0f3f7e;
}

.carousel-inner,
.carousel .carousel-inner .carousel-item img {
  height: 235px;
  width: 100%;
  border-radius: 12px;
}

.footer {
  background-color: #fdfdfd;
  background-image: url('../img/bg-footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  padding: 250px 0 15px 0;
}

.embed-facebook-fanspage {
  width: 100%;
  height: 300px;
  top: -65px;
  position: relative;
}

.embed-facebook-fanspage iframe {
  background: #fdfdfd;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}