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

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

:root {
    --primary-color: #B82132;
    --second-primary-color: #b82133a6;
    --secondary-color: #ecd6d5;
    --secondary-light: #d5cac55b;
    --third-color: #fcece9;
    --grad-color: linear-gradient(86deg, rgba(185, 56, 70, 1) 0%, rgba(211, 83, 90, 1) 8%, rgba(214, 199, 199, 0.8016456582633054) 100%);
}

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

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

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

.theme_text,
th {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.6rem) !important;
}

h2 {
    font-size: clamp(1.2rem, 3.3vw, 2.2rem) !important;
}

h6,
p {
    font-size: 11px !important;
}

.c-btn {
    background-color: #656565 !important;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    padding: .4rem .7rem;
}

.m-btn {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    padding: .6rem 3rem !important;
    font-weight: 700;
    border-radius: 50px !important;
    font-size: 12px !important;
}

.nav {
    z-index: 100;
}

.m-btn:hover {
    transition: all ease .3s;
    background-color: var(--secondary-light);
    color: #000;
}

label::after {
    background-color: transparent !important;
}

label {
    font-weight: 600 !important;
    font-size: 13px;
}

input,
select,
textarea {
    box-shadow: none !important;
    background-color: #b821331a !important;
    font-size: 12px !important;
}

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

a {
    text-decoration: none !important;
}

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

::-webkit-scrollbar {
    display: none !important;
}

.form-check-input {
    background-color: rgba(253, 66, 66, 0.591) !important;
}

/* =====================DROPDOWN======================= */
.dropdown button {
    font-size: 12px !important;
    background-color: #d8c5b9;
    border: none !important;
    padding: .4rem .7rem;
    border-radius: 50px;
    color: #000;
}

.dropdown-menu {
    background-color: #d4cac3 !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--secondary-color) !important;
    color: #000;
    font-size: 12px !important;
    --bs-dropdown-min-width: 5rem !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--secondary-color) !important;
    color: #000;
}

.dropdown-item.active {
    color: var(--primary-color) !important;
    background-color: #0000001c !important;
    font-weight: 600;
}

.dropdown-item {
    cursor: pointer !important;
}


/* =====================NAVIGATION BAR==================== */
nav {
    position: relative;
    z-index: 999;
    height: 60px;
}

header nav ul li {
    text-align: center;
}

nav {
    background-color: var(--primary-color);
    border-radius: 10px;
    color: #fff;
    /* width: fit-content; */
    padding: 10px 20px;
}

.sidebar-mem {
    background: linear-gradient(180deg, rgba(184, 33, 51, 0.239) 0%, rgba(239, 77, 93, 0.285) 50%, rgba(184, 33, 51, 0.266) 100%) !important;
}

.sidebar {
    background: linear-gradient(180deg, rgba(184,33,50,1) 0%, rgba(239,77,94,1) 50%, rgba(184,33,50,1) 100%) !important;
    color: #fff !important;
}

.offcanvas-body .nav-link {
    font-size: 16px !important;
}

