@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@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&display=swap");

h1,
h2,
h3,
h4,
h5,
p,
a,
blockquote,
li {
  font-family: "Montserrat", sans-serif;
  color: rgb(49, 49, 49);
}
:root {
  scroll-behavior: smooth;
}
#banner-3.banner-main-3 {
  margin-top: 30px;
  /* background: url(./images/img5.png); */
  background: url(./images/bg2.png);
  background-size: cover;
  background-position: bottom;
  height: calc(100vw * 0.5);
}

#reviews {
  background: url(./images/img5.png);
}
#reviews.cus-reviews {
  background: none;
}

.red {
  color: #de4e53;
}

.weight-200 {
  font-weight: 200;
}

.weight-300 {
  font-weight: 300;
}
.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}
.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.font-20 {
  font-size: 20px !important;
}
.font-25 {
  font-size: 25px !important;
}

.font-2rem {
  font-size: 2rem;
}
.font-3rem {
  font-size: 3rem;
}
.font-4rem {
  font-size: 4rem;
}
.font-5rem {
  font-size: 5rem;
}

.cta-wrapper {
  background: #141516 !important;
}

.cta-wrapper:before {
  background: #141516 !important;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.absolute-icon {
  position: absolute;
  bottom: 5%;
  z-index: 10;
  right: 10%;
  opacity: 0.2;
}
.absolute-icon2 {
  position: absolute;
  bottom: 0;
  z-index: 10;
  left: 0%;
  opacity: 0.3;
}

.testimonial2 .author img {
  width: 80px;
  height: 30px;
  border-radius: 50%;
  margin: 0 auto;
}

.font-16 {
  font-size: 16px;
}

.z10 {
  z-index: 10;
}

/* General Navbar Styles */
.transparent {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-toggle {
  background: none;
  border: none;
  color: rgb(226, 226, 226);
  font-size: 24px;
  cursor: pointer;
  display: none; /* Initially hidden */
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 60px; /* Spacing between items */
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-list a:hover {
  color: #f5a623; /* Highlight color */
}

/* Mobile Styles */
@media (max-width: 1000px) {
  .nav-list li a {
    font-size: 12px;
  }
  .nav-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navbar {
    padding: 0;
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .nav-list li a {
    font-size: 12px;
  }
  .nav-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navbar {
    padding: 0;
  }
  .cus-email {
    font-size: 14px;
  }
}

/* @media (max-width: 1300px) {
  #banner-3.banner-main-3 {
    margin-top: 50px;
    height: 70vh;
  }
}
@media (max-width: 1050px) {
  #banner-3.banner-main-3 {
    margin-top: 0px;
    height: 60vh;
  }
} */
@media (max-width: 768px) {
  #banner-3.banner-main-3 {
    background: url(./images/bg-mobile1.png);
    background-size: cover;
    background-position: bottom;
    height: 80vh;
  }
}

/* General Carousel Styles */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* Oculta contenido fuera del contenedor */
  position: relative;
}

.carousel {
  display: flex;
  gap: 10px; /* Espaciado entre imágenes */
  animation: scroll 20s linear infinite; /* Auto-scroll */
  will-change: transform; /* Optimización de rendimiento */
}

.carousel-item {
  flex: 0 0 auto; /* No permite que las imágenes colapsen */
  width: 150px; /* Tamaño de las miniaturas */
  height: auto;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hover Pauses Animation */
.carousel:hover {
  animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-item {
    width: 120px; /* Ajusta el tamaño en pantallas más pequeñas */
  }
}

.cus-btn-container {
  position: absolute;
  bottom: 10%;
  right: 22%;
}

@media (max-width: 1600px) {
  .cus-btn-container {
    position: absolute;
    bottom: 20%;
    right: 15%;
  }
}
