@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes scale {
  from {
    transform: scale(1) translateY(0px);
  }
  to {
    transform: scale(1.1) translateY(-8px);
  }
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
html {
  scroll-behavior: smooth;
}

header {
  background-color: #fcbf49;
}

nav {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
  padding: 3dvh 3dvh;
}
nav .logo {
  color: #363636;
}
nav .nav-list {
  display: flex;
  gap: 3dvh;
  list-style: none;
}
nav .nav-list .nav-link {
  color: #363636;
  font-weight: 700;
  transition: color 0.8s, border-top 0.8s;
}
nav .nav-list .nav-link:hover {
  color: #23A455;
  border-top: solid 1px #23A455;
}
nav .nav-icons i {
  gap: 3dvh;
  transition: color 0.8s, animation 0.8s;
  color: #363636;
}
nav .nav-icons i:hover {
  color: #23A455;
  animation: scale 1s infinite linear;
}
nav #mobile_btn {
  display: none;
  background-color: transparent;
  color: #FFF;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#mobile_menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: white;
  position: absolute;
  top: 5rem;
  width: 100%;
  padding: 1rem;
  z-index: 33;
}
#mobile_menu.active {
  display: flex;
}
#mobile_menu #mobile_nav_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: none;
  text-align: center;
}
#mobile_menu .nav_item {
  font-size: 1rem;
}
#mobile_menu .nav_item a {
  text-decoration: none;
  color: #363636;
}

#carouselExampleCaptions {
  position: relative;
}
#carouselExampleCaptions .carousel-caption {
  position: absolute;
  bottom: 30%;
}
#carouselExampleCaptions .carousel-caption p {
  line-height: 1.5rem;
}
#carouselExampleCaptions .carousel-btn {
  width: 30dvh;
  height: 6dvh;
  border: none;
  border-radius: 5dvh;
  color: #FFF;
  background-color: #444444;
  transition: background-color 0.8s;
  animation: pulse 1s infinite linear;
}
#carouselExampleCaptions .carousel-btn:hover {
  background-color: #fcbf49;
}
#carouselExampleCaptions i {
  margin-right: 2dvh;
}
#carouselExampleCaptions #hour {
  display: flex;
  text-align: center;
  background-color: #61CE70;
  position: absolute;
  bottom: -30%;
  left: 40%;
  padding: 1dvh 1dvh;
  border-radius: 1dvh;
}
#carouselExampleCaptions #hour span {
  text-align: center;
}/*# sourceMappingURL=header.css.map */