.small_icon {
    width: 20px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-link {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    /* padding: .7rem !important; */
    opacity: .7;
    font-size: 12px !important;
    transition: opacity 0.3s ease-in-out;
    width: 70px;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover .icon {
    background-color: var(--primary-color);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    border: 7px solid var(--third-color) !important;
    position: relative;
    /* animation: bounceIn 0.6s ease-out; */
    opacity: 1 !important;
    transition: all ease .4s;
}

.nav-link.active {
    padding-top: 0;
    opacity: 1;
    font-weight: 600;
    position: relative;
}

.nav-link.active .icon {
    background-color: var(--primary-color);
    border-radius: 50px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    border: 7px solid var(--third-color) !important;
    position: relative;
    animation: bounceIn 0.6s ease-out;
}

.nav-link .icon {
    font-size: 20px;
    border-radius: 50px;
}

.round_icon {
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50px;
    color: var(--primary-color);
}

/* Bounce Animation */
@keyframes bounceIn {
    0% {
        transform: scale(1) translateY(-5px);
        opacity: 1;
    }

    50% {
        transform: scale(1.04) translateY(4px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ===============ACCORDION================= */

.accordion-item {
    border: none !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}



.accordion-button,
.accordion-body {
    font-size: 13px !important;
    background-color: var(--secondary-color) !important;
    color: #000 !important;
    border-radius: 0 !important ;
}

.accordion-button {
    padding: .7rem !important;
    /* background: var(--grad-color) !important; */
    background: var(--primary-color) !important;
    border-radius: 0 !important;
    color: #fff !important;
}

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

/* ===============TABLE=============== */

table {
    font-size: 11px;
}

thead {
    position: sticky;
    top: 0;
    background-color: #d8c5b9;
    /* backdrop-filter: blur(3px); */
}

td {
    color: #464646;
}

th,
td {
    padding: .3rem 1rem !important;
}

a {
    cursor: pointer;
}

th,
td td a,
td span {
    font-family: sans-serif !important;
}

.max-w {
    min-width: 12rem;
}

th {
    white-space: nowrap;
}

.card {
    border: none !important
}

.table-responsive {
    max-height: 68vh;
}

.badge {
    font-size: 10px !important;
}

/* ===============OFFCANVAS=========== */
.offcanvas-backdrop.show {
    opacity: 1 !important;
}

.offcanvas-backdrop {
    background-color: #00000093 !important;
    backdrop-filter: blur(6px);
}

.offcanvas {
    min-height: 65vh;
    width: 64%;
    right: 18% !important;
    left: unset !important;
    border-radius: 10px 10px 0 0;
}

/* ===============MODAL================== */
.modal-content {
    background-color: #fff6f4 !important;
    backdrop-filter: blur(10px);
}

/* .fade {
    backdrop-filter: blur(11px) !important;
} */

/* ===============TIMELINE================== */
.timeanddate-timeline {
    min-width: 4rem;
}

.support-roadmap-line {
    min-height: 20px;
    height: 100%;
    margin: 8px 0;
    width: 2px;
    background-color: #949494;
}

.dot {
    background-color: var(--primary-color);
    height: 10px;
    width: 10px;
    border-radius: 50px;
}
/* ================COUNTERS================ */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 70px;
    margin-top: 4.3rem !important;
}

.counter {
    background: linear-gradient(-16deg, rgb(186, 23, 42) 0%, #ffffff77 100%);
    border-radius: 30px;
    padding: 1.3rem;
    height: 28vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.counter_img {
    width: 100px;
    margin-top: -5rem;
    filter: drop-shadow(8px 14px 15px #535353);
    mix-blend-mode: luminosity;
    border-radius: 50%
}

h2 {
    color: #fff !important;
    margin-bottom: 0;
}

.counters h6 {
    margin-bottom: 0;
    color: #fff !important
}

.round {
    height: 30px;
    width: 30px;
    background-color: #ffffff7b;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.swal2-title {
    color: #000 !important;
}

@media (min-width: 1600px) {
    nav ul {
        gap: 70px;
    }

    .nav-link {
        font-size: 16px !important;
    }

    nav {
        height: 70px;
    }

    .round_icon {
        height: 40px;
        width: 40px;
        background-color: #fff;
        border-radius: 50px;
        font-size: 20px !important;
        color: var(--primary-color);
    }

    .nav-link.active .icon,
    .nav-link:hover .icon {
        height: 60px !important;
        width: 60px !important;
        margin-top: -2.1rem;
    }

    .nav-link .icon {
        font-size: 20px;
    }

    h6,
    th,
    td,
    a,
    button,
    .accordion-button,
    .accordion-body,
    .theme_text,
    p {
        font-size: 14px !important;
    }

    .badge {
        font-size: 13px !important;
    }

    .form-floating label {
        font-size: 15px;
    }

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

    .counters {
        gap: 60px;
    }

    .counter_img {
        width: 140px;
    }

    h2 {
        font-size: 45px !important
    }

    .round {
        height: 25px;
        width: 25px;
        background-color: #ffffff7b;
        border-radius: 50px
    }
}

@media (max-width: 1400px) {
    nav ul {
        gap: 50px;
    }

    .nav-link {
        font-size: 10px !important;
    }

    nav {
        height: 50px;
    }

    .round_icon {
        height: 30px;
        width: 30px;
        background-color: #fff;
        border-radius: 50px;
        font-size: 15px !important;
        color: var(--primary-color);
    }

    .table-responsive {
        max-height: 60vh;
    }

    .nav-link.active .icon,
    .nav-link:hover .icon {
        height: 40px !important;
        width: 40px !important;
        margin-top: -1.4rem;
    }

    .nav-link .icon {
        font-size: 14px;
    }

    h6,
    th,
    td,
    a,
    button,
    .accordion-button,
    .accordion-body,
    .theme_text,
    p {
        font-size: 10px !important;
    }

    .badge {
        font-size: 11px !important;
    }

    .counters {
        gap: 60px;
    }

    .counter_img {
        width: 90px;
    }

    h2 {
        font-size: 23px !important
    }

    .round {
        height: 25px;
        width: 25px;
        background-color: #ffffff7b;
        border-radius: 50px
    }
}

@media (max-width: 992px) {
    .counters {
        gap: 30px;
        margin-bottom: 2rem;
    }

    .counter {
        height: 18vh;
    }
}

@media (max-width: 767px) {
    .counters {
        gap: 70px;
    }
}