@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #004380;
    --secondary-color: #FAC600;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
}

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 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

p, span {
    padding: 0;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All Main Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 5px;
    background: var(--primary-color);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        font-weight: 500;
        transition: all 0.3s ease-in-out;
        font-size: 15px;
    }

        .infocont a:hover {
            color: var(--secondary-color);
        }

        .infocont a i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 0px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--secondary-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--white-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header .header_stick {
        width: 100%;
        position: relative;
        background: var(--white-color);
        transition: all 0.3s ease;
        z-index: 10;
    }

        .header .header_stick.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--white-color);
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            animation: fadeInDown 0.5s ease;
        }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #fff;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background-color: var(--secondary-color);
    }

.header .navbar-expand-lg {
    padding: 5px 0;
    background: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .header .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .header .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 40px;
    }

.header .navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: var(--primary-color);
    color: var(--white-color) !important;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .header .navbar-light .navbar-nav .nav-link.active:hover {
        color: var(--black-color) !important;
        background: var(--secondary-color);
    }

        .header .navbar-light .navbar-nav .nav-link.active:hover:before {
            display: none;
        }

.header .header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .header .header-Btn:hover {
        background: var(--secondary-color);
        color: var(--black-color);
    }

.header .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
/* .header .navbar-nav .nav-item:hover .nav-link{
color: var(--white-color) !important;
} */
.header .navbar-nav .nav-item:hover .inactive {
    color: var(--black-color) !important;
}

.header .navbar-nav .nav-item .inactive::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::before {
    width: 100%;
}

.header .navbar-brand .logo {
    width: 100px;
}

.header .dropdown-submenu {
    position: relative;
}

    .header .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
        position: absolute;
    }

    .header .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

.header .navbar-expand-lg .navbar-nav .dropdown-menu {
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 250px;
    padding: 0;
}

    .header .navbar-expand-lg .navbar-nav .dropdown-menu li {
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--primary-color);
    }

        .header .navbar-expand-lg .navbar-nav .dropdown-menu li:hover .color-change {
            color: var(--white-color);
        }

            .header .navbar-expand-lg .navbar-nav .dropdown-menu li:hover .color-change::before {
                display: none;
            }

a.dropdown-item.nav-link.inactive.color-change.active {
    border-radius: 0;
}

.header .dropdown-item.active, .dropdown-item:active {
    color: var(--white-color);
    background: var(--secondary-color);
}

.header .dropdown-item:hover, .dropdown-item:focus {
    color: var(--secondary-color);
    background: var(--primary-color);
}

.header .dropdown-item {
    color: var(--secondary-color);
}

.infocont-2 {
    width: 100%;
    text-align: end;
}

    .infocont-2 p {
        font-weight: 500;
        color: var(--secondary-color);
    }

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}
/* header css */
/* hero section */
.hero-section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/office.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bookingForm {
    width: 100%;
    background: #000000a6;
    border-radius: 20px;
    overflow: hidden;
}

.bookingForm-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    padding: 50px 35px;
}

.bookingForm h1 {
    margin-top: 50px;
}

.inp-icon {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

    .inp-icon .form-control-custom {
        width: 100%;
        padding: 10px 48px 10px 5px;
        border: none;
        border-bottom: 2px solid #ffffff;
        box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1);
        background: #ffffff00;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        color: #fff;
        position: relative;
        z-index: 1;
    }

        .inp-icon .form-control-custom:focus {
            outline: none;
            box-shadow: none;
            border: none;
            border-bottom: 2px solid var(--white-color);
            --webkit-box-shadow: none;
        }

        .inp-icon .form-control-custom::placeholder {
            color: var(--white-color);
            font-weight: 400;
        }

        .inp-icon .form-control-custom option {
            color: var(--black-color);
        }

    .inp-icon i {
        position: absolute;
        top: 0px;
        right: 5px;
        color: #ffffff;
        z-index: 0;
        background: #004380;
        padding: 10px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        font-size: 18px;
    }

.tab-content {
    width: 100%;
    padding: 50px;
}

.nav-pills .nav-link.active {
    background: #ef1a24 !important;
    font-size: 18px;
    padding: 10px 40px;
}

.nav-pills .nav-link {
    border-radius: 0 !important;
    background: var(--white-color);
    box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1);
    font-size: 18px;
    padding: 10px 40px;
    border: 2px solid #ef1a24;
    color: var(--secondary-color);
}

