@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@keyframes FadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
header .navbar {
  display: flex;
  flex-direction: row;
  position: fixed;
  width: 100%;
  justify-content: space-around;
  padding: 3dvh;
  background-color: #151517;
  z-index: 3;
}
header .navbar .logo {
  color: rgb(216, 70, 70);
  cursor: pointer;
  font-size: 1.3rem;
}
header .navbar .nav-list {
  display: flex;
  gap: 3dvh;
  list-style: none;
  font-family: "Open Sans", serif;
  font-size: 1.2rem;
  margin: 2dvh;
}
header .navbar .nav-list a {
  color: #fff;
  cursor: pointer;
}
header .navbar .nav-list a:hover {
  color: rgb(216, 70, 70);
}
header .navbar .nav-icons i {
  color: #fff;
  margin-right: 3dvh;
  font-size: 1.4rem;
  cursor: pointer;
}
header .navbar .nav-icons i:hover {
  color: rgb(216, 70, 70);
}
header .navbar #mobile_btn {
  display: none;
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
header #mobile_menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: white;
  position: absolute;
  top: 5rem;
  width: 100%;
  padding: 1rem;
}
header #mobile_menu.active {
  display: flex;
}
header #mobile_menu #mobile_nav_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: none;
  text-align: center;
}
header #mobile_menu .nav_item {
  font-size: 1rem;
}
header .banner-container {
  display: flex;
  flex-direction: column;
}
header .banner-container .banner-img .banner {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .banner-container .banner-text {
  display: flex;
  flex-direction: column;
  position: relative;
  top: -65dvh;
}
header .banner-container .banner-text .main-title {
  font-family: "Roboto", serif;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  animation: FadeIn 1s ease-in;
}
header .banner-container .banner-text .btn-whatsapp {
  width: 30dvh;
  height: 6dvh;
  margin: auto;
  text-align: center;
  border: none;
  border-radius: 3dvh;
  cursor: pointer;
  font-family: "Open Sans", serif;
  font-size: 0.8rem;
  background-color: rgb(216, 70, 70);
  color: #fff;
  margin-top: 3dvh;
  animation: FadeIn 1s ease-in;
  animation: Pulse 1.5s infinite ease-in-out;
}
header .banner-container .banner-text .btn-whatsapp:hover {
  background-color: #e73d0c;
}

@media screen and (max-width: 320px) {
  header {
    display: flex !important;
  }
}
@media screen and (max-width: 320px) {
  .navbar {
    padding: 1dvh !important;
  }
}
@media screen and (max-width: 320px) {
  .logo {
    max-width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 320px) {
  .banner {
    max-width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 320px) {
  .banner-text {
    display: flex !important;
    position: relative !important;
    top: 5dvh !important;
  }
}
@media screen and (max-width: 480px) {
  header {
    display: flex !important;
  }
}
@media screen and (max-width: 480px) {
  .navbar {
    padding: 1dvh !important;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    max-width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 480px) {
  .banner {
    max-width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 480px) {
  .banner-text {
    display: flex !important;
    position: relative !important;
    top: -15dvh !important;
  }
}
@media screen and (max-width: 480px) {
  .main-title {
    font-size: 1.4rem !important;
    text-align: center !important;
  }
}
@media screen and (max-width: 600px) {
  .navbar {
    display: flex !important;
  }
}
@media screen and (max-width: 600px) {
  #mobile_btn {
    display: block !important;
  }
}
@media screen and (max-width: 1000px) {
  .banner-text {
    display: flex !important;
    position: relative !important;
    top: -17dvh !important;
  }
}
@media screen and (max-width: 1170px) {
  .nav-list {
    display: none !important;
  }
}/*# sourceMappingURL=header.css.map */