@charset "utf-8";

/*
CSS Global styles

font-family: 'Roboto', sans-serif;
*/

body {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    max-width: 1500px;
    padding: 10px;
}
a, ul, li {
    transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out .5s;
    -moz-transition: ease-in-out .5s;
    -ms-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
}
img {
    -webkit-backface-visibility: hidden; 
    -ms-transform: translateZ(0); /* IE 9 */
    -webkit-transform: translateZ(0); /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

#header-block {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #00457b;
    margin-bottom: 10px;
}
#header-block #logo-block {
    width: 30%;
    max-width: 200px;
    float: left;
}
#header-block #logo-block a {
    
}
#header-block #logo-block a img {
    width: 100%;
}
#header-block #header-nav {
    width: 70%;
    position: absolute;
    right: 0;
    bottom: 25px;
    text-align: right;
}
#header-block #header-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#header-block #header-nav ul li {
    display: inline-block; 
}
/*
#header-block #header-nav ul li.head-link-1
#header-block #header-nav ul li.head-link-2
#header-block #header-nav ul li.head-link-3
*/
#header-block #header-nav ul li.head-link-2 {
    margin: 0 15px;
}
#header-block #header-nav ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color: #00457b;
    padding: 10px 10px;
    border-radius: 5px;
}
#header-block #header-nav ul li a:hover {
    background-color: #00457b;
    color: #fff;
}


#main-content h1 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 30px;
    font-weight: 400;
}
#main-content h2 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}
#main-content p {
    

}


#footer-content {
    background-color: #1d2e3e;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
#footer-content #footer-left {
    float: left;
    width: 51%;
}
#footer-content #footer-left p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 20px 0 20px 20px;
    letter-spacing: 1px;
}
#footer-content #footer-left p .boldfooter {
    font-weight: 400;
}
#footer-content #footer-mid {
    float: left;
    width: 31%;
}
#footer-content #footer-mid p {
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    margin: 20px 0 20px 20px;
}
#footer-content #footer-right {
    float: left;
    width: 18%;
}
#footer-content #footer-right img {
    max-width: 150px;
    width: 100%;
    float: right;
}
@media all and (max-width: 875px) {
    #footer-content #footer-left {
        width: 100%;
    }
    #footer-content #footer-mid {
        width: 60%;
    }
    #footer-content #footer-right {
        width: 40%;
    }
}
@media all and (max-width: 690px) {
    #header-block #header-nav {
        bottom: 15px;
    }
    #header-block #logo-block {
        width: 50%;
    }
    #header-block #header-nav {
        width: 50%;
    }
    #header-block #header-nav ul li {
        display: block;
        height: 37px;
    }
    #header-block #header-nav ul li.head-link-2 {
        margin: 0;
    }
    #header-block #header-nav ul li a {
        padding: 5px 10px;
    }
}
@media all and (max-width: 470px) {
    #footer-content #footer-left p, #footer-content #footer-mid p  {
        margin: 20px;
        font-size: 13px;
    }
    #header-block #header-nav ul li {
        height: auto;
    }
    #header-block #header-nav ul li a {
        font-size: 14px;
        border: none;
        padding: 7px 10px;
        display: block;
    }
}

#siteby {
    border-top: 1px solid #00457b;
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    padding-top: 20px;
}