* {
  box-sizing: border-box;
}
body {
  background-color: #f3f4f6;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.font-new {
  font-family: "Roboto Mono", sans-serif;
}
.btn {
  background: linear-gradient(11deg, #f68707 0%, #facc28 100%);
}
.bg-sol {
  background-image: url("./images/Sol-travel-slider.jpg");
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}
.bg-sol::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0066b3;
  opacity: 0.5;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}
img {
  vertical-align: middle;
}

.slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slideshow-container .logo {
  position: absolute;
  top: 20px;
  left: 15%;
  z-index: 10;
  width: 250px;
}
.mySlides .slider-1,
.mySlides .slider-2,
.mySlides .slider-3 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/6;
  z-index: 1;
}

.mySlides .slider-1 {
  background-image: url("./images/slider-1.png");
}
.mySlides .slider-2 {
  background-image: url("./images/slider-2.jpg");
}
.mySlides .slider-3 {
  background-image: url("./images/slider-3.jpg");
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .fas.fa-angle-double-right {
    rotate: 90deg;
  }
  .slideshow-container .logo {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    top: 10px;
  }
  #form {
    margin-bottom: 16px;
    position: static !important;
    z-index: 10;
    margin-top: 20px;
  }
  section,
  .w-\[83\%\],
  .w-\[75\%\],
  .w-\[70\%\] {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  .flex {
    flex-direction: column !important;
    gap: 16px !important;
  }
  img,
  .w-\[350px\],
  .h-\[60px\] {
    width: 100% !important;
    height: auto !important;
    max-width: 100vw !important;
  }
  .bg-sol {
    height: 300px !important;
  }
  .bg-sol > .absolute {
    width: 90% !important;
    left: 20px !important;
    top: 10px !important;
    transform: none !important;
  }
  .font-new .bg-sol .btn {
    width: fit-content !important;
    padding: 8px 16px !important;
  }
  .text-2xl,
  .text-3xl {
    font-size: 1.2rem !important;
  }
  .btn {
    font-size: 1rem !important;
    padding: 10px 0 !important;
    width: 100% !important;
    display: block !important;
  }
  .fixed {
    right: 8px !important;
    width: 44px !important;
    height: 44px !important;
  }
  #modal-alert .bg-white {
    max-width: 95vw !important;
    width: 95vw !important;
    padding: 18px 8px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
  }
  #modal-alert.fixed {
    width: auto !important;
    height: auto !important;
  }
  #modal-message {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }
  #modal-close {
    width: 100% !important;
    padding: 12px 0 !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }
}
