body{
    margin: 0;
    padding: 0;
    font-family: mukta;
    /* background: linear-gradient(#fffffff4, #fffffff4), url(../img/web-bac.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed; */
}
.deskwidth{
    width: 1280px;
    margin: auto;
}
@media only screen and (max-width: 1050px){
    .deskwidth{
        width: 98%;
        margin: auto;
    }
}
@media only screen and (max-width: 600px){
    .deskwidth{
        width: 95%;
    }
}
.desktop_header{
    /* background-image: linear-gradient(#000000bc, #000000bc), url(../img/web-bac.webp);
    background-position: center;
    background-size: cover; */
    background-color: #F5FFFA;
    padding: 7px 0;
    top: 0;
    position: sticky;
    z-index: 9;
    box-shadow: 0px 0px 10px #00000050;
    z-index: 99;
}
.desktop_header section{
    display: flex;
    margin: 0 auto;
    align-items: center;
}
.desktop_header section .logo{
    width: 18%;
}
.desktop_header section .logo img{
    width: 100%;
    margin-bottom: -10px;
}
.desktop_header section .menu{
    width: 52%;
}
.desktop_header section .menu ul{
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
}
.desktop_header section .menu ul li a{
    color: #000;
    text-decoration: none;
    margin: auto 10px;
    margin-bottom: 0;
    font-family: mukta;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 600;
    /* text-transform: uppercase; */
}
.desktop_header section .menu ul li a:hover{
    color: #008DCA;
}
.desktop_header section .plan_button{
    width: 30%;
    justify-content: right;
    display: flex;
}
.desktop_header section .plan_button .icon{
    display: flex;
}
.desktop_header section .plan_button .icon svg{
    color: #FBB03B;
    margin-top: 10px;
    width: 20px;
    height: 20px;
    animation: shadow-call 1s infinite;
    border-radius: 0px;
}
@keyframes shadow-call {
    0% {
        box-shadow: 0 0 0 0 #00D4EB;
        border-radius: 30px;
    }
    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}
