/* Extra Extra Large devices (≥1400px) */
@media (max-width: 1400px) {}

/* Extra Large devices (≥1200px) */
@media (max-width: 1200px) {}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        gap: 15px;
    }
}

/* Medium devices (≥768px) */
@media (max-width: 768px) {

    .input-icon,
    .heroForm select,
    .heroForm .form-control {
        width: 100%;
    }

    .heroForm form {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 100%;
    }

    .test_card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .parent {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .div1,
    .div2,
    .div3,
    .div4 {
        grid-column: 1;
        grid-row: auto;
        height: 250px;
    }

    .hotel_card {
        flex-direction: column;
    }

    .hotel_card img {
        width: 100%;
    }

    .show_available {
        right: 30px;
        top: 30px;
        font-size: 10px;
        padding: 5px 10px;
        color: white;
        border: 1px solid white !important;
    }
    
    .dest_card {
        margin-bottom: 30px;
    }
}

/* Small devices (≥480px) */
@media (max-width: 480px) {
    .navbar-brand img {
        width: 90px;
        height: auto;
    }

    .foot_links {
        flex-direction: column;
        gap: 10px;
    }

    .social img {
        width: 20px;
    }

    footer {
        padding: 2rem 0 1rem 0;
    }

    .check_out_card {
        flex-direction: column;
        align-items: flex-start;
    }

    .check_out_card .d-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .dest_card {
        margin-bottom: 30px;
    }
    
    .padding {
        padding: 35px 0;
    }
}

@media (min-width: 992px) {
    .check_out_card {
        padding-right: 8%;
    }

    .bookng_summary_card {
        margin-top: 52px;
    }
}