/* --- Desktop | 1200px and up ---- */

@media screen and (min-width: 1200px) {

    .container {
        max-width: 1280px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

}


/* --- Laptop Landscope | 992px to 1199px ---- */

@media screen and (min-width: 992px) and (max-width: 1199px) {

    html {
        font-size: 48%;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero_section img {
        height: 60rem;
    }

}


/* --- Tablet | 991px and down ---- */

@media screen and (max-width: 991px) {

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .navbar-brand img {
        max-width: 20rem;
    }

    .hero_section img {
        height: 56rem;
    }

    .hero_text {
        text-align: center;
    }

    .title_xl {
        font-size: 3.2rem;
    }

    .title_lg {
        font-size: 2.8rem;
    }

    .passions_text p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .button {
        font-size: 1.8rem;
        padding: 1rem 3.5rem;
    }

    .destination_wrapper .row {
        --bs-gutter-x: 3.5rem;
        --bs-gutter-y: 3.5rem;
    }

}


/* --- Mobile | 767px and down ---- */

@media screen and (max-width: 767px) {

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .scrolltop_btn {
        right: 1.6rem;
        bottom: 2rem;
    }

    .scrolltop_btn img {
        width: 3rem;
    }

    .navbar-brand img {
        max-width: 17rem;
    }

    .hero_text p {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .pillars_card {
        max-width: 34rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .title_xl {
        font-size: 3rem;
    }

    .title_lg {
        font-size: 2.6rem;
    }

    .passions_text {
        padding: 4.5rem 0rem;
    }

    .destination_wrapper .row {
        --bs-gutter-x: 2.4rem;
        --bs-gutter-y: 2.4rem;
    }

    .destination_wrapper {
        padding-top: 3rem;
    }

    .destination_section2 {
        padding-top: 4rem;
    }

    .footer_logo img {
        max-width: 20rem;
    }

    .footer_text h4 {
        font-size: 1.85rem;
    }

}


/*----- xs devices 575px and down -----*/
@media screen and (max-width: 575px) {

    html {
        font-size: 2.666vw;
    }
}