@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --family-1: "Rubik", sans-serif;
    --family-2: "Montserrat", sans-serif;

    --primary-color: 215, 38, 56;
    --secondary-color: 0, 0, 0;
    --accent-color: 255, 255, 255;

    --light-color: 255, 255, 255;
    --dark-color: 0, 0, 0;

    --background-color: 8, 0, 0;

    --discord-color: 114, 137, 218;
    --youtube-color: 255, 0, 0;
    --twitter-color: 29, 161, 242;
    --twitch-color: 145, 70, 255;
    --tiktok-color: 255, 0, 80;
    --fivem-color: 254, 165, 0;

    --text-color: 173, 181, 189;

    --custom-radius: .75rem;
    --bs-border-radius: .375rem;
    --bs-border-radius-sm: .125rem;
    --bs-border-radius-md: .375rem;
    --bs-border-radius-lg: .5rem;
    --bs-border-radius-xl: .75rem;
    --bs-border-radius-xxl: .95rem;
    
    --transition: 250ms;
    --blur: 3.7px;

    --nav-height: 67px;
}

body {
    background-color: rgba(var(--background-color));
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    /* font-size: 16px; */
    font-family: 'Montserrat', sans-serif;
}

p, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, label, a, button, menu {
    margin: 0;
}

a {
    color: rgba(var(--primary-color), var(--bs-link-opacity, 1));
    text-underline-offset: .25rem;
    -webkit-text-decoration-color: rgba(var(--white-color), var(--bs-link-underline-opacity, .5));
    text-decoration: underline;
    text-decoration-color: rgba(var(--white-color), var(--bs-link-underline-opacity, .5));
    transition: all var(--transition) ease-in-out;
}

a:hover {
    color: rgba(var(--primary-color), var(--bs-link-opacity, .8));
    text-decoration-color: rgba(var(--primary-color), var(--bs-link-underline-opacity, .8));
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(var(--accent-color), 50%);
    border-radius: 20px;
    border: 1px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(--accent-color));
}

::-webkit-scrollbar-track {
    background-color: transparent;
    /* background-color: rgba(var(--c30), 100%); */
}

/* RESETS START */
p, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, label, a, button, menu {
    margin: 0;
}

menu {
    list-style: unset;
}
/* RESETS END */

/* FONTS START */
@font-face {
    font-family: 'Material Symbols';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v283/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOc7TOVpeRL2w5rwZu2rIelXxc.woff2) format('woff2');
}

@font-face {
    font-family: 'Material Symbols Fill';
    font-style: normal;
    font-weight: 200;
    src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v283/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDJ_vb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOc7TOVpeRL2w5rwZu2rIelXxc.woff2) format('woff2');
}

material {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Material Symbols';
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
}

material.fill {
    font-family: 'Material Symbols Fill';
}
/* FONTS END */

/* EXTRA START */
.custom-dropdown-toggle:after {
    content: "\f078";
    font-weight: 900;
    font-size: .75rem;
    font-family: "Font Awesome 6 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    transition: rotate var(--transition) ease-in-out;
    margin-left: 5px;
}

.custom-dropdown-toggle.show:after {
    rotate: 180deg;
}
/* EXTRA END */

/* HEADER START */

/* HEADER START */
.header {
    z-index: 1050;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: .5rem 0;
    white-space: nowrap;
    background-color: rgba(var(--primary-color), 10%);
}

.header .nav-wrapper {
    display: flex;
    justify-content: space-between;
}

.header .nav-menu {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.header .header-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--background-color), 75%);
    z-index: 5;
    align-content: center;
    justify-content: center;
    backdrop-filter: blur(var(--blur));
    margin: 0;
    padding: 0;
    box-shadow: 0 -0.5rem 0.5rem -0.5rem rgba(0, 0, 0, 0.2);
}


.header .mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: .25rem;
}

.header .header-mobile .list-item {}

.header .header-mobile .list-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: rgba(var(--dark-inverted-color), 100%);
    border-top: 2px solid transparent;
    padding: .5rem .1rem;
    min-width: 70px;
    max-width: 70px;
    width: 100%;
    transition: all var(--transition) ease-in-out;
}

.header .header-mobile .list-link.active,
.header .header-mobile .list-link:hover,
.header .header-mobile .list-link:focus,
.header .header-mobile .list-link:active {
    color: rgba(var(--primary-color), 100%) !important;
    background-color: rgba(var(--dark-inverted-color), 4%) !important;
    border-top-color: rgba(var(--primary-color), 100%) !important;
}

.header .header-mobile .list-link .image {
    width: 28px;
    height: 28px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    border: 2px solid;
}

.header .header-mobile .list-link .icon {
    line-height: 0;
    font-size: 1.75rem;
}

.header .header-mobile .list-link:hover .icon.active,
.header .header-mobile .list-link:focus .icon.active,
.header .header-mobile .list-link:active .icon.active,
.header .header-mobile .list-link.active .icon.active {
    display: block;
}

.header .header-mobile .list-link:hover .icon,
.header .header-mobile .list-link:focus .icon,
.header .header-mobile .list-link:active .icon,
.header .header-mobile .list-link .icon.active, 
.header .header-mobile .list-link.active .icon {
    display: none;
}

.header .header-mobile .list-link .text {
    font-weight: 500;
    font-size: .55rem;
}

.header .navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header .navbar-1 {
    min-height: 41px;
    transition: all var(--transition) ease-in-out;
}

.header.scrolling .navbar-1 {
    background-color: rgba(var(--gray-color), 25%);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.header.scrolling .navbar-2 {
    background-color: rgba(var(--gray-color), 25%);
    border-bottom: 1px solid rgba(var(--gray-color), 50%);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.header .nav-link {
    color: rgba(var(--white-color), 100%);
    font-weight: 300;
    font-size: .875rem;
    padding: .5rem;
}

.header .nav-link.active, .header .nav-link.show, .header .nav-link:hover, .header .nav-link:focus {
    color: rgba(var(--primary-color), 100%);
}
/* HEADER END */

/* CONTENT START */
/* CONTENT END */

/* FOOTER START */
/* FOOTER END */

/* MEDIA START */
@media screen and (max-width: 768px) {
}
/* MEDIA END */
