﻿:root {
    --backgroundGray: rgb(51, 52, 64); /* HEX: #333440 */
    --backgroundRed: rgb(134, 8, 29); /* HEX: #86081d*/
    --backgroundBlue: rgb(4, 25, 152); /* HEX: #041998 */
    /*   --color-text: #5a5a5a; */
}


html {
    box-sizing: border-box;
    font-family: var(--font-primary);
    color: var(--color-text);
    /*font-size: 1.125rem;*/
}


body {
    margin: 0;
    font-family: 'Eras ITC', Fallback, sans-serif;
}


img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}


.HeaderBar {
    color: #333440;
    height: 20px;
    line-height: 20px;
    background: var(--backgroundGray);
}

.LinksHeaderBar {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 0.85em;
    text-align: right;
    color: #ffffff;
}


a.LinksHeaderBar {
    color: #fff;
    text-decoration: none;
}

    a.LinksHeaderBar:hover {
        text-decoration: underline;
    }

    a.LinksHeaderBar:visited {
        color: #fff;
    }






/* ---- BOTTOM START ---- */

.containerBottom {
    margin: 0 auto;
    text-align: center;
}

.Bottom {
    display: inline-block;
    margin-top: 25px;
    min-height: 200px;
    width: 100%;
    background-color: #333440;
}

.BottomBox {
    float: left;
    margin-top: 10px;
    margin-left: 25px;
    width: 250px;
    /*height: 180px;*/
    color: #ffffff;
    text-align: left;
    font-size: 14px;
}


.imgAddress {
    float: left;
    height: 50px;
    width: 40px;
    opacity: 0.5;
}


.addressInfo {
    height: 60px;
    line-height: 15px;
}


.imgExtraInfo {
    float: left;
    margin-top: 30px;
    height: 50px;
    width: 40px;
    opacity: 0.5;
}


.extraInfo {
    margin-top: 30px;
    height: 50px;
    line-height: 15px;
}

.phoneInfo {
    height: 25px;
    line-height: 25px;
}

.emailInfo {
    height: 25px;
    line-height: 25px;
}

.imgSocialMedia {
    opacity: 0.5;
}


/* ---- BOTTOM SLUT ---- */


/* ---- SCREEN 1024 START ---- */
@media screen and (min-width: 1024px) {
    
    .HeaderBar {
        display: grid;
        grid-template-columns: 1fr minmax(1024px, 1fr) 1fr;
    }

    .LinksHeaderBar {
        grid-column: 2 / 3;
    }
    
    header {
        display: grid;
        grid-template-columns: 1fr minmax(1024px, 1fr) 1fr;
        height: 100px;
        border-bottom: 4px;
        border-bottom-style: solid;
        border-bottom-color: var(--backgroundGray);
    }
    
    .Logo {
        grid-column: 2 / 3;
        padding-left: 0;
    }

    .Banner {
        background: var(--backgroundBlue);
        /*background-image: url("../img/gears.png");*/
        height: 500px;
    }
    /*
    .Space {
        display: none;
    }
    */

    .containerBottom {
        margin: 0 auto;
        width: 1024px;
        text-align: center;
    }

    .Bottom {
        display: inline-block;
        width: 1024px;
        margin-top: 25px;
        min-height: 200px;
        background-color: #333440;
    }


    .BottomBox {
        float: left;
        margin-top: 50px;
        margin-left: 25px;
        width: 315px;
        height: 180px;
        color: #ffffff;
        text-align: left;
        font-size: 14px;
    }

}
/* ---- SCREEN 1024 SLUT ---- */