@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: 99999999;
    background-color: transparent;
    transition: 0.5s;
    background: transparent;
}

    .main-header.scroll {
        background: #fff;
    }

        .main-header.scroll .upper-list {
            margin-top: -36px;
        }

        .main-header.scroll .logo {
            width: 190px;
        }

        .main-header.scroll .navbar {
            margin-top: 0px;
            box-shadow: unset;
        }

.upper-list {
    background: #ff392c;
    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: #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: 210px;
    transition: 0.5s;
}

.main-header .nav-item {
    padding: 0 12px;
}

    .main-header .nav-item .nav-link {
        font-size: 16px;
        font-weight: 500 !important;
        color: #ff392c !important;
        transition: 0.5s;
    }

        .main-header .nav-item .nav-link:hover {
            transform: translateY(-5px);
        }

.main-header .book-btn {
    background-color: #000000;
    border: 1px solid #000000;
    padding: 10px 20px;
    color: #fff !important;
    transition: 0.5s;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
}

    .main-header .book-btn:hover {
        background-color: #ff392c;
        border: 1px solid #fe392c;
        color: #ffffff !important;
    }

.navbar {
    background: #fff;
    padding: 10px 40px;
    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;
    margin-top: 0;
}

    .home-banner::before {
        content: '';
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
    }

    .home-banner .content-box {
        position: absolute;
        z-index: 1111;
        top: 45%;
        transform: translateY(-50%);
    }

        .home-banner .content-box .text-box {
        }

            .home-banner .content-box .text-box h3 {
                font-size: 20px;
                color: #ffffff;
                background: #e91f1f;
                width: fit-content;
                padding: 6px 15px;
                border-radius: 10px;
                margin-bottom: 10px;
            }

            .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: absolute;
        z-index: 999;
        background: #ffffff96;
        padding: 20px 20px 15px;
        top: 61%;
    }

        .home-banner .form-box .field-box {
            margin-bottom: 12px;
        }

            .home-banner .form-box .field-box .booking-input {
                padding: 14px 20px;
                border-radius: 0;
                color: #000;
                background-color: #fff;
                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: #e91f1f;
                border: 1px solid #e91f1f;
                padding: 14px 20px;
                color: #fff !important;
                transition: 0.5s;
                width: 100%;
                text-align: center;
            }

.slider-1 .item {
    position: relative;
}

    .slider-1 .item::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.5;
    }

    .slider-1 .item img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }


