.topNav {
    background-color: var(--main-color);
    padding: 10px 0;
}

.topNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topNav_content a {
    color: #fff !important;
    display: flex;
    gap: 3px;
    align-items: center;
}

.topNav_content a:hover {
    color: whitesmoke;
}

.topNav_content__left,
.topNav_content__right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dropdown_btn {
    position: relative;
}

.dropdown_btn__list {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border: 1px solid #ccc;
    background-color: var(--white-color);
    width: 250px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease all;
}

.dropdown_btn:hover .dropdown_btn__list {
    opacity: 1;
    visibility: visible;
    transition: .3s ease all;
}

.dropdown_btn__list ul {
    display: block !important;
}



.service-btn {
    position: relative;
}

.service-btn::after {
    content: '\002B';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    font-size: 28px;
}

.mob-dropdown.active .service-btn::after {
    content: '\2212';
}

.dropdown_btn__list ul li a {
    padding: 12px;
    font-size: 16px !important;
    display: block;
    transition: .3s ease all;
    border-bottom: 1px solid #ccc;
}

.dropdown_btn__list ul li a:hover {
    background-color: var(--main-color) !important;
    color: var(--white-color) !important;
    padding-left: 1.5rem;
    transition: .3s ease all;
}

.mob-dropdown-list {
    height: 0;
    overflow: hidden;
}

.mob-dropdown.active .mob-dropdown-list {
    height: auto;
}

/* myNav_content */
.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.menu ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
}

.logo img {
    width: 150px;
}

/* banner_img */

.new_banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 100px 0 300px 0;
    background-position: center;
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .68)), url('../images/banner.jpg');
}

.taxi_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: -10rem;
}

.new_banner__content h1 {
    font-family: sans-serif;
    font-size: 80px;
    font-weight: 700;
}

.new_banner__content h2 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 50px;
    text-transform: uppercase;
}

.new_banner__content h3 {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 35px;
}


/* best_wrapper */
.best_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .86), rgba(0, 0, 0, .56)), url('../images/banner2.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0 30px 0;
}

.best_wrapper .global_content {
    margin-top: 4rem;
}

.best_box {
    display: flex;
    gap: 1rem;
    margin-bottom: 50px;
}

.white_heading h2 {
    color: var(--white-color) !important;
    text-align: center;
    text-transform: uppercase;
}

.white_heading h2 span {
    color: var(--main-color);
}

.best_box__content h3 {
    color: var(--main-color);
    text-transform: capitalize;
    font-weight: 700;
}

.white_heading {
    justify-content: center !important;
}

.best_box__content p {
    max-width: 450px;
    margin-top: 10px;
}

.best_box__img {
    height: 70px;
    width: 70px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    border-radius: 100px;
}

.best_box__img img {
    width: 40px;
}

/* booking_wrapper */
.booking_wrapper {
    background-color: var(--main-color);
    padding: 200px 0 80px 0;
    color: #000;
}

.booking_wrapper__content h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking_wrapper__content h3 {
    font-size: 44px;
    font-weight: 600;
    margin-top: 1rem;
    max-width: 600px;
    text-transform: capitalize;
}

.booking_wrapper__content p {
    font-size: 18px;
    margin-top: 1rem;
    max-width: 600px;
}

.booking_wrapper__content .myBtn a {
    background-color: var(--white-color);
    color: var(--main-color);
}

.booking-form {
    background-color: var(--white-color);
}

.booking-form h3 {
    color: var(--white-color);
    text-align: center;
    padding: 16px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--black-color);
}

.booking-form-input input,
.booking-form-input textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
}

.booking-form-input {
    padding: 1rem;
}

.booking-form-input button {
    width: 100%;
}

.tariffs_box {
    position: relative;
    background-color: #fff;
    padding: 80px 20px 20px;
    text-align: center;
    transition: .3s ease all;
    border-radius: 10px;
    height: 100%;
}


.tariffs_wrapper {
    background-color: whitesmoke;
}

.tariffs_box h3 {
    font-size: 25px;
    text-transform: capitalize;
    margin-top: 1rem;
}

.tariffs_box:hover,
.tariffs_box.active_box {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease all;
}

.tariffs_box.active_box h6 {
    color: #fff;
}

.tariffs_box.active_box .myBtn a {
    background-color: var(--white-color);
    color: var(--main-color);
}

.tariffs_box p {
    font-size: 15px;
    margin-top: 7px;
}

.tariffs_box h6 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--main-color);
}

.tariffs_box:hover h6 {
    color: var(--white-color);
}

.tariffs_box:hover .myBtn a {
    background-color: var(--white-color);
    color: var(--main-color);
}

.tariffs_box__img img {
    position: absolute;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
    top: -5rem;
}

.tariffs_wrapper__content .global_content {
    margin-top: 100px;
}













