body {
    height: 100%;
    padding: 0px;
    margin: 0px;
    background-color: white;
    font-family: 'Noto Sans SC', sans-serif;
}
body h2{
    text-align: center;
    color: #5e5c5c;
    text-decoration: underline;
}
/*This is to define all "headings" a font-family. Note: "header .logo-text span" overrites this*/
h1 h2 h3{
    font-family: 'Lato', sans-serif;
    color: #9f0003;
    margin: 5px;
}
/*This removes underlining of all anchor text*/
a {
    text-decoration: none;
    color: inherit;
}
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}
.btn {
    padding:.1rem 1.4rem;
    background: #bbbbbb;
    color: #9f0003;
    border: 1px solid transparent;
    border-radius: .75rem;
    bottom: 10px;
    right: 10px;
}
.btn:hover {
    color: white !important;
    background: #a3a2a2;
}
header {
    background: white;
    height: 120px;
    width: 90%;
    margin: auto;
}
header .menu-toggle{
    display: none;
}
/*This is the icon(3 bars) will be used in "@media queries"*/
header .logo {
    float: left;
    margin: auto;
}
header .current{
    color: #9f0003;
    font-weight: bold;
}
header ul {
    float: right;
    margin-top: 20px;
    padding-left: 20px;
    list-style: none;
    /*border: 1px solid red;*/
}
/*This makes ul li go left of header*/
header ul li {
    margin-right: 10px;
    float: left;
    position: relative;
    color: black;
}
/*This sets values for un-ordered list items in "ul li a"*/
header ul li a {
    display: block;
    padding: 21px;
    font-size: 1em;
    text-decoration: none;
}
/*This makes ul li ul size and hidden beneath ul li, "z-index" only when hover drop-down not remaining*/
header ul li ul {
    text-align: left;
    position: absolute;
    top: 60px;
    margin-top: 0px;
    width: 100%;
    display: none;
    border-bottom: 1px solid #d8c0cd;
}
/*This displays ul li ul when hovering*/
header ul li:hover ul {
    display: block;
    transition: 0.7s;
}
/*This gives width of "ul li ul li" relevant to parent"ul li"*/
header ul li ul li {
    width: 150px;
    border-top: 1px solid #d8c0cd;
}
header ul li ul li a{
    display: block;
    padding: 15px 0px 15px 0px;
    /*border-bottom: 1px solid #d8c0cd;*/
    transition: all 0.3s;
}
header ul li ul li a:hover {
    padding-left: 10px;
    transition: all 0.3s;
}

/*This sets ul li background color and react time while hovering*/
header ul li a:hover {
    color: #5e5c5c;
    transition: 0.3s;
}
/*This is the icon(3 bars) referenced in index.html as (class="fa fa-bars menu-toggle")*/
header .menu-toggle {
    display: none;
}
section{
    height: 100%;
    width: 80%;
    margin: auto;
    overflow: hidden;
    /*border: 2px solid red;*/
}
section h1, h3{
    color: #9f0003;
}
section h1{
    margin-top: 30px;
}
section .main-col{
    float: left;
    height: 100%;
    width: 70%;
    padding: 5px;
    /*border: 1px solid blue;*/
}
section .box{
    margin: 15px;
    padding: 10px 5px 10px 5px;
    border-radius: 5px;
    box-shadow: 1rem 1rem 1rem -1rem rgb(190, 193, 197);
    position: relative;
    /*border: 1px solid green;*/
}
section .read-more {
    position: absolute;
    margin-left: 15px;
}
section aside{
    float: right;
    height: auto;
    margin-top: 200px;
    margin-right: 12px;
    padding: 10px;
    width: 25%;
    background-color: rgb(235, 232, 232);
    border-radius: 5px;
    /*border: 2px solid blue;*/
}
footer{
    height: 170px;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}