.right-image-con {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.form-image {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-design {
    background: #fdd128cc;
    width: 400px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    border-radius: 0px 10px 10px 0px;
}

.bookingForm .bookingForm-left .form-btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--secondary-color);
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .bookingForm .bookingForm-left .form-btn:hover {
        background: var(--primary-color);
        color: var(--white-color);
    }
/* hero section */
/* about section css start */
.about-section {
    width: 100%;
    padding: 60px 0;
}

    .about-section h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 40px;
    }

    .about-section .inabout-head {
        font-size: 52px;
        font-weight: 700;
        color: var(--black-color);
        margin-top: 40px;
        margin-bottom: 0px;
    }

.left-content-about {
    width: 100%;
    padding: 20px 0;
}

    .left-content-about p {
        color: var(--black-color);
        margin-bottom: 10px;
    }

    .left-content-about h3 {
        width: fit-content;
        background: var(--secondary-color);
        color: var(--black-color);
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 18px;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .left-content-about h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 38px;
    }

    .left-content-about .second-p {
        margin-bottom: 10px;
    }

.right-content-about {
    position: relative;
}

    .right-content-about::before {
        content: '';
        background-color: transparent;
        border: 3px solid var(--secondary-color);
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: 20px;
        left: -20px;
        bottom: 20px;
        z-index: 1;
    }

    .right-content-about img {
        border-radius: 10px;
    }

.about-Btn {
    border: none;
    padding: 12px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .about-Btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* about section css end */
/* services section css start */
.sec-tours {
    width: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .sec-tours h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 40px;
    }

    .sec-tours .industries-box {
        width: 100%;
        border: 2px solid var(--secondary-color);
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        padding: 20px;
    }

        .sec-tours .industries-box .img-box {
            width: 100%;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
        }

            .sec-tours .industries-box .img-box img {
                width: 100%;
                height: 260px;
                object-fit: cover;
            }

        .sec-tours .industries-box .for-abs {
            position: absolute;
            top: 40px;
            left: 40px;
            background: var(--secondary-color);
            padding: 10px 20px;
            border-radius: 10px;
        }

            .sec-tours .industries-box .for-abs h3 {
                color: var(--black-color);
                font-size: 16px;
                font-weight: 700;
            }

        .sec-tours .industries-box .detail-table p {
            color: var(--white-color);
            margin-bottom: 20px;
        }

        .sec-tours .industries-box .detail-table .day-count {
            width: 100%;
            text-align: center;
            border: none;
            padding: 10px 20px !important;
            background: var(--secondary-color);
            color: var(--black-color);
            border-radius: 5px;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            transition: all 0.3s ease;
        }

            .sec-tours .industries-box .detail-table .day-count:hover {
                color: var(--primary-color);
                background: var(--white-color);
            }
/* services section css end */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

    .our-fleet-section h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 40px;
    }

    .our-fleet-section .fleetPara {
        text-align: center;
        margin-bottom: 50px;
    }

.fleet-card {
    width: 100%;
    height: 100%;
    padding: 30px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 220px;
        border-radius: 15px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--black-color);
        margin-bottom: 10px;
        font-size: 26px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--secondary-color);
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--secondary-color);
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 10px;
}

    .fleet-features i {
        padding-right: 5px;
        color: var(--secondary-color);
    }

.fleet_btn {
    width: 100%;
    border: none;
    padding: 10px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .fleet_btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* our fleets section */
/* app section css */
.sec-app {
    padding: 60px 0 80px;
    background-color: var(--primary-color);
}

    .sec-app .sec-title {
        padding: 0 0 50px;
    }

        .sec-app .sec-title h3 {
            font-size: 20px;
            color: #ffffff;
            padding: 7px 20px;
            background-color: var(--secondary-color);
            color: var(--black-color);
            border-radius: 10px;
            width: fit-content;
            font-weight: 600;
        }

        .sec-app .sec-title h2 {
            font-size: 30px;
            color: var(--white-color);
            padding: 7px 0 0;
            font-weight: 700;
        }

        .sec-app .sec-title .para {
            color: var(--white-color);
            font-size: 16px;
            padding: 7px 0 0;
        }

    .sec-app .content-box {
        position: relative;
    }

        .sec-app .content-box .img-box {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            position: relative;
        }

            .sec-app .content-box .img-box .img-fluid {
                height: 530px;
                object-fit: contain;
            }

            .sec-app .content-box .img-box .scan-style {
                width: 220px;
                position: absolute;
                bottom: 10%;
                left: 40%;
                transform: translateX(-50%);
                background-color: var(--secondary-color);
                padding: 13px;
                border-radius: 20px;
            }

        .sec-app .content-box .app-detail-box {
            position: relative;
            background: var(--white-color);
            padding: 8% 10%;
            border-radius: 20px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            margin-bottom: 25px;
            border: 5px solid var(--secondary-color);
        }

            .sec-app .content-box .app-detail-box h4 {
                font-size: 34px;
                color: var(--black-color);
                font-weight: 700;
                padding-bottom: 7px;
            }

            .sec-app .content-box .app-detail-box h6 {
                font-size: 22px;
                color: var(--black-color);
                font-weight: 600;
            }

    .sec-app .app-link h4 {
        font-size: 20px;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .sec-app .app-link ul {
        display: flex;
        padding-top: 12px;
    }

        .sec-app .app-link ul li {
            border: 3px solid var(--secondary-color);
            border-radius: 11px;
            margin: 0 5px 0 0;
        }
/* app section css */
/* contact section */
.contact-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

.contact-heading {
    width: 100%;
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black-color);
}

.main-contact {
    width: 100%;
    height: 100%;
    background: var(--white-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
}

.contact-info {
    width: 100%;
    height: 100%;
    padding: 50px;
    background: var(--primary-color);
    border-radius: 15px 0px 0px 15px;
}

    .contact-info h3 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--white-color);
    }

    .contact-info p {
        color: var(--white-color);
        margin-bottom: 10px;
        font-size: 16px;
    }

