/* For XXL Screen (768p(1366 x 768) above - 1080p , 1920 x 1080) */
@media (min-width: 1399.99px) {}

/* For XL Screen (Laptop - HD Ready Display) */
@media only screen and (min-width: 1199.9px) and (max-width: 1399.98px) {}

/* For LG (Large) Screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {}

/* For MD (Medium) Screen (ipad) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .travel-hero .hero-background {
        padding: 15px;
    }
}

/* For SM (Small) Screen (Tab) */
@media (min-width: 576px) and (max-width: 767px) {
    .travel-hero .hero-background {
        padding: 15px;
    }
}

/* For Mobile Screen */
@media (max-width: 575px) {
    .page-title {
        margin-top: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .header {
        padding-top: 10px !important;
    }

    .header .header-container {
        margin-left: 30px !important;
        margin-right: 30px !important;
        padding: 15px !important;
    }

    .travel-hero .hero-background {
        padding: 10px;
    }

    .travel-hero .hero-overlay {
        width: calc(100% - 20px) !important;
        height: calc(100% - 20px) !important;
    }

    .scrolled .header .header-container {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        row-gap: 15px;
        padding: 10px;
    }

    .travel-hero .hero-text .hero-buttons .btn {
        margin: 0 !important;
    }

    .page-title.destination {
        height: calc(100vh - 20px) !important;
    }

    .travel-destination-details .destination-overview {
        border-radius: 20px;
    }

    .index-page.scrolled .travel-destination-details .destination-overview {
        border-radius: 0 0 20px 20px;
    }
}

/* For Custom */
@media (max-width: 991.8px) {
    .travel-hero .hero-overlay {
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

    .hero-buttons {
        display: flex;
        align-items: center;
    }

    .travel-hero .hero-text {
        padding: 0 20px;
    }

    .header .header-container {
        margin-left: 50px;
        margin-right: 50px;
        padding: 15px 20px;
        border-radius: 0 0 30px 30px;
        transition: margin-left ease 0.5s, margin-right ease 0.5s, border-radius ease 0.5s;
    }

    .mobile-nav-toggle {
        margin-right: 0;
    }

    .scrolled .header .header-container {
        margin-left: 20px;
        margin-right: 20px;
    }

    .header {
        padding-top: 15px;
    }

    .header .logo img {
        max-height: 40px;
    }

    .mobile-nav-active .header .header-container {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .page-title {
        margin-top: 15px;
        width: calc(100% - 30px);
    }

    .page-title {
        padding: 120px 0;
    }

    .page-title.destination {
        height: calc(100vh - 30px);
    }
}