* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Urbanist';
}

body,
html {
    height: 100%;
    width: 100%;
}

/* COMMON-CLASSES */

:root {
    --primary-color: #F6921E;
    --primary-btn-color: #0277CE;
    --primary-light-color: #F4F4F4;
    --secondary-color: #34C759;
    --secondary-dark: #1B8C37;
}

.bg-org {
    background-color: var(--primary-color);
}

h1 {
    font-size: clamp(35px, 7vw, 50px) !important;
}

.m-text {
    color: var(--primary-color);
}

.g-text {
    color: var(--secondary-color);
}

a {
    text-decoration: none !important;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.m-btn {
    background-color: var(--primary-btn-color);
    border-color: transparent;
    color: #fff;
}

.san {
    font-family: 'Sansita';
}

.s-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    /* color: #fff; */
}

.c-btn {
    background-color: transparent;
    border: 1px solid var(--primary-btn-color);
    color: var(--primary-color);
    transition: all ease .4s;
}

.c-btn:hover {
    background-color: var(--primary-btn-color);
    color: #fff;
}

.truncate_1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}

.truncate_2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.truncate_3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.truncate_4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
}

.truncate_5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
}

.truncate_6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
}

.truncate_10 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 10;
    text-overflow: ellipsis;
}

.more_view_btn {
    display: block !important;
    padding: .7rem 0 !important;
    text-decoration: underline !important;
    background-color: transparent !important;
    color: #000 !important;
    margin-top: 0rem !important;
}

.c_height {
    height: 20rem;
}

.line_heading {
    color: #7A288A;
    position: relative;
    font-weight: 600;
}

.line_heading::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    width: 50px;
    border-radius: 50px;
    margin-left: 14px;
    background-color: #00000033;
}

.d_line_heading {
    position: relative;

}

.progress_bar {
    background-color: var(--primary-color) !important;
}

.progress,
.progress-stacked {
    height: 8px !important;
    border-radius: 0px !important;
    background-color: var(--secondary-color) !important;
}

.shadow-org {
    background-color: var(--primary-color);
    box-shadow: 0px 4px 4px 0px #00000040;
}

.shadow-white {
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
}

.nav-link.active {
    font-weight: 900;
}

.nav-tabs {
    --bs-nav-tabs-link-active-bg: none !important;
    border: 1px solid #000 !important;
    border-radius: 50px !important;
    width: fit-content;
}

.nav-tab {
    color: #666666 !important;
    border: none !important;
}

.nav-tab.active {
    color: var(--primary-color) !important;
}

/* .dropdown-menu {
    left: -300% !important;
} */


/* ================HOME-PAGE================ */

/* LANDING_PAGE */
.home-landing-page {

    article {
        padding: 30vh 0;
        width: clamp(30rem, 70vw, 50rem);
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.844);
        /* background-image: url('../images/home-landing-bg.jpeg'); */
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

/* PROJECTS_SECTIONS */
.home_projects {

    .heading_projects::before,
    .heading_projects::after {
        content: '';
        position: absolute;
        height: 4px;
        width: 50%;
        border-radius: 50px;
        background-color: #D9D9D9;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .heading_projects::before {
        left: 0;
        margin-right: 10px;
    }

    .heading_projects::after {
        right: 0;
        margin-left: 10px;
    }

    .projects_cards {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        padding: 0 8vw;
    }

    @media (max-width: 767px) {
        .projects_cards {
            display: grid;
            gap: 30px;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            padding: 0 3vw;
        }
    }

    .projects_cards .card {
        box-shadow: 0px 10px 25px 0px #252a342b;

        p {
            font-size: 14px;
        }
    }

}

/* LATEST_COURSES */
.latest_courses {
    .card {
        box-shadow: 0px 10px 25px 0px #252a342b;

        p {
            font-size: 14px;
        }
    }

    .swiper {
        overflow: visible;
    }

    .swiper-button-next,
    .swiper-button-prev {
        background-color: var(--primary-color) !important;
        border-radius: 50%;
        height: 40px;
        width: 40px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 20px !important;
        color: #fff;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 900;
    }

    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 93% !important;
    }
}

