.header{
    position:relative;
    display:inline-block;
    width:100%;
    overflow:hidden;
}
.header .header_image_holder{
    z-index:1;
}
.header .header_image_holder img.header_image {
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 800px;
    /* Set up proportionate scaling */
    width: 100%;
    height: auto;
    /* Set up positioning */
    position:relative;
    top: 0;
    left: 0;
}
@media screen and (max-width: 800px) { /* Specific to this particular image */
    .header .header_image_holder img.header_image {
        min-width: 800px;
        left: 50%;
        margin-left: -400px;   /* 50% */
    }
}
.header_content_holder{
    position:absolute;
    margin:auto;
    left:0;
    right:0;
    width:80%;
    color:white;
    z-index: 5;
}
.header_content_holder h1{
    width: 100%;
    margin-bottom: 30px;
    text-align:center;
}
.header_content_holder h3{
    font-weight:500;
    width: 70%;
    margin-bottom: 30px;
    text-align:center;
    margin:auto;
}
.header_content_holder .button{
    margin-top: 0px;
}
.header_content_holder .box_title{
    background-color:#40FB79;
}

.main_content .content{
    position: relative;
    margin:auto;
    left:0;
    right:0;
    width: 88%;
    max-width:1600px;
    background-color: white;
    z-index: 2;
    padding-top:60px;
    color:black;
    margin-bottom:60px;
}
.main_content .content ol,.main_content .content ul{
    font-size:16px;
    margin: 0;
    margin-bottom:10px;
}
h1{
    margin-bottom:30px;
}
h2{
    margin-bottom:20px;
}
h3{
    margin-bottom:20px;
}
h4{
    margin-top:20px;
    margin-bottom:5px;
}
p{
    margin-bottom:10px;
}
.lang_link,.lang_link:visited{
    color: black;
}

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1350px) {
    .header_content_holder{
        margin-top:200px;
    }
}
@media screen and (max-width: 1280px) {
    .header_content_holder{
        margin-top: 180px;
    }
}
@media screen and (max-width: 1024px) {
    .header_content_holder{
        margin-top: 120px;
    }
}
@media screen and (max-width: 850px) {
    .header_content_holder{
        margin-top: 120px;
        width: 88%;
    }
}
@media screen and (max-width: 650px) {
    .main_content .content ol,.main_content .content ul{
        font-size:14px;
    }
}