@font-face {
    font-family: 'CopperplateGothic';
    src: url('../fonts/CopperplateGothic.ttf');
}

html, body {
    background-color: rgb(53, 94, 59);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'CopperplateGothic';
    font-size: 0.95em;
}

nav {
    background-color: black;
    width: 100%;
    height: 8%;
    min-height: 40px;
    min-width: 850px;
    margin: 0;
    padding: 0;
}

nav ul {
    /*border: white thin solid;*/
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    width: 80%;
    height: 100%;
}

nav ul li {
    /*border: white thin solid;*/
    margin: 0 auto;
    /*flex-grow: 1;*/
}

nav ul li:nth-child(1) {
    width: 46%;
}

nav ul li:nth-child(2) {
    width: 8%;
}

nav ul li:nth-child(3) {
    width: 46%;
}

nav ul li a {
    color: white;
    text-decoration: none;
    /*display: block;*/
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container {
    background-color: white;
    width: 85%;
    height: 85%;
    min-height: 500px;
    min-width: 850px;
    margin: 20px auto;
}

.fluid-container {
    background-color: white;
    width: 85%;
    min-width: 850px;
    min-height: 85%;
    /*min-height: 400px;*/
    margin: 20px auto;
}

.main-page-content {
    width: 100%;
    height: 100%;
}

.main-page-content .main {
    /*border: #ccc thin solid;*/
    display: flex;
    align-items: center; 
    width: 100%;
    height: 60%;
    padding: 10px 0;
    box-sizing: border-box;
}

.main-page-content .main > * {
    /*border: #ccc thin solid;*/
    float: left;
}

.main-page-content .main .text {
    box-sizing: border-box;
    padding-right: 10px;
    line-height: 240%;
    text-align: right;
    width: 40%;
    margin-top: 3%;
}

.main-page-content .main .text * {
    display: block;
    box-sizing: border-box;
}

.main-page-content .main .logo {
    margin-top: 7%;
    /*margin-left: -20px;*/
    margin-right: 20px;
    width: 30%;
    height: 100%;
}

.main-page-content .main .logo img {
    height: 100%;
    /*width: 100%;*/
    /*object-fit: contain;*/
}

.main-page-content .main .slogan {
    text-align: center;
    width: 22%;
    font-size: 2.5em;
    line-height: 1.5em;
    /*font-weight: bold;*/
}

.main-page-content .bottom {
    /*border: #ccc thin solid;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 40%;
}

.main-page-content .bottom > * {
    max-height: 100%;
    max-width: 50%;
}

.hover-backlight {
    transition: all .4s; 
}

.hover-backlight:hover {
    box-shadow: 0 0 35px 5px rgba(0,0,0,0.5);
}

.page-container {
    width: 80%;
    height: 100%;
    font-family: 'Arial';
    margin: 10px auto;
}

.section-logo {
    display: block;
    margin: auto;
}

.highlights {
    width: 100%;
    text-align: center;
}

.highlights h3 {
    font-family: 'CopperplateGothic';
}

.highlights .items {
    display: flex;
    justify-content: space-between;
    align-items: center;   
    width: 100%;
}

.highlights .items .item {
    display: flex;
    align-items: center;
    text-align: left;
}

.highlights .items .item span {
    margin-left: 10px;
    margin-right: 15px;
}

.contact-info {
    text-align: center;
    font-family: 'CopperplateGothic';
    padding: 10px 0;
    box-sizing: border-box;
}

.contact-info h4 {
    font-weight: normal;
}