@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', 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: 999;
    background-color: transparent;
    transition: 0.5s;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .main-header.scroll {
        background: #ffffff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header.scroll .upper-list {
            margin-top: -36px;
        }

        .main-header.scroll .logo {
            width: 130px;
        }

.upper-list {
    background: #29abe2;
    padding: 6px 0;
    position: relative;
    transition: 0.5s;
}

    .upper-list::before {
        content: '';
        background: #000000;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 12%;
        clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    }

    .upper-list::after {
        content: '';
        background: #000000;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 12%;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .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: #fff;
                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: #fff;
                font-size: 16px;
                font-weight: 400;
            }

.main-header .logo {
    width: 165px;
    transition: 0.5s;
}

.main-header .nav-item {
    padding: 0 12px;
}

    .main-header .nav-item .nav-link {
        font-size: 16px;
        font-weight: 500 !important;
        color: #29abe2 !important;
        transition: 0.5s;
    }

        .main-header .nav-item .nav-link:hover {
            color: #000000 !important;
        }

.nav-btn .book-btn {
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 25px;
    padding: 10px 15px;
    color: #fff !important;
    transition: 0.5s;
    font-size: 13px;
}

    .nav-btn .book-btn:hover {
        background-color: transparent;
        border: 1px solid #29abe2;
        color: #29abe2 !important;
    }
/************************** Header css end **************************/
/*banner-slider*/
.banner-slider {
    margin-top: 120px;
    position: relative;
}

.slider-1 .item {
    position: relative;
}

    .slider-1 .item .img-box {
        position: relative;
    }

        .slider-1 .item .img-box::before {
            content: '';
            background: #000;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.4;
        }

    .slider-1 .item .content-box {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

        .slider-1 .item .content-box h3 {
            color: #fff;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .slider-1 .item .content-box h1 {
            color: #fff;
            font-size: 56px;
            font-weight: 600;
        }

.booking-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 35px;
}

    .booking-form .from-box {
        background-color: rgb(41 171 226 / 68%);
        padding: 20px 30px;
        border: 3px solid #fff;
        z-index: 111;
        position: relative;
        border-radius: 37px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .booking-form .from-box h2 {
            padding-bottom: 12px;
        }

            .booking-form .from-box h2 span {
                color: #44b22e;
                padding-right: 5px;
            }

        .booking-form .from-box .input-box {
            margin-bottom: 17px;
        }

            .booking-form .from-box .input-box label {
                font-weight: 500;
                color: #fff;
                padding-bottom: 5px;
            }

            .booking-form .from-box .input-box .booking-field {
                background-color: transparent;
                border: none;
                padding: 9px 15px;
                font-weight: 300;
                border-bottom: 1px solid #fff;
                border-radius: 0;
                color: #fff;
            }

                .booking-form .from-box .input-box .booking-field:focus {
                    box-shadow: none;
                }

                .booking-form .from-box .input-box .booking-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                    color: #fff;
                }

                .booking-form .from-box .input-box .booking-field::-moz-placeholder { /* Firefox 19+ */
                    color: #fff;
                }

                .booking-form .from-box .input-box .booking-field:-ms-input-placeholder { /* IE 10+ */
                    color: #fff;
                }

                .booking-form .from-box .input-box .booking-field:-moz-placeholder { /* Firefox 18- */
                    color: #fff;
                }

        .booking-form .from-box .btn-sub {
            margin-bottom: 15px;
        }

            .booking-form .from-box .btn-sub .button {
                background: #fff;
                padding: 8px 15px;
                border-radius: 18px;
                color: #000000;
                font-size: 18px;
                font-weight: 400;
                width: 100%;
                text-align:center;
            }

/*app-section*/
.app-section {
    padding: 70px 0;
}

    .app-section .row {
        display: flex;
        align-items: center;
    }

    .app-section .content-box h3 {
        color: #000000;
        font-weight: bold;
        font-size: 20px;
        margin: 0;
        line-height: 20px;
    }

    .app-section .content-box h2 {
        color: #000;
        font-size: 36px;
        letter-spacing: 0;
        line-height: 50px;
        margin-top: 4px;
        margin-bottom: 0px;
        font-weight: 600;
    }

    .app-section .content-box .para {
        color: #444;
        font-size: 18px;
        letter-spacing: 0.15px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    .app-section .content-box ul {
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-top: 20px;
    }

        .app-section .content-box ul li {
            width: 36%;
            background: #000000;
            margin: 5px 10px 5px 0;
            padding: 13px 0;
            text-align: center;
            line-height: 22px;
            font-size: 16px;
            border-radius: 7px;
            color: #fff;
            cursor: pointer;
        }

    .app-section .content-box .app-btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
    }

        .app-section .content-box .app-btn .downlaod-app {
            width: 230px;
            margin: 0 10px 0 0;
        }

    .app-section .img-box {
        text-align: center;
    }


