.dropdown-btn{
    display: none;
}
@media only screen and (min-width: 376px) {
    .main-menu .navbar-collapse li a {
        font-size: 14px;
    }
}


@media only screen and (min-width: 992px) {
    .main-header.header-one .main-menu .navbar-collapse .navigation > li > a {
        padding: 6px 25px;
    }
}

.theme-btn.style-two i, a.theme-btn.style-two i {
     -webkit-transform: unset; 
    -ms-transform: unset;
     transform: unset; 
}

.hero-content-three h1 {
    font-size: 60px;
}

@media only screen and (min-width: 1400px) {
    .hero-content-three p {
        font-size: 24px;
    }
}

.destination-active .destination-item.style-two .image {
    border-radius: unset;
}
.destination-active .destination-item.style-two .image img {
     border-radius: unset; 
    height: 120px;
}

/* Airline Section */
.airline-section {
    background: #f8faf7;
}

/* Marquee Wrapper */
.airline-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Moving Track */
.airline-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: airlineScroll 30s linear infinite;
}

/* Logo Box */
.airline-logo {
    width: 160px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* Same Image Size */
.airline-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
}

/* Hover Effect */
.airline-logo:hover {
    transform: translateY(-5px);
}

.airline-logo:hover img {
    filter: grayscale(0%);
}

/* Animation */
@keyframes airlineScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .airline-logo {
        width: 120px;
        height: 70px;
    }
}

@media only screen and (min-width: 376px) {
    .benefit-content-part p, .section-title p {
        font-size: 16px;
    }
}

.page-banner-area {
    min-height: 290px;
}