.sec-about {
    padding: 70px 0;
}

    .sec-about .text-box {
        background: #fff;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
    }

        .sec-about .text-box h3 {
            font-size: 20px;
            color: #e91f1f;
            padding: 0 0 10px 0;
            font-weight: 600;
        }

        .sec-about .text-box h2 {
            font-size: 45px;
            color: #000;
            line-height: 53px;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .sec-about .text-box .para {
            font-weight: 300;
            padding: 10px 0;
        }

        .sec-about .text-box .read-btn {
            background-color: #e91f1f;
            border: 1px solid #e91f1f;
            padding: 10px 20px;
            color: #fff !important;
            transition: 0.5s;
            margin-top: 10px;
        }

.sec-services {
    padding: 70px 0 100px;
    background: #ededed;
    position: relative;
}

    .sec-services::before {
        content: '';
        background-image: url('../images/service-bg.jpg');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        width: 37%;
        height: 60%;
    }

    .sec-services .sec-title {
        margin-bottom: 50px;
    }

        .sec-services .sec-title h3 {
            font-size: 20px;
            color: #e91f1f;
            padding: 0 0 10px 0;
            font-weight: 600;
        }

        .sec-services .sec-title h2 {
            font-size: 45px;
            color: #000;
            line-height: 53px;
            padding-bottom: 10px;
            font-weight: 600;
        }

    .sec-services .services-box {
        background: #fff;
        padding: 30px 30px;
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        text-align: center;
        z-index: 1111;
        position: relative;
        margin-bottom: 20px;
    }

        .sec-services .services-box .img-box {
            margin-bottom: 15px;
        }

            .sec-services .services-box .img-box img {
                border-radius: 10px;
            }

        .sec-services .services-box h6 {
            font-weight: 600;
            font-size: 22px;
            padding-bottom: 5px;
        }

        .sec-services .services-box .para {
            font-weight: 300;
            font-size: 16px;
            padding-bottom: 5px;
        }

        .sec-services .services-box .read-link {
            color: #e91f1f;
            text-decoration: underline;
        }

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

        .our-fleet .fleet-box .img-box {
            padding: 0 10px;
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .img-box img {
                height: 170px;
                object-fit: contain;
            }

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

                .our-fleet .fleet-box ul li i {
                    padding-right: 7px;
                }

        .our-fleet .fleet-box .book-fleet {
            background-color: #e91f1f;
            border: 1px solid #e91f1f;
            padding: 10px 20px;
            color: #fff !important;
            transition: 0.5s;
            margin-top: 20px;
            width: 100%;
            transition: 0.5s;
        }

            .our-fleet .fleet-box .book-fleet:hover {
                background: transparent;
                border: 1px solid #000;
                color: #000 !important;
            }

.app-section {
    padding: 30px 0 60px;
}

    .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: #e91f1f;
                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: 18px;
                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 #e91f1f;
                        padding: 10px 30px;
                        border-radius: 50px;
                        font-size: 24px;
                        color: #fff;
                        background: #e91f1f;
                    }

                        .app-section .app-box .text-box ul li a p {
                            padding-left: 10px;
                            font-weight: 300;
                            color: #fff;
                            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;
            }
/* 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: #e91f1f;
            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: #e91f1f;
            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: #000000;
                }

.sec-contact {
    padding: 10px 0 60px;
}

    .sec-contact .contact-form {
        padding: 20px 40px 10px;
        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: 10px;
        }

        .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: #000000;
            border: 1px solid #000000;
            padding: 10px 20px;
            color: #fff !important;
            transition: 0.5s;
            width: 100%;
            transition: 0.5s;
            margin-top: 7px;
        }

            .sec-contact .contact-form .field-box .contact-btn:hover {
                background: #032a5d;
                border: 1px solid #032a5d;
                color: #fff !important;
            }

.footer-bg {
    background-color: #e91f1f;
    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: 250px;
  /*  filter: brightness(0) invert(1);*/
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(4887%) hue-rotate(17deg) brightness(132%) contrast(103%); */
}


.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
}

    .inner-banner::before {
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.6;
    }

    .inner-banner .content-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 130px;
    }

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

.ui-menu {
    height: 250px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 9999;
    position: relative;
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    z-index: 1111 !important;
}