.desktop_header section .plan_button .icon a{
    text-decoration: none;
}
.desktop_header section .plan_button .icon a p{
    margin: 5px 15px 0 7px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0085C6;
}
.desktop_header section .plan_button a button{
    background:linear-gradient(90deg, #00D4EB, #0085C6);
    padding: 9px 30px 10px;
    /* border: 4px solid #1B5E1F; */
    border: 0;
    border-radius: 5px;
    font-size: 12.5px;
    letter-spacing: 1px;
    color: #000;
    font-family: lato;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.5s;
    cursor: pointer;
}
.desktop_header section .plan_button a button:hover{
    background-color: #0478a9;
    transform: scale(0.95);
}
.tablet_header,
.left_side_menu{
    display: none;
}
@media only screen and (max-width: 1050px){
    .desktop_header{
        display: none;
    }
    .tablet_header{
        display: flex;
        background-color: #F5FFFA;
        /* background-image: linear-gradient(#000000bc, #000000bc), url(../img/web-bac.webp);
        background-position: center;
        background-size: cover; */
        align-items: center;
        padding: 5px 15px;
        top: 0;
        position: sticky;
        z-index: 99;
        box-shadow: 0px 0px 10px #00000050;
    }
    .tablet_header .logo{
        width: 30%;
    }
    .tablet_header .logo img{
        width: 190px;
        margin-left: -10px;
        padding: 5px 0;
    }
    .tablet_header .mobile_icon{
        width: 70%;
        justify-content: right;
        display: flex;
    }
    .tablet_header .mobile_icon .call_icon{
        display: flex;
        margin-top: 6px;
    }
    .tablet_header .mobile_icon .call_icon svg{
        color: #FBB03B;
        margin-top: 10px;
        width: 20px;
        height: 20px;
        animation: shadow-call 1s infinite;
        border-radius: 0px;
    }
    .tablet_header .mobile_icon .call_icon a{
        text-decoration: none;
    }
    .tablet_header .mobile_icon .call_icon a p{
        margin: 5px 15px 0 7px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #0085C6;
    }
    .tablet_header .mobile_icon img{
        width: 50px;
    }
    .left_side_menu{
        display: block;
        width: 300px;
        padding: 20px;
        background-color: #F5FFFA;
        box-shadow: 0px 0px 10px #00000050;
        height: 100%;
        top: 0;
        position: fixed;
        z-index: 999;
        right: -100%;
        transition: right 0.3s;
    }
    .left_side_menu.show-menu {
        right: 0;
    }
    .left_side_menu .box{
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    .left_side_menu .box .img{
        width: 80%;
    }
    .left_side_menu .box .img img{
        width: 185px;
    }
    .left_side_menu .box .close_icon{
        width: 20%;
        text-align: right;
    }
    .left_side_menu .box .close_icon img{
        width: 40px;
    }
    .left_side_menu .nav_menu ul{
        list-style-type: none;
    }
    .left_side_menu .nav_menu ul li{
        margin: 22px 0;
    }
    .left_side_menu .nav_menu ul li a{
        color: #000;
        font-size: 15px;
        font-weight: 600;
        font-family: lato;
        padding: 10px 0;
        margin-left: -20px;
    }
    .left_side_menu a button{
        background: linear-gradient(90deg, #00D4EB, #0085C6);
        padding: 9px 30px 10px;
        border: 0;
        border-radius: 5px;
        font-size: 12.5px;
        letter-spacing: 1px;
        color: #000;
        font-family: lato;
        font-weight: 700;
        text-transform: uppercase;
        transition: transform 0.5s;
        cursor: pointer;
        width: 100%;
    }
    .left_side_menu .martop{
        margin-top: 50px;
        margin-bottom: 25px;
    }
    .left_side_menu .call_btn svg{
        color: #008DCA;
        width: 22px;
        height: 22px;
        margin-top: 5px;
    }
    .left_side_menu .call_btn h4{
        font-size: 16px;
        font-weight: 700;
        color: #0085C6;
        font-family: poppins;
        text-transform: uppercase;
        margin-bottom: 0;
    }
    .left_side_menu .call_btn a{
        font-size: 15px;
        color: #0478a9;
    }
}
@media only screen and (max-width: 600px){
    .tablet_header{
        padding: 5px 5px 5px 15px;
    }
    .tablet_header .logo img {
        width: 140px;
    }
    .tablet_header .mobile_icon .call_icon{
        margin-right: -10px;
        margin-top: 5px;
    }
    .tablet_header .mobile_icon img{
        width: 43px;
    }

}


/* ============Slider Css========== */
.bootslider .carousel-inner .carousel-item{
    height: 500px;
    align-items: center;
}
.bootslider .carousel-inner .first_slider{
    background: linear-gradient(#00000080, #00000080), url(../img/car-rental.webp);
    background-size: cover;
    background-position: center;
}
.bootslider .carousel-inner .second_slider{
    background: linear-gradient(#00000080, #00000080), url(../img/tour-slider.webp);
    background-size: cover;
    background-position: center;
}
.bootslider .carousel-inner .third_slider{
    background: linear-gradient(#00000055, #00000055), url(../img/bhutan-tour.webp);
    background-size: cover;
    background-position: center;
}
.bootslider .carousel-inner .carousel-item .slder_sec{
    width: 1250px;
    margin: auto;
}
.bootslider .carousel-inner .carousel-item .slder_sec .box{
    width: 650px;
    padding-top: 130px;
}
.bootslider .carousel-inner .carousel-item .slder_sec .box h5{
    color: #FAAA3F;
    font-size: 20px;
    font-family: poppins;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 0px 1px #000;
    margin-bottom: 5px;
}
.bootslider .carousel-inner .carousel-item .slder_sec .box h4{
    color: #fff;
    font-size: 52px;
    font-family: Mukta;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0px 0px 1px #000;
    line-height: 1em;
}
.bootslider .carousel-inner .carousel-item .slder_sec .box p{
    color: #fff;
    font-family: mukta;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 17px;
    text-shadow: 0px 0px 1px #000;
}
.bootslider .carousel-inner .carousel-item .slder_sec .box button{
    background: linear-gradient(90deg, #00D4EB, #0085C6);
    padding: 9px 30px 10px;
    border: 0;
    border-radius: 5px;
    font-size: 12.5px;
    letter-spacing: 1px;
    color: #000;
    font-family: lato;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.5s;
    cursor: pointer;
}
.bootslider .carousel-indicators li{
    width: 12px;
    height: 12px;
    border-radius: 100%;
}
.bootslider .carousel-indicators li.active{
    background: linear-gradient(90deg, #00D4EB, #0085C6) !important;
}
@media only screen and (max-width: 1050px){
    .bootslider .carousel-inner .carousel-item {
        height: 385px;
        align-items: center;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec {
        width: 80%;
        margin: auto;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box{
        width: 100%;
        padding-top: 80px;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box h4{
        font-size: 45px;
    }
}
@media only screen and (max-width: 600px){
    .bootslider .carousel-inner .carousel-item .slder_sec{
        width: 90%;
    }
    .bootslider .carousel-inner .carousel-item{
        height: 400px;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box{
        padding-top: 50px;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box h5{
        font-size: 15px;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box h4 {
        font-size: 40px;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box p{
        font-size: 15px;
        line-height: 1.2em;
    }
    .bootslider .carousel-inner .carousel-item .slder_sec .box button{
        font-size: 12px;
        padding: 9px 20px 10px;
    }
}

.enquiry_form .row{
    margin: 0;
}
.enquiry_form .box{
    margin-top: -430px;
    z-index: 9;
    position: relative;
    background-color: #fff;
    border: 1px solid #ffc208;
    border-radius: 5px;
}
.enquiry_form .box .heading{
    background-color: #ffc208;
    border-radius: 5px 5px 0 0;
    text-align: center;
}
.enquiry_form .box .heading h4{
    color: #000;
    font-size: 17px;
    font-display: lato;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 15px 10px;
}
.enquiry_form .box .tour_form{
    padding: 15px 25px 30px;
}
.enquiry_form .box .tour_form label{
    color: #000;
    font-family: lato;
    font-size: 12.5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: -1px;
}
.enquiry_form .box .tour_form input,
.enquiry_form .box .tour_form select{
    background-color: #ffffff43;
    font-family: lato;
    font-size: 13.5px;
    border: 1px solid #0085C6;
    padding: 5px 10px;
    border-radius: 2px;
    color: #000;
    width: 100%;
    cursor: pointer;
}
.enquiry_form .box .tour_form p{
    color: #ffc208;
    font-size: 12px;
    font-weight: 600;
    font-family: poppins;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.enquiry_form .box .tour_form button{
    background: linear-gradient(90deg, #00D4EB, #0085C6);
    padding: 9px 30px 10px;
    /* border: 4px solid #1B5E1F; */
    border: 0;
    border-radius: 5px;
    font-size: 11.5px;
    letter-spacing: 1px;
    color: #000;
    font-family: lato;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.5s;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
}
.enquiry_form .box .tour_form button:hover{
    transform: scale(0.95);
}
@media only screen and (max-width: 1050px){
    .enquiry_form .box{
        margin: 20px auto;
        width: 70%;
    }

}
@media only screen and (max-width: 600px){
    .enquiry_form .box{
        margin: 20px auto;
        width: 100%;
        box-shadow: 0px 0px 10px #00000050;
        display: none;
    }
    .enquiry_form .box .tour_form {
        padding: 15px 5px 30px;
    }
    .enquiry_form .box .heading h4{
        font-size: 16px;
        padding: 10px 15px;
    }
}


/* ===============Our Cars============= */
.heading{
    color: #000;
    font-size: 27px;
    font-display: lato;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}
.subheading{
    color: #000;
    font-family: lato;
    font-size: 12.5px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
}
.heading_hr{
    width: 50px;
    border-top: 3px solid #FAAA3F;
    margin-bottom: 30px;
}
.our_cars{
    text-align: center;
    margin: 60px auto 50px;
}
.our_cars .cars_box .box{
    border-radius: 10px;
    box-shadow: 0px 0px 10px #00000050;
    padding: 2px 2px 20px;
    text-align: left;
    margin-bottom: 25px;

}
.our_cars .cars_box .box img{
    width: 100%;
    border-radius: 10px;
}
.our_cars .cars_box .box h4{
    padding: 10px;
    color: #000;
    font-size: 17px;
    font-display: lato;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0px;
}
.our_cars .cars_box .box p{
    color: #000;
    font-family: lato;
    font-size: 13.5px;
    /* text-transform: uppercase; */
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0 10px 0;
    margin-top: -5px;
}
.our_cars .cars_box .box button{
    color: aliceblue;
    font-size: 12px;
    font-weight: 600;
    font-family: lato;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 95%;
    text-align: center;
    padding: 7px 10px;
}
.our_cars .cars_box .box .btn-success{
    margin-left: 10px;
}
.our_cars .cars_box .box .btn-warning{
    color: #000;
}


@media only screen and (max-width: 600px){
    .our_cars{
        margin: 50px 10px;
    }
    .our_cars .cars_box{
        margin: 0;
    }
}

.tour_package{
    text-align: center;
    padding: 60px 0 50px;
    background: linear-gradient(#00000050, #00000050), url(../img/bhutan-tour.webp);
    background-size: cover;
    background-position: center;
}
.tour_package h4,
.tour_package h5{
    color: aliceblue;
}
.tour_package .tour_slide .slider_box{
    background-color: #fff;
    border-radius: 10px;
    padding:1px;
}
.tour_package .tour_slide .slider_box h5{
    text-align: right;
    z-index: 9;
    position: relative;
    margin: 25px 0px -50px auto;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 15px;
    background-color: #ffc107;
    width: 37%;
    color: #333;
    border-radius: 3px;
}
.tour_package .tour_slide .slider_box img{
    border-radius: 10px;
}
.tour_package .tour_slide .slider_box .slider_content{
    text-align: left;
    padding: 10px 15px 20px;
}

.tour_package .tour_slide .slider_box .slider_content h4{
    color: #000;
    font-size: 17px;
    font-display: lato;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}
.tour_package .tour_slide .slider_box .slider_content p{
    color: #000;
    font-family: lato;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.tour_package .tour_slide .slider_box .slider_content button{
    color: aliceblue;
    font-size: 12px;
    font-weight: 600;
    font-family: lato;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding: 7px 10px;
}
.tour_package .tour_slide .slider_box .slider_content .btn-warning{
    color: #000;
}
.tour_package .tour_slide .slider_box .slider_content .include{
    color: #000;
    font-size: 12.5px;
    font-display: lato;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-align: left;
    background-color: transparent;
    width: auto;
    margin: 10px 0;
    padding: 0;
}
.tour_package .tour_slide .slider_box .slider_content .include strong{
    text-transform: uppercase;
    margin-right: 5px;
    font-size: 12px;
    font-weight: 700;
}
.owl-theme .owl-nav{
    display: none;
}

@media only screen and (max-width: 1050px){
    .tour_package .tour_slide .slider_box h5{
        width: 42%;
        margin-top: 25px;
    }
}
@media only screen and (max-width: 600px){
    .tour_package .tour_slide .slider_box{
        margin: 0 10px;
    }
    .tour_package .tour_slide .slider_box h5{
        width: 47%;
        margin-top: 24px;
    }
}

/* About Us  */
.about_us{
    margin: 60px auto;
}
.about_us img{
    width: 95%;
    border-radius: 10px;
}
.about_us p{
    color: #333;
    font-family: lato;
    font-size: 14.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.about_us p::first-letter{
    color: #0478a9;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
}
.about_us .about_box{
    box-shadow: 0px 0px 10px #00000050;
    padding: 10px;
    border-radius: 5px;
    margin: 0px;
    background: linear-gradient(190deg, #00D4EB, #0085C6);
}
.about_us .about_box svg{
    width: 35px;
    height: 35px;
    color: #000;
} 
.about_us .about_box h4{
    color: #000;
    font-size: 14px;
    font-display: lato;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
@media only screen and (max-width: 1050px){
    .about_us .about_text{
        margin: 0 15px;
    }
    .about_us p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 600px){
    .about_us .about_text .about_box{
        margin: 10px 0;
        padding: 7px 0;
    }
    .about_us .about_text .col-6{
        padding: 0 5px;
    }
    .about_us .about_box svg{
        width: 30px;
        height: 30px;
    }
    .about_us .about_box h4{
        font-size: 12.5px;
        margin-bottom: 0;
    }
}

/* Desti Box  */
.destination_box{
    background: linear-gradient(#cdd2d7b0 , #cdd2d7b0 ), url(../img/web-bac.webp);
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}
.destination_box .desti_box .col-4{
    text-align: right;
    padding: 0;
}
.destination_box .desti_box img{
    width: 70px;
}
.destination_box .desti_box h4{
    color: #000;
    font-size: 27px;
    font-family: poppins;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}
.destination_box .desti_box p{
    color: #333;
    font-family: lato;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
@media only screen and (max-width: 600px){
    .destination_box{
        padding: 20px 0 20px;
    }
    .destination_box .desti_box{
        margin: 20px 0;
    }
    .destination_box .desti_box .col-4{
        text-align: right;
        padding: 0 0 0 15px;
    }
    .destination_box .desti_box img{
        width: 50px;
    }
    .destination_box .desti_box h4{
        font-size: 22px;
        margin-bottom: 0px;
    }
    .destination_box .desti_box p{
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 5px;
    }
}

.contact{
    padding: 70px 0;
}
.contact .rigt_padd{
    padding-right: 50px;
}
.contact .left_padd{
    padding-left: 50px;
}
.contact h4{
    color: #000;
    font-size: 23px;
    font-weight: 700;
    font-family: poppins;
}
.contact p{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    font-family: mukta;
    letter-spacing: 0.5px;
    line-height: 1.2em;
}
.contact hr{
    border-top: 3px solid #ed870b;
    width: 50px;
    margin: 10px 0 30px;
}
.contact form{
    margin-top: -20px;
}
.contact form .row .padd_right{
    padding-right: 3px;
}
.contact form .row .padd_left{
    padding-left: 3px;
}
.contact form input,
.contact form textarea{
    font-size: 15px;
    font-weight: 500;
    font-family: lato;
    color: #000;
    padding: 7px 15px;
    border: 1px solid #1F3A81;
    background-color: #f9f9f9;
    border-radius: 2px;
    width: 100%;
    margin: 5px 0;
}
.contact form button{
    background: linear-gradient(90deg, #00D4EB, #0085C6);
    padding: 8px 35px 10px;
    border: 0;
    border-radius: 5px;
    font-size: 12.5px;
    letter-spacing: 2px;
    color: #000;
    font-family: lato;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.5s;
}
button:hover{
    transform: scale(0.95);
    cursor: pointer;
}
.contact .col-1{
    max-width: 25px;
}
.contact .col-1 svg{
    width: 20px;
    height: 20px;
    color: #ed870b;
}
.contact .col-10 h4{
    font-size: 16px;
    text-transform: uppercase;
}
.contact .col-10 p,
.contact .col-10 p a{
    color: #000;
    text-decoration: none;
}
.contact .col-10 p a:hover{
    color: #ed870b;
}
 
@media only screen and (max-width: 1050px){
    .contact{
        padding: 50px 15px;
    }
}

@media only screen and (max-width: 600px){
    .contact{
        padding: 35px 15px;
    }
    .contact .rigt_padd,
    .contact .left_padd{
        padding: 15px;
    }
    .contact h4 {
        font-size: 25px;
        font-weight: 600;
    }
    .contact form input, .contact form textarea{
        border-color: #1f3b8182;
        font-size: 14px;
    }
    .contact form .row .padd_right{
        padding-right: 15px;
    }
    .contact form .row .padd_left{
        padding-left: 15px;
    }
}