body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px auto;
    max-width: 1140px;
}
#header, #content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    width: calc(100% - 10px);
    /* justify-content: center; */
}
#footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    padding: 5px;
    width: calc(100% - 10px);
}
.bg-green{
    background-color: #c1efcd;
}
.bg-yellow {
    background-color: #f3e0a5;
}
.bg-orange{
    background-color: #fab057;
}
.head-translate{
    font-size: 14px;
    color: #D70000;
    font-weight: bold;
    text-align: right;
    margin-right: 30%;
    width: 100%;
}
.head-content{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
}
.head-content > *{
    margin: 5px;
}
.head-content img{
    max-height: 200px;
}
.head-content .text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.head-content .mail-text{
    font-size: 17px;
    flex-grow: 1;
    text-align: center;
    font-style: italic;
}
.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.nav-container .phone{
    font-size: 14px;
    font-weight: bold;
    background-color: black;
    color: white;
    padding: 2px 10px;
}
.nav-container .nav{
    font-size: 16px;
    font-weight: bold;
    display: flex;
}
.nav-container .nav span{
    margin: 2px 7px;
}
.nav-container .social{
    display: flex;
}
.nav-container .social img{
    margin: 2px 7px;
    max-height: 30px;
}
.section{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 18.5px;
    flex-wrap: wrap;
}
.section-heading{
    width: 100%;
    padding: 7px;
}
.section-content{
    padding: 0px 10px;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
@media only screen and (max-width: 600px) {
    .head-translate {
        margin-right: 10%;
    }
    .head-content{
        max-height: 175px;
    }
    .head-content img {
        max-height: 155px;
    }
    .head-content .text {
        flex-wrap: wrap;
    }
    .head-content .multi-line{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .head-content .mail-text{
        font-size: 14px;
    }
    .nav-container .phone{
        font-size: 12px;
        padding: 2px 3px;
    }
    .nav-container .social{
        margin: 10px 0px 5px 0px;
    }
    .nav-container .nav{
        font-size: 13px;
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 5px 0px;
    }
    .nav-container .nav span{
        margin: 2px 3px;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-container .social img{
        margin: 2px 3px;
    }
    .section {
        font-size: 16px;
    }
}
/*Eric */
a:link {
	text-decoration: none;
	color: #A6A6A6;
}
a:visited {
	color: #A6A6A6;
}
a:hover {
	color: #0099FF;
}
a:active {
	text-decoration: none;
	color: #999999;
}
a.sub:link {
	text-decoration: none;
	color: #00088F;
}
a.sub:visited {
	color: #000BD7;
}
a.sub:hover {
	color: #0099FF;
}
a.sub:active {
	text-decoration: none;
	color: #666666;
}
/*Eric*/