/*** Spinner Start ***/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montez&family=Nosifer&family=Rubik+Distressed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montez&display=swap');

.nosifer-regular {
    font-family: "Nosifer", sans-serif;
    font-weight: 400;
    font-style: normal;
}
html {
  scroll-behavior: smooth;
}


.manrope {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Manrope", sans-serif;
}

:root {
    --primary: #9c0d11;
    --yellow: #FFD54F;
    --text: #191920;
    --white: #FFFFFF
}

.section-title h1 {
    font-family: "Nosifer", sans-serif;
    color: var(--primary);
    /* font-weight: 600; */
    font-size: 21px;
}
.package-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.6em; /* optional: for consistent height */
}
.amenity-card {
    transition: all 0.3s ease;
}
.amenity-card:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.amenity-card .icon {
    width: 36px;
    height: 36px;
    background: #e7f1ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:576px) {
    .section-title h1 {

        font-size: 18px;
    }
}

.text-primary {
    color: var(--text);
}

.bg-primary {
    background-color: var(--primary);
}

/*** 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;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

.patterns {
    height: 100vh;
    background: var(--primary);
    width: 100%;
}

svg text {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 10px;
    stroke: #ffffff;
    font-size: 150px;
    font-weight: 700;
    stroke-width: 2;
    animation: textAnimate 4s infinite alternate;

}

@keyframes textAnimate {
    0% {
        stroke-dasharray: 0 70%;
        stroke-dashoffset: 20%;
        fill: hsla(189, 68%, 75%, 0%)
    }

    80% {
        stroke-dasharray: 30% 0;
        stroke-dashoffstet: -20%;
        fill: hsla(0, 0%, 100%, 0)
    }

    100% {
        stroke-dasharray: 30% 0;
        stroke-dashoffstet: -20%;
        fill: hsl(0, 0%, 100%)
    }
}

@media screen and (max-width: 900px) {
    svg text {
        letter-spacing: 10px;
        font-size: 110px;
        font-weight: 400;
        stroke-width: 3;
    }
}

@media screen and (max-width: 500px) {
    svg text {
        letter-spacing: 12px;
        font-size: 40px;
        font-weight: 400;
        stroke-width: 2;
    }
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/



.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--white) !important;
    color: var(--primary) !important;
    background-color: #ffff;
    border-color: var(--primary);
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--primary);
    color: var(--white) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/* ******************** Navbar Start ************************ */
.book-now-button a {
    text-decoration: none;
    display: block;
    width: 150px;
    height: 40px;
    background: var(--primary);
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-family: verdana;
    color: #fff;
    position: relative;
    border-radius: 10px;
}

.book-now-button a span {
    position: relative;
    z-index: 1;
}

.book-now-button a:before {
    background: #90606090;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    animation: progress 3s linear infinite;
    border-radius: 10px;
}

@keyframes progress {
    to {
        width: 100%;
    }
}


.navbar {
    background: rgb(255, 255, 255);
    /* background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/navbg.jpg) center center no-repeat; */
    /* background-size: cover; */
    border-bottom: 1px solid var(--primary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.navbar .navbar-brand img {
    width: 100%;
    height: 100px;
}

.navbar .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 26px 15px;
    font-size: 18px;
    color: var(--text);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .book-btn {
    background: var(--primary);
    color: var(--white);
}

.navbar .book-btn:hover {
    background: var(--primary);
    color: var(--primary);
}


.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: #ffff !important;
    border-color: #ffff !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 3px solid var(--primary);
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: #ffffff;
        height: 100vh;
        width: 234px;
        left: -282px;
        top: 67px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        padding-top: 10px;
        padding-left: 32px;
        transition: .3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 67px;
        left: 0px;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-collapse {
        top: 86px;
    }

    .navbar-collapse.show {
        top: 86px;
    }
}

@media (max-width: 576px) {
    .navbar .navbar-brand img {
        width: 100%;
        height: 51px;
    }
}

/* ******************** Navbar End ************************ */

.header-carousel {
    position: relative;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 142px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }

}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 600px;
    /* margin-top: 95px; */
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}



.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;

}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 175px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media(max-width:576px) {
    .header-carousel .header-carousel-item .carousel-caption {
        position: absolute;
        width: 80%;
        height: 100%;
        top: 82px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 9;
    }
}