footer .foot-top{
    height: auto;
    width: 100%;
    margin: auto;
    border-top: 1px solid #817f7f;
}
footer .contact{
    margin: auto;
    padding-top: 40px;
}
footer .contact span{
    float: right;
    margin: auto;
    width: 70%;
}
footer .img{
    float: left;
    width: 30%;
    margin-bottom: 20px;
}
footer .footer-bottom {
    margin-top: 10px;
    background: #575154;
    color: #dddddd;
    height: 50px;
    width: 100%;
    text-align: center;
    font-size: small; 
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-bottom: 10px;
    padding-top: 15px;
}
* {
    box-sizing: border-box;
}

/*Media Queries*/
@media only screen and (max-width: 1102px){
    section .read-more{
        margin-left: 30px;
    }
}

@media only screen and (max-width: 900px){
    section{
        width: 100%;
    }
    section h1{
        text-align: center;
    }
    footer{
        height: auto;
        display: flex;
    }
    footer .foot-top{
        width: 100%;
        flex-grow: 1;
        height: auto;
        display: flex;
        margin: auto;
    }
    footer .contact{
        flex-grow: 1;
        display: block;
        padding: 20px;
        margin-top: 30px;
    }
    footer .img{
        flex-grow: 1;
        margin-bottom: 40px;
        padding: 20px;
    }
    footer .footer-bottom{
        margin: auto;
        flex-grow: 1;
    }  
}
@media only screen and (max-width: 770px){
    .showing{
        max-height: 100em;
    }
    header{
        position: relative
    }
    header ul{
        width: 100%;
        background: white;
        max-height: 0px;
        overflow: hidden;
    }
    header ul li{
        width: 100%;
    }
    header ul li ul{
        position: static;
        display: block;
        width: 100%;
    }
    header ul li ul li a{
        padding: 10px;
        background: white;
        color: #5e5c5c;
        /*padding-left: 50px;*/
    }
    header ul li a:hover {
        color: #5e5c5c;
        /*background: #a3a2a2;*/
        transition: 0.3s;
    }
    header ul li ul a:hover {
        color: #5e5c5c;
        /*background: #a3a2a2;*/
    }
    header ul li ul li a:hover {
        color: #a3a2a2;
    }
    header .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 30px;
        font-size: 1.8em;
    }
    header .fa-chevron-down{
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 1.8em;
    }
    body h2{
        padding-top: 30px;
    }
}
@media only screen and (max-width: 700px){
    section{
        display: flex;
        flex-direction: column;
        float: none;
    }
    section .main-col{
        margin: auto;
        flex-grow: 1;
        float: none;
        height: auto;
        width: 100%;
    }
    section .main-col .box{
        width: 100%;
        margin: auto;
    }
    section .main-col .box .read-more{
        position: static;
        display: block;
        width: 80%;
        text-align: center;
    }
    section aside{
        /*position: static;*/
        flex-grow: 1;
        float: none;
        margin: auto;
        padding: 10px;
        width: 100% !important;
        /*display: block;*/
    }
}
@media only screen and (max-width: 552px){
    body{
        height: 100%;
    }
    footer{
        width: 100%;
        margin: auto;
        /*flex-direction: column;*/
        /*display: flex;*/
    }
    footer .foot-top{
        overflow: hidden;
        width: 100%;
        height: auto;
        flex-direction: column;
        display: flex;
        margin: auto;
    }
    footer .contact{
        height: auto;
        padding: 30px;
        margin-bottom: 50px;
        margin-right: 100px;
        width: 100% !important;
        flex-grow: 1;
    }
    footer .img{
        height: auto;
        padding: 0px;
        width: 100% !important;
        flex-grow: 1;
        margin-top: 50px;
    }
    footer img{
        margin-top: 20px;
        margin-left: 90px;
        height: auto;
        width: 60%;
    }
    footer .footer-bottom{
        width: 100%;
        height: auto;
        margin: auto;
    }

}
@media only screen and (max-width: 490px){
    footer .foot-top{
        width: 100%;
        flex-direction: column;
    }
    footer .contact{
        width: 100% !important;
        margin-right: 60px;
        flex-grow: 1;
    }
    footer .img{
        height: auto;
        padding: 0px;
        width: 100% !important;
        flex-grow: 1;
    }
}