.banner_img img {
    width: 100%;
    height: 775px;
    object-fit: cover;
}

.banner_img {
    position: relative;
}

.banner_img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
}

.banner_wrapper {
    position: relative;
}

.banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
}

.banner_content b {
    max-width: max-content;
    text-transform: uppercase;
    background-color: rgb(255, 255, 255);
    border-radius: 100px;
    padding: 4px 12px;
    border: 1px solid #fff;
    backdrop-filter: blur(2px);
    color: var(--main-color);
}

.banner_content h1 {
    font-size: 75px;
    font-weight: 700;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1rem;
}

.banner_content p {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem;
}

.myBtn {
    margin-top: 2rem;
}

.banner_btn {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.banner_btn a:nth-child(2) {
    background-color: transparent;
    border: 1px solid var(--white-color);
}

.banner_btn a:hover {
    background-color: var(--main-color);
    color: #fff;
    transition: .3s ease all;
}

.banner_form {
    margin-top: 1rem !important;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.165);
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.banner_form b {
    background-color: var(--main-color);
    padding: 5px 10px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .6px;
}

.banner_form h3 {
    font-size: 35px;
    margin: 1rem 0 !important;
    font-weight: 700;
}

.banner_form__input {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    align-items: center;
    width: 100%;
}



.step-2 {
    opacity: 0;
    /* transform: translateY(-30px); */
    transform: translateX(-100%);
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
    pointer-events: none;
}

.step-2.active {
    transition: all 0.4s ease;
    opacity: 1;
    /* transform: translateY(0); */
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}


.form-step {
    transition: all 0.4s ease;
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}

.step-2 {
    display: flex !important;

}

.form-step input,
.form-step .form-select {
    width: 100%;
    padding: 10px;
    /* cursor: pointer; */
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px;
}

/* about */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 2rem;
}

.about_wrapper {
    /* padding: 200px 0 80px 0; */
}

.about_img,
.about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about_content b,
.why_content b {
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: var(--main-color);
}

.about_content h2 {
    font-size: 44px;
    font-weight: 700;
    max-width: 550px;
    margin-top: 12px;
}

.about_content p {
    font-size: 18px;
    margin-top: 1rem;
    max-width: 600px;
}

.about_ul ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 18px;
    font-weight: 600;
}

.about_ul ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.about_ul ul li i {
    color: var(--main-color);
}

/* service */
.main_heading h2,
.why_content h2 {
    color: var(--black-color);
    font-size: 44px;
    max-width: 700px;
    font-weight: 700;
}

.main_heading {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.main_heading p {
    max-width: 700px;
    text-align: right;
    margin: auto 0 auto auto;
}

.back_bg {
    background-color: #E3FFEE;
}

.service_box {
    padding: 25px;
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 24px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    transition: .3s ease-in;
}

.service_box:hover h3,
.service_box:hover a {
    color: var(--white-color);
}

.service_box:hover h3 span {
    background-color: var(--white-color);
    color: var(--main-color);
}

.service_box:hover .service_box__icon i {
    background-color: var(--white-color);
    color: var(--main-color);
}

.service_box:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease;
}

.service_box__icon img {
    width: 100%;
    border-radius: 5px;
    height: 250px;
    object-fit: cover;
}

.service_box__icon i {
    height: 44px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E3FFEE;
    font-size: 20px;
    border-radius: 100px;
    border: 1px solid #ccc;
}

.service_box h3 {
    margin: 1rem 0 !important;
    font-size: 25px;
    font-weight: 700;
    color: #0a4624;
    text-transform: capitalize;
}

.service_box a {
    display: flex;
    gap: 3px;
    align-items: center;
    color: var(--main-color);
    margin-top: 1rem;
    font-weight: 700;
}

.service_box a i {
    transform: rotate(-45deg);
}

/* why us */
.why_content p {
    margin-top: 1rem;
}

.why_parra p {
    margin-top: 1rem;
}

.why_right__box {
    padding: 24px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    gap: 1rem;
    transition: .3s ease all;
}

.why_right__box:hover i {
    background-color: var(--white-color);
    color: var(--main-color);
}

.why_right__box:hover {
    color: var(--white-color);
    background-color: var(--main-color);
    transition: .3s ease all;
}

.why_right__box-icon i {
    height: 75px;
    width: 75px;
    border-radius: 100px;
    font-size: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: var(--white-color);
}

.why_right__box-content h3 {
    font-size: 24px;
    font-weight: 600;
}

.why_right__box-content p {
    margin-top: 10px;
}

.taxi_giphy img {
    width: 100%;
    margin-top: 2rem;
    height: auto;
    object-position: left;
    object-fit: contain;
}

/* men_bg */
.cta_wrapper .row {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    color: var(--white-color);
    background-color: var(--black-color);
    /* background: linear-gradient(-100deg, #d6ffd1, #eaffba); */
}

