/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../icons8-spinner.gif');
}

.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: 35px 0;
    color: #14141F !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@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;*/
        background: url('../img/pages Hader.png');
        background-size:cover;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        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/Footer pages.jpg');
    background-position: top center;
    backgroun-redpeat: no-repeat;
    background-size: cover;
}

.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;
}
.justify {
    text-align:justify;
}
/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    text-align: justify;
}

.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);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

    .team-item::before,
    .team-item::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 40%;
        top: 0;
        left: 0;
        border-radius: 5px;
        background: #FFFFFF;
        box-shadow: 0 0 45px rgba(0, 0, 0, .07);
        transition: .5s;
        z-index: -1;
    }

    .team-item::after {
        top: auto;
        bottom: 0;
    }

    .team-item:hover::before,
    .team-item:hover::after {
        background: var(--primary);
    }

    .team-item h5,
    .team-item p {
        transition: .5s;
    }

    .team-item:hover h5,
    .team-item:hover p {
        color: #FFFFFF;
    }

    .team-item img {
        padding: 15px;
        border: 1px solid var(--primary);
    }

/*** 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-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.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: 1px solid #FFFFFF;
    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: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.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;
}


.gallery-section {
    position: relative;
    padding: 15px 0px;
}

    .gallery-section .filters {
        position: relative;
        text-align: center;
        font-family: 'Montserrat',sans-serif;
        margin-bottom: 50px;
    }

        .gallery-section .filters .icon-box {
            position: relative;
            display: inline-block;
            margin-right: -75px;
            font-size: 24px;
            color: #86B817;
            text-align: center;
            width: 70px;
            line-height: 24px;
            padding: 12px 10px;
        }

        .gallery-section .filters .filter-tabs {
            position: relative;
            display: inline-block;
            padding-left: 70px;
            border-bottom: 1px solid #86B817;

        }

        .gallery-section .filters li {
            position: relative;
            top: 1px;
            display: inline-block;
            padding: 12px 20px;
            line-height: 24px;
            color: black;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
            border: 1px solid transparent;
            border-bottom-width: 2px;
            margin: 0px 0px 0px;
            transition:  300ms ease;
            -webkit-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
        }

            .gallery-section .filters li.active {
                color: black;
                border-color: #86B817;
                border-bottom-color: #ffffff;
            }

.default-portfolio-item {
    position: relative;
}

.portfolio-with-caption .default-portfolio-item {
    margin-bottom: 30px;
}

.gallery-section.style-two .items-container {
    padding: 0px 15px;
}

.default-portfolio-item.mix {
    display: none;
}

.gallery-section.fullwidth .default-portfolio-item {
    padding: 0px !important;
}

.sortable-masonry .items-container {
    margin-left: -5px;
    margin-right: -5px;
}

.sortable-masonry .masonry-item {
    position: relative;
    padding: 0px 5px !important;
    margin-bottom: 10px !important;
}

.default-portfolio-item .inner-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.default-portfolio-item .image-box {
    position: relative;
    display: block;
}

    .default-portfolio-item .image-box img {
        position: relative;
        display: block;
        width: 100%;
    }

.default-portfolio-item .overlay-one {
    position: absolute;
    left: 0px;
    top: -100%;
    width: 100%;
    height: 100%;
    padding: 0px;
    color: #ffffff;
    opacity: 0;
    border: 5px solid #86B817;
    text-align: center;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.fullwidth .default-portfolio-item .overlay-one,
.portfolio-with-caption .default-portfolio-item .overlay-one {
    border: none;
}

.default-portfolio-item .inner-box:hover .overlay-one {
    top: 0px;
    opacity: 1;
}

.default-portfolio-item .overlay-one .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 30px 50px;
    background: rgba(58,52,52,0.32);
}

.fullwidth .default-portfolio-item .overlay-one .overlay-inner,
.portfolio-with-caption .default-portfolio-item .overlay-one .overlay-inner {
    background: rgba(252,114,30,0.90);
}

.default-portfolio-item .overlay-one .overlay-inner .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.default-portfolio-item .proj-link {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 46px;
    color: #86B817;
    line-height: 46px;
    background: #ffffff;
    font-size: 16px;
    z-index: 1;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.fullwidth .default-portfolio-item .proj-link {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 20px;
}

.portfolio-with-caption .default-portfolio-item .proj-link {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 20px;
}

.default-portfolio-item .proj-link:hover {
    background: #86B817;
    color: #ffffff;
}

.padd-top-60 {
    padding-top: 60px !important;
}

.portfolio-with-caption .default-portfolio-item .proj-link:hover {
    background: #272727;
    color: #ffffff;
}

.default-portfolio-item .caption-box-one {
    position: absolute;
    left: -100%;
    bottom: 0px;
    width: 100%;
    padding: 25px;
    z-index: 1;
    opacity: 0;
}

.default-portfolio-item:hover .caption-box-one {
    left: 0px;
    opacity: 1;
    transition: all 500ms ease 500ms;
    -webkit-transition: all 500ms ease 500ms;
    -ms-transition: all 500ms ease 500ms;
    -o-transition: all 500ms ease 500ms;
    -moz-transition: all 500ms ease 500ms;
}

.default-portfolio-item .caption-box-one h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.fullwidth .default-portfolio-item .caption-box-one h3 {
    font-size: 24px;
}

.default-portfolio-item .caption-box-one h3 a {
    color: #ffffff;
}

    .default-portfolio-item .caption-box-one h3 a:hover {
        color: #86B817;
    }

.fullwidth .default-portfolio-item .caption-box-one h3 a:hover {
    color: #86B817;
}

.default-portfolio-item .caption-box-one .cat-link {
    position: relative;
    display: block;
    line-height: 20px;
    color: #86B817;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    font-style: italic;
}

.default-portfolio-item .caption-box-one .cat-links {
    position: relative;
    display: block;
    color: #ffffff;
    line-height: 20px;
}

    .default-portfolio-item .caption-box-one .cat-links a {
        position: relative;
        line-height: 20px;
        color: #ffffff;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 400;
        font-style: italic;
    }


.default-portfolio-item .caption-box-two {
    position: relative;
    padding: 20px 20px;
    text-align: center;
    background: #f4f4f4;
    border-bottom: 2px solid transparent;
    z-index: 1;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.default-portfolio-item:hover .caption-box-two {
    border-bottom-color: #fc721e;
}

.default-portfolio-item .caption-box-two h3 {
    font-size: 20px;
    color: #272727;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
}

    .default-portfolio-item .caption-box-two h3 a {
        color: #272727;
    }

        .default-portfolio-item .caption-box-two h3 a:hover {
            color: #fc721e;
        }

.default-portfolio-item .caption-box-two .cat-links {
    position: relative;
    display: block;
    color: #ffffff;
    line-height: 20px;
}

    .default-portfolio-item .caption-box-two .cat-links a {
        position: relative;
        line-height: 20px;
        color: #fc721e;
        font-size: 15px;
        text-transform: capitalize;
        font-weight: 400;
        font-style: italic;
    }

.tabbed-shop-section {
    position: relative;
    padding: 100px 0px;
}




.shop-tabs-box {
    position: relative;
}

    .shop-tabs-box .tab-buttons {
        position: relative;
        margin-bottom: 40px;
        text-align: center;
        font-family: 'Montserrat',sans-serif;
    }

    .shop-tabs-box .tabs-content {
        position: relative;
    }

        .shop-tabs-box .tabs-content .shop-tab {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            visibility: hidden;
            opacity: 0;
            -webkit-transform: scale(0.9,0.9);
            -ms-transform: scale(0.9,0.9);
            -o-transform: scale(0.9,0.9);
            -moz-transform: scale(0.9,0.9);
            transform: scale(0.9,0.9);
        }

            .shop-tabs-box .tabs-content .shop-tab.active-tab {
                position: relative;
                visibility: visible;
                opacity: 1;
                -webkit-transition: all 500ms ease;
                -ms-transition: all 500ms ease;
                -o-transition: all 500ms ease;
                -moz-transition: all 500ms ease;
                transition: all 500ms ease;
                -webkit-transform: scale(1,1);
                -ms-transform: scale(1,1);
                -o-transform: scale(1,1);
                -moz-transform: scale(1,1);
                transform: scale(1,1);
            }

    .shop-tabs-box .tab-buttons .tab-btn {
        position: relative;
        display: inline-block;
        padding: 5px 24px;
        margin: 0px 0px 10px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 400;
        color: #9e9e9e;
        text-transform: capitalize;
    }

        .shop-tabs-box .tab-buttons .tab-btn:first-child {
            padding-left: 0px;
        }

        .shop-tabs-box .tab-buttons .tab-btn:last-child {
            padding-right: 0px;
        }

        .shop-tabs-box .tab-buttons .tab-btn.active-btn,
        .shop-tabs-box .tab-buttons .tab-btn:hover {
            color: #fc721e;
        }

        .shop-tabs-box .tab-buttons .tab-btn:after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #9e9e9e;
            margin-top: -4px;
        }

        .shop-tabs-box .tab-buttons .tab-btn:last-child:after {
            display: none;
        }



.fact-counter {
    position: relative;
    padding: 80px 0px 30px;
    background-color: #272727;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    color: #ffffff;
}

    .fact-counter:before {
        content: '';
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: #000000;
        opacity: 0.80;
        z-index: 0;
    }

    .fact-counter .auto-container {
        position: relative;
        z-index: 1;
    }

    .fact-counter .column {
        position: relative;
        margin-bottom: 40px;
        text-align: center;
        z-index: 5;
    }

        .fact-counter .column .icon {
            position: relative;
            top: 0px;
            font-size: 60px;
            line-height: 70px;
            margin-bottom: 20px;
            color: #fc721e;
            transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -webkit-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
        }

    .fact-counter .count-outer {
        position: relative;
        font-size: 30px;
        font-weight: 700;
        padding: 0px 10px;
        margin-bottom: 20px;
        color: #86B817;
    }

    .fact-counter .column .counter-title {
        position: relative;
        font-size: 20px;
        font-weight: 400;
        text-transform: capitalize;
        font-family: 'Montserrat',sans-serif;
        color: #ffffff;
    }

.page-title {
    position: relative;
    padding: 45px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
}

    .page-title:before {
        content: '';
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        position: absolute;
        background: rgba(0,0,0,0.20);
    }

    .page-title .auto-container {
        position: relative;
        z-index: 1;
    }

    .page-title h1 {
        position: relative;
        font-size: 36px;
        font-weight: 700;
        color: #ffffff;
        padding-bottom: 20px;
        line-height: 1.5em;
        text-transform: uppercase;
    }

        .page-title h1:after {
            content: '';
            position: absolute;
            left: 50%;
            margin-left: -35px;
            bottom: 0px;
            width: 80px;
            border-bottom: 3px solid #86B817;
        }