@media(max-width:768px) {
    .header-carousel .header-carousel-item .carousel-caption {
        position: absolute;
        width: 80%;
        height: 100%;
        top: 107px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 9;
    }
}

/*** Carousel Hero Header End ***/



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    padding: 39px 0 0 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

/*** Footer Start ***/
.footer {
    overflow: hidden;
    background: linear-gradient(rgba(28, 53, 146, 0.626), rgba(30, 46, 103, 0.751)), url(../img/bg-2.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer button {
    border: none;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item .footer-item-img {
    /* transform: matrix(1, -0.09, 0, 1, 0, 0); */
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover {
    /* transform: matrix(1, 0.09, 0, 1, 0, 0); */
}

.footer .footer-item .footer-item-img img {
    filter: grayscale(50%);
    transition: 0.5s;
}

.footer .footer-item .footer-item-img:hover img {
    filter: grayscale(0%);
}

.footer .footer-item a {
    line-height: 35px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--primary) !important;
}

/*** copyright end ***/

.about-us .img1 img {
    border-radius: 156px 156px 0px 156px;
}

.about-us .img2 img {
    border-radius: 156px 156px 156px 0px;
}

.about-us .img3 img {
    border-radius: 156px 0px 156px 156px;
}

.about-us h2 {
    font-size: 50px;
}

.about-us p {
    font-weight: 400;
    color: #000;
}

.about-us span {
    /* border: 1px solid black; */
    font-size: 28px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
}


.one .bg-1 {
    margin: 0px 0px 0px 0px;
    padding: 12px 0 18px 0 !important;
    background-color: #000000;
    background-image: url(../img/Nature.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px 15px 15px 15px;
}

.one .bg-1 img {
    width: 100px;
    height: 100px;
}


.one .bg-2 {
    margin: 0px 0px 0px 0px;
    padding: 12px 0 18px 0 !important;
    background-color: #000000;
    background-image: url(../img/adventure.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px 15px 15px 15px;
}

.one .bg-2 img {
    width: 100px;
    height: 100px;
}


.one .bg-3 {
    margin: 0px 0px 0px 0px;
    padding: 12px 0 18px 0 !important;
    background-color: #000000;
    background-image: url(../img/culture.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px 15px 15px 15px;
}

.one .bg-3 img {
    width: 100px;
    height: 100px;
}

/*** Facts Counter***/
.parallax {
    background: linear-gradient(rgba(45, 50, 68, 0.281), rgba(50, 60, 96, 0.426)), url(../img/bg-2.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 555px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax .section-title h2 {
    font-size: 35px;
}


.counter {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.302);
    height: 200px;
    padding-top: 20px;
    /* width: 175px; */
    transition: all 0.5s ease;
    margin-bottom: 30px;
    text-align: center;

}

.counter .counter-icon {
    font-size: 30px;
    line-height: 37px;
    margin: 0 0 0;
}

.counter h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    /* margin: 15px 0 0; */
    /* color: var(--primary); */
}

.counter h6 {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    /* margin: 15px 0 0; */
    /* color: var(--primary); */
}

.counter .counter-value {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter .counter-value .count {
    font-size: 30px;
    font-weight: 600;
}

.counter-first {
    /* border: 1px solid var(--primary); */
    /* border-radius: 50%; */
    /* width: 300px; */
    /* height: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}




/* .three======================================= */
.three {
    overflow: hidden;
    background: linear-gradient(rgba(45, 50, 68, 0.281), rgba(50, 60, 96, 0.426)), url(../img/bg-2.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.three .img-1 img {
    border-radius: 500px 0px 0px 500px;
}

.three .img-2 img {
    border-radius: 0px 500px 500px 0px;
}


.three .middle .card img {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three .card .card-image {
    display: flex;
    justify-content: center;
}


/* camp-============================================== */
.camp {
    background-image: url(../img/bg-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 28px 0;
}

.camp .item {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.camp .item img {
    border-radius: 10px;
}

.camp .item h4 {
    font-size: 19px;
    margin: 10px 0px;
}

.camp .item h4 a {
    color: var(--primary);
}

.camp .item .main-button {
    text-align: center;
}

.camp .item a {
    /* margin-left: 30px; */
    color: #000000;
    font-weight: 600;
    padding: 0 !important;
}

.camp .item a:hover {
    /* margin-left: 30px; */
    color: var(--primary);
    font-weight: 600;
    padding: 0 !important;
}

/* camp-============================================== */


@media(max-width:576px) {
    .about-us span {
        /* border: 1px solid black; */
        font-size: 28px;
        width: 77px;
        height: 51px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--primary);
        color: var(--white);
    }

    .one .bg-1 {
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px !important;
    }

    .one .bg-2 {
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px !important;
    }

    .one .bg-3 {
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px !important;
    }

    .service-img img {
        width: 246px;
        height: 246px;
    }

    .service-item .service-img::before {
        position: absolute;
        content: "";
        width: calc(100% - 3rem);
        height: calc(100% - 3rem);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 1rem solid rgba(0, 0, 0, .5);
        border-radius: 300px;
        z-index: 1;
    }

    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
        height: 620px;
    }

}



.card.service-card:before {
    content: '';
    position: absolute;
    left: 0.625rem;
    bottom: 0.625rem;
    width: 6.25rem;
    height: 6.25rem;
    background-color: var(--primary);
    border-radius: 1.875rem 0 0.625rem 0;
    z-index: -1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

@media (max-width: 767.98px) {
    .card.service-card:before {
        width: 3.75rem;
        height: 3.75rem;
        border-radius: 1.25rem 0 0.5rem 0;
    }
}

.card.service-card:hover:before {
    left: -1.875rem;
    bottom: -2.1875rem;

}

@media (max-width: 767.98px) {
    .card.service-card:hover:before {
        left: -0.9375rem;
        bottom: -1.5625rem;
    }
}

#service .card {
    border: none;
    width: 290px;
}

#service .card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}



/* {{--  tour =========================================================  --}} */

.tour-card {
    position: relative;
    margin-bottom: 30px;
}

.tour-card .tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #3e3e3e9e;
    padding: 20px;
    border-radius: 0px 20px 0 0;
    opacity: 0;
    z-index: -1;
    transform: translateY(40px);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tour-card .tour-card-overlay h4 {
    margin-bottom: 0;
    color: #ffffff;
}

.tour-card .tour-card-overlay small {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 10px;
}

.tour-card .tour-card-overlay p {
    color: #ffffff;
    font-size: 16px;
}

.tour-card:hover .tour-card-overlay {
    transform: translateY(0);
    width: 100%;
    opacity: 1;
    z-index: 1;
}

@media (min-width: 1200px) {
    .tour-card:hover .tour-card-overlay {
        width: 74%;
    }
}

.with-content .tour-card img {
    height: 283px !important;
}

/* {{--  tour =========================================================  --}} */


/* blog------------------------------------------ */
.card-blog {
    background: #edededf7;
}

.card-blog .card-blog-body {
    padding: 20px 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (min-width: 1200px) {
    .card-blog .card-blog-body {
        padding: 16px 9px 17px 25px;
    }
}

.card-blog .card-blog-body h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card-blog .card-blog-body p {
    margin-bottom: 0;
}

.card-blog:hover .card-blog-body {
    box-shadow: 0px 10px 20px 0px rgba(14, 30, 112, 0.1);
}

/* .card-blog-info {
    margin-bottom: 15px;
}

.card-blog-info li {
    display: inline-block;
    font-size: 14px;
    color: #888888;
    margin-right: 25px;
}

.card-blog-info li:last-child {
    margin-right: 0;
}

.card-blog-info li a {
    color: #888888;
}

.card-blog-info li i,
.card-blog-info li span {
    margin-right: 5px;
} */

/* blog------------------------------------------ */

.top .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
    border: 1px solid rgb(45 45 45 / 9%);
}

.top .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 2;
}

.top .service-item:hover:after {
    height: 100%;
}

.top .service-item i {
    color: var(--bs-primary);
    transition: 0.5s;
    margin-top: 10px;
}

.top .service-item:hover i {
    color: var(--bs-white);
}


.top .service-item .service-content {
    position: relative;
    z-index: 3;
}

.top .service-item .service-content a.h4 {
    transition: 0.5s;
}

.top .service-item:hover .service-content a.h4:hover {
    color: var(--white);
}


/* why chose us ============================================= */
.why-us h3 {
    margin-top: 4px;
}

/* why chose us ============================================= */

/* gallery start -============================================== */

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.gallery-item .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    padding-top: 0;
}

.gallery-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.gallery-carousel .owl-nav .owl-prev:hover,
.gallery-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .gallery-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-carousel .owl-nav .owl-prev,
    .gallery-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.gallery-item img {
    height: 260px;
    width: 100%;
}

/* gallery end -=============================================== */



/* category=========================================== */
.category .icon-box-link {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 8px 11px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
}

.category .icon-box-link:hover {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.category .card {
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    /* height: 300px; */
}

.category .card img {
    width: 100px;
    height: 100px;
}

.category .icon-box-description {
    color: #000;
    font-weight: 600;
}

.category .card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.category {
    overflow: hidden;
    background: linear-gradient(rgba(28, 53, 146, 0.626), rgba(30, 46, 103, 0.751)), url(../img/videoframe_1257.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 530px;
}





@media (max-width: 576px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
        height: 176px;
    }

    .about-us h2 {
        font-size: 43px;
    }

    .category .icon-box-link {
        background-color: var(--primary);
        color: #FFFFFF;
        padding: 8px 8px;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
    }

    .category {
        height: 1426px !important;
    }

    

    .category .card {
        border-radius: 0;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
        height: 335px;
    }

    .camp-site {
        height: 1445px !important;
    }


    .camp-site .camp-site-first .image img {
        height: 74px !important;
        width: 74px !important;
    }

    #service .card {
        width: 346px;
    }

    .parallax {
        height: 1372px !important;
    }

    .teachwithus {
        height: 1000px !important;
    }

}





@media (max-width: 768px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
        height: 300px;
    }

    .about-us h2 {
        font-size: 43px;
    }

    .category .icon-box-link {
        background-color: var(--primary);
        color: #FFFFFF;
        padding: 8px 8px;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
    }

    .category {
        height: 768px;
    }

    .parallax {
        height: 863px;
    }

    .camp-site {
        height: 941px !important;
    }

}

/* camp-site ======================================= */
.camp-site {
    background: linear-gradient(rgba(45, 50, 68, 0.281), rgba(50, 60, 96, 0.426)), url(../img/videoframe_1257.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camp-site .camp-site-first .image img {
    height: 146px;
    /* width: 100%; */
}

/* camp-site ======================================= */

.footer-form {
    margin: auto;
    position: relative;
    top: -30px;
    left: 0;
    right: 0;
    margin-top: 60px;

}

.footer-form .card {
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px -9px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(rgb(255 84 84 / 48%), rgb(255 255 255 / 75%)), url(../img/fancy-2.png);
    background-position: left;
    background-repeat: no-repeat;
    /* background-size: cover; */
}

.footer-form h2 {
    font-weight: 600;
    font-size: 28px;
}

.footer-form h2 span {
    color: red;
}

.footer-form .btn-sign {
    background: var(--primary);
    color: var(--white);
    margin-left: 5px;
}




/* teach with us ======================================== */
.teachwithus {
  /*  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.png) center center no-repeat;*/
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}


.teachwithus .card {
    background-color: #666666b2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.teachwithus h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.teachwithus input {
    outline: none;
}

.returnpolicy {
    background: url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.privacypolicy {
    background: url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.termcondition {
    background: url(../img/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.booking {
    /*background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.png) center center no-repeat;*/
    background-size: cover;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking .bg-color {
    background-color: #666666b2;
}

.booking a {
  /*  padding-top: 20px;*/
}

/*** package Start ***/

.vesitable {
    overflow: hidden;
    background: linear-gradient(rgba(28, 53, 146, 0.626), rgba(30, 46, 103, 0.751)), url(../img/bg-2.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
}

.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--white);
    padding: 5px 25px;
    border: 1px solid var(--white);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    left: 0;
    color: var(--white);
    padding: 5px 25px;
    border: 1px solid var(--white);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--white);
}









/*** Packages Start ***/
.vesitable .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.vesitable .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.vesitable .packages-item .packages-img .packages-info small,
.vesitable .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.vesitable .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.vesitable .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169);
    visibility: visible;
}

.vesitable .packages-item .packages-img small,
.vesitable .packages-item .packages-img small i {
    transition: 0.5s;
}

.vesitable .packages-item .packages-img:hover small,
.vesitable .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.vesitable .packages-item .packages-img img {
    transition: 0.5s;
}

.vesitable .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.vesitable .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
    text-align: center;
}

.vesitable .packages-content {
    border-radius: 0 0 5px 5px;
    height: 287px !important;
}

.vesitable .packages-content small {
    font-size: 10px;
    font-weight: 600;
    color: black;

}

/*** Packages End ***/

/* .three======================================= */
.three {
    overflow: hidden;
    background: linear-gradient(rgba(28, 53, 146, 0.626), rgba(30, 46, 103, 0.751)), url(../img/bg-1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.three .img-1 img {
    border-radius: 500px 0px 0px 500px;
}

.three .img-2 img {
    border-radius: 0px 500px 500px 0px;
}


.three .middle .card img {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three .card .card-image {
    display: flex;
    justify-content: center;
}



/*** Our experiences ***/
.experiences-item img {
    transition: .5s;
	height: 306px;
}


.experiences-overlay {
    position: absolute;
    padding: 20px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.experiences-item .icon i {
    color: #FFFFFF;
    font-size: 20px;
}

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/bg-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: none;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    /* bottom: -22px; */
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}

/*** Testimonial End ***/



/* our-package ============================================== */
.our-package .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.our-package .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.our-package .packages-item .packages-img .packages-info small,
.our-package .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.our-package .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.our-package .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169) rgba(212, 212, 213, 0.169);
    visibility: visible;
}

.our-package .packages-item .packages-img small,
.our-package .packages-item .packages-img small i {
    transition: 0.5s;
}

.our-package .packages-item .packages-img:hover small,
.our-package .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.our-package .packages-item .packages-img img {
    transition: 0.5s;
}

.our-package .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.our-package .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
    text-align: center;
}

.our-package .packages-content {
    border-radius: 0 0 5px 5px;
    height: 300px !important;
    background-color: #FFFFFF;
}

.our-package .packages-content small {
    font-size: 12px;
    font-weight: 600;
    color: black;

}
.packages-content p{
	height: 115px;
}
@media(max-width:567px) {
    .our-package .packages-content {
        border-radius: 0 0 5px 5px;
        height: 239px !important;
        background-color: #FFFFFF;
    }
	
}

@media(max-width:756px) {
    .our-package .packages-content {
        border-radius: 0 0 5px 5px;
        height: 270px !important;
        background-color: #FFFFFF;
    }

    .vesitable .packages-content {
        border-radius: 0 0 5px 5px;
        height: 264px !important;
    }
}

@media(max-width:1024px) {
    .our-package .packages-content {
        border-radius: 0 0 5px 5px;
        height: 353px !important;
        background-color: #FFFFFF;
    }

    .vesitable .packages-content {
        border-radius: 0 0 5px 5px;
        height: 307px !important;
    }
}

@media(max-width:1440px) {

    .vesitable .packages-content {
        border-radius: 0 0 5px 5px;
        height: 265px !important;
    }
}
@media(min-width:1365px) {
.our-package .packages-content {
    border-radius: 0 0 5px 5px;
    height: 335px !important;
    background-color: #FFFFFF;
}

.pack.packages-content {
    border-radius: 0 0 5px 5px;
    height: 250px !important;
    background-color: #FFFFFF;
}
.hm .packages-content h5{
	height: 35px;
}
.hm .packages-content p {
    height: 165px !important;
}

.hm .packages-content {
        border-radius: 0 0 5px 5px;
        height: 330px !important;
    }
	.hm .packages-content small {
    font-size: 10px;
    font-weight: 600;
    color: black;
    display: block;
    min-height: 30px;   /* ensures consistent spacing */
}

}
/* our-package ============================================== */

/* select-package==================================== */
.select-package {
    /* background: url(../img/bg-2.png); */
    /* background-position: center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.png) center center no-repeat;
    background-size: cover;
}

.select-package select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
    padding: 0.7em 3em 0.7em 1em;
    /* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
    border: 1px solid #555;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.5);
    color: #5d5d5d;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
    display: inline-block;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, #7d7d7d 50%), linear-gradient(135deg, #7d7d7d 50%, rgba(0, 0, 0, 0) 50%), linear-gradient(to right, #ffffff, #ffffff), linear-gradient(to right, #555555, #555555);
    background-position: calc(100% - 21px) 50%, calc(100% - 13px) 50%, calc(100% - 3px) 50%, calc(100% - 2px) 50%;
    background-size: 8px 8px, 8px 8px, 36px calc(100% - 6px), 38px calc(100% - 4px);
    background-repeat: no-repeat;
    width: 400px;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .select-package select {
        padding-right: 3em;
    }
}

.select-package select::-ms-expand {
    display: none;
}

/* select-package==================================== */
