/* Media Queries */
/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* Google Fonts (Font: Chivo) */
@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap");
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Chivo", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/bg-image.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
body header img {
  opacity: 0;
  animation: fadeInSlideUp 2.5s ease-out 0.3s forwards;
  width: 25rem;
  max-width: 100%;
}
@media (min-width: 1025px) {
  body header img {
    width: 25rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body header img {
    width: 20rem;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  body header img {
    width: 18rem;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  body header img {
    width: 16rem;
  }
}
@media (max-width: 319px) {
  body header img {
    width: 14rem;
  }
}

/* Custom Classes */
.bg-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-image: url("assets/bg-image.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}
.bg-container .bg-video,
.bg-container .bg-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  max-height: none;
}

.blur-background {
  background: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-custom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  padding-left: 3rem;
  background-color: rgba(41, 45, 54, 0.5803921569);
  color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-custom:hover {
  background-color: #5a6174;
  color: #ffffff;
}
.btn-custom i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.custom-shadow {
  box-shadow: 0 2px 10px 4px rgba(0, 0, 0, 0.3019607843);
}

/* Animations */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */