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

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

:root {
    --primary-color: #2E73FE;
    --secondary-color: #84abfa;
    --secondary-light: #fff;
    --third-color: #F8FAFD;
}

a {
    text-decoration: none !important;
}

.secondary_light {
    background-color: #ffffff;
}

/* .theme-text {
    color: var(--primary-color);
} */

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

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

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

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

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

.nav-link {
    padding: .2rem 1rem !important;
    border-radius: 50px;
    width: fit-content;
    color: #fff !important;
}

.nav-link.active {
    /* background-color: var(--secondary-color); */
    color: #fff !important;
}

.dropdown-menu {
    background-color: #06060620 !important;
    backdrop-filter: blur(15px);
    border: 1px solid var(--secondary-color) !important;
    color: #000;
}

.tri_menu {
    position: absolute;
    top: -14px;
    width: 15px;
    height: 14px;
    clip-path: polygon(49% 25%, 0% 100%, 100% 100%);
    background-color: var(--secondary-color);
    left: 15px;
}

.dropdown-menu, .dropdown-item {
    color: #fff !important
}

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

h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
}

button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: .4rem 1rem !important;
    border-radius: 8px !important;
}

.theme_btn {
    border: 1px solid #fff !important;
}

.theme_btn:hover {
    transition: all ease .3s;
    background-color: #fff !important;
    color: #000 !important;
}

button:hover {
    transition: all ease .3s;
    background-color: transparent !important;
    border: 1px solid #fff !important   ;
    color: #fff !important;
}

.mod_card {
    transition: transform 0.4s ease;
}

.mod_card:hover {
    transform: scale(1.03);
    border: 1px solid var(--primary-color);
}