.sec-about {
    background-image: url('../images/about-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0px 0 100px;
}

    .sec-about .content-box h3 {
        color: #000000;
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 5px;
    }

    .sec-about .content-box h2 {
        color: #000;
        font-size: 39px;
        font-weight: 700;
        letter-spacing: -1px;
        padding: 0px 0 10px;
        text-transform: uppercase;
    }

    .sec-about .content-box .para {
        font-size: 16px;
        line-height: 30px;
        padding-bottom: 20px;
    }

    .sec-about .content-box .read-btn {
        background: #000000;
        border: 1px solid #000000;
        padding: 10px 25px;
        border-radius: 18px;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
    }


.sec-services {
    padding: 80px 0;
    background-color: #000000;
}

    .sec-services .sec-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
    }

        .sec-services .sec-title h2 {
            font-size: 36px;
            color: #fff;
            font-weight: 600;
        }

        .sec-services .sec-title .more-btn {
            font-size: 18px;
            color: #fff;
        }

    .sec-services .service-box .img-box {
        margin-bottom: 20px;
        position: relative;
    }

        .sec-services .service-box .img-box img {
            border-radius: 15px;
        }

        .sec-services .service-box .img-box::before {
            content: '';
            background-color: #000;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
            border-radius: 15px;
        }

    .sec-services .service-box h4 {
        font-size: 26px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .sec-services .service-box p {
        color: #fff;
        font-size: 15px;
    }

    .sec-services .service-box .arrow-btn {
        width: 40px;
        height: 40px;
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        margin-top: 20px;
        transition: 0.5s;
    }

        .sec-services .service-box .arrow-btn:hover {
            background-color: #fff;
            color: #000;
        }

.our-fleet {
    padding: 100px 0;
}

    .our-fleet .sec-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
    }

        .our-fleet .sec-title h2 {
            font-size: 36px;
            font-weight: 600;
        }

        .our-fleet .sec-title .more-btn {
            font-size: 18px;
            color: #000;
        }

    .our-fleet .fleet-box {
        border: 1px solid #d7d7d7;
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    }

        .our-fleet .fleet-box h6 {
            font-size: 20px;
            color: #000;
            margin-bottom: 10px;
        }

        .our-fleet .fleet-box .para {
            font-weight: 300;
            font-size: 15px;
        }

        .our-fleet .fleet-box .detail-list {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 15px;
        }

            .our-fleet .fleet-box .detail-list li {
                font-weight: 400;
                font-size: 16px;
                color: #383838;
            }

            .our-fleet .fleet-box .detail-list .icon-circle {
                width: 35px;
                height: 35px;
                background: #dfdfdf;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000;
                font-size: 14px;
                margin-right: 10px;
            }

/* sec-info */
.sec-info {
    padding: 70px 0;
}

    .sec-info .white-box {
        min-height: 200px;
        background-color: #fff;
        border: 1px solid #d3d3d3;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: 0.5s;
        padding: 10px;
    }

        .sec-info .white-box:hover {
            border: 1px solid #fff;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

        .sec-info .white-box i {
            font-size: 45px;
            color: #000000;
            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: 16px;
                font-weight: 400;
                color: #000;
                transition: 0.5s;
            }

                .sec-info .white-box .num-link a:hover {
                    color: #322081;
                }

/* contact-form */
.contact-form {
    padding: 30px 0 60px;
    position: relative;
}

    .contact-form .sec-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 30px;
    }

        .contact-form .sec-title h2 {
            font-size: 40px;
            font-weight: 600;
            color: #000;
            padding-right: 20px;
            border-right: 1px solid #ccc;
        }

        .contact-form .sec-title .para {
            font-size: 17px;
            padding: 0 10px;
            /* margin: 0 auto; */
        }

    .contact-form .input-box .f-input {
        background-color: #f7f7f7;
        border: 1px solid #f7f7f7;
        padding: 16px 0 16px 26px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        color: #151515;
        margin-bottom: 10px;
    }

    .contact-form .send-btn {
        margin-top: 10px;
    }

        .contact-form .send-btn .button {
            background-color: #000000;
            border: 2px solid #000000;
            padding: 12px 60px;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            transition: 0.5s;
        }

            .contact-form .send-btn .button:hover {
                background-color: transparent;
                border: 2px solid #000;
                color: #000;
            }