.cta_img img {
    height: 400px;
}

.cta_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cta_content b {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--main-color);
}

.cta_content h3 {
    font-size: 32px;
    margin-top: 12px;
    font-weight: 600;
}

.cta_content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 1rem;
}

.cta_content .cta_call {
    display: flex;
    color: var(--main-color);
    font-size: 22px;
    justify-content: center;
    font-weight: 500;
    margin-top: 1rem;
    align-items: center;
    gap: 4px;
}

.menu_icon {
    display: none;
}

.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: .3s ease all;
}

.mobileNav.active {
    transition: .3s ease all;
    right: 0;
}

.mobileNav_content {
    max-width: 400px;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    height: 100%;
}

.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.cancel_icon i {
    height: 32px;
    width: 32px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    cursor: pointer;
}

.mobile_menu ul li a {
    display: flex;
    padding: 12px 1rem;
    text-transform: capitalize;
    border-bottom: 1px solid #ccc;
    color: var(--black-color);
    font-weight: 400;
}

@media(max-width:1440px) {
    .banner_form {
        max-width: 90%;
    }

    .about_content h2 {
        font-size: 32px;
    }

    .about_content p,
    .why_right__box-content p {
        font-size: 15px;
        margin-top: 7px;
    }

    .why_right__box-icon i {
        height: 50px;
        width: 50px;
        font-size: 25px;
    }

    .banner_content h1 {
        font-size: 55px;
        max-width: 900px;
    }

    .banner_img img {
        height: 605px;
    }

    .main_heading h2,
    .why_content h2 {
        font-size: 36px;
    }
}

@media(max-width:1220px) {
    .best_box__content p {
        max-width: 344px;
    }

    .menu ul {
        gap: 1.5rem;
    }

    .menu ul li a {
        font-size: 15px;
    }

    .tariffs_box__img img {
        width: 245px;
    }

    .tariffs_box {
        padding: 50px 20px 20px;
    }
}

