@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body,html{
    overflow-x: hidden;
}

.container{
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

a{
    text-decoration: none;
}

.col100{
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}

.col20{
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 15px;
}

.col50{
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}


/* Go-to Top icon */

.box-top{
    width: 40px;
    height: 40px;
    background-color: rgba(25, 58, 25, 0.275);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.box-top a{
    display: inline-block;
    text-decoration: none;
}

.up-icon:hover{
    color: yellow;
}

.up-icon{
    font-size: 20px;
    color: blue;
    transition: all 0.4s ease-in-out;
}


/* ========================== Start of Navbar ===================== */

/* Nav */

header{
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /* transform: translate(-50%, -50%); */
    z-index: 9;
}

.main-nav{   
    padding: 20px 0;
    position: relative;
}

.nav-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a{
    display: inline-block;
}

.nav-logo img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    object-fit: cover;
}

.nav-links{
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.nav-links ul li{
    display: inline-block;
    list-style-type: none;
    padding-right: 40px;
}

.nav-links ul li a{
    display: inline-block;
    font-size: 17px;
    font-family: "Poppins", serif;
    font-weight: 500;
    color: black;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.nav-links ul li .active{
    color: rgb(6, 184, 184);
}

.nav-links ul a{
    display: inline-block;
}

.booking-btn{
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    background-color: rgb(6, 184, 184);
    font-size: 17px;
    font-family: "Poppins", serif;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.4s ease-in-out;
}

.booking-btn:hover{
    background-color: black;
}

.nav-links ul li a:hover{
    color: rgb(6, 184, 184);
}

/* ---- Toggle-Bar ---- */

.toggle-bar{
    display: none;
    color: blue;
    font-size: 25px;
    position: absolute;
    right: 2%;
    top: 34%;
}

/* **************************************************************************************************************************************** */

/* Tour-booking section (First Slider) starts here */

.tour-section .swiper{
    position: relative;
}

.tour-section .container{
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.swiper-slide{
    width:100%;
    height:100%;
}

#slider1{
    background-image: url(../images/slider1.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 620px;
}
#slider2{
    background-image: url(../images/slider2.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 620px;
}
#slider3{
    background-image: url(../images/slider3.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 620px;
}

.tour-text{
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.tour-text h1{
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: black;
    padding-bottom: 30px;
}

.break{
    display: block;
}

.tour-text a{
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 18px 32px;
    background-color: white;
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 600;
    border-radius: 25px; 
    text-transform: uppercase;
    margin-bottom: 150px;
    transition: all 0.4s ease-in-out;
}

.tour-text a:hover{
    background-color: black;
    color: white;
}

.swiper-button-prev:after , .swiper-button-next:after{
    color: white;
    font-size: 30px !important;
    font-weight: 900 !important;
}


/* ************************************************************************************************************************************** */

/*  Search-Destination section starts here */

.search-section {
    background-color: rgb(6, 184, 184);
    padding: 50px 0;
}

.searchrow {
    justify-content: space-between;
}

.form-one {
    display: inline-block; 
}

.search-section label {
    color: white;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 500;
}

.search-section select,
.f-search {
    font-family: "Poppins", serif;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    border: none;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.f-search {
    background-color: black;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    padding: 15px 45px;
}

.f-search:hover {
    background-color: white;
    color: black;
}

/* ********************************************************************************************************************************** */

/* Destination-section starts here */

.destination-section{
    padding-top: 80px;
    text-align: center;
    background-color: #85FFBD;
    background-image: linear-gradient(45deg, #85FFBD 35%, #FFFB7D 100%);  
}

h2.h5-title{
    font-size: 18px;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: black;
    text-transform: uppercase;
    padding-bottom: 10px;
}

h3{
    color: black;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    padding-bottom: 40px;
}

.destn-image img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.destn-image{
    padding-bottom: 25px;
}

.destn-image img:hover{
    transform: scale(1.07);
}

.destn-box .destn-name{
    font-size: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: rgb(7, 7, 124);
    padding-bottom: 15px;
}

.bottom-image{
    margin-top: 40px;
}

.bottom-image img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    vertical-align: bottom;
}

.bottom-image p{
    font-size: 22px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: black;
    font-style: italic;
}

/* *********************************************************************************************************************************** */

/* Tourism section starts here */

.tourism-section{
    padding: 80px 0;
}

.col60{
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}

.col40{
    max-width: 40%;
    flex:0 0 40%;
    padding:0 15px;
}

.tourism{
    justify-content: space-between;
}

.tourism-image img{
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.tourism-text{
    padding-left: 30px;
}

.tourism-para{
    color: black;
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 400;
    padding-bottom: 25px;
}

.line{
    margin-bottom: 40px;
}

.tourism-list h4{
    padding: 5px 0;
    color: black;
    text-transform: capitalize;
    font-size: 18px;
    font-family: "Poppins", serif;
    font-weight: 400;
}

.tick{
    background-color: rgb(6, 184, 184);
    border-radius: 50%;
    padding: 6px;
    color: white;
    font-size: 18px;
    margin-right: 15px;
}

.cmn-button{
    display: inline-block;
    font-size: 16px;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    background-color: rgb(6, 184, 184);
    font-family: "Poppins", serif;
    font-weight: 600;
    border-radius: 25px; 
    text-transform: uppercase;
    margin-top: 40px;
    transition: all 0.5s ease-in-out;
}

.cmn-button:hover{
    background-color: black;
    color: white;
}

.tour-box{
    position: relative;
}

.tour-box h2{
    color: white;
    font-size: 26px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    background-color: rgb(235, 120, 44);
    max-width: 100%;
    padding: 50px 60px 50px 40px;
    background-image: url(../images/map-line.png);
    background-repeat: no-repeat;
    background-position: top right;
    position: absolute;
    left: 38%;
    bottom: 5px;
    transform: translateY(30%);
}

/* ****************************************************************************************************************************************** */

/* Featured-section starts here */

.featured-section{
    padding: 80px 0;
    text-align: center;
    background-color: rgb(245, 242, 242);
}

.col33{
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 15px;
}

.featured-image img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    vertical-align: bottom;
}

.featured-box{
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0px 0px 10px rgb(75, 75, 75);
}

.featured-text{
    padding: 25px 15px;
    text-align: left;
}

.featured-text h4{
    font-size: 22px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.featured-text h5{
    font-size: 15px;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: grey;
    padding: 5px 0;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-price{
    font-size: 20px;
    color: rgb(235, 120, 44);
}

.featured-text p{
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 400;
    padding: 10px 0;
    color: grey;
}

.featured-text a{
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 500;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    background-color: rgb(6, 184, 184);
    border-radius: 25px; 
    text-transform: uppercase;
}

.featured-text a:hover{
    color: white;
    background-color: black;
}


/* *************************************************************************************************************************************** */

/* Video-section starts here */

.video-section{
    background: url(../images/ban4-bg.jpg)no-repeat center center;
    background-size: 100% 100%;
    min-height: 600px;
    padding: 180px 0;
}

.video-box{
    justify-content: space-between;
    align-items: center;
}

.video-section .video-text h3{
    color: white;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    padding-bottom: 30px;
}

.video-section .video-text p{
    color: white;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 10px;
}

.video-text{
    border-left: 5px solid white;
    padding-left: 60px;
}

.play-icon{
    text-align: center;
    padding-left: 300px;
}

.play-button{
    color: white;
    font-size: 160px;
    border: 25px solid rgba(63, 47, 47, 0.4);
    border-radius: 50%;
}

/* **************************************************************************************************************************************** */

/* Client-section starts here */

.client-section{
    padding: 80px 0;
    /* background-color: rgb(245, 242, 242); */
    background-image: linear-gradient(62deg, #8EC5FC 0%, #ffffff 30%, #ffffff 60%, #E0C3FC 100%);
    text-align: center;
}

.client-swiper-box{
    background-color: white;
    box-shadow: 0 0 10px rgb(196, 194, 194);
    margin: 0 60px;
    padding: 60px 140px 40px 140px;
}

.client-section .feedback-p{
    color: rgb(49, 48, 48);
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.4;
    padding-bottom: 30px;
}

.client-name{
    color: rgb(6, 184, 184);
    font-size: 28px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    padding-bottom: 10px;
}

.client-h5{
    color: black;
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 20px;
}

.client-image{
    margin-bottom: 40px;
}

.client-image img{
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    /* clip-path: circle(50%); */ 
}

/* **************************************************************************************************************************************** */

/* Gallery-section starts here */

.gallery-section{
    overflow: hidden;
}

.gallery-row{
    justify-content: center;
    align-items: center;
}

.gallery-image img{
    max-width: 100%;
    /* width: 100%; */
    height: auto;
    vertical-align: bottom;
}

.gallery-section .col25{
    max-width: 25%;
    flex: 0 0 25%;
    /* padding: 0 15px; */
}

.gallery-image{
    position: relative;
    text-align: center;
}

.gallery-image h6{
    font-size: 24px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
    position: absolute;
    bottom: 8%;
    left: 38%;
}

/* **************************************************************************************************************************************** */

/* Footer starts here */

.main-footer{
    background-color: rgb(34, 156, 156);
}

.foot-row-upper{
    justify-content: space-between;
    align-items: center;
}

.footer-upper{
    padding-top: 60px;
}

.footer-upper .news-h5{
    font-size: 20px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: white;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.footer-upper .news-h3{
    font-size: 38px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    color: white;
}

.foot-row-upper form{
    display: flex; 
    align-items: center;
    background-color: white;
    border-radius: 15px;
}

.foot-row-upper input[type="email"]{
    padding: 25px 30px 25px 30px;
    font-size: 20px;
    border-radius: 15px;
    border-style: none;
    background-color: white;
    outline: none;   
    width: 100%;
    position: relative;
}

.foot-row-upper a{
    background-color: rgb(235, 120, 44);
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 27px 25px; 
    border-style: none;
    border-radius: 15px;   
    transition: all 0.4s ease-in-out;
}

.foot-row-upper a:hover{
    background-color: black;
}

.main-footer .footer-upper .foot-row-upper .col100{
    background-color: grey;
    margin: 50px 0;
}
/* ------------------------------------------------------- */

.foot-row-mid{
    justify-content: space-between;
}

.f-img img{
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.foot-heading{
    font-size: 26px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
    padding-bottom: 30px;
}

.foot-para{
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: white;
    padding-bottom: 40px;
}

.foot-social a{
    display: inline-block;
}

.soc{
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: black;
    transition: all 0.5s ease-in-out;
}

.soc:hover{
    background-color: black;
    color: white;
}

.f-quick-links li .factive{
    color: black;
}

.f-quick-links li , .f-contacts li{
    font-size: 16px;
    font-family: "Poppins", serif;
    font-weight: 400;
    line-height: 2.0;
    list-style-type: none;
}

.f-quick-links li a , .f-contacts li a{
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.f-quick-links li a:hover , .f-contacts li a:hover{
    color: black;
}

.main-footer .footer-middle .foot-row-mid .col100{
    background-color: grey;
    margin: 50px 0 20px 0;
}
/* ---------------------------------------------------------- */

.foot-row-lower{
    /* justify-content: space-between;
    align-items: center; */
    padding-bottom: 20px;
}

.last-para-left{
    font-size: 15px;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: white;
}

.last-para-right{
    text-align: right;
    font-size: 15px;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: white;
}



/* *************************************************** Footer ends here ************************************************************************************* */


















































































/* ******************** Mediaquery ********************* */

/* @media(max-width:1440px){


} */

/* ==================================================================================================================================== */

@media(max-width:1199px){

    .nav-links ul li{
        padding-right: 35px;
    }

    .booking-btn{
        font-size: 16px;
        padding: 12px 18px;
    }


    /* ------------------------------------------ */

    .search-section select{
        font-size: 15px;
        padding: 15px 8px;
    }

    .f-search{
        font-size: 15px;
        padding: 15px 30px;
    }


    /* ------------------------------------------ */

    .tourism-para{
        padding-bottom: 25px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-section .tourism-text > .cmn-button{
        margin-top: 35px;
    }

    /* ------------------------------------------ */

    .featured-text p{
        font-size: 15px;
    }
    
    /* ------------------------------------------ */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 45%;
        flex: 0 0 45%;
    }

    .video-section .video-text h3{
        font-size: 42px;
    }

    .video-text p > .break{
        display: inline;
    }

    .video-text{
        padding-left: 50px;
        margin-left: 40px;
    }

    .play-icon{
        padding-left: 150px;
    }

    .play-button{
        font-size: 100px;
    }

    /* ------------------------------------------ */

    .client-swiper-box{
        padding: 60px 100px 40px 100px;
    }

   /* ------------------------------------------ */

   .main-footer{
        padding: 0 15px;
    }

    .footer-upper .news-h3{
        font-size: 35px;
    } 

}

/* ==================================================================================================================================== */

@media(max-width:1024px){

    .nav-links ul li{
        padding-right: 30px;
    }

    .booking-btn{
        font-size: 16px;
        padding: 12px 18px;
    }

    /* ------------------------------------------ */

    .search-section select{
        font-size: 14px;
        padding: 15px 8px;
    }

    .f-search{
        font-size: 14px;
        padding: 15px 30px;
    }

    /* ------------------------------------------ */

    .tourism-para{
        padding-bottom: 15px;
    }

    .line{
        margin-bottom: 15px;
    }

    .tourism-section .tourism-text > .cmn-button{
        margin-top: 30px;
    }

    /* ------------------------------------------ */

    .featured-text p{
        font-size: 14px;
    }
    
    /* ------------------------------------------ */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 45%;
        flex: 0 0 45%;
    }

    .video-section .video-text h3{
        font-size: 40px;
    }

    .video-text p > .break{
        display: inline;
    }

    .video-section .video-text p{
        font-size: 17px;
    }

    .video-text{
        padding-left: 50px;
        margin-left: 40px;
    }

    .play-icon{
        padding-left: 100px;
    }

    .play-button{
        font-size: 90px;
    }

    /* ------------------------------------------ */

    .client-swiper-box{
        padding: 60px 100px 40px 100px;
    }

    /* ------------------------------------------ */

    .main-footer{
        padding: 0 15px;
    }

    .footer-upper .news-h3{
        font-size: 32px;
    }

}

/* ==================================================================================================================================== */

@media(max-width:991px){

    .box-top{
        right: 30px;
    }

    .toggle-bar{
        display: block !important;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top: 0%;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ---------------------------------- */

    /* .break{
        display: inline;
    } */

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 40px;
    }

    .tour-text a{
        padding: 10px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h3{
        font-size: 40px;
    }

    .col20{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .destn-box .destn-name{
        padding-bottom: 40px;
    }

    .destn-image{
        margin: 0 40px;
    }

    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        margin-top: 20px;
        text-align: center;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image{
        margin-bottom: 70px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 12px 20px;
        font-size: 15px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 45%;
        flex: 0 0 45%;
    }

    .video-section .video-text h3{
        font-size: 30px;
    }

    .video-text p > .break{
        display: inline;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 50px;
        margin-left: 40px;
    }

    .play-icon{
        padding-left: 100px;
    }

    .play-button{
        font-size: 80px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        padding-bottom: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 20px;
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h3{
        font-size: 30px;
        padding-bottom: 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        padding-bottom: 20px;
    }

    .foot-para{
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
    }
    
}

/* ==================================================================================================================================== */

@media(max-width:767px){

    .box-top{
        right: 25px;
    }

    .toggle-bar{
        display: block !important;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top: 0;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-logo img{
        max-width: 80%;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ---------------------------------- */

    .break{
        display: inline;
    }

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 28px;
    }

    .tour-text a{
        padding: 12px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h2.h5-title{
        font-size: 15px;
    }

    h3{
        font-size: 20px;
    }

    .col20{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .destn-box .destn-name{
        font-size: 22px;
    }

    .destn-box .destn-name{
        padding-bottom: 40px;
    }

    .destn-image{
        margin: 0 40px;
    }

    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        margin-top: 20px;
        text-align: center;
    }

    .tourism-para{
        font-size: 16px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image{
        margin-bottom: 70px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tour-box h2{
        font-size: 22px;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .video-section .video-text h3{
        font-size: 22px;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 40px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .play-icon{
        padding-left: 0;
    }

    .play-button{
        font-size: 60px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .client-name{
        font-size: 22px;
    }

    .client-h5{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 20px;
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h5{
        font-size: 16px;
    }

    .footer-upper .news-h3{
        font-size: 25px;
        padding-bottom: 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        font-size: 24px;
        padding-bottom: 20px;
    }

    .foot-para{
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
        font-size: 14px;
    }
}
/* ==================================================================================================================================== */

@media(max-width:575px){

    .box-top{
        right: 25px;
    }

    .toggle-bar{
        display: block !important;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top:0%;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-logo img{
        max-width: 80%;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ---------------------------------- */

    .break{
        display: inline;
    }

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 20px;
    }

    .tour-text a{
        padding: 10px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h2.h5-title{
        font-size: 18px;
    }

    h3{
        font-size: 30px;
    }

    .col20{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .destn-box .destn-name{
        padding-bottom: 40px;
    }

    .destn-image{
        margin: 0 20px;
    }
    
    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        margin-top: 20px;
        text-align: center;
    }

    .tourism-para{
        font-size: 15px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image{
        margin-bottom: 50px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tour-box h2{
        font-size: 20px;
        padding: 42px 60px 42px 40px;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .video-section .video-text h3{
        font-size: 22px;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 40px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .play-icon{
        padding-left: 0;
    }

    .play-button{
        font-size: 60px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .client-name{
        font-size: 22px;
    }

    .client-h5{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 20px;
        left: 35%;
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h5{
        font-size: 16px;
    }

    .footer-upper .news-h3{
        font-size: 20px;
        padding-bottom: 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        font-size: 22px;
        padding-bottom: 20px;
    }

    .foot-para{
        font-size: 15px;
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
        font-size: 14px;
    }
}

/* ==================================================================================================================================== */

@media(max-width:480px){

    .box-top{
        right: 25px;
    }

    .toggle-bar{
        display: block !important;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top:0%;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-logo img{
        max-width: 80%;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ---------------------------------- */

    .break{
        display: inline;
    }

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 20px;
    }

    .tour-text a{
        padding: 10px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h2.h5-title{
        font-size: 15px;
    }

    h3{
        font-size: 20px;
    }

    .col20{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .destn-box .destn-name{
        font-size: 22px;
        padding-bottom: 30px;
    }

    .destn-image{
        margin: 0 20px;
    }

    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        margin-top: 20px;
        text-align: center;
    }

    .tourism-para{
        font-size: 15px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image{
        margin-bottom: 50px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tour-box h2{
        font-size: 17px;
        padding: 30px 60px 30px 30px;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .video-section .video-text h3{
        font-size: 22px;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 40px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .play-icon{
        padding-left: 0;
    }

    .play-button{
        font-size: 60px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .client-name{
        font-size: 22px;
    }

    .client-h5{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 20px;
        left: 33%;
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h5{
        font-size: 16px;
    }

    .footer-upper .news-h3{
        font-size: 20px;
        padding-bottom: 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        font-size: 22px;
        padding-bottom: 20px;
    }

    .foot-para{
        font-size: 15px;
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
        font-size: 14px;
    }
}

/* ==================================================================================================================================== */

@media(max-width:375px){

    .box-top{
        right: 25px;
    }

    .toggle-bar{
        display: block !important;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top:0%;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-logo img{
        max-width: 80%;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ---------------------------------- */

    .break{
        display: inline;
    }

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 20px;
    }

    .tour-text a{
        padding: 10px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h2.h5-title{
        font-size: 15px;
    }

    h3{
        font-size: 20px;
    }

    .col20{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .destn-box .destn-name{
        font-size: 22px;
        padding-bottom: 30px;
    }

    .destn-image{
        margin: 0 20px;
    }

    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        text-align: center;
    }

    .tourism-para{
        font-size: 15px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image{
        margin-bottom: 50px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tour-box h2{
        font-size: 15px;
        padding: 25px 60px 25px 15px;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .video-section .video-text h3{
        font-size: 22px;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 40px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .play-icon{
        padding-left: 0;
    }

    .play-button{
        font-size: 60px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .client-name{
        font-size: 22px;
    }

    .client-h5{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 20px;
        left: 30%; 
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h5{
        font-size: 16px;
    }

    .footer-upper .news-h3{
        font-size: 20px;
        padding-bottom: 20px;
    }

    .foot-row-upper input[type="email"]{
        padding: 25px 10px 25px 10px;
        font-size: 17px;
    }

    .foot-row-upper a{
        font-size: 16px;
        padding: 27px 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        font-size: 22px;
        padding-bottom: 20px;
    }

    .foot-para{
        font-size: 15px;
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
        font-size: 14px;
    }
}

/* ==================================================================================================================================== */

@media(max-width:320px){

    
    .box-top{
        right: 25px;
    }

    .toggle-bar{
        display: block !important;
        /* position: absolute;
        right: 5%;
        top: 5%; */
    }

    .main-links{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 0;
        height: 100vh;
        width: 100%;
        position: absolute;
        left: -100%;
        top:0%;
        background-color: black;
        transition: 500ms;
    }

    .menu{
        left: 0%;
        top:0%;
        transition: 500ms;
    }

    .main-links li{
        padding: 20px 0px;
    }

    .nav-links ul li a{
        font-size: 15px;
        color: white;
    }

    .nav-links ul li{
        padding-right: 0;
    }

    .nav-box{
        flex-direction: column;
        flex-wrap: wrap;
        /* text-align: center; */
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-links ul li{
        display: block;
        padding-right: 0;
        text-align: center;
        background-color: rgba(1,1,1,0.9);
    }

    .booking-btn{
        padding: 10px 15px;
        font-size: 12px;
    }

    .nav-logo img{
        max-width: 80%;
    }

    header{
        width: 100%;
        left: 0;
        top: 0;
        transform: translate(0%, 0%);
        z-index: 9;
    }

    /* ---------------------------------- */

    .break{
        display: inline;
    }

    .tour-text{
        top: 68%;
    }

    .tour-text h1{
        font-size: 20px;
    }

    .tour-text a{
        padding: 10px 15px;
        font-size: 12px;
    }

    #slider1 , #slider2 , #slider3{
        background-size: cover;
    }

    /* ----------------------------------- */

    .searchrow {
        flex-direction: column;
    }

    .form-one{
        display: block;
        margin-bottom: 20px;
    }

    /* ----------------------------------- */

    h2.h5-title{
        font-size: 15px;
    }

    h3{
        font-size: 20px;
    }

    .destination-section .container .row > .col20{
        max-width: 50%;
        flex: 0 0 50%;
    }

    /* .destination-section .dd{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .dd img{
        max-width: 40%;
    } */

    .destn-box .destn-name{
        font-size: 22px;
        padding-bottom: 30px;
    }

    .destn-image{
        margin: 0 20px;
    }

    .bottom-image{
        margin-top: 20px;
    }

    /* ----------------------------------- */

    .tourism > .col60{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism > .col40{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tourism-text{
        padding-left: 20px;
        margin-top: 60px;
        text-align: center;
    }

    .tourism-para{
        font-size: 15px;
    }

    .line{
        margin-bottom: 25px;
    }

    .tourism-image img{
        width: 90%;
    }

    .tour-box h2{
        font-size: 15px;
        padding: 20px 40px 20px 10px;
    }

    .tourism-list h4{
        font-size: 16px;
    }

    .cmn-button{
        padding: 10px 15px;
        font-size: 12px;
    }

    /* ----------------------------------- */

    .col33{
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .featured-text h4{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .video-section{
        background-size: cover;
    }

    .video-box > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .video-section .video-text h3{
        font-size: 22px;
    }

    .video-section .video-text p{
        font-size: 15px;
    }

    .video-text{
        padding-left: 40px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .play-icon{
        padding-left: 0;
    }

    .play-button{
        font-size: 60px;
    }

    /* ----------------------------------- */

    .client-swiper-box{
        margin: 0 40px;
        padding: 30px 30px 30px 30px;
    }

    .client-section .feedback-p{
        font-size: 16px;
        padding-bottom: 20px;
    }

    .client-name{
        font-size: 22px;
    }

    .client-h5{
        font-size: 20px;
    }

    /* ----------------------------------- */

    .gallery-section .container-fluid{
        padding: 0 20px;
    }

    .gallery-row > .col25{
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 15px;
    }

    .gallery-image img{
        margin: 20px 0;
    }

    .gallery-image h6{
        font-size: 17px;
        left: 30%;
    }

    .gallery-image h6 .break{
        display: block;
    }

    /* ----------------------------------- */

    .foot-row-upper > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .foot-row-upper{
        text-align: center;
    }

    .footer-upper .news-h5{
        font-size: 16px;
    }

    .footer-upper .news-h3{
        font-size: 20px;
        padding-bottom: 20px;
    }

    .foot-row-upper input[type="email"]{
        padding: 25px 10px 25px 10px;
        font-size: 17px;
    }

    .foot-row-upper a{
        font-size: 16px;
        padding: 27px 20px;
    }

    .foot-row-mid > .col25{
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 30px;
    }

    .foot-heading{
        font-size: 22px;
        padding-bottom: 20px;
    }

    .foot-para{
        font-size: 15px;
        padding-bottom: 20px;
    }

    .soc{
        width: 40px;
        height: 40px;
    }

    .main-footer .footer-middle .foot-row-mid .col100{
        margin: 30px 0 20px 0;
    }

    .foot-row-lower > .col50{
        max-width: 100%;
        flex: 0 0 100%;
    }

    .last-para-left{
        text-align: center;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .last-para-right{
        text-align: center;
        font-size: 14px;
    }
}

/* ==================================================================================================================================== */