/*** Spinner Start ***/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

.playfair-display-sc-regular {
    font-family: "Playfair Display SC", serif;
    font-weight: 400;
    font-style: normal;
}

.monoton-regular {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.caveat {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
    --primary: #24BDC7;
    --secondary: #3011BC;
    --yellow: #FFD54F;
    --text: #191920;
    --white: #FFFFFF
}

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

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

.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;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--primary) !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 ************************ */

.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: 77px;
}

.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 ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.875), rgba(0, 0, 0, 0.829)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-c .hero-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .header-c .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .header-c .hero-title {
        font-size: 2.2rem;
    }
}

.header-c .hero-title .typed {
    color: var(--primary);
    position: relative;
}

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


/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--primary) !important;
}

.about-left {
    position: relative;
    margin-right: 40px;
}

.about-left::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 80%;
    border-radius: 200px;
    border: 10px double var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-img img {
    border-radius: 200px;
}

.about-img .img-2 {
    margin-top: 90px;
}

.about-experience {
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    line-height: 1.2;
    border-radius: 100px;
    text-align: center;
    border: 10px solid var(--white);
}

.about-experience h5 {
    color: var(--white);
    font-size: 40px;
    margin-top: 15px;
}

.about-experience p {
    color: var(--white);
    font-weight: 600;
}

/*** About End ***/


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

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

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

.packages .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;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

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

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

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
    height: 240px;
}

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

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.packages-content {
    height: 213px;
    border: 1px solid var(--primary);
    background: #f7f7f794;
}

@media(max-width:576px) {
    .packages-content {
        height: 260px;
    }
}

@media(max-width:768px) {
    .packages-content {
        height: 245px;
    }
}

.packages .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.ExploreTour .tab-class .nav-item a.active {
    background: var(--primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--primary);
}

/*** Explore Tour End ***/

/* 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: 100%;
    width: 100%;
}

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

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--white) !important;
    color: var(--primary) !important;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    /* background: var(--primary); */
    background: linear-gradient(rgba(61, 65, 134, 0.795), rgba(76, 112, 173, 0.63)), url(../img/footer-bg1.png) center center no-repeat;
    background-size: cover;
}

.footer .navbar-brand img {
    width: 237px;
    /* height: 100%; */
}

.footer .footer-item a {
    line-height: 30px;
    color: #FFFFFF;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    /* color: var(--primary); */
}

.footer .link {
    border: 1px solid var(--primary);
    padding: 10px 20px 10px 20px;
}

/*** Footer End ***/

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

/*** copyright end ***/


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

/*** Membership ***/
.membership-item {
    padding: 30px 20px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.membership-item .btn-outline-light {
    border: 2px solid var(--primary) !important;
    color: rgb(255, 255, 255) !important;
    background: transparent;
}




/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-gallery {
    position: relative;
    height: 100%;
}

.home-about .image-gallery .primary-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-about .image-gallery .primary-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .home-about .image-gallery .primary-image img {
        height: 300px;
    }
}

.home-about .image-gallery .secondary-image {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .home-about .image-gallery .secondary-image {
        display: none;
    }
}

.home-about .image-gallery .secondary-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-about .content {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .home-about .content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.home-about .content .section-header {
    margin-bottom: 2rem;
}

.home-about .content .section-header .section-label {
    display: inline-block;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.home-about .content .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .home-about .content .section-header h2 {
        font-size: 1.8rem;
    }
}

.home-about .content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--text), transparent 25%);
}

.home-about .content .achievements-list {
    margin-bottom: 5px;
}

.home-about .content .achievements-list .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-about .content .achievements-list .achievement-item:last-child {
    margin-bottom: 0;
}

.home-about .content .achievements-list .achievement-item .achievement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .content .achievements-list .achievement-item .achievement-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.home-about .content .achievements-list .achievement-item .achievement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.home-about .content .achievements-list .achievement-item .achievement-content p {
    font-size: 0.9rem;
    margin: 0;
    color: color-mix(in srgb, var(--text), transparent 40%);
}

.home-about .content .action-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .home-about .content .action-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.home-about .content .action-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary), black 15%));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-about .content .action-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.home-about .content .action-section .btn-cta:hover i {
    transform: translateX(3px);
}

.home-about .content .action-section .btn-cta i {
    transition: transform 0.3s ease;
}