@media(max-width:992px) {
    .tariffs_box {
        height: auto;
    }

    .banner_form__input {
        flex-wrap: wrap;
    }

    .best_box__content p {
        max-width: none;
    }

    .best_box__img {
        height: 70px;
        width: 231px;
    }

    .booking_wrapper__content h3 {
        font-size: 30px;
    }

    .booking_wrapper__content p {
        font-size: 16px;
    }

    .booking-form h3 {
        font-size: 22px;
    }

    .tariffs_box {
        padding: 20px;
        margin-bottom: 15px;
    }

    .tariffs_box__img img {
        position: inherit;
        transform: none;
    }

    .tariffs_wrapper__content .global_content {
        margin-top: 2rem;
    }

    .tariffs_box__img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu_icon {
        display: block;
    }

    .header_btn {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .menu_icon i {
        font-size: 24px;
    }

    .myNav_content {
        padding: 12px 0;
    }

    .menu ul {
        display: none;
    }

    .about_content h2 {
        font-size: 26px;
    }

    .about_ul ul li {
        font-size: 15px;
    }

    .main_heading h2,
    .why_content h2 {
        font-size: 30px;
    }

    .service_box h3 {
        font-size: 20px;
        margin: 12px 0 !important;
    }

    .taxi_giphy img {
        display: none;
    }

    .why_right {
        margin-top: 1rem;
    }

    .why_right__box {
        margin-bottom: 12px;
    }
}

@media(max-width:768px) {
    .form-step {
        flex-direction: column;
        gap: 10px;
    }

    .best_box {
        flex-direction: column;
    }

    .best_box__img {
        height: 70px;
        width: 70px;
    }

    .tariffs_box h6 {
        font-size: 22px;
    }

    .new_banner__content h1 {
        font-size: 50px;
    }

    .new_banner__content h2 {
        font-size: 35px;
    }

    .new_banner__content h3 {
        font-size: 25px;
    }

    .banner_form__input button {
        width: 100%;
    }

    .new_banner {
        padding: 45px 0 190px 0;
    }

    .taxi_img img {
        width: 500px;
    }

    .booking-form {
        margin-top: 2rem;
    }

    .myNav.sticky {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.165);
        border-bottom: 1px solid #ccc;
    }

    .topNav_content {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .banner_content {
        top: 35%;
    }

    .banner_content h1 {
        font-size: 25px;
    }

    .banner_content p {
        font-size: 14px;
        margin: 12px;
    }

    .banner_form {
        padding: 1rem;
    }

    .banner_form h3 {
        font-size: 22px;
    }

    .banner_form__input {
        flex-wrap: wrap;
        gap: 7px;
    }

    .banner_form {
        max-width: 100%;
    }

    .about_wrapper {
        padding: 120px 0 50px 0 !important;
    }

    .banner_form b {
        font-size: 12px;
    }

    .topNav_content a {
        font-size: 12px;
    }

    .topNav_content__left,
    .topNav_content__right {
        gap: 10px;
    }

    .banner_form__input input {
        padding: 6px;
    }

    .about_content {
        margin-top: 1rem;
    }

    .about_content h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .about_content p,
    .why_right__box-content p,
    .service_box p,
    .why_content p,
    .why_parra p,
    .why_right__box-content p,
    .cta_content p {
        font-size: 14px;
        margin-top: 6px;
        line-height: 23px;
    }

    .cta_wrapper .row {
        padding: 20px 12px 40px 12px;
        border-radius: 10px;
    }

    .myBtn {
        margin-top: 1.2rem;
    }

    .cta_content .cta_call {
        font-size: 20px;
        margin-top: 10px;
    }

    .why_right__box-icon i {
        height: 45px;
        width: 45px;
        font-size: 22px;
    }

    .why_right__box {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        border-radius: 10px;
    }

    .cta_content h3 {
        font-size: 22px;
    }

    .why_right__box-content h3 {
        font-size: 18px;
    }

    .service_box h3 {
        font-size: 18px;
        margin: 5px 0 !important;
    }

    .service_box a {
        font-size: 16px;
        margin-top: 10px;
    }

    .service_box {
        margin-bottom: 12px;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .main_heading h2,
    .why_content h2 {
        font-size: 22px;
    }

    .service_box {
        padding: 1rem;
    }
}

@media(max-width:576px) {
    .best_box {
        margin-bottom: 20px;
        gap: 10px;
    }

    .best_box__content p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 5px;
    }

    .best_box__content h3 {
        font-size: 20px;
    }

    .best_box__img {
        height: 50px;
        width: 50px;
    }

    .best_box__img img {
        width: 30px;
    }

    .taxi_img {
        bottom: -6rem;
    }

    .booking_wrapper {
        padding: 130px 0 50px 0;
    }

    .booking_wrapper__content h3 {
        font-size: 22px;
        margin-top: 10px;
    }

    .booking_wrapper__content p,
    .tariffs_box p {
        font-size: 14px;
        margin-top: 10px;
    }

    .new_banner__content h1 {
        font-size: 38px;
        margin: 6px 0 !important;
    }

    .new_banner__content h2 {
        font-size: 25px;
    }

    .new_banner__content h3 {
        font-size: 20px;
    }

    .booking-form h3 {
        font-size: 20px;
        padding: 12px;
    }

    .booking_wrapper__content h2 {
        font-size: 20px;
    }

    .tariffs_box h3 {
        font-size: 20px;
    }

}

@media(max-width:420px) {
    .new_banner {
        padding: 45px 0 140px 0;
    }

    .taxi_img img {
        width: 360px;
    }


}

.mission_img {
    height: 100%;
    width: 100%;
}

.mission_img img {
    height: 100%;
}

.taxi_img img {
    max-width: 800px;
}

.package_details__content h2 {
    padding-bottom: 1.5rem;
}

.title_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.title_heading h2 {
    color: #01BE62;
}

.table>:not(caption)>*>* {
    text-align: center;
}

.table>:not(:last-child)>:last-child>* {
    text-align: center;
}

.table thead {
    background-color: #01BE62;
}

.custom_c {
    color: #fff;
}

.rate_box {
    background-color: #E3F5E8;
}

.mrb_s {
    margin-bottom: 4rem;
}

.pricing_img img {
    width: 100%;
    border-radius: 10px;
}

.bg_color {
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.bg_color h2 {
    font-size: 21px;
    margin-bottom: 0.6rem !important;
    background-color: #01BE62;
    color: #fff;
    padding: 0.5rem;
    border-radius: 10px;
}


.bg_color p {
    background-color: #E3F5E8;
    margin-bottom: 0.6rem !important;
    padding: 0.7rem;
    color: #000;
    font-size: 15px;
    border-radius: 10px;
}

.bg_color p:hover {
    background-color: #01BE62;
    color: white;
}

.bg_color .btn1 {
    background-color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    color: white;
}

/* .bg_color a:hover {
    background-color: #000;
    color: #fff;
} */

.s_active {
    margin-bottom: 4rem !important;
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    color: black !important;
}

.mission-vision-content{
      background: #01BE62;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    height: 97%;
}
.mission-vision-content h2{
    color: white;
}

.mission-vision-content p{
    color: white;
}

.disclaimer_box h4{
    margin-top: 1rem;
    color: #01BE62;
}

@media(max-width:576px){
    .topNav{
        display: none;
    }
    
    .table-responsive {
    overflow-x: auto; width: 100%; max-height: 100%; min-height: 100px;
}
}

/*.disclaimer_box1{*/
/*background: #E3FFEE;*/
/*}*/