html, body {
    margin:0;
    padding:0;
    height:100%;
 }

 #container {
    min-height:100%;
    position:relative;
 }

 #body {
    padding-bottom:20px;
 }

 #footer {
    position:absolute;
    bottom:0;
    width:100%;
 }

.zone {
    color: #FFF;
    font-size: 1.7em;
    border-radius: 4px;
    border: 1px solid #bbb;
    transition: all 0.3s linear;
}

.content {
    color: #FFF;
    font-size: 1.7em;
}

/***********************************************************************
 *  Nav Bar
 **********************************************************************/
.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    font-size: 0.7em;
}

@media only screen and (max-width: 600px) {
    .main-nav {
        font-size: 0.5em;
        padding: 0;
    }
}

.push {
    margin-left: auto;
}

.nav-li-img {
    padding: 0%;
}

.nav-img-bmc {
    padding-top: 12px;
    width: 152px;
    height: 45px;
}

.nav-img-pp {
    width: 180px;
    height: 70px;
}

li {
    padding: 20px;
}

a {
    color: #f5f5f6;
    text-decoration: none;
}
    

/***********************************************************************
 *  Cover & Content
 **********************************************************************/
.fit {
	width: 25%;
	height: auto;
    margin: auto;
    padding-top: 10px;
}

.center-vertical {
    text-align: center;
}

.center-text {
    padding: 1% 12% 1% 12%;
}

.zone-small-text {
    font-size: 60% !important;
}

.text-underline {
    text-decoration: underline;
}

.cursor-pointer {
    cursor: pointer;
}

.link {
    font-style: italic;
}

/***********************************************************************
 *  Modal
 **********************************************************************/
.modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/***********************************************************************
 *  Footer
 **********************************************************************/
footer {
    font-size: 100% !important;
    text-align: center;
}

/***********************************************************************
 *  Gray-Black Gradient Background
 **********************************************************************/
.gb-g-background {
    background: #7d7e7d; /* Old browsers */
    background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7d7e7d), color-stop(100%,#0e0e0e)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* IE10+ */
    background: linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 ); /* IE6-9 */
}