/* Navbar Dropdown */
.navbar-menu-transition {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.navbar-menu-transition.show {
    max-height: 500px;
    opacity: 1;
}

/* Hamburger Menu Animation */
.menu-icon .menu-line {
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
    transform-origin: center;
}

.menu-icon.open .top {
    /* Moves the top bar to the center and rotates it to form one half of the X */
    transform: translateY(4.3px) rotate(45deg);
}

.menu-icon.open .middle {
    /* Fades out the middle bar */
    opacity: 0;
}

.menu-icon.open .bottom {
    /* Moves the bottom bar to the center and rotates it to form the other half of the X */
    transform: translateY(-4.3px) rotate(-45deg);
}

/* Hide menu on larger screens */
@media (max-width: 767px) {
    #navbar-menu {
        position: absolute;
        top: 70%;
        padding: 10px;
        left: 0;
        right: 0;
        z-index: 50;
    }
}

@media (min-width: 768px) {
    #navbar-menu {
        display: flex !important;
        max-height: none !important;
        opacity: 1 !important;
    }
}

.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%;
}

.aspect-w-16>img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-float {
    animation: subtleFloat 5s ease-in-out infinite;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align-last: left;
}

.custom-select-fil {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 0.8rem;
    text-align: left;
}

select {
    text-align: left;
}

.no-scroll {
    overflow: hidden;
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}
        
.custom-swiper-button-next:hover,
.custom-swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
        
.custom-swiper-button-next::after,
.custom-swiper-button-prev::after {
    font-size: 18px;
    color: white;
}
        
@media (min-width: 480px) {
    .custom-swiper-button-next,
    .custom-swiper-button-prev {
        width: 48px;
        height: 48px;
    }
            
    .custom-swiper-button-next::after,
    .custom-swiper-button-prev::after {
        font-size: 22px;
    }
}

@keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .animate-float {
    animation: floatUpDown 3s ease-in-out infinite;
  }