.sicial-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.in-con {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--black-color);
}

    .in-con i {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--secondary-color);
        color: var(--black-color);
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

    .in-con:hover i {
        color: var(--white-color);
    }

    .in-con a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .in-con a:hover {
            color: var(--secondary-color);
        }

.contact-form {
    width: 100%;
    height: 100%;
    padding: 50px;
}

.con_inp {
    width: 100%;
    height: 100%;
}

.contact-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
}

    .contact-input::placeholder {
        color: var(--black-color);
        font-weight: 500;
    }

    .contact-input:focus {
        outline: none;
        border: 2px solid var(--primary-color);
    }

.contact-Btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .contact-Btn:hover {
        color: var(--black-color);
        background: var(--secondary-color);
    }
/* contact section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: var(--white-color);
        font-size: 24px;
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

.footer .footer_ul .footer_li a > i {
    padding-right: 5px;
}

.right-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.getin_touch a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

    .getin_touch a:hover {
        color: var(--secondary-color);
    }

    .getin_touch a > i {
        padding-right: 5px;
        margin-top: 5px;
    }

.getin_touch p {
    color: var(--white-color);
}

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

    .social-icons .icon {
        background: var(--black-color);
        padding: 10px 15px;
        color: #ffffff;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

        .social-icons .icon:hover {
            background: var(--secondary-color);
            color: var(--black-color);
        }

.bootom-footer-section {
    width: 100%;
    background: var(--black-color);
    padding: 6px;
    color: #ffffff;
    text-align: center;
}

    .bootom-footer-section .bottom-footer-content p {
        font-size: 14px;
    }

    .bootom-footer-section .bottom-footer-content a {
        color: #ffffff;
        transition: all 0.3s ease-in-out;
    }

        .bootom-footer-section .bottom-footer-content a:hover {
            color: var(--secondary-color);
        }

.footer-logo {
    width: 180px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    padding: 80px;
    background: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
    font-family: "Poppins", sans-serif;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-decoration: underline;
}
/* inner pages banner css */
/* inner services page css */
.services-page .adjust-spcing .text-box {
    width: 100%;
    height: auto;
}

.services-page .adjust-spcing {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

    .services-page .adjust-spcing .text-box h2 {
        font-size: 42px;
        margin-bottom: 20px;
        font-weight: 700;
    }

.sec-services .text-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.services-page .adjust-spcing .text-box p {
    color: var(--black-color);
    padding: 5px 0;
}

.services-page .adjust-spcing .img-box {
    position: relative;
}

    .services-page .adjust-spcing .img-box::before {
        content: '';
        background-color: transparent;
        border: 3px solid var(--secondary-color);
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: -20px;
        left: 20px;
        bottom: 20px;
        z-index: 1;
    }

.services-page .adjust-spcing .img-box-left {
    position: relative;
}

    .services-page .adjust-spcing .img-box-left::before {
        content: '';
        background-color: transparent;
        border: 3px solid var(--secondary-color);
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: 20px;
        left: -20px;
        bottom: 20px;
        z-index: 1;
    }

.services-page .adjust-spcing .img-box img {
    border-radius: 20px;
}

.services-page .adjust-spcing .img-box .img-ari {
    width: 100%;
}

.services-page .adjust-spcing .img-box-left img {
    border-radius: 20px;
}

.services-page .adjust-spcing ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

    .services-page .adjust-spcing ul li i {
        color: var(--secondary-color);
        font-size: 10px;
    }

.service-center-section {
    width: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

    .service-center-section h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
        text-align: center;
    }

    .service-center-section p {
        color: var(--white-color);
        margin-bottom: 40px;
        text-align: center;
    }
/* inner services page css */
/* our services section */
.services-section {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--primary-color);
}

