@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

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;
}

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;
}

/************************** Header css **************************/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999999;
    background-color: transparent;
    transition: 0.5s;
    background: transparent;
}

    .main-header.scroll {
        background: #000000;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header.scroll .upper-list {
            margin-top: -36px;
        }

        .main-header.scroll .logo {
            width: 150px;
        }

        .main-header.scroll .navbar {
            margin-top: 0px;
            box-shadow: unset;
        }

.upper-list {
    background: #feb908;
    padding: 6px 0;
    position: relative;
    transition: 0.5s;
}


    .upper-list .align-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .upper-list .box-1 .info-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .upper-list .box-1 .info-list li {
            padding: 0 10px;
        }

            .upper-list .box-1 .info-list li span {
                color: #000000;
                font-size: 16px;
                padding-right: 7px;
            }

            .upper-list .box-1 .info-list li a {
                color: #fff;
                font-size: 15px;
                font-weight: 400;
            }

    .upper-list .box-2 .social-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .upper-list .box-2 .social-list li span {
            color: #fff;
            font-size: 16px;
            padding-right: 7px;
        }

        .upper-list .box-2 .social-list li {
            padding: 0 12px;
        }

            .upper-list .box-2 .social-list li a {
                color: #000000;
                font-size: 16px;
                font-weight: 400;
            }

.main-header .logo {
    width: 160px;
    transition: 0.5s;
}

.main-header .nav-item {
    padding: 0 12px;
}

    .main-header .nav-item .nav-link {
        font-size: 16px;
        font-weight: 500 !important;
        color: #feb908 !important;
        transition: 0.5s;
    }

        .main-header .nav-item .nav-link:hover {
            color: #ffffff !important;
        }

.main-header .book-btn {
    background-color: #feb908;
    border: 1px solid #feb908;
    padding: 10px 20px;
    color: #000000 !important;
    transition: 0.5s;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
    border-radius: 14px;
}

    .main-header .book-btn:hover {
        background-color: transparent;
        border: 1px solid #feb908;
        color: #feb908 !important;
    }