/* TESTIMONIALS */
.testimonials {

    background-image: url('../images/testimonial-bg.jpeg');
    background-position: center;
    background-size: cover;
    position: relative;

    .d_line_heading::before,
    .d_line_heading::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 150px;
        border-radius: 50px;
        background-color: #d9d9d9b4;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .d_line_heading::before {
        left: 31%;
        margin-right: 40px;
    }

    .d_line_heading::after {
        right: 31%;
        margin-left: 40px;
    }

    .carousel-indicators {
        bottom: -20%;
    }

    .carousel-control-prev {
        background-color: #fff;
        height: 40px;
        width: 40px;
        top: 20% !important;
        border-radius: 50%;
        color: var(--primary-color) !important;
    }

    .carousel-control-next {
        background-color: #fff !important;
        height: 40px;
        width: 40px;
        top: 20% !important;
        border-radius: 50%;
        color: var(--primary-color) !important;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: var(--primary-color) !important;
        transition: all ease .4s;
        color: #fff !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-image: none !important;
        width: fit-content;
        height: fit-content;
    }

    .carousel-control-prev-icon:focus {
        background-color: red !important;
    }

}

/* TESTIMONIAL */
.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f6911ea2;
    z-index: 1;
}

/* FAQ_SECTION */
.faq_section .accordion {
    --bs-accordion-bg: transparent !important;
}

.faq_section .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.faq_section .accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.faq_section .accordion-body {
    padding-top: 10px;
}

/* NEWS_SECTION */
.news_section {
    .card {
        box-shadow: 0px 10px 25px 0px #252a342b;

        p {
            font-size: 14px;
        }
    }

    .swiper {
        overflow: visible;
    }

    .swiper-button-next,
    .swiper-button-prev {
        background-color: var(--primary-color) !important;
        border-radius: 50%;
        height: 40px;
        width: 40px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 20px !important;
        color: #fff;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 900;
    }

    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 92% !important;
    }

    @media (max-width: 1200px) {
        .swiper-button-next {
            position: absolute;
            top: -6% !important;
            right: 0 !important;
        }

        .swiper-button-prev {
            position: absolute;
            top: -6% !important;
            left: 90% !important;
        }
    }

    @media (max-width: 992px) {
        .swiper-button-next {
            position: absolute;
            top: -6% !important;
            right: 0 !important;
        }

        .swiper-button-prev {
            position: absolute;
            top: -6% !important;
            left: 84% !important;
        }
    }

    @media (max-width: 567px) {
        .swiper-button-next {
            position: absolute;
            top: -6% !important;
            right: 0 !important;
        }

        .swiper-button-prev {
            position: absolute;
            top: -6% !important;
            left: 76% !important;
        }
    }
}

.donate {
    background-color: var(--primary-color);

    h1 {
        font-family: 'Sansita';
    }

    .donate-img {
        background-image: url('../images/donate.jpeg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
    }

    .donate-img::after {
        content: '';
        position: absolute;
        background: #0f4024bf;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
    }

    .custom-radio input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border: 2px solid #ccc;
        border-radius: 50%;
        background-color: #f8f9fa;
        cursor: pointer;
        padding: 0 !important;
        /* transition: all 0.4s ease; */
    }

    .custom-radio input[type="radio"]:checked {
        background-color: orange;
        border-color: orange;
    }

    .custom-radio input[type="radio"]:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 3px;
    }

    .d-radio-label {
        vertical-align: middle;
    }

}


/* CONTACT_US */

