/********** Template CSS **********/
body {
    font-family: "Inter", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
  h1,h2,h3,h4,h5,h6{
  font-family: "Inter", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

  }
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 5px 15px;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 5px 13px;
    font-weight: 700;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
}


.navbar-light .navbar-brand img {
    width: 100%;
    transition: .5s;
    padding-top: 15px;
    padding-bottom: 8px;
}

.sticky-top.navbar-light .navbar-brand img {
    width: 100%;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
/*    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/couple-pointing-to-himalayas.jpg);*/
    background: url(../img/couple-pointing-to-himalayas.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
        height: 100vh;
}
.hero-header .content-wrapper {
    position: absolute;
    left: 15%;
    top: 60%;
    transform: translateY(-50%);
    max-width: 730px;
}
/*** Hero Headers ***/
.hero-headers {
/*    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/couple-pointing-to-himalayas.jpg);*/
    background: url(../img/kailash-group-himalayan-glacier.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
        height: 100vh;
}
.hero-headers .content-wrapper {
    position: absolute;
    left: 15%;
    top: 80%;
    transform: translateY(-50%);
    max-width: 730px;
}
.content-wrapper h1{
font-size: 30px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}





/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
/*    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
/*    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}



.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}


.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.width-section{
    width: 95px;
    height: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.bst-selection{
    position: relative;
    margin-bottom: 0;
    padding-bottom: 1rem;
    text-transform: uppercase;
    font-family: "Open Sans",sans-serif;
    font-weight: 600;
    font-size: 26px;
}
.bst-selection::before{
content: "";
    position: absolute;
    background-color: #0260c0;
    height: 7px;
    bottom: 0;
    width: 7.7rem;
    }
  .bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
/*    align-items: flex-end;*/
}
.price {
    display: inline-block;
    margin-right: 0;
    text-align: right;
    margin-left: auto;
    font-size: 17px;
}
.carousel-summary .summary-top {
    white-space: nowrap;
    display: inline-flex;
    align-items: flex-end;
}
.carousel-summary {
    align-items: center;
    border-bottom: solid 1px #ebebeb;
    display: flex;
    flex-direction: column;
    /* padding: 46px 20px; */
    position: relative;
}
.summary-sac {
    color: #484545;
    font-family: "Arial",sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 35px;
    position: relative;
    top: 3px;
    vertical-align: super;
    margin-right: 6px;
}
.rating-label {
    border-right: solid 2px #dedede;
    color: #000 !important;
    font-family: "Arial",sans-serif;
    font-size: 24px;
    letter-spacing: -1.1px;
    padding-right: 9px;
}
.summary-top img {
    padding-bottom: 6px;
    margin-left: 10px;
}
.carousel-summary .independent-text {
    color: #9b9898;
    font-family: "Arial",sans-serif !important;
    font-size: 11px !important;
    font-weight: normal;
    line-height: 1 !important;
    margin-right: 5px;
    text-align: center !important;
        margin-top: 11px;
}
.summary-bottom {
    display: flex;
}
.link-read-more a {
    border-bottom: 1px solid currentColor;
    color: #0088c1;
    display: inline-block;
    font-family: Arial,sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-top: 9px;
    padding-bottom: 1px;
    text-decoration: none;
}
.fnt-testo{
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-wrap: break-word;
    color: #484545;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.43;
    margin-bottom: 4px;
}
.para-testo{
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-wrap: break-word;
    color: #484545;
    font-family: Arial,sans-serif;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.38;
    margin-bottom: 6px;
}
.feefo-slide-meta {
    color: #9b9898;
    font-size: 12px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 4px;
}
.card {
    border: none !important;
}
.footer-widget__about-contact {
    border-top: 1px solid rgba(var(--thm-base-rgb), 0.1);
    padding-top: 15px;
    margin-top: 18px;
}
.footer-widget__about-contact li {
    position: relative;
    display: flex;
    align-items: center;
}
ul.ul-sect li {
    list-style: none;
}
.gdlr-core-center-align {
    text-align: center;
}
.content-wrap {
   /* display: -ms-inline-flexbox;
    display: inline-flex;*/
}
.content-wrap .image img {
    height: 50px;
    width: 50px;
    display: block;
    margin: 0 auto;
    object-fit: fill;
}
.content-wrap {
            display: flex;
            justify-content: space-between;
        }
 
        .flex-items {
            width: 100px;
            height: 50px;
            margin: 10px;
            text-align: left;
            font-size: 40px;
        }
        .y-us-content p {
    color: #707070;
    font-size: 16px !important;
}
#Overview {
    background-image: url(../img/desc-bg.jpg);
    background-repeat: no-repeat;
    background-size: 150% 100%;
    padding-top: 27px;
}
.heading h2 {
    display: inline-block;
    font-weight: 600;
    font-size: 21px;
    margin: 0;
    vertical-align: middle;
    margin-bottom: 15px;
}
.tripdetail-section {
    margin-top: 25px;
}
#itinerary {
    margin-top: 20px;
}

.includes li span {
    margin-left: 12px;
}
#includes {
    margin-top: 20px;
}
.Dates-sect {
            display: flex;
            justify-content: space-between;
        }
 
        .Availability-sect {
            margin: 10px;
        }
        .ability-date-sect {
    border: solid 1px #ddd;
}
.month-sect {
    border: solid 1px #ddd;
}
.month-sect h3 {
    font-size: 21px;
    padding: 10px;
    color: #0260c0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: "Open Sans",sans-serif;
    font-weight: 700;
}
.mdl-hdr{
        background-color: #021e59;
}
@media (min-width: 576px){
.mdl-digl {
    max-width: 835px;
    margin: 1.75rem auto;
}
}
ul.ul-sect {
    margin-top: 20px;
}
.bstt-selection::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #2f982b;
    
}
.btn-primary {
    color: #000;
    background-color: #021e59;
    border-color: #021e59;
}
.heading-h3 h3 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    color: #0d0d0d;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.cate-contain {
    font-size: 16px;
    line-height: 26px;
    color: #3b3b3b;
    margin: 0 0 20px;
}
.heading-wrap h2 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    color: #0d0d0d;
    margin-bottom: 12px;
    padding-bottom: 10px;
    display: inline-block;
}

.bst-selection::before {
    content: "";
    position: absolute;
    background-color: #0260c0;
    height: 2px;
    bottom: 11px;
    width: 4.7rem;
    left: 175px;
}

/* .nav-border {
    padding: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
} */
section.tour-search {
    position: relative;
    display: block;
    margin-top: -50px;
    z-index: 2;
}
.tab-section-country {

    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.05);
}
.container.rounded h1 {
    margin-bottom: 25px;
    font-size: 24px !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}
.filetxt {
    display: none !important;
}
.back-img{
    height: 100vh;
}
.capt-cro{
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 950px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
    z-index: 999;
}
.no-shadow {
    box-shadow: none !important;
}