@import url("https://fonts.googleapis.com/css2?family=Jost:wght@500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("glightbox.min.css");
/*-- color style --*/
/*-- font style --*/
/*-- theme style --*/
/*-- media query --*/
* {
    outline: none;
}

html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

a {
    color: #008CFF;
}

    a:hover,
    a:active,
    a:focus {
        transition: all ease-in-out 0.3s;
        color: #068FFF;
        cursor: pointer;
    }

.dropdown-item.active,
.dropdown-item:active {
    background: #000000;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

html {
    font-size: 1rem;
}

body {
    font-family: "Jost", sans-serif;
    background-color: #ffffff;
}

a,
a:hover {
    text-decoration: none;
}

.theme-bg-primary {
    background-color: #ff3100;
}

.theme-bg-secondary {
    background-color: #000000;
}

.theme-bg-accent-one {
    background-color: #5D5D5D;
}

.theme-bg-accent-two {
    background-color: #9F9F9F;
}

.theme-bg-white {
    background-color: #ffffff;
}

.theme-text-white {
    color: #ffffff;
}

.theme-text-primary {
    color: #068FFF;
}

.theme-text-sudnewdark {
    color: #8a1538;
}

.theme-text-sudnew {
    color: #ff3100;
}

.theme-text-secondary {
    color: #000000;
}

.theme-text-accent-one {
    color: #5D5D5D;
}

.theme-text-accent-two {
    color: #9F9F9F;
}

.theme-text-accent-three {
    color: #DDDDDD;
}

.theme-text-accent-four {
    color: #EFFAFF;
}

.text-green {
    color: #00A45D;
}

.theme-box-shadow {
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
    text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.theme-border-radius {
    border-radius: 50px;
}

.min-w-150 {
    min-width: 150px;
}

.btn-shop {
    background-color: #ffffff;
    color: #068FFF;
    border-radius: 50px;
    min-width: 150px;
}

    .btn-shop:hover {
        background-color: #068FFF;
        color: #ffffff;
    }

.link-btn {
    background-color: #EFFAFF;
    color: #068FFF;
    border-radius: 50px;
    min-width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .link-btn:hover {
        background-color: #068FFF;
        color: #ffffff;
    }

/* pulseBig */
@keyframes pulseBig {
    0% {
        box-shadow: 0 0 0 0 #ffffff;
    }

    50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

.recomended-btn {
    background-color: #EFFAFF;
    color: #5D5D5D;
    border-radius: 50px;
    border: none;
}

    .recomended-btn:hover {
        background-color: #068FFF;
    }

.theme-btn-outline {
    background-color: #ffffff;
    color: #068FFF;
    border-radius: 50px;
    border: 1px solid #068FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    font-size: 0.8rem;
}

    .theme-btn-outline:hover {
        background-color: #068FFF;
        color: #ffffff;
    }

.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #000000;
    border-radius: 5px;
    color: #ffffff;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

    .scrollToTop.active {
        bottom: 30px;
        transform: translateY(0%);
    }

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000000;
}

.loading {
    position: absolute;
    width: 600px;
    height: 36px;
    left: 50%;
    top: 40%;
    margin-left: -300px;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
    z-index: 99;
}

    .loading div {
        position: absolute;
        width: 20px;
        height: 36px;
        opacity: 0;
        font-family: Helvetica, Arial, sans-serif;
        animation: move 2s linear infinite;
        -o-animation: move 2s linear infinite;
        -moz-animation: move 2s linear infinite;
        -webkit-animation: move 2s linear infinite;
        transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        color: #35C4F0;
    }

        .loading div:nth-child(2) {
            animation-delay: 0.2s;
            -o-animation-delay: 0.2s;
            -moz-animation-delay: 0.2s;
            -webkit-animation-delay: 0.2s;
        }

        .loading div:nth-child(3) {
            animation-delay: 0.4s;
            -o-animation-delay: 0.4s;
            -webkit-animation-delay: 0.4s;
            -webkit-animation-delay: 0.4s;
        }

        .loading div:nth-child(4) {
            animation-delay: 0.6s;
            -o-animation-delay: 0.6s;
            -moz-animation-delay: 0.6s;
            -webkit-animation-delay: 0.6s;
        }

        .loading div:nth-child(5) {
            animation-delay: 0.8s;
            -o-animation-delay: 0.8s;
            -moz-animation-delay: 0.8s;
            -webkit-animation-delay: 0.8s;
        }

        .loading div:nth-child(6) {
            animation-delay: 1s;
            -o-animation-delay: 1s;
            -moz-animation-delay: 1s;
            -webkit-animation-delay: 1s;
        }

        .loading div:nth-child(7) {
            animation-delay: 1.2s;
            -o-animation-delay: 1.2s;
            -moz-animation-delay: 1.2s;
            -webkit-animation-delay: 1.2s;
        }

@keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }

    35% {
        left: 41%;
        transform: rotate(0deg);
        opacity: 1;
    }

    65% {
        left: 59%;
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 100%;
        transform: rotate(-180deg);
        opacity: 0;
    }
}

.breadcrumb-link {
    padding-top: 35px;
}

    .breadcrumb-link .links a {
        font-size: 0.8rem;
        color: #ffffff;
        margin-right: 18px;
        display: inline-block;
        position: relative;
    }

        .breadcrumb-link .links a:hover {
            color: #068FFF;
        }

        .breadcrumb-link .links a:after {
            position: absolute;
            right: -14px;
            top: 0;
            content: "\f285";
            font-family: "bootstrap-icons";
        }

        .breadcrumb-link .links a i {
            margin-right: 5px;
            color: #068FFF;
        }

    .breadcrumb-link .links span {
        font-size: 0.8rem;
        color: #9F9F9F;
        display: inline-block;
    }

.breadcrumb {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 0;
}

    .breadcrumb:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(93, 93, 93, 0.5);
        z-index: -1;
    }

    .breadcrumb .head {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .breadcrumb .para {
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 0;
    }

.news-card .date-tags {
    bottom: 20px;
    left: -10px;
    z-index: 1;
    display: block;
    background: #00A45D;
    cursor: pointer;
    border-radius: 50px;
    overflow: hidden;
}

    .news-card .date-tags a {
        color: #ffffff;
        padding: 0.25rem 1rem;
        display: inline-block;
    }

.pagination li a.page-link {
    border: 0px solid #DDDDDD;
    border-radius: 50px;
    color: #068FFF;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    width: 3rem;
    height: 3rem;
    display: inline-block;
    margin-right: 10px;
}

    .pagination li a.page-link:hover {
        color: #ffffff;
        background: #068FFF;
        border-color: #9F9F9F;
    }

    .pagination li a.page-link:first-child {
        border-radius: 0;
        border-radius: 50px;
    }

    .pagination li a.page-link:last-child {
        border-radius: 0;
        border-radius: 50px;
    }

.login-app {
    list-style: none;
    display: flex;
    justify-content: center;
}

    .login-app li {
        padding: 1rem 0.5rem;
    }

        .login-app li a {
            display: inline-block;
            background: url(../images/icons/app-icon.png) no-repeat;
            width: 60px;
            height: 60px;
        }

        .login-app li .fb {
            background-position: 0 0;
        }

        .login-app li .go {
            background-position: 0 -72px;
        }

        .login-app li .in {
            background-position: 0 -148px;
        }

.head-wrapper {
    display: block;
    min-height: auto;
    position: relative;
    z-index: 2;
}

    .head-wrapper::after {
        content: "";
        position: absolute;
        display: block;
        background: #5D5D5D;
        opacity: 0.6;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: -1;
        display: none;
    }

.header {
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

    .header .page-menu li.active a {
        color: #068FFF;
    }

    .header .page-menu li a {
        color: #5D5D5D;
    }

        .header .page-menu li a.mein-link {
            padding: 1.5rem 1rem !important;
        }

@media screen and (max-width: 992px) {
    .header .page-menu li a.mein-link {
        padding: 1rem 2rem !important;
    }
}

.header .page-menu li a:hover {
    color: #068FFF;
}

.header .page-menu li a.active {
    color: #068FFF;
}

@media screen and (max-width: 992px) {
    .header .page-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.header .page-menu .user i {
    color: #ffffff;
}

.header .page-menu .user::after {
    content: "";
    display: none;
}

.header .page-menu .sub-menu {
    text-align: center;
}

    .header .page-menu .sub-menu li {
        display: inline-block;
    }

        .header .page-menu .sub-menu li a {
            padding: 0px 0.5rem;
        }

.header .menu-droup .navbar-nav .dropdown-menu {
    position: absolute;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
    .header .menu-droup {
        flex-direction: row;
        justify-content: space-between;
    }
}

.header .notification-drop {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header .notification-drop .item {
        padding: 20px;
        position: relative;
    }

        .header .notification-drop .item:hover {
            cursor: pointer;
        }

        .header .notification-drop .item i {
            font-size: 1.25rem;
        }

        .header .notification-drop .item .badge {
            background: #ff0000;
            color: #ffffff;
            font-size: 12px;
            position: absolute;
            top: 0;
            right: 0px;
            padding: 5px;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header .notification-drop .item ul {
            transform: translateY(100px);
            opacity: 0;
            transition: 0.3s;
            visibility: hidden;
            position: absolute;
            top: 100%;
            background: #ffffff;
            left: -200px;
            right: 0;
            z-index: 1;
            box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
            border-radius: 0.5rem;
        }

            .header .notification-drop .item ul li {
                font-size: 0.8rem;
                padding: 10px;
                border-bottom: 1px dashed #DDDDDD;
            }

                .header .notification-drop .item ul li:last-child {
                    border-bottom: none;
                }

                .header .notification-drop .item ul li:hover {
                    background: #068FFF;
                    color: #000000;
                }

        .header .notification-drop .item .active {
            transform: translateY(0px);
            transition: 0.3s;
            opacity: 1;
            visibility: visible;
        }

.search-engine {
    padding: 12rem 0 5rem 0;
    background-image: url(../images/section/banner-image.png);
    background-size: cover;
    min-height: auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    min-height: 820px;
}

    .search-engine.hotels {
        background-image: url(../images/section/banner-image02.png);
    }

    .search-engine.holidays {
        background-image: url(../images/section/banner-image03.png);
    }

@media screen and (max-width: 992px) {
    .search-engine {
        padding: 1rem 0;
        background-attachment: fixed;
    }
}

.search-engine:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    background: rgb(3, 146, 209);
    background: linear-gradient(180deg, rgba(3, 146, 209, 0.3281687675) 0%, rgba(0, 0, 0, 0.762342437) 100%);
}

.cust-tab li .nav-link,
.cust-tab li .nav-link.active {
    background-color: transparent;
    border: 0px solid transparent;
    color: #ffffff;
    position: relative;
}

    .cust-tab li .nav-link:hover,
    .cust-tab li .nav-link.active:hover {
        color: #068FFF;
    }

    .cust-tab li .nav-link.active:after {
        content: "";
        width: 40px;
        height: 1px;
        display: block;
        background-color: #ffffff;
        margin: 0 auto;
        position: absolute;
        bottom: 0px;
    }

.cust-pills .nav-item .nav-link {
    color: #ffffff;
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem 1.5rem 0rem;
}

@media screen and (max-width: 992px) {
    .cust-pills .nav-item .nav-link {
        padding: 0.5rem 0.5rem 1.5rem 0rem;
        font-size: 0.8rem;
    }
}

.cust-pills .nav-item .nav-link:hover {
    border-color: transparent;
    color: #068FFF;
}

.cust-pills .nav-item span {
    border: 1px solid #068FFF;
}

.cust-pills .nav-item .active span {
    background: #068FFF !important;
    border: 1px solid #068FFF;
    position: relative;
}

.search-pan {
    background: #ffffff;
    padding: 0.8rem;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .search-pan .dropdown-toggle::after {
        position: absolute;
        right: 10px;
        top: 50%;
    }

    .search-pan .dropdown .dropdown-menu {
        width: 100%;
        padding: 0px 0.5rem;
        border-radius: 0.5rem;
        /*-- Droup down Traveller --*/
    }

        .search-pan .dropdown .dropdown-menu .drop-rest li {
            border-bottom: 1px solid #DDDDDD;
            display: flex;
            padding: 1rem 0 1rem 0;
        }

            .search-pan .dropdown .dropdown-menu .drop-rest li span {
                font-size: 14px;
                font-weight: 500;
            }

            .search-pan .dropdown .dropdown-menu .drop-rest li .br {
                display: block;
                padding-top: 0px;
            }

            .search-pan .dropdown .dropdown-menu .drop-rest li .btn {
                background-color: #000000;
                color: #ffffff;
            }

                .search-pan .dropdown .dropdown-menu .drop-rest li .btn:hover {
                    background-color: #000000;
                }

        .search-pan .dropdown .dropdown-menu .plus-minus-input {
            align-items: center;
            width: 55%;
        }

@media screen and (max-width: 992px) {
    .search-pan .dropdown .dropdown-menu .plus-minus-input {
        width: 30%;
    }
}

@media screen and (max-width: 575px) {
    .search-pan .dropdown .dropdown-menu .plus-minus-input {
        width: 50%;
    }
}

.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button {
    background-color: #ffffff;
    border: 1px solid #068FFF;
    color: #068FFF;
    border-radius: 0.2rem;
}

    .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button:hover {
        background-color: #068FFF;
        color: #ffffff;
    }

.search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field {
    text-align: center;
    width: 40%;
    background: transparent;
    border: 0;
    margin-left: 0px !important;
}

    .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-inner-spin-button, .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-outer-spin-button {
        -webkit-appearance: none;
        appearance: none;
    }

.search-pan .form-group {
    position: relative;
    border-right: 1px solid #DDDDDD;
    padding-left: 1rem;
}

@media screen and (max-width: 992px) {
    .search-pan .form-group {
        border-right: 0px solid #DDDDDD;
        border-bottom: 1px solid #dddddd;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.search-pan .input-group {
    color: inherit;
}

.search-pan .form-label {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: bold;
    color: #5D5D5D;
}

.search-pan .form-control {
    font-size: 0.8rem;
    color: #9F9F9F;
    padding: 0;
    border: 0px;
    text-decoration: none;
    border-radius: 50px;
    text-align: left;
}

.search-pan .dropdown-toggle::before {
    color: #9F9F9F;
    right: 0.8rem;
}

.btn-search {
    background-color: #068FFF;
    min-height: 48px;
    color: #ffffff;
    max-width: 175px;
    width: 100%;
    border-radius: 50px;
    border: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-search:before {
        width: 100%;
        height: 100%;
        content: "";
        margin: auto;
        position: absolute;
        top: 0;
        left: -100%;
        background: #000000;
        transition: all 0.2s;
        z-index: -1;
    }

    .btn-search:hover {
        color: #ffffff;
    }

        .btn-search:hover:before {
            top: 0;
            left: 0;
        }

.sector-add {
    font-size: 0.625rem;
    background-color: #EFFAFF;
    border-radius: 50px;
    color: #5D5D5D;
    padding: 0 10px;
}

.mode-switch {
    position: relative;
    font-size: 0.8rem;
}

    .mode-switch input[type=checkbox] {
        cursor: pointer;
        width: 50px;
        height: 25px;
        opacity: 0;
        position: absolute;
        top: 0;
        z-index: 1;
        margin: 0px;
    }

        .mode-switch input[type=checkbox]:checked + label.mode-switch-inner:after {
            content: attr(data-on);
            left: 80px;
            background: #068FFF;
        }

        .mode-switch input[type=checkbox]:checked + label.mode-switch-inner:before {
            content: attr(data-off);
            right: auto;
            left: 20px;
        }

    .mode-switch > label.mode-switch-inner {
        margin: 0px;
        width: 160px;
        height: 30px;
        background: #ffffff;
        border-radius: 50px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        display: block;
    }

        .mode-switch > label.mode-switch-inner:before {
            content: attr(data-on);
            position: absolute;
            top: 7px;
            right: 20px;
        }

        .mode-switch > label.mode-switch-inner:after {
            content: attr(data-off);
            width: 80px;
            height: 30px;
            line-height: 30px;
            background: #068FFF;
            border-radius: 50px;
            position: absolute;
            left: 0px;
            top: 0px;
            text-align: center;
            transition: all 0.3s ease;
        }

.subs-form {
    position: relative;
    min-height: 60px;
    border-radius: 50px;
    background-color: #ffffff;
    padding: 0.5rem;
}

    .subs-form input {
        border-radius: 50px;
        font-size: 0.875rem;
    }

    .subs-form button {
        border-radius: 50px !important;
        min-width: 150px;
        font-size: 0.875rem;
    }

.testimonials {
    position: relative;
    background-color: rgba(6, 143, 255, 0.05);
}

    .testimonials .client-con {
        text-align: justify;
        background-color: #ffffff;
        border-radius: 50px;
    }

.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

    .footer .fl-menu li {
        list-style: none;
        line-height: 34px;
    }

        .footer .fl-menu li a {
            color: #9F9F9F;
            position: relative;
            font-size: 0.875rem;
        }

            .footer .fl-menu li a:hover {
                color: #068FFF;
            }

    .footer .footer-link li {
        line-height: 2.5rem;
        padding: 0 1rem;
    }

        .footer .footer-link li a {
            color: #9F9F9F;
            padding: 0 0 0.5rem 0;
            font-size: 0.8rem;
        }

            .footer .footer-link li a:hover {
                color: #068FFF;
            }

    .footer .social a,
    .footer .social .botom-link {
        color: #5D5D5D;
    }

        .footer .social a:hover,
        .footer .social .botom-link:hover {
            color: #068FFF;
        }

.recommended {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

    .recommended .card-wrap {
        background-color: #ffffff;
        position: relative;
    }

        .recommended .card-wrap .con-img-wrap {
            position: relative;
            border-radius: 50px;
            overflow: hidden;
        }

            .recommended .card-wrap .con-img-wrap img {
                transition: all 0.2s ease;
            }

                .recommended .card-wrap .con-img-wrap img:hover {
                    transform: scale(1.1);
                }

            .recommended .card-wrap .con-img-wrap .offer-tag {
                background-color: #068FFF;
                border-radius: 0 0 50% 50%;
                width: 50px;
                height: 45px;
                display: block;
                position: absolute;
                left: 50px;
                top: 0px;
                text-align: center;
                line-height: normal;
                color: #000000;
                font-size: 0.8rem;
            }

            .recommended .card-wrap .con-img-wrap .wishlist-tag {
                position: absolute;
                right: 20px;
                top: 20px;
                z-index: 2;
                display: flex;
                width: 30px;
                height: 30px;
                background: #ffffff;
                justify-content: center;
                align-items: center;
                line-height: normal;
                border-radius: 100%;
                color: #000000;
                cursor: pointer;
            }


                .recommended .card-wrap .con-img-wrap .wishlist-tag:hover {
                    background: #068FFF;
                    color: #ffffff;
                }

        .recommended .card-wrap .con-wrap .rating-cover {
            color: #9F9F9F;
        }

            .recommended .card-wrap .con-wrap .rating-cover i {
                color: #ffc107;
            }

        .recommended .card-wrap .con-wrap .timing {
            color: #9F9F9F;
        }

            .recommended .card-wrap .con-wrap .timing i {
                color: #068FFF;
            }

.special-offers {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

    .special-offers .box {
        position: relative;
        max-height: 450px;
        height: 450px;
        background-color: #5D5D5D;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        border-radius: 50px;
        padding-left: 3rem;
    }

        .special-offers .box::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgb(3, 146, 209);
            background: linear-gradient(180deg, rgba(3, 146, 209, 0.3281687675) 0%, rgba(0, 0, 0, 0.762342437) 100%);
            z-index: 0;
        }

        .special-offers .box .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            z-index: 1;
        }

    .special-offers .product01 {
        background-image: url(../images/section/product-banner01.png);
    }

    .special-offers .product02 {
        background-image: url(../images/section/product-banner02.png);
    }

.destinations {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

    .destinations .destination-pill .nav-item .nav-link.active {
        background-color: #EFFAFF;
        color: #000000;
        border-radius: 50px;
    }

    .destinations .destination-pill .nav-item .nav-link {
        color: #000000;
    }

/*-- flight experience css --*/
.experience {
    align-items: center;
    justify-content: center;
    display: flex;
    padding-bottom: 3rem;
}

    .experience .wrap {
        position: relative;
        background-color: rgba(6, 143, 255, 0.1);
        background-image: url(../images/section/bg-picture.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
        padding: 6rem;
        background-position: center center;
        background-attachment: fixed;
        border-radius: 50px;
        overflow: hidden;
    }

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

    .experience .group {
        display: flex;
        min-height: 120px;
        border-radius: 50px;
        justify-content: center;
        background-position: center center;
    }

    .experience .video-icon {
        border-radius: 50%;
        background-color: #068FFF;
        color: #ffffff;
        line-height: 60px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulseBig infinite 4s linear;
    }

        .experience .video-icon:hover {
            background-color: #000000;
        }

            .experience .video-icon:hover i {
                color: #068FFF;
            }

        .experience .video-icon i {
            color: #ffffff;
            font-size: 2rem;
        }

.action {
    width: 3.75rem;
    height: 3.75rem;
    padding: 1.4rem;
    justify-content: center;
    align-items: center;
    display: flex;
    animation: pulseBig infinite 4s linear;
}

    .action:hover {
        background-color: #000000;
    }

.popular-routes {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

    .popular-routes .flightLine {
        position: relative;
        width: 100%;
        height: 1px;
        background-color: #DDDDDD;
    }

        .popular-routes .flightLine > * {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 9px;
            height: 9px;
            border: 1px solid #DDDDDD;
            border-radius: 100%;
        }

        .popular-routes .flightLine > :first-child {
            left: 0;
            background-color: #DDDDDD;
        }

        .popular-routes .flightLine > :nth-child(2) {
            right: 0;
            background-color: #DDDDDD;
        }

.recommended .card-wrap .con-img-wrap .offer-tag-about {
    background-color: #068FFF;
    border-radius: 0 0 20px 20px;
    width: 250px;
    height: 45px;
    display: block;
    position: absolute;
    left: 50px;
    top: 0px;
    text-align: center;
    line-height: normal;
    color: #000000;
    font-size: 0.8rem;
    font-size: 17px;
    padding-top: 10px;
}

/*# sourceMappingURL=main.css.map */







/*Custom css by Sudhakar */

/*start  destination index css*/
.destination-hero {
    background: linear-gradient(rgba(255,255,255,0.60), rgba(255,255,255,0.60)), url('/assets/images/recommended/bg.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

    .destination-hero h1 {
        font-size: 32px;
        font-weight: 700;
        color: #8a1538;
        margin-bottom: 8px;
    }

    .destination-hero p {
        font-size: 16px;
        color: #333;
        margin: 0;
    }

@media (max-width: 576px) {
    .destination-hero {
        height: 180px;
    }

        .destination-hero h1 {
            font-size: 24px;
        }

        .destination-hero p {
            font-size: 14px;
        }
}

.destination-grid {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.destination-image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.destination-image {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    .destination-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
    }

.destination-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    text-align: center;
}

    .destination-image-overlay h5 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .destination-image-overlay p {
        font-size: 0.9rem;
        opacity: 0.8;
    }

@media (max-width: 1200px) {
    .destination-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .destination-image {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .destination-image {
        width: 100%;
        height: 180px;
    }
}


/*destination index css End*/

/*Temple index css Start*/

.temple-header {
    background: linear-gradient(rgba(255,255,255,0.60), rgba(255,255,255,0.60)), url('/assets/images/recommended/bg.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

    .temple-header h1 {
        font-size: 32px;
        font-weight: 700;
        color: #8a1538;
        margin-bottom: 8px;
    }

    .temple-header p {
        font-size: 16px;
        color: #333;
        margin: 0;
    }

@media (max-width: 576px) {
    .temple-header {
        height: 180px;
    }

        .temple-header h1 {
            font-size: 24px;
        }

        .temple-header p {
            font-size: 14px;
        }
}

.temple-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .temple-card:hover {
        transform: translateY(-6px);
    }

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

    .carousel img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-bottom: 1px solid #ddd;
        flex: 0 0 100%;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    z-index: 1;
    cursor: pointer;
}

    .carousel-btn.left {
        left: 0;
    }

    .carousel-btn.right {
        right: 0;
    }

.temple-info {
    padding: 20px;
}

    .temple-info h3 {
        font-size: 22px;
        font-weight: 600;
        color: #8a1538;
    }

    .temple-info p {
        font-size: 14px;
        color: #555;
        height: 48px;
        overflow: hidden;
    }

.temple-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.temple-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    color: #333;
}

    .temple-meta-item i {
        color: #8a1538;
        min-width: 16px;
    }

.temple-btns {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

    .temple-btns a {
        flex: 1;
        padding: 10px 12px;
        border-radius: 6px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-weight: 600;
    }

.view-hotels-btn {
    background-color: #8a1538;
}

.donate-btn {
    background-color: #17c6aa;
}

@media (max-width: 768px) {
    .temple-meta {
        grid-template-columns: 1fr;
    }
}


/*Temple index css End*/



/*About us Index Start*/

.custom-img-size {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* General Theme Colors */
.theme-text-primary {
    color: #8a1538;
}

.theme-text-secondary {
    color: #ff3100;
}

.theme-text-accent-one {
    color: #6c757d;
}

.theme-btn {
    background-color: #ff3100;
    color: white;
    border-radius: 8px;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
}

    .theme-btn:hover {
        background-color: #8a1538;
    }

.theme-bg-light {
    background-color: #f9f9f9;
}

.theme-border-radius {
    border-radius: 15px;
}

.img-effect {
    overflow: hidden;
}

.offer-tag-about {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff3100;
    color: white;
    padding: 10px;
    font-size: 18px;
    border-radius: 8px;
}

.how-it-works .p-3 {
    border: 2px solid #8a1538;
}

.how-it-works i {
    color: #ff3100;
}

.how-it-works p {
    color: #6c757d;
}








/*Animation By Sudhakar*/


/*mouse hover animation*/
.flower-hoversud {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    animation: fallDown 4s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

@keyframes fallDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}


/*index page flower float animation*/
 .flowerindex-animationsud {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.flower-indexsud {
    position: absolute;
    top: -50px;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: fall linear infinite;
    opacity: 0.9;
}

/* Falling animation */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

