:root{

    --white:#fff;
    --grey:#e9ecef;
    --black:#000;

    --theme-color:#f61313;
    --theme-color-2:#940a0a;

    --greyText:#979997;
    --text:#878b8c;


    --wrap-width:1200px;

    --body-background-color:#f4f5f6;

    --header-height:100px;
    --header-background-color:#fff;


    --footer-height:150px;
    --footer-background-color:#940a0a;
}

@font-face {
    font-family: "arialr";
    src: url('../font/unicode.arialr.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
}


/*******************************************************************/
h1,h2,h3,h4{
    margin:0;
}





/*******************************************************************/
body{
    font-family: arial;
    font-size:16px;
    margin:0;
    background:var(--body-background-color);
}




/*******************************************************************/
header{
    z-index:1;
    position:fixed;
    width:100%;
    height:var(--header-height);
    background:var(--header-background-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

header h1{
    display: inline-block;
    font-size: 1em;
    line-height: 50px;
    vertical-align: top;
}
header img.logo{
    margin:5px 20px;
}
header hr{
    margin: 0 20px;
    border: none;
    border-top: 1px solid var(--grey);
}
header ul{
    position:absolute;
    list-style: none;
    font-size: 0.8em;
    color:var(--greyText);
    margin:5px;
}
header ul li{
    padding:10px;
}
header ul li.isVisible{
    border-radius:5px;
    background-color: var(--theme-color);
    color:var(--white);
}
header ul li a{
    text-decoration: none;
    color: inherit;
}



/*******************************************************************/
main{
    z-index:0;
    padding-top:var(--header-height);

    min-height: 600px;

}





/*******************************************************************/
footer{
    position:relative;
    height:var(--footer-height);
    background:var(--footer-background-color);
    color:var(--white);
    text-align: center;
}

footer .socials{
    margin:20px 0;
}
footer .socials img{
    margin:20px;
    cursor:pointer;
}



/*******************************************************************/
.wrapped{
    position:relative;
    margin:auto;
    padding:0 10px;
    max-width:var(--wrap-width);
}

