@font-face {
    font-family: "Domoaregato";
    src: url(../fonts/DomoaregatoNormal-q2Jr.ttf);
}
:root{
    --primary-color:#d91920;
    --secondary-color:#212529;
    --lightwhite:#f8f8f8;
}
::selection{
    background-color: var(--primary-color) !important;
}

/* SCROLLBAR */
*{
    scrollbar-width: thin;
    scrollbar-color: #212529 #F8F8F8;
}
*::-webkit-scrollbar {
    width: 10px;
    width: 10px;
}
*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #F8F8F8;
}
*::-webkit-scrollbar-track:hover {
    background-color: #F8F8F8;
}
*::-webkit-scrollbar-track:active {
    background-color: #F8F8F8;
}
*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #212529;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #212529;
}
  

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
    overflow-x: hidden;
}
button:not(.btn){
    padding: 10px 20px;
    border-radius: 20px;
    border:none;
    font-family: "Montserrat";
    font-size: 16px;
    transition: 300ms;
}
button:not(.btn):hover{
    transform: translateY(-5px);
    transition: 300ms;
    cursor: pointer;
}

@media screen and (min-width:1500px){
    .container{
        width: 1200px !important;
        margin: 100px auto;
    }
}
@media screen and (max-width:1500px){
    .container{
        width: 900px !important;
        margin: 100px auto;
    }
}
@media screen and (max-width:1000px){
    .container{
        width: 700px !important;
        margin: 100px auto;
    }
}
@media screen and (max-width:768px){
    .container{
        width: 500px !important;
        margin: 100px auto;
    }
}
@media screen and (max-width:456px){
    .container{
        width: 80% !important;
        margin: 50px auto;
    }
}

#preloader{
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    position: absolute;
    top:0;
    left:0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: 1000ms;
}
#preloader.transition{
    opacity: 0;
    transition: 1000ms;
}
#preloader.hidden{
    display: none;
    z-index: -1;
}
#preloader img{
    width: 100px;
}


header{
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    transition:300ms;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 0;;
}
.header a{
    text-decoration: none;
    color: white;
}
.header .logo{
    display: flex;
    align-items: center;
}
.header .logo a{
    font-family: "Domoaregato","Montserrat";
        margin-bottom:-10px;
    margin-left: 10px;
    font-size: 26px;
        font-size: 34px;
    /*text-transform: uppercase;*/
    font-weight: 900;
}
.header .menu{
    display: flex;
    align-items: center;
}
.header .menu ul{
    list-style-type: none;
    display: flex;
    margin: 0;
}
.header .menu ul li{
    transition: 300ms;
    padding: 10px 15px;
    margin: 0 2.5;
}
.header .menu ul li.active{
    background-color: var(--primary-color);
}
.header .menu ul li:hover{
    transform: translateY(-2.5px);
    transition: 300ms;
}
.header .menu ul li.active:hover{
    transform: translateY(0px);
}
.header .menu ul li:before{
    content: '';
    background-color: var(--primary-color);
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: 1px;
    left: 0;
    transition: 300ms;
    z-index: -1;
}
.header .menu ul li:hover:before{
    width: 100%;
    transition: 300ms;
}
.header .menu button{
    color:white;
    background-color: var(--primary-color);
    margin-left: 20px;
}
footer .social-media{
    text-align: center;
    font-size: 28px;
    color: white;
}
footer .social-media a{
    text-decoration: none;
    color: white;
}
footer .social-media a svg{
    transition: 500ms cubic-bezier(0, 0.7, 0.7, 1);
}
footer .social-media a:hover svg{
    transform: translateY(-10px);
    transition: 500ms cubic-bezier(0, 0.7, 0.7, 1);
}
footer .social-media svg{
    margin: 0 10px;
    background-color: var(--primary-color);
    padding: 10px;
    width: 20px;
    height: 20px;
    border-radius:5px;
}
footer .footer{
    background-color: var(--secondary-color);
    font-size: 16px;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}