body{
    margin: 0;
    padding: 0;
}

#header_main{
    width: 100%;
}
#header_main>.inner{
    /*width: var(--content_wide_inner_width);*/
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.top_menu_container{
    position: absolute; height: 216px; width: 100%;  z-index: 10;
    background: rgb(5,10,13);
    background: -moz-linear-gradient(0deg, rgba(5,10,13,0) 10%, rgba(5,10,13,0.7) 100%);
    background: -webkit-linear-gradient(0deg, rgba(5,10,13,0) 10%, rgba(5,10,13,0.7) 100%);
    background: linear-gradient(0deg, rgba(5,10,13,0) 10%, rgba(5,10,13,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#050a0d",endColorstr="#050a0d",GradientType=1);
}


#main_switch{
    width: 100%;
}
#main_switch>.inner{
    width: var(--content_inner_width);
    margin: 0 auto;
    padding-bottom: 59px;
}
#main_switch .boxes{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    column-gap:40px;
    row-gap: 40px;
    flex-wrap: wrap;
}
#main_switch .boxes>div{
    width: calc(50% - 20px);
}
#main_switch .boxes .image{
    height: 238px;
    background-size: cover;
    background-position: center center;
}

#main_switch .boxes .label{
    background-color: #F2F2F2 ;
    display: table;
    height: 84px;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #69716B;
    text-transform: uppercase;
    line-height: 130%;
    transition: all 400ms ease-in-out;
}
#main_switch .boxes .label .inner {
    vertical-align: middle;
    display: table-cell;
    font-family: neusa_next_proregular;
    padding-left: 76px;
    padding-right: 76px;
}

@media (hover: hover) and (pointer: fine) {
    #main_switch .boxes>div:hover{
        cursor: pointer;
    }
    #main_switch .boxes>div:hover .label{
        background-color: var(--color_dark_green) ;
        color: #fff !important;
        transition: all 400ms ease-in-out;
    }
}
#main_switch a{
    color: inherit;
    text-decoration: none;
}
#world_map{
    width: 100%;
    margin-top: 90px;
    cursor: pointer;
}
#world_map .inner{
    width: var(--content_inner_width);
    margin: 0 auto;
    padding-bottom: 60px;
}
.map_title{
    font-family: "Merriweather";
    font-weight: 300;
    color: #69716B;
    font-size: 36px;
    text-align: center;
}
#product_switch .wide_inner{
    width: var(--content_wide_inner_width);
    margin: 0 auto;
    background-size: cover;
    position: relative;
}

#product_switch{
    width: 100%;
    background-color: #ccc;
}
#product_switch .inner{
    width: var(--content_inner_width);
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 123px;
}
#product_switch .inner .circle{
    height: 170px;
    width: 170px;
    margin: 0 auto;
    border: 30px solid #f5f7f6 ;
    background-color: #fff;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    background-size: contain;
    transition: all 400ms ease-in-out;
}

#product_switch .inner .boxes{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    column-gap:30px;
}
#product_switch .inner .sep{
    width: 90px;
    height: 1px;
    background-color: #000000;
    margin: 0 auto;
    margin-bottom: 27px;
    margin-top: 22px;
}
#product_switch .inner .boxes>div{
    width: 50%;
    background-color: #E7EEE9;
    opacity: .8;
    font-family: neusa_next_proregular;
    font-size: 26px;
    text-transform: uppercase;
    color: #69716B;
    text-align: center;
    padding-top: 50px;
    transition: all 400ms ease-in-out;
}

#product_switch .inner .boxes>div:hover{
    background-color: var(--color_dark_green) ;
    color: #fff;
    cursor: pointer;
}

#product_switch .inner .boxes>div:hover .circle{
    border-color: #b7ccc0;
    transition: all 400ms ease-in-out;
}
#product_switch .inner .boxes>div:hover .sep {
    background-color: #fff;
    transition: all 400ms ease-in-out;
}

#product_switch a{
    color: inherit;
    text-decoration: none;
}
#header_bottom{
    width: 100%;
    margin-top: 30px;
}
#header_bottom .inner{
    width: var(--content_inner_width);
    margin: 0 auto;
    display: table;
    margin-bottom: 30px;
}
#header_bottom .inner>div{
    display: table-cell;
}
#header_bottom .inner>div p:first-child{
    margin: 0;
}
#header_bottom .inner .left{
    font-family: "Merriweather";
    font-weight: 300;
    font-size: 36px;
    color: #69716B;
    padding-left: 27px;
}
#header_bottom .inner .right{
    padding-left: 40px;
    padding-top: 9px;
    font-family: neusa_next_proregular;
    color: rgba(34,34,34,.6);
    font-size: 18px;
    line-height: 140%;
    padding-right: 65px;
}

.en_home_contact{
    background-color: var(--color_dark_green);
    /*background-color: #CFDCD3;*/
    color: #fff !important; ;
    font-size: 15px;
    text-align: center;
    width: 182px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 30px;
    padding: 16px;
    padding-bottom: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}
.en_home_contact:hover{
    background-color: #CFDCD3;
    color: var(--color_dark_green) !important;
    transition: all .3s ease-in-out;
}