:root{
    --color-first: #BE0301;
}

@font-face {
    font-family: 'heading1';
    src: url('Fonts/Montserrat-VariableFont_wght.ttf');
}


::-webkit-scrollbar{
    width: 0px;
}

html, body{
    height: 100%;
    width: 100%;
    background-color: var(--color-third);
}

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.5em;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.bg-null{
    background-color: transparent;
}

.bg-null:hover{
    background-color: var(--color-first) !important;
    border: var(--color-first) !important;
}

.bg-first{
    background-color: var(--color-first) !important;
}

.bg-second{
    background-color: var(--color-second) !important;
}

.color-first{
    color: var(--color-first) !important;
}

.color-second{
    color: var(--color-second) !important;
}

.border-first{
    border: 1px solid var(--color-first) !important;
}

.font-first{
    font-family: heading1 !important;
}

.font-second{
    font-family: text;
}

.active{
    color: var(--color-second) !important;
    font-family: heading1;
    font-weight: bold;
    background-color: rgba(0,0,0,0) !important;
}

.buttons{
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border: 0px;
}

button:hover{
    opacity: 0.8;
}

button{
    outline: none;
    border: none;
}

.border-black{
    border: 1px solid black;
}

small{
    font-size: 12px;
}

nav{
    background-color: var(--color-first);
    /* position: fixed !important;
    top: 58px;
    left: 0px;
    width: 100%;
    z-index: 999; */

}

.nav-link{
    color: white !important;
}

footer{
    background-color: var(--color-first);
    color: white;
}

.show-nonlg{
    display: none;
}

ul li{
    list-style: none;
}

footer i{
    font-size: 24px;
}

input{
    border: 1px solid #ced4da;
}

.inputs{
    background-color: #f7f7f7;
    border-radius: 5px;
    padding:10px;
    width: 100%;
    border: none;
}

.selects{
    background-color: #f7f7f7;
    border-radius: 5px;
    padding:10px;
    border: none;
}

#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100%;
    max-height: 100%;
}

@media screen and (max-width: 990px) {
    .hide-nonlg{
        display: none !important;
    }

    .show-nonlg{
        display: block !important;
    }
}

@media screen and (max-width: 466px) and (min-width: 280px) {
    
    footer{
        text-align: center !important;
    }

    footer ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}