.contact_us {

    .contact-info {
        background: linear-gradient(180deg, #F6921E 0%, #FEA96E 100%);
        color: #fff;
    }

    .contact-form {
        box-shadow: 0px 0px 60px 30px #00000011;
    }

    .form-control {
        border: none !important;
        border-bottom: 1px solid #000 !important;
        border-radius: 0 !important;
        padding-top: 0 !important;
    }

    .form-label {
        margin-bottom: 0 !important;
    }

    .form-control:focus {
        box-shadow: none !important;
        outline: none !important;
    }

    input[type="checkbox"] {
        appearance: none;
        width: 17px;
        height: 17px;
        background-color: rgb(224, 223, 223);
        /* border: 2px solid black; */
        border-radius: 50px;
        cursor: pointer;
        display: inline-block;
        position: relative;
        padding: 0 !important;
    }

    input[type="checkbox"]:checked {
        background-color: black;
        color: white;
    }

    input[type="checkbox"]:checked::before {
        content: '✔';
        color: white;
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}

.footer {
    background-color: var(--primary-color);

    a {
        text-decoration: none;
        color: #fff;
        font-weight: 300;
        font-size: 14px;
    }

    li {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .subs {
        background-color: var(--secondary-dark);
    }

    hr {
        border-color: #fff !important;
    }
}

/* =======================WHO WE ARE====================== */

/* LANDING_PAGE */
.about-landing-page {

    article {
        padding: 30vh 0;
    }

    .a-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .a-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/about-bg.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .a-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8a;
    }

}

/* GLANCE */
.glance {
    .raised {
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .volun {
        background-color: var(--primary-color);
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .served {
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .member {
        background-color: var(--primary-color);
        box-shadow: 0px 4px 4px 0px #00000040;
    }
}


/* ANNUAL_REPORT */
.annual_report {
    .date-org {
        background-image: url('../images/time-line-bg.png');
        background-size: cover;
        background-position: center;
        border: none;
        position: relative;
        z-index: 2;
    }

    .date-pur {
        background-image: url('../images/t-btn-p.png');
        background-size: cover;
        background-position: center;
        border: none;
        position: relative;
        z-index: 2;
    }

    .timeline {
        height: 30rem
    }

    .timeline::-webkit-scrollbar {
        height: 3px;
        width: 100%;
        background-color: #0000001f;
    }

    .timeline::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.379);
    }

    @media (max-width: 992px) {
        .timeline {
            height: auto;
            padding-top: 0rem !important
        }

        .timeline-item {
            width: 50% !important;
            margin-top: 0 !important;
        }
    }

    @media (max-width: 767px) {

        .timeline-item {
            width: 100% !important;
        }
    }

    .timeline-item {
        min-width: 20rem;
    }

}


/* STRAREGY */
.strategy {
    .raised {
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .volun {
        background-color: var(--primary-color);
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .served {
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px #00000040;
    }

    .member {
        background-color: var(--primary-color);
        box-shadow: 0px 4px 4px 0px #00000040;
    }
}


/* DIVERSITY */
.diversity {

    .diversity-content {
        background-image: url('../images/diversity.png');
        background-position: center;
        background-size: cover;
        position: relative;
    }

    .diversity-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #f6911e9c;
        z-index: 1;
    }

    .bg {
        height: fit-content;
        width: fit-content;
        background-color: var(--primary-color);
        padding: .5rem;
        border-radius: 50%;
    }

}


/* ================WHERE-WE-WORK-PAGE================ */

/* LANDING_PAGE */
.work-landing-page {
    /* height: 85vh; */

    article {
        padding: 30vh 0;
        width: clamp(22rem, 70vw, 40rem);
    }

    .w-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .w-landing-right {
        /* background-color: rgba(0, 0, 128, 0.8); */
        background-image: url('../images/map.jpeg');
        width: 80%;
        background-size: cover;
        background-position: center;
    }

    .w-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ceb3;
    }

}


/* ==========================WHAT-WE-DO========================= */
.focus-landing-page {

    article {
        padding: 30vh 0;
    }

    .f-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .f-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/what_we_do_banner.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .f-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0277CE4D;
    }

}

/* EMPOWERMENT */
.empowerment {

    .empowerment-content {
        background-image: url('../images/diversity.png');
        background-position: center;
        background-size: cover;
        position: relative;
    }

    .empowerment-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #f6911e9c;
        z-index: 1;
    }

    .bg {
        height: fit-content;
        width: fit-content;
        background-color: var(--primary-color);
        padding: .5rem;
        border-radius: 50%;
    }

}


/* =======================HOW TO HELP====================== */

/* LANDING_PAGE */
.help-landing-page {

    article {
        padding: 30vh 0;
        width: clamp(22rem, 70vw, 40rem);
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/help-banner.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

/* BECOME A DONOR */
.donor {
    /* background-color: var(--primary-color); */

    h1 {
        font-family: 'Sansita';
    }

    .donate-img {
        background-image: url('../images/donate.jpeg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
    }

    .donate-img::after {
        content: '';
        position: absolute;
        background: #0f40243b;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
    }

    .custom-radio input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border: 2px solid #ccc;
        border-radius: 50%;
        background-color: #f8f9fa;
        cursor: pointer;
        padding: 0 !important;
        /* transition: all 0.4s ease; */
    }

    .custom-radio input[type="radio"]:checked {
        background-color: orange;
        border-color: orange;
    }

    .custom-radio input[type="radio"]:focus {
        outline: none;
        box-shadow: none;
    }

    .d-radio-label {
        vertical-align: middle;
    }

    input:focus {
        box-shadow: none !important;
        outline: none;
        border: 1px solid var(--primary-color);
    }

    input {
        background-color: #f4f4f4;
        border: none;
    }

}

input:focus {
    box-shadow: none !important;
    outline: none;
    border: 1px solid var(--primary-color);
}

input {
    background-color: #f4f4f4;
    border: 1px solid #00000078 !important;
    padding: 9px 15px !important;
}

.form-check-input {
    padding: 0 !important;
}

.strong {
    background-image: url('../images/testimonial-bg.jpeg');
    background-position: center;
    background-size: cover;
}

/* ==================TAKE ACTION================ */
.action-landing-page {

    article {
        padding: 30vh 0;
        width: clamp(22rem, 70vw, 40rem);
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        /* background-image: url('../images/take_action.jpeg'); */
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

.action {
    background-image: url('../images/action-bg.jpeg');
    background-position: center;
    background-size: cover;
}


/* =============NEWS================= */

.news-landing-page {

    article {
        padding: 30vh 0;
        width: clamp(22rem, 70vw, 40rem);
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/news.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

/* =============CRISES================= */

.crises-landing-page {

    article {
        padding: 30vh 0;
        width: clamp(22rem, 70vw, 40rem);
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/latest_crises.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

.grid-container-crises {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* =============CRISES================= */

.health-landing-page {

    article {
        padding: 30vh 0;
    }

    .h-landing-left {
        background-image: url('../images/home-landing-bg-1.png');
        width: 100%;
        transform: translateX(-10rem);
        background-repeat: no-repeat;
    }

    .h-landing-right {
        background-color: rgba(0, 0, 128, 0.8);
        background-image: url('../images/explore_health.jpeg');
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .h-landing-right::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #0276ce8b;
    }

}

@media (max-width: 1200px) {
    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 90% !important;
    }
}

@media (max-width: 992px) {
    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 87% !important;
    }
}

@media (max-width: 767px) {
    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 83% !important;
    }
}

@media (max-width: 507px) {
    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 80% !important;
    }
}

@media (max-width: 430px) {
    .swiper-button-next {
        position: absolute;
        top: -6% !important;
        right: 0 !important;
    }

    .swiper-button-prev {
        position: absolute;
        top: -6% !important;
        left: 74% !important;
    }
}

@media (max-width: 1600px) {
    .nav-link {
        font-size: 14px !important;
    }

    p {
        font-size: 14px;
    }

    span {
        font-size: 13px;
        color: #000000a4;
    }

    small {
        font-size: 12px !important;
    }

    label {
        font-size: 15px;
    }

    input, textarea, select, .form-check-input, .form-control {
        font-size: 13px !important;
    }
}

.card p {
    margin-bottom: 0 !important;
}