﻿html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}


.header {
    background-color: #FCFCFC;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.fa-brands:hover {
    text-shadow: 1px 1px 1px #555;
    cursor: pointer;
}

.header-information {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
}

@media (max-width: 380px) {
    .header-information {
        flex-direction: column;
    }
}

.logo-image {
    display: flex;
    justify-content: center;
}

.logo {
    max-height: 110px;
    margin-left: auto;
    margin-right: auto;
}

.header-phone {
    align-self: end;
    font-size: 1.65rem;
    font-weight: bold;
}

.nav-items{
    border-top: solid 7px red;
    background-color: #2B2E34;
    margin-top: 10px;
    justify-content: center;
}
.nav-items > div{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: white;
    font-size: small;
    font-weight: bold;
}

.nav-items > div:hover{
    text-shadow: 1px 1px 1px #FFF;
    cursor: pointer;
}


.body-container {
    background: url("/content/images/background_image_1.jpg");
}

.main-content {
    font-size: medium;
    font-weight: bold;
}

.content-image {
    width: 100%;
}

.footer{
    flex-shrink: 0;
    display: block;
    width: 100%;
    border-top: medium none;
    background: none repeat scroll 0% 0%;
    background-color: #FFF;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
}

.menu li:not(:last-child)::after {
    content: " • ";
    position: relative;
    top: 17%;
    right: -2px;
}

.footer-container #footer-address.menu
{
    font-size: 1.2em;
}

#footer-address
{
    margin: auto;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 0;
}

.menu
{
    list-style: none;
    font-size: 1.2em;
}

.menu li
{
    display: inline;
    margin-right: 5px;    
}

.menu li a
{
    color: black;
    text-decoration: none; 
}

.footer-bar{
    border-top: solid 20px #2B2E34;
    border-bottom: solid 5px red;
    width: 100%;
    max-width: 100%;
}