@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #E7B755;
    --secondary-color: #0B0B0B;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
    background: var(--secondary-color);
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

p, span {
    font-family: "Open Sans", sans-serif;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All Main Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: linear-gradient(360deg, #F0C461, #CB9F3C);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .infocont a {
        color: var(--secondary-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--white-color);
        }

        .infocont a > i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}

    .social_icons i {
        color: var(--secondary-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--white-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--black-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.header-sticky {
    width: 100%;
    position: relative;
    background: var(--black-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header-sticky.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--black-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.5s ease;
    }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    color: var(--black-color);
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background: #ffffff;
        color: #000000;
    }

.navbar-expand-lg {
    padding: 10px 0;
    background: var(--black-color);
}

    .navbar-expand-lg .logo {
        width: 150px;
        border-radius: 10px;
    }

    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 30px;
    }

.navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    color: var(--secondary-color) !important;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    color: var(--secondary-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}

    .header-Btn:hover {
        color: #000;
        background: var(--white-color);
    }

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 20px;
}
/* header css */
/* hero section css start */
.hero-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url(../images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

    .hero-section::after {
        content: "";
        width: 500px;
        height: 100%;
        background: linear-gradient(-90deg, #F0C461, #CB9F3C);
        position: absolute;
        top: 0;
        right: 0px;
        bottom: 0;
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    }

    .hero-section::before {
        content: "";
        width: 500px;
        height: 100%;
        background: linear-gradient(90deg, #F0C461, #CB9F3C);
        position: absolute;
        top: 0;
        left: 0px;
        bottom: 0;
        clip-path: polygon(0 0, 72% 0, 100% 100%, 24% 100%);
    }

.hero-section-main {
    width: 100%;
}

.hero-content {
    width: 100%;
    padding: 10px;
    text-align: center;
}

    .hero-content h1 {
        width: fit-content;
        padding: 10px 40px;
        background: linear-gradient(90deg, #F0C461, #CB9F3C);
        margin: 0 auto;
        font-size: 20px;
        color: var(--secondary-color);
        font-weight: 700;
        border-radius: 10px;
    }

    .hero-content h2 {
        font-size: 62px;
        color: var(--white-color);
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 20px;
    }

.hero-booking-form {
    width: 100%;
    padding: 20px;
    background: #0b0b0bbd;
    position: relative;
    z-index: 1;
    border: 2px solid var(--white-color);
    border-radius: 10px;
}

    .hero-booking-form h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 20px;
    }

.custom-inp-div {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.custom-input {
    width: 100%;
    padding: 12px 52px 12px 20px;
    border: 2px solid var(--white-color);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 10;
}

    .custom-input option {
        color: var(--secondary-color);
    }

    .custom-input:focus {
        border: 2px solid var(--white-color);
        outline: 2px solid var(--white-color);
    }

    .custom-input::placeholder {
        color: var(--white-color);
    }

.custom-inp-div i {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--primary-color);
    padding: 13px 16px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-head-Btn {
    width: 100%;
    border: none;
    padding: 12px !important;
    text-align: center;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    color: var(--secondary-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .custom-head-Btn:hover {
        color: #000;
        background: var(--white-color);
    }
/* hero section css end */
/* about section css start */
.about-section {
    width: 100%;
    padding: 40px 0;
}

    .about-section h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 40px;
    }

.left-content {
    width: 100%;
    padding: 20px 0;
}

    .left-content p {
        color: var(--white-color);
    }

    .left-content h3 {
        color: var(--white-color);
        margin: 10px 0;
        font-weight: 700;
        font-size: 26px;
    }

    .left-content h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 18px;
    }

    .left-content .second-p {
        margin-bottom: 10px;
    }

.right-content {
    position: relative;
}

    .right-content::before {
        content: '';
        background-color: transparent;
        border: 3px solid var(--primary-color);
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: -20px;
        left: 20px;
        bottom: 20px;
        z-index: 1;
    }

    .right-content img {
        border-radius: 10px;
    }

.about-Btn {
    border: none;
    padding: 12px 40px !important;
    text-align: center;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    color: var(--secondary-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        color: #000;
        background: var(--white-color);
    }
/* about section css end */
/* services section css start */
.sec-services {
    width: 100%;
    padding: 40px 0;
}

    .sec-services h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 40px;
    }

    .sec-services .tab-box {
        margin-bottom: 30px;
    }

        .sec-services .tab-box .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-services .tab-box .nav .nav-item {
                width: 16.5%;
            }

                .sec-services .tab-box .nav .nav-item .nav-link {
                    width: 100%;
                    background-color: #fff;
                    border: 2px solid var(--primary-color);
                    padding: 25px 10px;
                    font-size: 18px;
                    color: #000000;
                    font-weight: 600;
                    border-radius: 5px;
                    transition: 0.5s;
                }

                    .sec-services .tab-box .nav .nav-item .nav-link.active {
                        background: linear-gradient(-90deg, #F0C461, #CB9F3C);
                        color: #000000;
                    }

                    .sec-services .tab-box .nav .nav-item .nav-link:hover {
                        background: linear-gradient(-90deg, #F0C461, #CB9F3C);
                        color: #000000;
                    }

                    .sec-services .tab-box .nav .nav-item .nav-link .icon-box {
                        margin-bottom: 10px;
                    }

                        .sec-services .tab-box .nav .nav-item .nav-link .icon-box i {
                            font-size: 30px;
                        }

    .sec-services .content-box {
        margin-top: 20px;
    }

        .sec-services .content-box .text-box h2 {
            font-size: 40px;
            color: var(--white-color);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .sec-services .content-box .text-box .para {
            font-weight: 300;
            padding: 7px 0;
            font-size: 15px;
            color: var(--white-color);
        }

        .sec-services .content-box .img-box img {
            border-radius: 10px;
            border: 4px solid var(--primary-color);
        }
/* services section css end */
/* app section css start */
.sec-app {
    padding: 40px 0;
    position: relative;
    background: #2d2d2d;
}

    .sec-app .sec-title {
        padding: 0 0 50px;
    }

        .sec-app .sec-title h3 {
            font-size: 20px;
            color: var(--secondary-color);
            padding: 7px 20px;
            background-color: var(--primary-color);
            width: fit-content;
            border-radius: 10px;
            font-weight: 600;
        }

        .sec-app .sec-title h2 {
            font-size: 30px;
            color: #ffffff;
            padding: 7px 0 0;
            font-weight: 700;
            line-height: 40px;
        }

        .sec-app .sec-title .para {
            color: #ffffff;
            font-size: 16px;
            padding: 7px 0 0;
            letter-spacing: 1px;
        }

    .sec-app .app-link h4 {
        font-size: 20px;
        color: var(--primary-color);
        font-weight: 700;
    }

    .sec-app .app-link ul {
        display: flex;
        padding-top: 12px;
    }

        .sec-app .app-link ul li {
            border: 3px solid var(--primary-color);
            border-radius: 11px;
            margin: 0 5px 0 0;
        }

    .sec-app .content-box {
        position: relative;
        padding-top: 40px;
    }

        .sec-app .content-box .img-box {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

            .sec-app .content-box .img-box img {
                height: 550px;
                width: 100%;
                object-fit: contain;
            }

        .sec-app .content-box .app-detail-box {
            position: relative;
            background: var(--primary-color);
            padding: 8% 10%;
            border-radius: 20px;
            margin-bottom: 25px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 34px;
                color: var(--secondary-color);
                font-weight: 700;
                padding-bottom: 7px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 22px;
                color: var(--secondary-color);
                font-weight: 600;
            }
/* app section css end */
/* fleets section css start */
.sec-tours-pkg {
    width: 100%;
    padding: 40px 0;
}

    .sec-tours-pkg .sec-title {
        width: 100%;
    }

        .sec-tours-pkg .sec-title h3 {
            font-size: 52px;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 40px;
        }

        .sec-tours-pkg .sec-title h2 {
            font-size: 52px;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 40px;
            text-align: end;
        }

    .sec-tours-pkg .tour-box {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: auto;
        margin-bottom: 20px;
        border: 4px solid var(--primary-color);
    }

        .sec-tours-pkg .tour-box .img-box img {
            height: 280px;
            width: 100%;
            object-fit: cover;
        }

        .sec-tours-pkg .tour-box .detail-box {
            position: absolute;
            width: 90%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--secondary-color);
            left: 50%;
            transform: translateX(-50%);
            padding: 10px 15px;
            border-radius: 10px;
            margin-top: -28px;
        }

            .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
                font-size: 15px;
                color: var(--white-color);
            }

                .sec-tours-pkg .tour-box .detail-box .box-1 h3 i {
                    padding-right: 5px;
                }

            .sec-tours-pkg .tour-box .detail-box .box-2 ul {
                display: flex;
                align-items: center;
            }

                .sec-tours-pkg .tour-box .detail-box .box-2 ul li {
                    padding: 0 6px;
                }

                    .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
                        color: var(--white-color);
                        font-size: 15px;
                    }

                        .sec-tours-pkg .tour-box .detail-box .box-2 ul li a i {
                            padding-right: 5px;
                        }

        .sec-tours-pkg .tour-box .content-box {
            padding: 30px 25px 20px;
        }

            .sec-tours-pkg .tour-box .content-box h4 {
                color: var(--secondary-color);
                font-size: 22px;
                line-height: 30px;
                font-weight: 700;
                padding-bottom: 3px;
            }

            .sec-tours-pkg .tour-box .content-box .para {
                padding: 12px 0;
                border-top: 1px solid var(--secondary-color);
                border-bottom: 1px solid var(--secondary-color);
                font-size: 17px;
                line-height: 21px;
                font-weight: 300;
                color: var(--secondary-color);
            }

            .sec-tours-pkg .tour-box .content-box .lower-box {
                padding: 10px 0px 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
                    font-weight: 600;
                    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
                    border-radius: 5px;
                    padding: 10px 22px;
                    color: var(--secondary-color);
                    transition: 0.5s;
                    font-size: 16px;
                    width: 100%;
                    font-family: "Poppins", sans-serif;
                    text-align: center;
                }

                    .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn:hover {
                        background: var(--secondary-color);
                        color: var(--white-color);
                    }
/* fleets section css end */
/* contact section css start */
.sec-contact {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/banner-2.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 120px 0;
}

    .sec-contact .contact-box {
        padding: 35px 30px;
        border: 3px solid var(--primary-color);
        border-radius: 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        background: #00000069;
    }

        .sec-contact .contact-box h4 {
            font-size: 30px;
            color: #ffffff;
            font-weight: 700;
        }

        .sec-contact .contact-box .para {
            padding: 7px 0;
            font-size: 18px;
            font-weight: 300;
            color: #fff;
        }

        .sec-contact .contact-box h6 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 7px;
            color: #fff;
        }

            .sec-contact .contact-box h6 a {
                color: var(--primary-color);
                font-weight: 500;
            }

        .sec-contact .contact-box .input-box {
            padding: 10px 0;
        }

            .sec-contact .contact-box .input-box .c-input {
                background-color: transparent;
                border: 3px solid var(--primary-color);
                padding: 10px 15px;
                font-size: 16px;
                color: #ffffff;
                border-radius: 0;
            }

                .sec-contact .contact-box .input-box .c-input::placeholder {
                    color: var(--white-color);
                }

                .sec-contact .contact-box .input-box .c-input:focus {
                    border: 3px solid var(--primary-color);
                    outline: none;
                }

        .sec-contact .contact-box .submit-btn {
            margin-top: 10px;
        }

            .sec-contact .contact-box .submit-btn a {
                background: linear-gradient(-90deg, #F0C461, #CB9F3C);
                width: 100%;
                text-align: center;
                padding: 10px;
                font-size: 16px;
                color: var(--secondary-color);
                font-family: "Poppins", sans-serif;
                font-weight: 600;
                transition: 0.3s;
            }

                .sec-contact .contact-box .submit-btn a:hover {
                    background: var(--white-color);
                }
/* contact section css end */
/* footer section css start */
.footer-bg {
    padding: 20px 0 0;
}

    .footer-bg .footer-middle {
        border-bottom: 1px solid var(--primary-color);
        padding: 30px 0 30px;
    }

.footer-logo {
    width: 200px;
}

.footer-bg .footer-middle h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    /* margin-top: 60px; */
    text-transform: uppercase;
}

.footer-bg .footer-middle .footer-list {
    margin-top: 15px;
    margin-bottom: 20px;
}

    .footer-bg .footer-middle .footer-list li {
        margin-bottom: 10px;
    }

        .footer-bg .footer-middle .footer-list li a {
            font-weight: 500;
            font-size: 16px;
            color: #fff;
            transition: 0.5s;
            display: flex;
            align-items: flex-start;
            gap: 5px;
        }

            .footer-bg .footer-middle .footer-list li a i {
                margin-top: 5px;
            }

.footer-bg .footer-lower {
    text-align: center;
    padding: 20px 0;
}

    .footer-bg .footer-lower .para {
        font-weight: 500;
        font-size: 14px;
        color: #ffffff;
    }
/* footer section css end */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: linear-gradient(-90deg, #F0C461, #CB9F3C);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}
/* inner pages banner css */
/* inner services page css */
.services-page .adjust-spcing .text-box {
    width: 100%;
    height: auto;
}

.services-page .adjust-spcing {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

    .services-page .adjust-spcing .text-box h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .services-page .adjust-spcing .text-box p {
        color: var(--white-color);
        padding: 5px 0;
    }

    .services-page .adjust-spcing .img-box {
        position: relative;
    }

        .services-page .adjust-spcing .img-box::before {
            content: '';
            background-color: transparent;
            border: 3px solid var(--primary-color);
            border-radius: 20px;
            position: absolute;
            top: -20px;
            right: -20px;
            left: 20px;
            bottom: 20px;
            z-index: 1;
        }

    .services-page .adjust-spcing .img-box-left::before {
        content: '';
        background-color: transparent;
        border: 3px solid var(--primary-color);
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: 20px;
        left: -20px;
        bottom: 20px;
        z-index: 1;
    }

    .services-page .adjust-spcing .img-box img {
        border-radius: 20px;
    }

    .services-page .adjust-spcing .img-box-left img {
        border-radius: 20px;
    }
/* inner services page css */

.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #ffffff;
                    }

    .sec-result .completed {
        background-color: #d09f43 !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #d4a845;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #d4a845;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #000000;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #000000;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/************************** All Main Css End **************************/

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .hero-section::before {
        width: 320px;
        clip-path: polygon(0 0, 72% 0, 100% 100%, 15% 100%);
    }

    .hero-section::after {
        width: 320px;
        clip-path: polygon(25% 0%, 100% 0%, 85% 100%, 0% 100%);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .hero-section::before {
        width: 320px;
        clip-path: polygon(0 0, 72% 0, 100% 100%, 15% 100%);
    }

    .hero-section::after {
        width: 320px;
        clip-path: polygon(25% 0%, 100% 0%, 85% 100%, 0% 100%);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-expand-lg .logo {
        width: 100px;
    }

    .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }

    .navbar-light .navbar-nav .nav-link.active {
        font-size: 12px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 12px;
    }

    .header-Btn {
        font-size: 12px;
    }

    .infocont a {
        font-size: 12px;
    }

    .social_icons i {
        font-size: 12px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-section::after {
        display: none;
    }

    .hero-content h1 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 34px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-booking-form h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .custom-input {
        font-size: 12px;
        padding: 12px 40px 12px 20px;
    }

    .custom-inp-div i {
        padding: 14px 17px;
        font-size: 12px;
    }

    .custom-inp-div {
        margin-bottom: 10px;
    }

    .custom-head-Btn {
        font-size: 12px;
    }

    .about-section {
        padding: 20px 0;
    }

        .about-section h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

    .left-content {
        padding: 10px 0;
    }

        .left-content p {
            font-size: 12px;
        }

        .left-content h3 {
            font-size: 20px;
        }

        .left-content h4 {
            font-size: 14px;
        }

    .about-Btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .sec-services {
        padding: 20px 0;
    }

        .sec-services h2 {
            font-size: 34px;
            margin-bottom: 20px;
        }

        .sec-services .tab-box {
            margin-bottom: 10px;
        }

            .sec-services .tab-box .nav .nav-item .nav-link .icon-box i {
                font-size: 20px;
            }

            .sec-services .tab-box .nav .nav-item .nav-link {
                padding: 15px 10px;
                font-size: 14px;
            }

        .sec-services .content-box .text-box h2 {
            font-size: 24px;
        }

        .sec-services .content-box .text-box .para {
            padding: 3px 0;
            font-size: 12px;
        }

    .sec-app {
        padding: 20px 0;
    }

        .sec-app .sec-title h3 {
            font-size: 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 20px;
            padding: 3px 0 0;
            line-height: 30px;
        }

        .sec-app .sec-title .para {
            font-size: 12px;
            padding: 3px 0 0;
            letter-spacing: 0px;
        }

        .sec-app .app-link h4 {
            font-size: 16px;
        }

        .sec-app .content-box .img-box img {
            height: 300px;
        }

        .sec-app .content-box .app-detail-box {
            padding: 5% 5%;
            border-radius: 10px;
            margin-bottom: 10px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 20px;
                padding-bottom: 3px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 16px;
            }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h3 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .sec-title h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .tour-box .img-box img {
            height: 180px;
        }

        .sec-tours-pkg .tour-box .detail-box {
            padding: 5px 8px;
            margin-top: -18px;
        }

            .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
                font-size: 12px;
            }

            .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
                font-size: 12px;
            }

        .sec-tours-pkg .tour-box .content-box {
            padding: 20px 10px 10px;
        }

            .sec-tours-pkg .tour-box .content-box h4 {
                font-size: 18px;
            }

            .sec-tours-pkg .tour-box .content-box .para {
                font-size: 12px;
                padding: 5px 0;
            }

            .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
                font-size: 12px;
            }

    .sec-contact {
        padding: 40px 0;
    }

        .sec-contact .contact-box {
            padding: 15px 15px;
        }

            .sec-contact .contact-box h4 {
                font-size: 24px;
            }

            .sec-contact .contact-box .para {
                padding: 3px 0;
                font-size: 14px;
            }

            .sec-contact .contact-box h6 {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .sec-contact .contact-box .input-box .c-input {
                padding: 6px 10px;
                font-size: 12px;
            }

            .sec-contact .contact-box .submit-btn a {
                font-size: 12px;
            }

    .footer-logo {
        width: 160px;
    }

    .footer-bg .footer-middle .footer-list li a {
        font-size: 14px;
    }

    .footer-bg .footer-lower {
        padding: 10px 0;
    }

        .footer-bg .footer-lower .para {
            font-size: 12px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
        opacity: 1;
    }

    .navbar-toggler {
        border: 1px solid #fff !important;
    }

    .navbar-expand-lg .logo {
        width: 120px;
    }

    .infocont a {
        font-size: 14px;
    }

    .social_icons {
        gap: 15px;
        margin-top: 3px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link.active {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        font-size: 14px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-section::after {
        display: none;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-content h1 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 34px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-booking-form h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .custom-input {
        padding: 8px 45px 8px 10px;
        font-size: 14px;
    }

    .custom-inp-div {
        margin-bottom: 10px;
    }

        .custom-inp-div i {
            padding: 10px 20px;
            font-size: 14px;
        }

    .custom-head-Btn {
        font-size: 14px;
    }

    .about-section {
        padding: 20px 0;
    }

        .about-section h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

    .left-content {
        padding: 10px 0;
    }

        .left-content p {
            font-size: 14px;
        }

        .left-content h3 {
            font-size: 20px;
        }

        .left-content h4 {
            font-size: 16px;
        }

    .about-Btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .right-content {
        margin-top: 40px;
    }

        .right-content::before {
            top: -10px;
            right: -10px;
        }

    .sec-services {
        padding: 20px 0;
    }

        .sec-services h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-services .tab-box {
            margin-bottom: 10px;
        }

            .sec-services .tab-box .nav .nav-item .nav-link {
                padding: 10px 0px;
                font-size: 12px;
            }

                .sec-services .tab-box .nav .nav-item .nav-link .icon-box i {
                    font-size: 16px;
                }

        .sec-services .content-box .text-box h2 {
            font-size: 26px;
        }

        .sec-services .content-box .text-box .para {
            padding: 3px 0;
            font-size: 14px;
        }

    .content-box {
        margin-top: 10px;
    }

        .content-box .img-box {
            margin-top: 0px;
        }

    .sec-app {
        padding: 20px 0;
    }

        .sec-app .sec-title h3 {
            font-size: 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 24px;
            padding: 3px 0 0;
            line-height: 35px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
            padding: 3px 0 0;
            letter-spacing: 0px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .app-link h4 {
            font-size: 16px;
        }

        .sec-app .app-link ul li a img {
            width: 150px;
        }

        .sec-app .content-box .app-detail-box {
            padding: 4% 4%;
            border-radius: 10px;
            margin-bottom: 10px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 24px;
                padding-bottom: 3px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 16px;
            }

        .sec-app .content-box .img-box img {
            height: 280px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h3 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .sec-title h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .tour-box .img-box img {
            height: 200px;
        }

        .sec-tours-pkg .tour-box {
            margin-bottom: 20px;
            height: auto;
        }

            .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
                font-size: 12px;
            }

            .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
                font-size: 12px;
            }

            .sec-tours-pkg .tour-box .content-box {
                padding: 10px 15px 10px;
            }

                .sec-tours-pkg .tour-box .content-box .para {
                    padding: 6px 0;
                    font-size: 14px;
                }

                .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
                    font-size: 14px;
                }

    .sec-contact {
        padding: 40px 0;
    }

        .sec-contact .contact-box {
            padding: 15px 15px;
        }

            .sec-contact .contact-box h4 {
                font-size: 24px;
            }

            .sec-contact .contact-box .para {
                padding: 3px 0;
                font-size: 14px;
            }

            .sec-contact .contact-box h6 {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .sec-contact .contact-box .input-box {
                padding: 5px 0;
            }

            .sec-contact .contact-box .submit-btn a {
                font-size: 14px;
            }

            .sec-contact .contact-box .input-box .c-input {
                font-size: 14px;
            }

    .footer-logo {
        width: 150px;
        margin-bottom: 30px;
    }

    .footer-bg .footer-middle .footer-list li a {
        font-size: 14px;
    }

    .footer-bg .footer-lower {
        padding: 10px 0;
    }

    .services-page .adjust-spcing {
        padding: 20px 0;
    }

        .services-page .adjust-spcing .text-box h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .services-page .adjust-spcing .text-box p {
            font-size: 14px;
        }

        .services-page .adjust-spcing .img-box {
            margin-top: 20px;
        }

            .services-page .adjust-spcing .img-box::before {
                top: -10px;
                right: -10px;
                left: 10px;
                bottom: 10px;
            }

        .services-page .adjust-spcing .img-box-left {
            margin-bottom: 20px;
        }

            .services-page .adjust-spcing .img-box-left::before {
                top: -10px;
                right: 10px;
                left: -10px;
                bottom: 10px;
            }

    .banner-section {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
        opacity: 1;
    }

    .navbar-toggler {
        border: 1px solid #fff !important;
    }

    .navbar-expand-lg .logo {
        width: 120px;
    }

    .infocont a {
        font-size: 14px;
    }

    .social_icons {
        gap: 15px;
        margin-top: 3px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link.active {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        font-size: 14px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-section::after {
        display: none;
    }

    .hero-section {
        padding: 20px 0;
    }

    .hero-content h1 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 34px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-booking-form h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .custom-input {
        padding: 8px 10px;
        font-size: 14px;
    }

    .custom-inp-div {
        margin-bottom: 10px;
    }

        .custom-inp-div i {
            padding: 10px 20px;
            font-size: 14px;
        }

    .custom-head-Btn {
        font-size: 14px;
    }

    .about-section {
        padding: 20px 0;
    }

        .about-section h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

    .left-content {
        padding: 10px 0;
    }

        .left-content p {
            font-size: 14px;
        }

        .left-content h3 {
            font-size: 20px;
        }

        .left-content h4 {
            font-size: 16px;
        }

    .about-Btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .right-content {
        margin-top: 40px;
    }

        .right-content::before {
            top: -10px;
            right: -10px;
        }

    .sec-services {
        padding: 20px 0;
    }

        .sec-services h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-services .tab-box {
            margin-bottom: 10px;
        }

            .sec-services .tab-box .nav .nav-item .nav-link {
                padding: 10px 0px;
                font-size: 12px;
            }

                .sec-services .tab-box .nav .nav-item .nav-link .icon-box i {
                    font-size: 16px;
                }

        .sec-services .content-box .text-box h2 {
            font-size: 26px;
        }

        .sec-services .content-box .text-box .para {
            padding: 3px 0;
            font-size: 14px;
        }

    .content-box {
        margin-top: 10px;
    }

        .content-box .img-box {
            margin-top: 0px;
        }

    .sec-app {
        padding: 20px 0;
    }

        .sec-app .sec-title h3 {
            font-size: 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 24px;
            padding: 3px 0 0;
            line-height: 35px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
            padding: 3px 0 0;
            letter-spacing: 0px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .app-link h4 {
            font-size: 16px;
        }

        .sec-app .app-link ul li a img {
            width: 150px;
        }

        .sec-app .content-box .app-detail-box {
            padding: 4% 4%;
            border-radius: 10px;
            margin-bottom: 10px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 24px;
                padding-bottom: 3px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 16px;
            }

        .sec-app .content-box .img-box img {
            height: 280px;
        }

    .sec-tours-pkg {
        padding: 20px 0;
    }

        .sec-tours-pkg .sec-title h3 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .sec-title h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-tours-pkg .tour-box .img-box img {
            height: 200px;
        }

        .sec-tours-pkg .tour-box {
            margin-bottom: 20px;
            height: auto;
        }

            .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
                font-size: 12px;
            }

            .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
                font-size: 12px;
            }

            .sec-tours-pkg .tour-box .content-box {
                padding: 10px 15px 10px;
            }

                .sec-tours-pkg .tour-box .content-box .para {
                    padding: 6px 0;
                    font-size: 14px;
                }

                .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
                    font-size: 14px;
                }

    .sec-contact {
        padding: 40px 0;
    }

        .sec-contact .contact-box {
            padding: 15px 15px;
        }

            .sec-contact .contact-box h4 {
                font-size: 24px;
            }

            .sec-contact .contact-box .para {
                padding: 3px 0;
                font-size: 14px;
            }

            .sec-contact .contact-box h6 {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .sec-contact .contact-box .input-box {
                padding: 5px 0;
            }

            .sec-contact .contact-box .submit-btn a {
                font-size: 14px;
            }

            .sec-contact .contact-box .input-box .c-input {
                font-size: 14px;
            }

    .footer-logo {
        width: 150px;
        margin-bottom: 30px;
    }

    .footer-bg .footer-middle .footer-list li a {
        font-size: 14px;
    }

    .footer-bg .footer-lower {
        padding: 10px 0;
    }

    .services-page .adjust-spcing {
        padding: 20px 0;
    }

        .services-page .adjust-spcing .text-box h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .services-page .adjust-spcing .text-box p {
            font-size: 14px;
        }

        .services-page .adjust-spcing .img-box {
            margin-top: 20px;
        }

            .services-page .adjust-spcing .img-box::before {
                top: -10px;
                right: -10px;
                left: 10px;
                bottom: 10px;
            }

        .services-page .adjust-spcing .img-box-left {
            margin-bottom: 20px;
        }

            .services-page .adjust-spcing .img-box-left::before {
                top: -10px;
                right: 10px;
                left: -10px;
                bottom: 10px;
            }

    .banner-section {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
        opacity: 1;
    }

    .navbar-toggler {
        border: 1px solid #fff !important;
    }

    .navbar-expand-lg .logo {
        width: 100px;
    }

    .infocont a {
        font-size: 14px;
    }

    .infocont {
        justify-content: center;
    }

    .social_icons {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

        .social_icons i {
            font-size: 14px;
        }

    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link.active {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }

    .header-Btn {
        font-size: 14px;
    }

    .hero-section {
        padding: 20px 0;
    }

        .hero-section::before {
            display: none;
        }

        .hero-section::after {
            display: none;
        }

    .hero-content h1 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 34px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-booking-form h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .custom-input {
        padding: 8px 45px 8px 10px;
        font-size: 14px;
    }

    .custom-inp-div {
        margin-bottom: 10px;
    }

        .custom-inp-div i {
            padding: 10px 20px;
            font-size: 14px;
        }

    .custom-head-Btn {
        font-size: 14px;
    }

    .about-section {
        padding: 20px 0;
    }

        .about-section h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

    .left-content {
        padding: 0px 0;
    }

        .left-content p {
            font-size: 14px;
        }

        .left-content h3 {
            font-size: 20px;
        }

        .left-content h4 {
            margin-bottom: 5px;
            font-size: 16px;
        }

    .about-Btn {
        font-size: 14px;
        padding: 8px 20px !important;
    }

    .right-content {
        margin-top: 40px;
    }

        .right-content::before {
            top: -10px;
            right: -10px;
            left: 10px;
            bottom: 10px;
        }

    .sec-services {
        padding: 20px 0;
    }

        .sec-services h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .sec-services .tab-box .nav .nav-item {
            width: 49%;
            margin-bottom: 10px;
        }

            .sec-services .tab-box .nav .nav-item .nav-link {
                padding: 10px 5px;
                font-size: 14px;
            }

                .sec-services .tab-box .nav .nav-item .nav-link .icon-box i {
                    font-size: 20px;
                }

        .sec-services .tab-box {
            margin-bottom: 0px;
        }

        .sec-services .content-box .text-box h2 {
            font-size: 26px;
        }

        .sec-services .content-box .text-box .para {
            padding: 3px 0;
            font-size: 14px;
        }

    .content-box .img-box {
        margin-top: 10px;
    }

    .sec-app {
        padding: 20px 0;
    }

        .sec-app .sec-title h3 {
            font-size: 14px;
        }

        .sec-app .sec-title h2 {
            font-size: 22px;
            line-height: 28px;
        }

        .sec-app .sec-title .para {
            font-size: 14px;
            padding: 4px 0 0;
            letter-spacing: 0px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .app-link h4 {
            font-size: 18px;
        }

        .sec-app .content-box .img-box {
            position: relative;
            top: 0;
            left: 0;
            transform: translateX(0);
            margin-bottom: 20px;
        }

            .sec-app .content-box .img-box img {
                height: 450px;
            }

        .sec-app .content-box .app-detail-box {
            padding: 5% 7%;
            border-radius: 10px;
            margin-bottom: 10px;
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 24px;
                padding-bottom: 5px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 18px;
            }

    .sec-tours-pkg .sec-title h3 {
        font-size: 34px;
        margin-bottom: 10px;
        text-align: center;
    }

    .sec-tours-pkg .sec-title h2 {
        font-size: 34px;
        margin-bottom: 20px;
        text-align: center;
    }

    .sec-tours-pkg .tour-box .img-box img {
        height: 250px;
    }

    .sec-tours-pkg .tour-box {
        height: auto;
        margin-bottom: 20px;
    }

        .sec-tours-pkg .tour-box .content-box .para {
            padding: 8px 0;
            font-size: 14px;
        }

    .sec-contact {
        padding: 20px 0;
    }

        .sec-contact .contact-box {
            padding: 15px;
        }

            .sec-contact .contact-box h4 {
                font-size: 34px;
            }

            .sec-contact .contact-box .para {
                padding: 3px 0;
                font-size: 14px;
            }

            .sec-contact .contact-box .input-box {
                padding: 5px 0;
            }

            .sec-contact .contact-box .submit-btn a {
                font-size: 14px;
            }

    .footer-logo {
        width: 150px;
        margin-bottom: 40px;
    }

    .footer-bg .footer-middle {
        padding: 20px;
    }

        .footer-bg .footer-middle .footer-list li a {
            font-size: 14px;
        }

    .sec-tours-pkg .tour-box .detail-box .box-1 h3 {
        font-size: 14px;
    }

    .sec-tours-pkg .tour-box .detail-box .box-2 ul li a {
        font-size: 14px;
    }

    .sec-tours-pkg .tour-box .content-box .lower-box .detail-btn {
        font-size: 14px;
    }

    .banner-section {
        padding: 40px 0;
    }

        .banner-section h2 {
            font-size: 34px;
        }

    .breadcrumb {
        margin-top: 10px;
    }

    .breadcrumb-item a {
        font-size: 14px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    .services-page .adjust-spcing {
        padding: 0 20px 20px 20px;
    }

        .services-page .adjust-spcing .text-box h2 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .services-page .adjust-spcing .text-box p {
            font-size: 14px;
        }

        .services-page .adjust-spcing .img-box {
            margin-top: 40px;
        }

            .services-page .adjust-spcing .img-box::before {
                top: -10px;
                right: -10px;
                left: 10px;
                bottom: 10px;
            }

        .services-page .adjust-spcing .img-box-left {
            margin: 20px 0;
        }

            .services-page .adjust-spcing .img-box-left::before {
                top: -10px;
                right: 10px;
                left: -10px;
                bottom: 10px;
            }
}

.whatsapp-btn {
    text-decoration: none;
    color: var(--white-color);
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 15px 8px 6px;
    background: #0CC143;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

    .whatsapp-btn i {
        background-color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        color: #0cc143;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .whatsapp-btn:hover {
        background: var(--primary-color);
        color: var(--black-color);
    }


#lkbtn_lgout {
    padding: 0 0 0 10px;
    color: #fff;
}

.lableerror {
    color: #fff;
}
