html{
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --color_main_menu_text: #264549;
    --color_main_menu_text_hover: #A48A7B;
    --color_dark: #031e23;
    --color_green: #20A84D;
    --color_green_light: #71B746;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Roboto", sans-serif;
}
ul{
    list-style: none;
}
a{
    text-decoration: var(--color_main_menu_text);
}
a:hover{
    color: var(--color_main_menu_text_hover);
}
.mc_wrapper{
    width: 100%;
    background-color: #fff;
}
.mc_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2%;
    padding-right: 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    height: 90px;
    border-bottom: 1px solid var(--color_main_menu_text_hover);
}
.mc_logo_fake{
    width: 100px;
    height: 50px;
}
.mc_logo{
    transition: .5s;
    position: absolute;
    top: 1px;
    left: 5%;
}
.mc_logo img{
    width: 105px;
}
.mc_main-menu{
    display: flex;
    justify-content: space-between;
    justify-items: center;
}
.mc_main-menu li{
    padding-left: 19px;
    padding-right: 19px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 500;
}
.mc_main-menu a{
    color: var(--color_dark);
    transition: .3s;
}
.mc_main-menu a:hover{
    color: var(--color_green_light);
}
.menu-current-item{
    color: red !important;
}
.mc_mobile_nav_area{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mc_nav-button,
.mc_nav-button-close{
    cursor: pointer;
    display: none;
}
.mc_nav-button-close{
    display: none;
    margin-bottom: 5px;
}
.mc_language-switcher{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: var(--color_main_menu_text);
    font-size: 12px;
    cursor: pointer;
    transition: .5s;
    border: 1px solid #fff;
    width: 30.5px;
    height: 26.5px;    
    margin-left: .2rem;
    text-transform: uppercase;
}
.mc_language-switcher:hover{
    background-color: var(--color_green_light);
}
.mc_language-switcher a{
    color: #fff;
}
.mc_btn{
    background-color: var(--color_green_light);
    width: fit-content;
    padding: 12px 25px;
    cursor: pointer;
    border: 2px solid var(--color_green_light);
    transition: .5s;
}
.mc_btn a{
    color: #ffffff;
}
.mc_btn:hover{
    background-color: var(--color_dark);
    border-color: var(--color_green_light);
}
.mc_goal_grid_item-animation{
    opacity: 1;
    transform: none;
}
.mc_aero,
.mc_aero_bg_mobile{
    margin-top: 50px;
    height: 890px;
    width: 100%;
    background-color: lightgrey;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.mc_aero_bg_mobile{
    display:none;
}
.mc_aero_overlay{
    height: 100%;
    background-color: #000;
    opacity: .3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mc_logo_aero{
    display: none;
    z-index: 1;
    transition: .9s;
    width: 60%;
    display: block;
    opacity: .3;
    animation: mymove 10s infinite;
}
.mc_logo_aero img{
    display: none;
    position: relative;
}
@keyframes mymove {
    0%{
       opacity: .3;
    }
    10%{
       opacity: .3;
    }
    20%{
        opacity: 0;
    }
    90%{
       opacity: 0;
    }
    100%{
       opacity: .3;
    }
}
.mc_aero_overlay:hover .mc_logo_aero{
    display: block;
    opacity: .8;
}
.mc_aero_msg{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
    background-color: rgb(0, 0, 0, .1);
}
.mc_aero_msg_title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
    color: #fff;
}
.mc_aero_msg_description{
    line-height: 1.5;
    font-size: 20px;
    color: #eee;
}
.mc_aero_msg_item{
    padding-left: 100px;
    padding-right: 100px;
}
.mc_aero_msg_item:nth-child(1){
    animation: anim_aero_msg_1 20s infinite;
    position: absolute;
}
.mc_aero_msg_item:nth-child(2){
    animation: 20x infinite;
    animation: anim_aero_msg_2 20s infinite;
}
@keyframes anim_aero_msg_1 {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    39%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }

}
@keyframes anim_aero_msg_2 {
    0%{
        opacity: 0;
        
    }
    39%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }

}
.mc_page_block_dark{
    background-color: var(--color_dark);
    color: #fff;
}
.mc_container_short{
    margin-left: 7%;
    margin-right: 7%;
}
.mc_block{
    padding-top: 150px;
    padding-bottom: 90px;
    letter-spacing: 1px;
}
.mc_block_number{
    font-size: 50px;
    color: var(--color_green_light);    
    font-weight: 100;
}
.mc_block_subtitle{
    line-height: 30px;
    color: #fff;
    margin-top: -15px;  
    font-weight: 300; 
    text-transform: uppercase; 
}
.mc_block_subtitle span{
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    font-size: 40px;
}
.mc_block_subtitle_dark{
    background-color: var(--color_dark);
}
.mc_block_subtitle_default{
    background-color: #fff;
    color: var(--color_dark);
}
.mc_block_title{
    line-height: 29px;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.mc_goal_grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mc_goal_grid_item{
    width: 32%;
    margin-bottom: 2.2rem;
    transition: .9s;
    opacity: 0;
}
@media (prefers-reduced-motion: no-preference){
    .mc_goal_grid_item{
        transition: opacity 2s ease;
    }
}
.mc_goal_grid_item-animation{
    opacity: 1;
    transform: none;
}
.mc_goal_grid_item .mc_description{
    width: 100%;
}
.goal_shape{
    width: 100%;
    height: 5px;
    background-color: var(--color_green);
    border-radius: 5px;
}
.goal_shape_part{
    display: none;
    width: 1.7px;
    height: 20px;
    background-color: var(--color_main_menu_text_hover);
}
.mc_goal_grid h3{
    font-size: 29px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.mc_goal_grid p{
    letter-spacing: normal;
    line-height: 30px;
    margin-top: 1.5rem;
    width: 70%;
}
.mc_wwd_item{
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    margin-bottom: 45px;
    transition: .9s;
    opacity: 0;
}
.mc_wwd_item .mc_btn{
    margin-top: 1rem;
}
@media (prefers-reduced-motion: no-preference){
    .mc_wwd_item{
        transition: opacity 2s ease;
    }
}
.mc_wwd_item-animation{
    opacity: 1;
    transform: none;
}
.mc_wwd_item_side{
    width: 43%;
}
.mc_wwd_item_side_align_left{
    text-align: left;
}
.mc_wwd_photo{
    height: 700px;
    width: 545px;
    transition: .5s;
    cursor: pointer;
}
.mc_wwd_photo img{
    width: 100%;
    box-shadow: -20px 20px #E1F2D6;
}
.mc_wwd_photo img:hover{
    box-shadow: -20px 20px #b8b7b7;
}
.mc_wwd_item_text{
    padding-top: 60px;
}
.mc_wwd_item_text_title{
    font-size: 42px;
    font-weight: 700;
    line-height: 100%;
    position: relative;
}
.mc_wwd_item_text_suptitle{
    font-size: 16px;
    letter-spacing: 2px;
    color: #264549;
    color: var(--color_green);
    margin-top: .5rem;
}
.mc_wwd_item_text_description{
    line-height: 1.7rem;
    font-size: .9rem;
    margin-top: 2rem;
    text-align: justify;
}
.mc_solutions{
    display: flex;
    justify-content: space-between;
}
.mc_solution{
    width: 32%;
    transition: .9s;
    opacity: 0;
}
@media (prefers-reduced-motion: no-preference){
    .mc_solution{
        transition: opacity 2s ease;
    }
}
.mc_solution-animation{
    opacity: 1;
    transform: none;
}
.mc_solution_illustration{
    margin-bottom: 1.3rem;
}
.mc_solution_illustration img{
    width: 100%;
}
.mc_solution_title{
    font-size: 38px;
    font-weight: 600;
    color: var(--color_green_light);
    margin-bottom: 1.3rem;
}
.mc_solution_description{
    line-height: 1.7rem;
}
.mc_solutions_separator{
    background-color: var(--color_green_light);
    height: 2px;
    width: 70%;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 3px;
}
.mc_solutions_cta{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.mc_solutions_cta p{
    text-align: center;
    line-height: 1.7rem;
}
.mc_solutions_cta_link{
    margin-top: 1rem;
    border: 1px solid var(--color_green_light);
    font-weight: 200;    
    padding: 20px 25px;
    transition: .5s;
    cursor: pointer;
    background-color: var(--color_green_light);
}
.mc_solutions_cta_link:hover{
    background-color: transparent;
}
.mc_solutions_cta_link a{
    color: #fff;
    padding: 10px 25px;
}
.mc_contact_cols{
    display: flex;
    justify-content: space-between;
}
.mc_contact_col{
    padding: 10px;
    width: 50%;
}
.mc_contact_form{
    flex: 50%;
}
.mc_contact_intro{
    margin-bottom: 2rem;
}
.mc_contact_info{
    width: 50%;
    line-height: 1.7rem;
}
.mc_contact_info_details > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.mc_contact_info_details img{
    width: 50px;
    margin-right: 10px;
}
.mc_contact_info_details a{
    color: var(--color_green);
}
.mc_contact_info_details a:hover{
    color: var(--color_green_light);
}
.mc_contact_image{
    width: 100%;
}
.mc_bottom{
    background-color: #031e23;
    color: #fff;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    margin:0 auto;
}
.mc_social_footer{
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.mc_social_footer_item{
    padding-left: .1rem;
    padding-right: .1rem;
}
.mc_logo_footer{
    margin-bottom: 60px;
}
.mc_logo_footer img{
    width: 300px;
}
#mc_language_current{
    visibility: hidden;
}
.mc_footer_links{
    padding-bottom: 10px;

}
.mc_footer_links a{
    color: #fff;
    transition: .5s;
}
.mc_footer_links a:hover{
    color: var(--color_green_light);
}
.mc_page_odds{
    margin-top: 130px;
    padding-top: 0px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}
.mc_page_odds h3{
    line-height: 1.7rem;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}
.mc_page_odds p{
    line-height: 1.7rem;
}
.mc_page_odds a{
    color: var(--color_grey);
}
.mc_page_odds a:hover{
    color: var(--color_orange);
}
.mc_page_odds hr{
    border: 1px solid var(--mc-blue);
}
.mc_page_title{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color_green_light);
    color: var(--color_green);
}
@media  screen and (max-width: 960px) {
    .mc_header{
        height: 120px;
        border-bottom: 1px solid grey;
    } 
    .mc_nav{
        position: absolute;
        left: 48%;
        top: 105px;
        transition: left .3s ease-out;      
        height: 100px;  
    }
    .mc_logo{
        width: 130px;
    }
    .mc_logo img{
        width: 130px;
        height: 97px;
    }
    .mc_main-menu{
        flex-direction: column;
        position: absolute;
        top: 100px !important;
        left: 101%;
        width: 40%;
        background-color: rgba(255, 255, 255);
        padding-top: 120px;
        padding-bottom: 120px;
        transition: .3s;
        z-index: 1 !important;
    }
    .mc_main-menu li{
        line-height: 3em;
        font-size: 22px;
    }
    .mc_main-menu.active{
        left: 0%;
        width: 100%;
    }
    .mc_mobile_nav_area{
        background-color: #fff;
        border-radius: 4px;
        justify-content: space-between;
    }
    .mc_nav-button{
        display: block;
    }
    .mc_language-switcher{
        border: 1px solid #fff;
        width: 30.5px;
        height: 26.5px;    
        margin-left: .2rem;
    }
    .mc_language-switcher:hover{
        border: 1px solid transparent;
    }    
    .mc_language-switcher img{
        width: 26px !important;
        height: 21px !important;
    }
    .mc_aero{
        margin-top: 100px;
        height: 500px;
        width: 100%;
    }
    .mc_aero_msg{
        top: 20%;
        width: 70%;
        height: 300px;
        background-color: rgb(0, 0, 0, .3);
    }
    .mc_aero_msg_item{
        padding-left: 10%;
        padding-right: 10%;
    }
    .mc_goal_grid{
        flex-direction: column;
    }
    .mc_goal_grid_item{
        width: 100%;
        padding-bottom: 1rem;
    }
    .goal_shape{
        width: 20%;
    }
    .mc_goal_grid p{
        width: 100%;
    }
    .mc_wwd_item{
        flex-direction: column;
        margin-bottom: calc(30%);
    }
    .mc_wwd_item_reverse{
        flex-direction: column-reverse;
    }  
    .mc_wwd_item_side{
        width: 100%;
    }
    .mc_wwd_photo{
        width: 100%;
        text-align: center;
        height: auto;
    }
    .mc_wwd_photo img{
        width: 65%;
        text-align: center;
    }
    .m_wwd_item p{
        width: 100%;
    } 
    .mc_wwd_item_text_title,
    .mc_wwd_item_text_suptitle{
        text-align: center;
    }
    .mc_solutions{
        flex-direction: column;
        margin-top: 5rem;
    }
    .mc_solution{
        width: 100%;
        margin-bottom: 5rem;
    }   
    .mc_solution_illustration,
    .mc_solution_title,
    .mc_solution_description{
        text-align: center;
        margin-bottom: 2rem;
    }
    .mc_contact_cols{
        flex-direction: column;
    }
    .mc_contact_intro, .mc_contact_info, .mc_contact_form{
        width: 100%;
    }
    .mc_contact_cols{
        flex-direction: column-reverse;
    }
    .mc_contact_cols{
        width: 100%;
    }
    /* Contact */
    .mc_contact_col{
        width: 100%;
    }

    .mc_logo_footer img{
        width: 200px;
        height: 148px;
    }    
}

@media screen and (max-width: 414px) {
    .mc_main-menu{
        top: -100%;
        width: 60%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .mc_main-menu li{
        font-weight: 300;
    }
    .mc_language-switcher{
        border: none;
    }
    .mc_language-switcher:hover{
        border: none;
    }
    .mc_aero{
        display: none;
    }
    .mc_aero_bg_mobile{
        display: block;
        margin-top: 40px;
        height: 630px;
        width: 100%;
        background-size: cover;
    }
    .mc_aero_msg{
        width: 90%;
        top: 26%;
    }
    .mc_aero_msg_item{
        padding-left: 10%;
        padding-right: 10%;
    }
    .mc_aero_msg_title{
        font-size: 20px;
    }
    .mc_aero_msg_description{
        font-size: 16px;
        line-height: 1.9em;
        font-weight: 200;
    }
    .mc_wwd_item{
        flex-direction: column;
    }
    .mc_wwd_item_reverse{
        flex-direction: column-reverse;
    }  
    .mc_wwd_item_side{
        width: 100%;
    }
    .mc_wwd_photo img{
        width: 100%;
    }
    .m_wwd_item p{
        width: 100%;
    } 
    .mc_wwd_item_text_title,
    .mc_wwd_item_text_suptitle{
        text-align: center;
    }
    .mc_language-switcher{
        left: 89.5%;
    }
    .mc_nav-button{
        right: 6.7%;
    }
    .mc_nav-button-close{
        right: 7%;
    }
    .mc_page_odds{
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .mc_solutions_separator{
        margin-top: -3.5rem;
    }
    .mc_solutions_cta_link{
        margin-top: 2rem;
        font-size: 120%;
        font-weight: 600;
    }
    .mc_wwd_item .mc_btn{
        margin: 0 auto;
        margin-top: 2em;
    }
}