.navbar {
    background: #000000;
    padding: 6px 32px;
    border-radius: 30px;
    margin-top: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/************************** Header css end **************************/

.home-banner {
    position: relative;
    background-image: url('../images/main-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

    .home-banner::before {
        content: '';
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.5;
    }

    .home-banner .content-box {
        position: relative;
        z-index: 1111;
        margin-top: 80px;
    }

        .home-banner .content-box .text-box {
            margin-top: 50px;
        }

            .home-banner .content-box .text-box h3 {
                font-size: 22px;
                color: #ffffff;
                padding: 0 0 10px 0;
            }

            .home-banner .content-box .text-box h1 {
                font-size: 65px;
                color: #fff;
                line-height: 68px;
                padding-bottom: 10px;
                font-weight: 600;
            }

            .home-banner .content-box .text-box .para {
                color: #fff;
                line-height: 25px;
                font-size: 18px;
            }

    .home-banner .form-box {
        position: relative;
        z-index: 999;
        margin-top: 25px;
        background: #ffffff96;
        padding: 25px 25px 25px;
        border-radius: 20px;
    }

        .home-banner .form-box .field-box {
            margin-bottom: 15px;
        }

            .home-banner .form-box .field-box .booking-input {
                padding: 14px 20px;
                color: #000;
                border-radius: 16px;
                border: 1px solid #ccc;
            }

                .home-banner .form-box .field-box .booking-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                    color: #000;
                }

                .home-banner .form-box .field-box .booking-input::-moz-placeholder { /* Firefox 19+ */
                    color: #000;
                }

                .home-banner .form-box .field-box .booking-input:-ms-input-placeholder { /* IE 10+ */
                    color: #000;
                }

                .home-banner .form-box .field-box .booking-input:-moz-placeholder { /* Firefox 18- */
                    color: #000;
                }

            .home-banner .form-box .field-box .submit-button {
                background-color: #feb908;
                border: 1px solid #feb908;
                padding: 13px 20px;
                color: #000000 !important;
                transition: 0.5s;
                width: 100%;
                text-align: center;
                border-radius: 20px;
                font-weight: 600;
            }

.sec-about {
    padding: 70px 0;
}

    .sec-about .content-box h3 {
        font-size: 22px;
        color: #feb908;
        padding: 0 0 5px 0;
        letter-spacing: 1px;
        line-height: 27px;
    }

    .sec-about .content-box h2 {
        font-size: 44px;
        color: #000;
        line-height: 50px;
        padding-bottom: 10px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .sec-about .content-box .para {
        font-size: 16px;
        font-weight: 400;
        color: #000;
        padding-bottom: 10px;
    }

    .sec-about .content-box .read-btn {
        background-color: #feb908;
        border: 1px solid #feb908;
        padding: 9px 30px;
        color: #000000 !important;
        transition: 0.5s;
        box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
        border-radius: 12px;
    }

    .sec-about .img-box {
        position: relative;
    }

        .sec-about .img-box::before {
            content: '';
            background-color: transparent;
            border: 3px solid #feb908;
            border-radius: 20px;
            position: absolute;
            top: -20px;
            right: -20px;
            left: 20px;
            bottom: 20px;
            z-index: 1;
        }

        .sec-about .img-box img {
            border-radius: 15px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }


/*sec-tours-box*/
.sec-tours-box {
    padding: 60px 0;
}

    .sec-tours-box .sec-title {
        text-align: center;
        padding-bottom: 50px;
    }

        .sec-tours-box .sec-title h2 {
            position: relative;
            color: #000000;
            font-size: 44px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

    .sec-tours-box .box-1 {
        position: relative;
        margin-bottom: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        cursor: pointer;
    }

        .sec-tours-box .box-1 .img-box {
            position: relative;
            overflow: hidden;
        }

            .sec-tours-box .box-1 .img-box::before {
                content: '';
                background: linear-gradient(0deg, rgb(0 0 0 / 84%) 13%, rgba(255,255,255,0) 100%);
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 99;
            }

            .sec-tours-box .box-1 .img-box img {
                transition: 0.5s;
                height: 300px;
                object-fit: cover;
                width: 100%;
            }

            .sec-tours-box .box-1 .img-box:hover img {
                transform: scale(1.1);
            }


        .sec-tours-box .box-1 .offer {
            position: absolute;
            z-index: 1111;
            background: red;
            color: #fff;
            padding: 5px 13px;
            border-radius: 6px;
            font-size: 15px;
            left: -10px;
            top: 15px;
        }

        .sec-tours-box .box-1 .like-box {
            position: absolute;
            z-index: 1111;
            background: #fff;
            width: 40px;
            height: 40px;
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            right: 10px;
            top: 10px;
        }

            .sec-tours-box .box-1 .like-box a {
                color: red;
            }

        .sec-tours-box .box-1 .content-box {
            position: absolute;
            bottom: 0;
            padding: 13px 22px;
            width: 100%;
            z-index: 999;
        }

        .sec-tours-box .box-1 h4 {
            color: #fff;
            font-size: 20px;
            padding: 0 0 7px;
            border-bottom: 1px solid #fff;
            text-transform: uppercase;
        }

        .sec-tours-box .box-1 .rates {
            color: #fff;
            font-size: 15px;
            padding-top: 8px;
        }


.app-section {
    padding: 30px 0 50px;
}

    .app-section .app-box {
        background-image: url('../images/app-banner.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        padding: 50px 50px;
        border-radius: 50px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .app-section .app-box .text-box {
        }

            .app-section .app-box .text-box h3 {
                font-size: 20px;
                color: #feb908;
                padding: 0 0 10px 0;
                font-weight: 600;
            }

            .app-section .app-box .text-box h2 {
                font-size: 46px;
                color: #000;
                line-height: 53px;
                padding-bottom: 10px;
                font-weight: 600;
            }

            .app-section .app-box .text-box .para {
                font-size: 20px;
                font-weight: 300;
            }

            .app-section .app-box .text-box ul {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                margin-top: 20px;
            }

                .app-section .app-box .text-box ul li {
                    padding: 0 10px;
                }

                    .app-section .app-box .text-box ul li a {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border: 3px solid #feb908;
                        padding: 10px 30px;
                        border-radius: 50px;
                        font-size: 24px;
                        color: #000000;
                        background: #feb908;
                    }

                        .app-section .app-box .text-box ul li a p {
                            padding-left: 10px;
                            font-weight: 300;
                            color: #000000;
                            line-height: 21px;
                            font-size: 15px;
                        }

                            .app-section .app-box .text-box ul li a p span {
                                display: block;
                                font-weight: 600;
                                font-size: 18px;
                            }

        .app-section .app-box .img-box {
            text-align: center;
        }

            .app-section .app-box .img-box img {
                height: 500px;
                object-fit: contain;
            }


.our-fleet {
    padding: 100px 0 40px;
    position: relative;
}

    .our-fleet::before {
        content: '';
        background-image: url('../images/fleet-banner.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 70%;
        width: 100%;
    }

    .our-fleet .sec-title {
        position: relative;
        z-index: 9999;
        text-align: center;
        margin-bottom: 70px;
    }

        .our-fleet .sec-title h3 {
            font-size: 20px;
            color: #ffffff;
            padding: 0 0 10px 0;
            font-weight: 600;
        }

        .our-fleet .sec-title h2 {
            font-size: 45px;
            color: #fff;
            line-height: 53px;
            padding-bottom: 10px;
            font-weight: 600;
        }

    .our-fleet .fleet-box {
        position: relative;
        background: #fff;
        padding: 30px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10% 10% 0 0;
        text-align: center;
        margin-bottom: 15px;
    }

        .our-fleet .fleet-box .img-box {
            padding: 0 10px;
            margin-bottom: 20px;
        }

        .our-fleet .fleet-box h6 {
            font-weight: 600;
            font-size: 22px;
            padding-bottom: 5px;
        }

        .our-fleet .fleet-box .para {
            font-weight: 300;
            font-size: 16px;
            padding-bottom: 5px;
        }

        .our-fleet .fleet-box ul {
            margin-top: 9px;
        }

            .our-fleet .fleet-box ul li {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 0;
                font-weight: 300;
                border-bottom: 1px solid #feb908;
            }

        .our-fleet .fleet-box .book-fleet {
            background-color: #feb908;
            border: 1px solid #feb908;
            padding: 10px 20px;
            color: #000000 !important;
            transition: 0.5s;
            margin-top: 20px;
            width: 100%;
            transition: 0.5s;
        }

            .our-fleet .fleet-box .book-fleet:hover {
                background: #000000;
                border: 1px solid #000000;
                color: #fff !important;
            }


/* sec-info */
.sec-info {
    padding: 50px 0;
}

    .sec-info .sec-title {
        text-align: center;
        margin-bottom: 30px;
    }

        .sec-info .sec-title h3 {
            font-size: 20px;
            color: #feb908;
            padding: 0 0 10px 0;
            font-weight: 600;
        }

        .sec-info .sec-title h2 {
            font-size: 36px;
            color: #000;
            line-height: 44px;
            padding-bottom: 10px;
            font-weight: 600;
        }

    .sec-info .white-box {
        min-height: 230px;
        background-color: #ffffff;
        border: 1px solid #f1f1f1;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: 0.5s;
        padding: 10px;
    }

        .sec-info .white-box:hover {
            border: 1px solid #f1f1f1;
            box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
        }

        .sec-info .white-box h6 {
            margin-top: 20px;
            font-weight: 400;
            color: #818181;
        }

        .sec-info .white-box i {
            font-size: 45px;
            color: #feb908;
            transition: 0.5s;
        }

        .sec-info .white-box .num-link {
            /* padding-top: 15px; */
            text-align: center;
            padding: 15px 20px 0;
        }

            .sec-info .white-box .num-link a {
                display: block;
                font-size: 18px;
                font-weight: 400;
                color: #000;
                transition: 0.5s;
            }

                .sec-info .white-box .num-link a:hover {
                    color: #0176ff;
                }

.sec-contact {
    padding: 10px 0 60px;
}

    .sec-contact .contact-form {
        padding: 30px 40px;
        background: #f3f3f3;
    }

        .sec-contact .contact-form h2 {
            font-size: 36px;
            color: #000;
            line-height: 44px;
            padding-bottom: 20px;
            font-weight: 600;
        }

        .sec-contact .contact-form .field-box {
            margin-bottom: 0px;
        }

        .sec-contact .contact-form .contact-input {
            padding: 10px 12px;
            font-weight: 300;
            color: #000;
            border-radius: 0;
            background: #ffffff;
        }

            .sec-contact .contact-form .contact-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                color: #000;
            }

            .sec-contact .contact-form .contact-input::-moz-placeholder { /* Firefox 19+ */
                color: #000;
            }

            .sec-contact .contact-form .contact-input:-ms-input-placeholder { /* IE 10+ */
                color: #000;
            }

            .sec-contact .contact-form .contact-input:-moz-placeholder { /* Firefox 18- */
                color: #000;
            }

        .sec-contact .contact-form .field-box .contact-btn {
            background-color: #feb908;
            border: 1px solid #feb908;
            padding: 10px 20px;
            color: #000000 !important;
            transition: 0.5s;
            width: 100%;
            transition: 0.5s;
            margin-top: 7px;
            font-weight: 600;
        }

            .sec-contact .contact-form .field-box .contact-btn:hover {
                background: #000000;
                border: 1px solid #000000;
                color: #fff !important;
            }


.footer-bg {
    background-color: #000000;
    padding: 40px 0 0;
}

    .footer-bg .upper-text h5 {
        font-size: 17px;
        font-weight: 500;
        color: #fff;
        line-height: 28px;
    }

    .footer-bg .search-fleid .search-input {
        background-color: #fff;
        border: none;
        border-radius: 8px;
        padding: 15px;
    }

    .footer-bg .search-fleid .input-group-text {
        background-color: #1967d3;
        color: #fff;
        padding: 15px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
    }

    .footer-bg .search-fleid .search-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input::-moz-placeholder {
        /* Firefox 19+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-ms-input-placeholder {
        /* IE 10+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-moz-placeholder {
        /* Firefox 18- */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .footer-upper {
        border-bottom: 2px solid #c4cdde;
        padding: 0 0 30px 0;
    }

    .footer-bg .footer-middle {
        border-bottom: 1px solid #ffffff;
        padding: 40px 0 60px;
    }

        .footer-bg .footer-middle .para {
            font-weight: 500;
            font-size: 14px;
            color: #ffffff;
            margin-top: 20px;
            padding: 0 7px 7px 0;
            line-height: 24px;
        }

        .footer-bg .footer-middle .para-2 {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
        }

        .footer-bg .footer-middle h4 {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            /* 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: 6px;
            }

                .footer-bg .footer-middle .footer-list li a {
                    font-weight: 500;
                    font-size: 15px;
                    color: #fff;
                    transition: 0.5s;
                }

                    .footer-bg .footer-middle .footer-list li a i {
                        font-weight: 700;
                        margin-right: 6px;
                        font-size: 15px;
                    }

                    .footer-bg .footer-middle .footer-list li a:hover {
                        transform: translateY(-5px);
                    }

    .footer-bg .footer-lower {
        text-align: center;
        padding: 20px 0;
    }

        .footer-bg .footer-lower .para {
            font-weight: 500;
            font-size: 13px;
            color: #fff;
        }

    .footer-bg .footer-middle .email-field .email-input {
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 0;
        padding: 12px 15px;
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }

    .footer-bg .footer-middle .email-field .email-btn {
        background-color: #ffffff;
        border-radius: 0;
        padding: 10px 32px;
        border: 2px solid #ffffff;
        color: #322081;
        font-size: 14px;
        font-weight: 600;
        transition: 0.5s;
        width: 100%;
        margin-top: 8px;
    }

        .footer-bg .footer-middle .email-field .email-btn:hover {
            background-color: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
        }

.footer-logo {
    width: 200px;
}

.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

    .inner-banner::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.4;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 80px;
        flex-direction: column;
    }

        .inner-banner .content-box h2 {
            color: #ffffff;
            font-size: 44px;
            font-weight: 700;
        }

        .inner-banner .content-box ul {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
        }

            .inner-banner .content-box ul li {
                padding: 0 5px;
            }

                .inner-banner .content-box ul li a {
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 18px;
                }


.inner-services {
    padding: 20px 0;
}

    .inner-services h4 {
        font-size: 22px;
        color: #feb908;
        padding: 7px 0;
        letter-spacing: 0px;
        font-weight: 600;
    }

    .inner-services .list-1 {
        list-style: decimal;
        padding: 7px 0px 7px 20px;
    }

        .inner-services .list-1 li {
            padding: 3px 0;
        }

        .inner-services .list-1 span {
            font-weight: 700;
            font-size: 18px;
            color: #000;
            padding-right: 1px;
        }

    .inner-services .list-2 {
        list-style: disc;
        padding: 7px 0px 7px 20px;
    }

        .inner-services .list-2 li {
            padding: 3px 0;
        }

        .inner-services .list-2 span {
            font-weight: 700;
            font-size: 18px;
            color: #000;
            padding-right: 1px;
        }

    .inner-services .para {
        padding: 7px 0;
    }

.ui-menu {
    z-index: 999999 !important;
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.sec-result {
    padding: 60px 0;
}

#lklogin {
    display: none;
}
/************************** 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: 1445px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .app-section .app-box {
        padding: 30px 20px;
    }

        .app-section .app-box .text-box ul li a {
            padding: 10px 20px;
        }

    .sec-about .img-box {
        margin-top: 40px;
    }

    .main-header .book-btn {
        width: 130px;
        text-align: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .app-section .app-box {
        padding: 30px 20px;
    }

        .app-section .app-box .text-box ul li a {
            padding: 10px 20px;
        }

    .sec-about .img-box {
        margin-top: 40px;
    }

    .main-header .book-btn {
        width: 130px;
        text-align: center;
    }

    .inner-banner {
        height: 450px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .main-header {
        background: #fff;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li {
        padding: 0 4px;
    }

    .main-header.scroll .logo {
        width: 90px;
    }

    .main-header .book-btn {
        width: 130px;
        text-align: center;
    }


    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .navbar {
        padding: 5px 15px;
        border-radius: 0;
        margin-top: 0;
        box-shadow: unset;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 13px;
        padding-right: 4px;
    }

    .main-header .logo {
        width: 110px;
    }

    .home-banner {
        height: 90vh;
        margin-top: 160px;
    }

        .home-banner .content-box .text-box h1 {
            font-size: 40px;
            line-height: 48px;
            padding-bottom: 0;
        }

        .home-banner .content-box .text-box h3 {
            font-size: 18px;
            padding: 0 0 0px 0;
        }

        .home-banner .content-box .text-box .para {
            line-height: 20px;
            font-size: 16px;
        }

        .home-banner .content-box .text-box {
            margin-top: 0;
        }

        .home-banner .form-box {
            margin-top: 12px;
            padding: 15px 15px 5px;
        }

            .home-banner .form-box .field-box .booking-input {
                padding: 9px 13px;
                border-radius: 10px;
                font-size: 15px;
                background: #fff;
            }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .content-box h2 {
            font-size: 29px;
            line-height: 33px;
        }

        .sec-about .content-box h3 {
            font-size: 18px;
            padding: 0 0 0px 0;
            line-height: 22px;
        }

        .sec-about .img-box {
            margin-top: 15px;
        }

            .sec-about .img-box::before {
                display: none;
            }

    .sec-tours-box {
        padding: 30px 0;
    }

        .sec-tours-box .sec-title {
            padding-bottom: 15px;
        }

            .sec-tours-box .sec-title h2 {
                font-size: 30px;
                letter-spacing: 0px;
            }

    .app-section {
        padding: 10px 0 30px;
    }

        .app-section .app-box {
            padding: 20px 20px;
            border-radius: 50px;
        }

            .app-section .app-box .text-box h2 {
                font-size: 33px;
                line-height: 39px;
                padding-bottom: 7px;
            }

            .app-section .app-box .text-box h3 {
                font-size: 16px;
                padding: 0 0 5px 0;
            }

            .app-section .app-box .text-box ul {
                margin-top: 15px;
            }

            .app-section .app-box .text-box .para {
                font-size: 17px;
            }

            .app-section .app-box .text-box ul li {
                padding: 3px;
            }

            .app-section .app-box .img-box img {
                height: unset;
                margin-top: 10px;
            }

    .our-fleet::before {
        height: 100%;
    }

    .our-fleet {
        padding: 30px 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
        }

            .our-fleet .sec-title h2 {
                font-size: 36px;
                line-height: 40px;
            }

    .sec-contact .contact-form {
        padding: 20px 20px;
    }

    .footer-bg {
        padding: 0;
        overflow-x: hidden;
    }

        .footer-bg .footer-middle {
            padding: 30px 10px 30px;
        }

    .footer-logo {
        width: 120px;
    }

    .inner-banner {
        height: 250px;
        margin-top: 160px;
    }

        .inner-banner .content-box {
            align-items: center;
            margin-top: 0px;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 30px;
            }

            .inner-banner .content-box ul li a {
                font-size: 16px;
            }

    .loginfield {
        width: 100% !important;
    }

    .setfield {
        width: unset !important;
    }

    .WelComeText {
        margin-left: 135px !important;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    #book-left {
        width: 100% !important;
    }

    #book-right {
        width: 100% !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li {
        padding: 0 4px;
    }

    .main-header.scroll .logo {
        width: 90px;
    }

    .main-header .book-btn {
        width: 130px;
        text-align: center;
    }

    .nav-
    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .navbar {
        padding: 5px 15px;
        border-radius: 0;
        margin-top: 0;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 13px;
        padding-right: 4px;
    }

    .main-header .logo {
        width: 90px;
    }

    .home-banner {
        height: 90vh;
        margin-top: 160px;
    }

        .home-banner .content-box .text-box h1 {
            font-size: 40px;
            line-height: 48px;
            padding-bottom: 0;
        }

        .home-banner .content-box .text-box h3 {
            font-size: 18px;
            padding: 0 0 0px 0;
        }

        .home-banner .content-box .text-box .para {
            line-height: 20px;
            font-size: 16px;
        }

        .home-banner .content-box .text-box {
            margin-top: 0;
        }

        .home-banner .form-box {
            margin-top: 12px;
            padding: 15px 15px 5px;
        }

            .home-banner .form-box .field-box .booking-input {
                padding: 9px 13px;
                border-radius: 10px;
                font-size: 15px;
                background: #fff;
            }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .content-box h2 {
            font-size: 29px;
            line-height: 33px;
        }

        .sec-about .content-box h3 {
            font-size: 18px;
            padding: 0 0 0px 0;
            line-height: 22px;
        }

        .sec-about .img-box {
            margin-top: 15px;
        }

            .sec-about .img-box::before {
                display: none;
            }

    .sec-tours-box {
        padding: 30px 0;
    }

        .sec-tours-box .sec-title {
            padding-bottom: 15px;
        }

            .sec-tours-box .sec-title h2 {
                font-size: 30px;
                letter-spacing: 0px;
            }

    .app-section {
        padding: 10px 0 30px;
    }

        .app-section .app-box {
            padding: 20px 20px;
            border-radius: 50px;
        }

            .app-section .app-box .text-box h2 {
                font-size: 33px;
                line-height: 39px;
                padding-bottom: 7px;
            }

            .app-section .app-box .text-box h3 {
                font-size: 16px;
                padding: 0 0 5px 0;
            }

            .app-section .app-box .text-box ul {
                margin-top: 15px;
                flex-direction: column;
            }

            .app-section .app-box .text-box .para {
                font-size: 17px;
            }

            .app-section .app-box .text-box ul li {
                padding: 3px;
            }

            .app-section .app-box .img-box img {
                height: unset;
                margin-top: 10px;
            }

    .our-fleet::before {
        height: 100%;
    }

    .our-fleet {
        padding: 30px 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
        }

            .our-fleet .sec-title h2 {
                font-size: 36px;
                line-height: 40px;
            }

    .sec-contact .contact-form {
        padding: 20px 20px;
    }

    .footer-bg {
        padding: 0;
        overflow-x: hidden;
    }

        .footer-bg .footer-middle {
            padding: 30px 10px 30px;
        }

    .footer-logo {
        width: 120px;
    }

    .inner-banner {
        height: 250px;
        margin-top: 160px;
    }

        .inner-banner .content-box {
            align-items: center;
            margin-top: 0px;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 30px;
            }

            .inner-banner .content-box ul li a {
                font-size: 16px;
            }

    .loginfield {
        width: 100% !important;
    }

    .setfield {
        width: unset !important;
    }

    .WelComeText {
        margin-left: 135px !important;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    #book-left {
        width: 100% !important;
    }

    #book-right {
        width: 100% !important;
    }

    .payfield {
        width: 100% !important;
    }
}

.sec-privacy {
    padding: 60px 0 60px;
}

    .sec-privacy .content-box {
    }

        .sec-privacy .content-box h1 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #ffffff;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 20px;
            margin: 0 auto 20px;
            text-align: center;
            background-color: #ed242b;
            width: fit-content;
            border-radius: 10px;
        }

        .sec-privacy .content-box h2 {
            text-transform: capitalize;
            position: relative;
            line-height: 25px;
            color: #000;
            font-weight: 700;
            font-size: 22px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-privacy .content-box h3 {
            text-transform: capitalize;
            position: relative;
            padding-bottom: 0px;
            color: #ed242b;
            font-weight: 700;
            font-size: 18px;
            margin: 0;
        }

        .sec-privacy .content-box ul {
            padding-left: 30px;
            padding-bottom: 10px;
            list-style: none;
        }

            .sec-privacy .content-box ul li {
                padding: 3px 0;
                font-size: 16px;
            }

                .sec-privacy .content-box ul li i {
                    color: #ed242b;
                    font-size: 16px;
                    padding-right: 7px;
                }

                .sec-privacy .content-box ul li span {
                }

        .sec-privacy .content-box .para {
            color: #000000;
            padding: 5px 0;
            font-weight: 600;
            margin: 0;
        }

        .sec-privacy .content-box h6 a {
            font-size: 16px;
            color: #0089bf;
            text-decoration: underline;
        }

        .sec-privacy .content-box h6 span {
            font-weight: 700;
            font-size: 15px;
            color: #000;
            padding-right: 5px;
        }

.navbar-nav {
    flex-wrap: wrap;
}