#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) {
    .sec-services .services-box {
        padding: 30px 20px;
        min-height: 475px;
    }

        .sec-services .services-box .para {
            font-size: 14px;
        }

    .sec-services::before {
        width: 33%;
        height: 33%;
    }

    .our-fleet .fleet-box .img-box img {
        height: 160px;
        object-fit: contain;
    }

    .sec-info .white-box .num-link a {
        font-size: 16px;
    }

    .sec-about .text-box h2 {
        font-size: 35px;
        line-height: 38px;
        padding-bottom: 5px;
    }

    .sec-about .text-box .para {
        padding: 5px 0;
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sec-services .services-box {
        padding: 30px 20px;
        min-height: 475px;
    }

        .sec-services .services-box .para {
            font-size: 14px;
        }

    .sec-services::before {
        width: 33%;
        height: 33%;
    }

    .our-fleet .fleet-box .img-box img {
        height: 160px;
        object-fit: contain;
    }

    .sec-info .white-box .num-link a {
        font-size: 16px;
    }

    .sec-about .text-box h2 {
        font-size: 35px;
        line-height: 38px;
        padding-bottom: 5px;
    }

    .sec-about .text-box .para {
        padding: 5px 0;
        font-size: 15px;
    }

    .main-header .nav-item {
        padding: 0 10px;
    }

    .main-header .logo {
        width: 190px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    .main-header .logo {
        width: 170px;
    }

    .main-header .book-btn {
        width: 140px;
        text-align: center;
        margin-bottom: 10px;
    }


    .home-banner .content-box .text-box h1 {
        font-size: 42px;
        line-height: 48px;
        padding-bottom: 4px;
    }

    .home-banner .content-box .text-box h3 {
        font-size: 18px;
        padding: 8px 12px;
    }

    .home-banner .form-box .field-box .booking-input {
        padding: 9px 15px;
        font-size: 15px;
    }

    .home-banner .content-box .text-box .para {
        line-height: 20px;
        font-size: 15px;
    }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box {
            margin-bottom: 15px;
        }

        .sec-about .text-box h2 {
            font-size: 30px;
            line-height: 33px;
            padding-bottom: 0;
        }

        .sec-about .text-box .para {
            font-weight: 300;
            padding: 8px 0 0;
        }

    .sec-services::before {
        display: none;
    }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title h2 {
            font-size: 36px;
            line-height: 40px;
            padding-bottom: 0;
        }

        .sec-services .sec-title h3 {
            font-size: 16px;
            padding: 0 0 4px 0;
        }

        .sec-services .sec-title {
            margin-bottom: 20px;
        }

        .sec-services .services-box {
            padding: 20px 30px;
            margin-bottom: 20px;
        }

    .our-fleet::before {
        display: none;
    }

    .our-fleet {
        padding: 40px 0 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
        }

            .our-fleet .sec-title h2 {
                font-size: 36px;
                line-height: 40px;
                padding-bottom: 10px;
                color: #000;
            }

        .our-fleet .fleet-box {
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .img-box img {
                height: 150px;
            }

    .app-section .app-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

        .app-section .app-box .text-box h3 {
            font-size: 16px;
            padding: 0 0 5px 0;
        }

        .app-section .app-box .text-box h2 {
            font-size: 21px;
            line-height: 27px;
            padding-bottom: 5px;
        }

        .app-section .app-box .text-box .para {
            font-size: 15px;
            font-weight: 300;
        }

        .app-section .app-box .text-box ul {
            margin-top: 10px;
            flex-direction: column;
        }

            .app-section .app-box .text-box ul li {
                padding: 4px 0px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .sec-title {
            margin-bottom: 20px;
        }

        .sec-info .white-box {
            margin-bottom: 10px;
        }

    .sec-contact .contact-form {
        padding: 20px 20px;
    }

        .sec-contact .contact-form h2 {
            font-size: 26px;
        }

    .sec-contact {
        padding: 10px 0 0px;
    }

    .footer-bg {
        overflow-x: hidden;
        padding: 0px 0 0;
    }

        .footer-bg .footer-middle {
            padding: 30px 10px 10px;
        }

    .inner-banner {
        height: 400px;
    }

        .inner-banner .content-box {
            margin-top: 90px;
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
                padding-bottom: 10px;
            }

            .inner-banner .content-box ul li a {
                font-size: 18px;
            }

    .vehicles-box2 {
        height: unset !important;
    }

    .about-section {
        overflow-x: hidden;
    }

    .section-padding {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }

    .home-banner .form-box .field-box .submit-button {
        padding: 8px 20px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 3px 15px;
        border-radius: 0;
        margin-top: 0px;
        box-shadow: none;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .main-header .book-btn {
        width: 140px;
        text-align: center;
        margin-bottom: 10px;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li {
        padding: 0 6px;
    }

        .upper-list .box-1 .info-list li span {
            font-size: 14px;
            padding-right: 5px;
        }

    .main-header {
        background: #e91f1f;
    }

        .main-header .logo {
            width: 150px;
            transition: 0.5s;
        }

    .home-banner {
        height: 80vh;
        margin-top: 150px;
    }

        .home-banner .content-box .text-box h1 {
            font-size: 42px;
            line-height: 48px;
            padding-bottom: 4px;
        }

        .home-banner .content-box .text-box h3 {
            font-size: 18px;
            padding: 6px 12px;
        }

        .home-banner .form-box .field-box .booking-input {
            padding: 9px 15px;
            font-size: 15px;
        }

        .home-banner .content-box .text-box .para {
            line-height: 20px;
            font-size: 15px;
        }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box {
            margin-top: 25px;
        }

        .sec-about .text-box h2 {
            font-size: 30px;
            line-height: 33px;
            padding-bottom: 0;
        }

        .sec-about .text-box .para {
            font-weight: 300;
            padding: 8px 0 0;
        }

    .sec-services::before {
        display: none;
    }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title h2 {
            font-size: 36px;
            line-height: 40px;
            padding-bottom: 0;
        }

        .sec-services .sec-title h3 {
            font-size: 16px;
            padding: 0 0 4px 0;
        }

        .sec-services .sec-title {
            margin-bottom: 20px;
        }

        .sec-services .services-box {
            padding: 20px 30px;
            margin-bottom: 20px;
        }

    .our-fleet::before {
        display: none;
    }

    .our-fleet {
        padding: 40px 0 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
        }

            .our-fleet .sec-title h2 {
                font-size: 36px;
                line-height: 40px;
                padding-bottom: 10px;
                color: #000;
            }

        .our-fleet .fleet-box {
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .img-box img {
                height: auto;
            }

    .app-section .app-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

        .app-section .app-box .text-box h3 {
            font-size: 16px;
            padding: 0 0 5px 0;
        }

        .app-section .app-box .text-box h2 {
            font-size: 21px;
            line-height: 27px;
            padding-bottom: 5px;
        }

        .app-section .app-box .text-box .para {
            font-size: 15px;
            font-weight: 300;
        }

        .app-section .app-box .text-box ul {
            margin-top: 10px;
            flex-direction: column;
        }

            .app-section .app-box .text-box ul li {
                padding: 4px 0px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .sec-title {
            margin-bottom: 20px;
        }

        .sec-info .white-box {
            margin-bottom: 10px;
        }

    .sec-contact .contact-form {
        padding: 20px 20px;
    }

        .sec-contact .contact-form h2 {
            font-size: 26px;
        }

    .sec-contact {
        padding: 10px 0 0px;
    }

    .footer-bg {
        overflow-x: hidden;
        padding: 0px 0 0;
    }

        .footer-bg .footer-middle {
            padding: 30px 10px 10px;
        }

    .inner-banner {
        height: 280px;
        margin-top: 150px;
    }

        .inner-banner .content-box {
            margin-top: 0;
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

            .inner-banner .content-box ul li a {
                font-size: 16px;
            }

    .vehicles-box2 {
        height: unset !important;
    }

    .about-section {
        overflow-x: hidden;
    }

    .section-padding {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }

    .setfield {
        width: unset !important;
    }

    .home-banner .content-box .text-box {
        margin-top: 50px;
    }

    .sec-about .text-box {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .app-section .app-box .img-box {
        text-align: center;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 3px 15px;
        border-radius: 0;
        margin-top: 0px;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .main-header .book-btn {
        width: 140px;
        text-align: center;
        margin-bottom: 10px;
    }

    .upper-list .align-box {
        flex-direction: column;
    }

    .upper-list .box-1 .info-list li {
        padding: 0 6px;
    }

        .upper-list .box-1 .info-list li span {
            font-size: 12px;
            padding-right: 2px;
        }

    .main-header {
        background: #fff;
    }

        .main-header .logo {
            width: 150px;
            transition: 0.5s;
        }

    .home-banner {
        height: 80vh;
        margin-top: 150px;
    }

        .home-banner .content-box .text-box h1 {
            font-size: 42px;
            line-height: 48px;
            padding-bottom: 4px;
        }

        .home-banner .content-box .text-box h3 {
            font-size: 18px;
            padding: 6px 12px;
        }

        .home-banner .form-box .field-box .booking-input {
            padding: 9px 15px;
            font-size: 15px;
        }

        .home-banner .content-box .text-box .para {
            line-height: 20px;
            font-size: 15px;
        }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box {
            margin-top: 20px;
        }

        .sec-about .text-box h2 {
            font-size: 30px;
            line-height: 33px;
            padding-bottom: 0;
        }

        .sec-about .text-box .para {
            font-weight: 300;
            padding: 8px 0 0;
        }

    .sec-services::before {
        display: none;
    }

    .sec-services {
        padding: 30px 0;
    }

        .sec-services .sec-title h2 {
            font-size: 36px;
            line-height: 40px;
            padding-bottom: 0;
        }

        .sec-services .sec-title h3 {
            font-size: 16px;
            padding: 0 0 4px 0;
        }

        .sec-services .sec-title {
            margin-bottom: 20px;
        }

        .sec-services .services-box {
            padding: 20px 30px;
            margin-bottom: 20px;
        }

    .our-fleet::before {
        display: none;
    }

    .our-fleet {
        padding: 20px 0 0;
    }

        .our-fleet .sec-title {
            margin-bottom: 20px;
        }

            .our-fleet .sec-title h2 {
                font-size: 36px;
                line-height: 40px;
                padding-bottom: 10px;
                color: #000;
            }

        .our-fleet .fleet-box {
            margin-bottom: 20px;
        }

            .our-fleet .fleet-box .img-box img {
                height: auto;
            }

    .app-section .app-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

        .app-section .app-box .text-box h3 {
            font-size: 16px;
            padding: 0 0 5px 0;
        }

        .app-section .app-box .text-box h2 {
            font-size: 21px;
            line-height: 27px;
            padding-bottom: 5px;
        }

        .app-section .app-box .text-box .para {
            font-size: 15px;
            font-weight: 300;
        }

        .app-section .app-box .text-box ul {
            margin-top: 10px;
            flex-direction: column;
        }

            .app-section .app-box .text-box ul li {
                padding: 4px 0px;
            }

    .sec-info {
        padding: 30px 0;
    }

        .sec-info .sec-title {
            margin-bottom: 20px;
        }

        .sec-info .white-box {
            margin-bottom: 10px;
        }

    .sec-contact .contact-form {
        padding: 20px 20px;
    }

        .sec-contact .contact-form h2 {
            font-size: 26px;
        }

    .sec-contact {
        padding: 10px 0 0px;
    }

    .footer-bg {
        overflow-x: hidden;
        padding: 0px 0 0;
    }

        .footer-bg .footer-middle {
            padding: 30px 10px 10px;
        }

    .inner-banner {
        height: 280px;
        margin-top: 150px;
    }

        .inner-banner .content-box {
            margin-top: 0;
            flex-direction: column;
            text-align: center;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
            }

            .inner-banner .content-box ul li a {
                font-size: 16px;
            }

    .vehicles-box2 {
        height: unset !important;
    }

    .about-section {
        overflow-x: hidden;
    }

    .section-padding {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }

    .setfield {
        width: unset !important;
    }

    .WelComeText {
        margin-left: 143px !important;
    }

    .home-banner .content-box .text-box {
        margin-top: 50px;
    }

    .sec-about .text-box {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .home-banner .content-box {
        top: 20%;
    }

    .home-banner .form-box {
        top: 44%;
    }

    .slider-1 .item img {
        height: 80vh;
        width: 100%;
        object-fit: cover;
    }
}

.float-right {
    float: right !important;
}

.area-inner {
    padding: 30px 0;
}

    .area-inner .content-box {
        text-align: center;
        padding-bottom: 30px;
    }

        .area-inner .content-box h2 {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            padding-bottom: 10px;
        }

        .area-inner .content-box .para {
            font-weight: 300;
            font-size: 15px;
            padding: 5px 0;
        }

    .area-inner ul {
        padding: 0 0 0 20px;
    }

        .area-inner ul li {
            position: relative;
            padding: 3px 0;
            font-weight: 300;
            text-transform: capitalize;
        }

            .area-inner ul li::before {
                content: '-';
                color: #ff392c;
                font-weight: 500;
                font-size: 20px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: -20px;
            }