.home-about .content .action-section .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-about .content .action-section .contact-info .contact-icon {
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: 2px solid color-mix(in srgb, var(--primary), transparent 40%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .content .action-section .contact-info .contact-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.home-about .content .action-section .contact-info .contact-details {
    display: flex;
    flex-direction: column;
}

.home-about .content .action-section .contact-info .contact-details span {
    font-size: 0.85rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--primary), transparent 10%);
    margin-bottom: 0.1rem;
}

.home-about .content .action-section .contact-info .contact-details a {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: 700;
}

.home-about .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
}

.home-about .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--primary) !important;
}


/* chardham ===================================================== */
.chardham .card {
    border-radius: 20px;
}

.chardham .card .card-image img {
    /* border-radius: 80px 80px 0 0; */
}

/* chardham ===================================================== */



/* {{--  book now ==========================================  --}} */

.cta-area {
    position: relative;
}

.cta-content {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    padding: 24px 30px;
    text-align: center;
    margin-bottom: -115px;
    z-index: 1;
}

.cta-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/05.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    opacity: .6;
    z-index: -1;
}

.cta-content .cta-text h1 {
    color: var(--color-dark);
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}

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

.theme-btn {
    font-size: 16px;
    color: var(--white) !important;
    padding: 10px 18px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--primary) !important;
    box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
    z-index: 1;
}

.cta-img img {
    border-radius: 200px;
}

@media(max-width:576px) {
    .cta-img img {
        border-radius: 50px;
        height: 360px;
    }
}

/* {{--  book now ==========================================  --}} */


/* {{-- easy-step ==============================================  --}} */


.choose-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    position: relative;
    padding: 20px;
    border-radius: 50px 100px 100px 0;
    margin-bottom: 30px;
    transition: var(--transition);
}

.choose-item .count {
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    line-height: 1;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.choose-item .icon {
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: center;
    background: var(--primary);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-item .icon i {
    font-size: 35px;
    filter: brightness(0) invert(1);

}

.choose-item .content {
    flex: 1;
}

.choose-item .content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.choose-img {
    text-align: right;
    position: relative;
}

.choose-img .shape {
    position: absolute;
    top: -15px;
    left: 70px;
    width: 35%;
}

.choose-img .img-1 {
    width: 58%;
    border-radius: 200px;
}

.choose-img .img-2 {
    position: absolute;
    left: 50px;
    bottom: 0px;
    width: 50%;
    border-radius: 200px;
    border: 10px solid var(--white);
}


@media(max-width:576px) {
    .choose-img .img-2 {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 50%;
        border-radius: 200px;
        border: 10px solid var(--white);
    }
}

@media(max-width:768px) {
    .choose-img .img-2 {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 50%;
        border-radius: 200px;
        border: 10px solid var(--white);
    }
}

/* {{-- easy-step ==============================================  --}} */


/*** Spinner ***/
#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: "Playfair Display SC", serif;
    letter-spacing: 10px;
    stroke: #ffffff;
    font-size: 70px;
    font-weight: 600;
    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 ***/
#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;
}


/**  home banner ***/
.home-banner-one {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url(../img/home1-offer-banner-bg.jpg);
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-banner-one .content h1 {
    font-size: 60px;
    font-weight: 600;
}

@media(max-width:576px) {
    .home-banner-one .content h1 {
        font-size: 35px;
        font-weight: 600;
    }
}

.home-banner-one .content h2 {
    font-family: "Caveat", cursive;
}

.home-banner-one .content p {
    font-size: 18px;
}

/**  home banner ***/


/*** testimonial Start ***/

.bg-testimonial {
    background: url(../img/testimonial-bg.jpg) top center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: #00000069;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

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

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .border-5 {
    border-color: var(--white) !important;
}

/* testimonial======================================================= */
.book-now input {
    border-radius: 0;
}

.book-now select {
    border-radius: 0;
}

.book-now {
    background-image: linear-gradient(180deg, rgba(18, 17, 17, 0.605) 0%, rgba(0, 0, 0, 0.769) 100%), url(../img/cta-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
}

.book-now .card {
    background: url(../img/05.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
    border: 4px solid #FFFFFF;
}

/*** Project ***/
.project-item img {
    transition: .5s;
}

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

.project-overlay {
    position: absolute;
    padding: 12px;
    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;
}