.footer-bg {
    background-color: #29abe2;
    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;
        }

            .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 {
                        color: #000000;
                    }

    .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: 178px;
}

.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 126px;
    display: flex;
    align-items: center;
}

    .inner-banner::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.5;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .inner-banner .content-box h2 {
            color: #fff;
            font-size: 50px;
            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: #fff;
                    font-weight: 500;
                    font-size: 22px;
                }


/**************************footer end **************************/

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1751px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1601px) and (max-width: 1750px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .main-header .logo {
        width: 150px;
    }

    .main-header .nav-item .nav-link {
        font-size: 16px;
    }

    .booking-form {
        position: absolute;
        margin-top: 10px;
        bottom: -80px;
    }

    .app-section {
        padding: 80px 0 40px;
    }

        .app-section .content-box ul li {
            width: 46%;
            font-size: 15px;
        }

        .app-section .content-box h2 {
            font-size: 36px;
            line-height: 40px;
            letter-spacing: -1px;
        }

    .sec-about .content-box .para {
        font-size: 17px;
        line-height: 30px;
        padding-bottom: 20px;
    }

    .our-fleet {
        padding: 50px 0;
    }

    .sec-info {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .main-header .logo {
        width: 150px;
    }

    .main-header .nav-item .nav-link {
        font-size: 16px;
    }

    .booking-form {
        position: absolute;
        margin-top: 10px;
        bottom: -80px;
    }

    .app-section {
        padding: 80px 0 40px;
    }

        .app-section .content-box ul li {
            width: 46%;
            font-size: 15px;
        }

        .app-section .content-box h2 {
            font-size: 36px;
            line-height: 40px;
            letter-spacing: -1px;
        }

    .sec-about .content-box .para {
        font-size: 17px;
        line-height: 30px;
        padding-bottom: 20px;
    }

    .our-fleet {
        padding: 50px 0;
    }

    .sec-info {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .main-header .logo {
        width: 150px;
    }

    .main-header .nav-item .nav-link {
        font-size: 16px;
    }

    .booking-form {
        position: absolute;
        margin-top: 10px;
        bottom: -80px;
    }

    .app-section {
        padding: 80px 0 40px;
    }

        .app-section .content-box ul li {
            width: 46%;
            font-size: 15px;
        }

        .app-section .content-box h2 {
            font-size: 36px;
            line-height: 40px;
            letter-spacing: -1px;
        }

    .sec-about .content-box .para {
        font-size: 15px;
        line-height: 26px;
        padding-bottom: 10px;
    }

    .our-fleet {
        padding: 50px 0;
    }

    .sec-info {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .main-header .logo {
        width: 150px;
    }

    .main-header .nav-item .nav-link {
        font-size: 14px;
    }

    .booking-form {
        position: relative;
        margin-top: 10px;
        bottom: 0;
    }

    .app-section {
        padding: 40px 0;
    }

        .app-section .content-box ul li {
            width: 46%;
            font-size: 15px;
        }

        .app-section .content-box h2 {
            font-size: 36px;
            line-height: 40px;
            letter-spacing: -1px;
        }

    .sec-about .content-box .para {
        font-size: 15px;
        line-height: 26px;
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }


    .upper-list .box-1 .info-list li a {
        font-size: 14px;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 14px;
    }

    .main-header .logo {
        width: 140px;
    }

    .main-header.scroll .logo {
        width: 130px;
    }

    .main-header.scroll .upper-list {
        margin-top: -35px;
    }

    .navbar-light .navbar-toggler {
        border-color: #000000;
    }

    .navbar-light .navbar-toggler-icon {
      
    }

    .booking-form {
        position: relative;
        bottom: 0;
        margin-top: 10px;
    }

        .booking-form .from-box {
            padding: 15px 20px;
            border-radius: 24px;
        }

    .banner-slider {
        margin-top: 123px;
    }

    .slider-1 .item .img-box img {
        height: 350px;
        object-fit: cover;
        width: 100%;
    }

    .slider-1 .item .content-box h3 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .slider-1 .item .content-box h3 br {
            display: none;
        }

    .slider-1 .item .content-box h1 {
        font-size: 45px;
    }

    .booking-form .from-box .input-box label {
        font-size: 16px;
    }

    .booking-form .from-box .input-box .booking-field {
        padding: 7px 0px;
        font-size: 16px;
    }


    .app-section {
        padding: 30px 0;
    }

        .app-section .content-box h3 {
            font-size: 16px;
        }

        .app-section .content-box h2 {
            font-size: 30px;
            line-height: 34px;
            font-weight: 600;
        }

        .app-section .content-box .para {
            font-size: 16px;
            line-height: 22px;
        }

        .app-section .content-box ul li {
            width: 46%;
            padding: 10px 0;
            font-size: 12px;
        }

    .sec-about {
        padding: 0 0 30px;
    }

        .sec-about .content-box {
            margin-top: 15px;
        }

            .sec-about .content-box h2 {
                font-size: 26px;
            }

            .sec-about .content-box .para {
                font-size: 14px;
                line-height: 24px;
                padding-bottom: 10px;
            }

            .sec-about .content-box .read-btn {
                padding: 7px 20px;
                border-radius: 10px;
                font-size: 14px;
            }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .sec-services .service-box {
            margin-bottom: 20px;
        }

    .our-fleet {
        padding: 30px 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .our-fleet .fleet-box {
            padding: 20px 15px;
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .para {
                font-size: 16px;
            }

            .our-fleet .fleet-box .detail-list li {
                font-size: 14px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .white-box {
            min-height: 220px;
            margin-bottom: 20px;
        }

    .contact-form {
        padding: 0px 0 30px;
    }

        .contact-form .sec-title {
            justify-content: center;
            padding-bottom: 30px;
            flex-direction: column;
        }

            .contact-form .sec-title h2 {
                font-size: 36px;
                padding-right: 0;
                border-right: unset;
                padding-bottom: 8px;
            }

    element.style {
    }

    .contact-form .sec-title .para {
        font-size: 16px;
        text-align: center;
    }

    .footer-bg .footer-middle {
        padding: 0 10px 10px;
    }

    .footer-logo {
        width: 140px;
    }

    .sec-info .white-box .num-link a {
        font-size: 14px;
    }

    .footer-bg .footer-middle .para {
        margin: 20px 0;
    }

    .nav-btn .book-btn {
        display: inline-block;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li a {
        font-size: 14px;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 14px;
    }

    .main-header .logo {
        width: 130px;
    }

    .main-header.scroll .logo {
        width: 120px;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .navbar-light .navbar-toggler {
        border-color: #000000
    }

    .navbar-light .navbar-toggler-icon {
       
    }

    .booking-form {
        position: relative;
        bottom: 0;
        margin-top: 10px;
    }

        .booking-form .from-box {
            padding: 15px 20px;
            border-radius: 24px;
        }

    .banner-slider {
        margin-top: 138px;
    }

    .slider-1 .item .img-box img {
        height: 350px;
        object-fit: cover;
        width: 100%;
    }

    .slider-1 .item .content-box h3 {
        font-size: 17px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .slider-1 .item .content-box h3 br {
            display: none;
        }

    .slider-1 .item .content-box h1 {
        font-size: 40px;
    }

    .booking-form .from-box .input-box label {
        font-size: 16px;
    }

    .booking-form .from-box .input-box .booking-field {
        padding: 7px 0px;
        font-size: 16px;
    }

    .app-section {
        padding: 30px 0;
    }

        .app-section .content-box h3 {
            font-size: 16px;
        }

        .app-section .content-box h2 {
            font-size: 30px;
            line-height: 34px;
            font-weight: 600;
        }

        .app-section .content-box .para {
            font-size: 16px;
            line-height: 22px;
        }

        .app-section .content-box ul li {
            width: 46%;
            padding: 10px 0;
            font-size: 15px;
        }

    .sec-about {
        padding: 0 0 30px;
    }

        .sec-about .content-box {
            margin-top: 15px;
        }

            .sec-about .content-box h2 {
                font-size: 26px;
            }

            .sec-about .content-box .para {
                font-size: 16px;
                line-height: 24px;
                padding-bottom: 10px;
            }

            .sec-about .content-box .read-btn {
                padding: 7px 20px;
                border-radius: 10px;
                font-size: 14px;
            }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .sec-services .service-box {
            margin-bottom: 20px;
        }

    .our-fleet {
        padding: 30px 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .our-fleet .fleet-box {
            padding: 20px 15px;
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .para {
                font-size: 16px;
            }

            .our-fleet .fleet-box .detail-list li {
                font-size: 14px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .white-box {
            min-height: 200px;
            margin-bottom: 20px;
        }

    .contact-form {
        padding: 0px 0 30px;
    }

        .contact-form .sec-title {
            justify-content: center;
            padding-bottom: 30px;
            flex-direction: column;
        }

            .contact-form .sec-title h2 {
                font-size: 36px;
                padding-right: 0;
                border-right: unset;
                padding-bottom: 8px;
            }

    element.style {
    }

    .contact-form .sec-title .para {
        font-size: 16px;
        text-align: center;
    }

    .footer-bg .footer-middle {
        padding: 0 10px 10px;
    }

    .footer-logo {
        width: 140px;
    }

    .nav-btn .book-btn {
        display: inline-block;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .upper-list::before {
        display: none;
    }

    .upper-list::after {
        display: none;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li a {
        font-size: 12px;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 14px;
    }

    .main-header .logo {
        width: 110px;
    }

    .main-header.scroll .logo {
        width: 100px;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .navbar-light .navbar-toggler {
        border-color: #000000;
    }

    .navbar-light .navbar-toggler-icon {
        
    }

    .booking-form {
        position: relative;
        bottom: 0;
        margin-top: 10px;
    }

        .booking-form .from-box {
            padding: 15px;
            border-radius: 17px;
        }

    .banner-slider {
        margin-top: 138px;
    }

    .slider-1 .item .img-box img {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }

    .slider-1 .item .content-box h3 {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .slider-1 .item .content-box h3 br {
            display: none;
        }

    .slider-1 .item .content-box h1 {
        font-size: 36px;
    }

    .booking-form .from-box .input-box label {
        font-size: 14px;
    }

    .booking-form .from-box .input-box .booking-field {
        padding: 7px 0px;
        font-size: 14px;
    }

    .app-section {
        padding: 30px 0;
    }

        .app-section .content-box h3 {
            font-size: 16px;
        }

        .app-section .content-box h2 {
            font-size: 30px;
            line-height: 34px;
            font-weight: 600;
        }

        .app-section .content-box .para {
            font-size: 14px;
            line-height: 20px;
        }

        .app-section .content-box ul li {
            width: 46%;
            padding: 10px 0;
            font-size: 12px;
        }

    .sec-about {
        padding: 0 0 30px;
    }

        .sec-about .content-box {
            margin-top: 15px;
        }

            .sec-about .content-box h2 {
                font-size: 26px;
            }

            .sec-about .content-box .para {
                font-size: 15px;
                line-height: 22px;
                padding-bottom: 10px;
            }

            .sec-about .content-box .read-btn {
                padding: 7px 20px;
                border-radius: 10px;
                font-size: 14px;
            }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .sec-services .service-box {
            margin-bottom: 20px;
        }

    .our-fleet {
        padding: 30px 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
            flex-direction: column;
        }

        .our-fleet .fleet-box {
            padding: 20px 15px;
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .para {
                font-size: 14px;
            }

            .our-fleet .fleet-box .detail-list li {
                font-size: 14px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .white-box {
            min-height: 160px;
            margin-bottom: 20px;
        }

    .contact-form {
        padding: 0px 0 30px;
    }

        .contact-form .sec-title {
            justify-content: center;
            padding-bottom: 30px;
            flex-direction: column;
        }

            .contact-form .sec-title h2 {
                font-size: 36px;
                padding-right: 0;
                border-right: unset;
                padding-bottom: 8px;
            }


    .contact-form .sec-title .para {
        font-size: 14px;
        text-align: center;
    }

    .footer-bg .footer-middle {
        padding: 0 10px 10px;
    }

    .footer-logo {
        width: 140px;
    }


    .nav-btn .book-btn {
        display: inline-block;
    }
    .inner-banner {
        height: 250px;
        margin-top: 156px;
    }
        .inner-banner .content-box {
            justify-content: center;
            flex-direction: column;
        }
            .inner-banner .content-box h2 {
                font-size: 40px;
                text-align: center;
            }
            .inner-banner .content-box ul li a {
                font-size: 17px;
            }
}

.sec-about img{
    height: 100%; width: 100%; object-fit: cover;
}
.footer-logo {
    filter: brightness(0) invert(1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgb(0, 0, 0)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !important;
}

.booking-form select option {
    background: #000000;
}