.heading-services {
    width: 100%;
    /* text-align: center; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

    .heading-services h2 {
        font-size: 52px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
        text-align: center;
    }

    .heading-services p {
        color: var(--white-color);
        margin-bottom: 40px;
        text-align: center;
    }

.service-main {
    width: 100%;
    height: 100%;
    padding: 40px 0 0 0;
}

.service-card {
    width: 100%;
    padding: 40px;
    border: 5px solid var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 25px;
}

    .service-card h3 {
        font-size: 30px;
        color: var(--white-color);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .service-card p {
        margin-bottom: 10px;
        color: var(--white-color);
    }

.service-BTn {
    border: none;
    padding: 12px 40px !important;
    text-align: center;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .service-BTn:hover {
        color: var(--black-color);
        background: var(--white-color);
    }

.distilery-tour-section {
    width: 100%;
    padding: 40px 0;
}

    .distilery-tour-section .distilery-tour-card {
        width: 100%;
        height: 610px;
        padding: 20px;
        border: 3px solid var(--primary-color);
        border-radius: 15px;
    }

        .distilery-tour-section .distilery-tour-card img {
            border-radius: 15px;
            width: 100%;
            border: 3px solid var(--primary-color);
            margin-bottom: 10px;
        }

        .distilery-tour-section .distilery-tour-card h4 {
            color: var(--black-color);
            margin-bottom: 10px;
            font-size: 32px;
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--primary-color);
        }
/* our services section */
/* terms and conditions css */
.sec-privacy {
    width: 100%;
    padding: 50px 0;
}

    .sec-privacy .content-box {
        width: 100%;
    }

        .sec-privacy .content-box p {
            margin-bottom: 20px;
        }

        .sec-privacy .content-box .achortage {
            color: var(--primary-color);
            font-weight: 600;
            font-family: "Poppins", sans-serif;
        }

        .sec-privacy .content-box h1 {
            width: fit-content;
            background: var(--primary-color);
            color: var(--white-color);
            padding: 10px 40px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .sec-privacy .content-box h3 {
            color: var(--black-color);
            margin: 20px 0;
            font-weight: 700;
        }

        .sec-privacy .content-box ul li {
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }

            .sec-privacy .content-box ul li i {
                font-size: 12px;
                color: var(--primary-color);
                margin-top: 7px;
            }
/* terms and conditions css */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #edf2fa;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #004380;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #004380 !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #ffc008;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #edf2fa;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #fdc300;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #004380;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #024480;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #edf2fa;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #edf2fa;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

#lkbtn_lgout {
    padding: 0;
}

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
/************************** All Main Css End **************************/
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .header .header-Btn {
        padding: 10px 20px !important;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 8px;
        flex-wrap: wrap;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 30px 0;
    }

        .about-section h2 {
            font-size: 30px;
            margin-bottom: 10px;
        }

    .right-content-about::before {
        display: none;
    }

    .left-content-about h4 {
        font-size: 30px;
    }

    .sec-tours h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .sec-tours .industries-box {
        padding: 15px;
        margin-bottom: 15px;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        height: unset;
        padding: 15px;
        margin-bottom: 15px;
    }

    .sec-app {
        padding: 30px 0 30px;
    }

        .sec-app .sec-title h2 {
            font-size: 26px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .content-box {
            margin-top: 20px;
        }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info h3 {
            font-size: 26px;
        }

    .contact-form {
        padding: 15px;
    }

    .center-footer-content {
        margin: 10px 0;
    }

    .footer-logo {
        width: 140px;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 68%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
    }

    .WelComeText {
    }

    .banner-section {
        padding: 50px 0;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 0px;
    }

    .about-section .inabout-head {
        font-size: 30px;
        margin-top: 0px;
    }

    .left-content-about {
        padding: 7px 0;
    }

    .services-page .adjust-spcing .img-box::before {
        display: none;
    }

    .services-page .adjust-spcing .text-box h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .services-page .adjust-spcing {
        padding: 10px 10px;
    }

        .services-page .adjust-spcing .img-box-left::before {
            display: none;
        }

    .heading-services h2 {
        font-size: 30px;
    }

    .heading-services p {
        margin-bottom: 0px;
    }

    .service-card {
        padding: 20px;
    }

    .distilery-tour-section .distilery-tour-card {
        padding: 15px;
        margin-bottom: 15px;
        height: auto;
    }

    .distilery-tour-section {
        padding: 30px 0 0;
    }

    .contact-Btn {
        margin-top: 20px;
    }

    .bg-design {
        width: 100%;
    }

    .sec-app .content-box .app-detail-box {
        padding: 8% 7%;
    }

    .sec-app .app-link ul li a img {
        width: 200px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 8px;
        flex-wrap: wrap;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 30px 0;
    }

        .about-section h2 {
            font-size: 30px;
            margin-bottom: 10px;
        }

    .right-content-about::before {
        display: none;
    }

    .left-content-about h4 {
        font-size: 30px;
    }

    .sec-tours h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .sec-tours .industries-box {
        padding: 15px;
        margin-bottom: 15px;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        height: unset;
        padding: 15px;
        margin-bottom: 15px;
    }

    .sec-app {
        padding: 30px 0 30px;
    }

        .sec-app .sec-title h2 {
            font-size: 26px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .content-box {
            margin-top: 20px;
        }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info h3 {
            font-size: 26px;
        }

    .contact-form {
        padding: 15px;
    }

    .center-footer-content {
        margin: 10px 0;
    }

    .footer-logo {
        width: 140px;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 73%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }

    .banner-section {
        padding: 50px 0;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 0px;
    }

    .about-section .inabout-head {
        font-size: 30px;
        margin-top: 0px;
    }

    .left-content-about {
        padding: 7px 0;
    }

    .services-page .adjust-spcing .img-box::before {
        display: none;
    }

    .services-page .adjust-spcing .text-box h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .services-page .adjust-spcing {
        padding: 10px 10px;
    }

        .services-page .adjust-spcing .img-box-left::before {
            display: none;
        }

    .heading-services h2 {
        font-size: 30px;
    }

    .heading-services p {
        margin-bottom: 0px;
    }

    .service-card {
        padding: 20px;
    }

    .distilery-tour-section .distilery-tour-card {
        padding: 15px;
        margin-bottom: 15px;
        height: auto;
    }

    .distilery-tour-section {
        padding: 30px 0 0;
    }

    .contact-Btn {
        margin-top: 20px;
    }

    .bg-design {
        width: 100%;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .infocont {
        gap: 8px;
        flex-wrap: wrap;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 30px 0;
    }

        .about-section h2 {
            font-size: 30px;
            margin-bottom: 10px;
        }

    .right-content-about::before {
        display: none;
    }

    .left-content-about h4 {
        font-size: 30px;
    }

    .sec-tours h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .sec-tours .industries-box {
        padding: 15px;
        margin-bottom: 15px;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        height: unset;
        padding: 15px;
        margin-bottom: 15px;
    }

    .sec-app {
        padding: 30px 0 30px;
    }

        .sec-app .sec-title h2 {
            font-size: 26px;
        }

        .sec-app .sec-title {
            padding: 0 0 20px;
        }

        .sec-app .content-box {
            margin-top: 20px;
        }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-info {
        padding: 20px;
    }

        .contact-info h3 {
            font-size: 26px;
        }

    .contact-form {
        padding: 15px;
    }

    .center-footer-content {
        margin: 10px 0;
    }

    .footer-logo {
        width: 140px;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }

    .payfield {
        width: 100% !important;
    }

    .welcome {
        height: 380px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 225px !important;
        margin-left: 50px !important;
        line-height: 23px !important;
    }

    .banner-section {
        padding: 50px 0;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 0px;
    }

    .about-section .inabout-head {
        font-size: 30px;
        margin-top: 0px;
    }

    .left-content-about {
        padding: 7px 0;
    }

    .services-page .adjust-spcing .img-box::before {
        display: none;
    }

    .services-page .adjust-spcing .text-box h2 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .services-page .adjust-spcing {
        padding: 10px 10px;
    }

        .services-page .adjust-spcing .img-box-left::before {
            display: none;
        }

    .heading-services h2 {
        font-size: 30px;
    }

    .heading-services p {
        margin-bottom: 0px;
    }

    .service-card {
        padding: 20px;
    }

    .distilery-tour-section .distilery-tour-card {
        padding: 15px;
        margin-bottom: 15px;
        height: auto;
    }

    .distilery-tour-section {
        padding: 30px 0 0;
    }

    .contact-Btn {
        margin-top: 20px;
    }
}
