* {box-sizing: border-box;}

/* Starting from mobile size */
body{
    font-family: Roboto Slab, Arial, sans-serif;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

h1{
    font-size: 12vw;
    margin: 0;
}

h2{
    margin: 0;
}

h3{
    font-size: 5vw;
    font-weight: 300;
    margin: 4vh 0;
}

p{
    line-height: 26px;
    margin: 3px 0;
}


.clear10{
    display: transparent;
    width: 100%;
    height: 10px;
    clear: both;
}

.hide_top,
.hide_bottom{
    visibility: hidden;
}

.view_desktop{
    display: none;
}

.button_area{
    text-align: center;
}

.blue_buttons{
    font-family: Roboto Slab, Arial, sans-serif;
    min-width: 235px;
    background: #2D81CA;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px; 
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

.blue_buttons:hover{
    background: #205C90;
}

.greyline{
    background: #cecece;
    width: 100%;
    height: 2px;
}

#header_rm_trailer
{
    height: 53px;
    background: #D8DE2A;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header_rm_trailer img{
    width: 100px;
}

#header_rm_trailer a{
    text-decoration: none;
    color: black;
}

.rm_trailer_content_box{
    max-width: 500px;
    margin: auto;
}

.rm_trailer_content_box img{
    width: 100%;
    height: 100%;
}

#intro_wrapper_rm_trailer{
    min-height: 100vh;
    background: url('../images/rm_trailer_background_mobile.png') no-repeat center -50px;
    color: white;
    text-align: center;
    padding: 14vh 10vw 24px 10vw;
}

.rm_trailer_skip_down{
    display: block;
    margin-top: 24px;
}

.rm_trailer_text_wrapper{
    padding: 24px 10vw;
    text-align: center;
    align-self: center;
}

#rm_trailer_contact{
    width: 100%;
    font-size: 9px;
    padding: 2vw;
}

#rm_trailer_contact p{
    margin: inherit;
}

#rm_trailer_contact a{
    color: rgb(31, 31, 31);
}

#rm_trailer_contact .phone{
    text-decoration: none;
}

.trust_pilot_link{
    position: fixed;
    z-index: 100;
    bottom: 0;
    width: 100%;
    background: rgba(216, 222, 42, 0.9);
    padding: 4px 20px;
}

/*Footer File Beginning*/
.footer_content{
    background: #D8DE2A;
    padding: 30px 30px 10px 30px;
    line-height: 25px;
}

.footer_content{
    font-size: 14px;
}

.footer_content a{
    text-decoration: none;
    color: rgba(0,0,0,0.6);
}

.footer_content a:hover{
    color: black;
}

.footer_lists{
    white-space: nowrap;
}

.footer_lists ul{
    list-style: none;
    padding-left: 0;
    margin-left: 5px;
}

.footer_title{
    font-weight: bold;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
}

.footer_bottom_line{
    background: #1F1F1F;
    text-align: center;
    padding: 10px 10px 10px 10px;
}

.footer_logo_no_text{
    width: 30px;
}

.footer_logo{
    width: 192px;
}
/*Footer File Ending*/

/*Lead Form Beginning*/
#page_wrapper_lead_form_en{
    font-size: 24px;
}

#page_wrapper_lead_form_en p{
    line-height: unset;
}

.lead_form_green{
    padding: 15px;
    min-height: 85vh;
    max-width: 480px;
    margin: auto;
}

#lead_form_green_header_desktop{
    display: none;
}

.lead_form_green h3{
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.lead_form_green label{
    font-weight: bold; 
    font-size: 16px;
}

.lead_form_green_input{
    padding-left: 15px;
    margin-bottom: 15px;
    width: 100%;
    min-height: 30px; /*Its height is partially controlled by a calculation script in main file (index_green)'*/
    max-height: 40px;
    font-size: 14px;
    border: solid black thin;
}

.lead_form_green input::placeholder{
    color: #989898;
}

.lead_form_green button{
    width: 80%;
    max-width: 500px;
}

.lead_form_green_extra_space{
    height: 0px;
}

.lead_form_legal_notice{
    font-size: 10px;
    padding: 10px 10px 10px 10px;
    color:rgba(0,0,0,0.6);
}
/*Lead Form Ending*/
/*White Content Box*/
.white_content_box_wrapper{
    padding: 10px;
}

.white_content_box{
    padding: 40px;
    box-shadow: 1px 5px 20px 1px rgba(0,0,0,0.4);
    border-radius: 4px;
    max-width: 480px;
    margin:auto;
}

.white_content_box h2{
    font-weight: normal;
    color: grey;
    margin: 0;
    font-size: 20px;
}

/* Start Tablet */
@media (min-width: 600px){
    h1{
        font-size: 7vw;
    }

    h3{
        margin: 8vh 0;
    }

    p{
        margin: 16px 0;
    }

    #intro_wrapper_rm_trailer{
        background-size: cover;
        padding-top: 12vh;
    }
    
    #rm_trailer_contact{
        font-size: 14px;
    }

    .trust_pilot_link{
        bottom: 5px;
        left: 50%;
        margin-left: -200px;
        border-radius: 5px;
        width: 400px;
        height: 30px;
    }
}

/* Start Desktop */
@media (min-width: 800px){
    p{
        line-height: unset;
    }

    .view_mobile{
        display: none;
    }
    
    .view_desktop{
        display: block;
    }

    .blue_buttons{
        font-size: 18px;
        padding: 18px 40px;
    }

    #page_wrapper_lead_form_en .blue_buttons{
        padding: 12px 24px;
    }

    #header_rm_trailer{
        padding: 0 10vw;
        font-size: 20px;
    }

    #header_rm_trailer{
        height: 81px;
    }

    #header_rm_trailer img{
        width: 140px;
    }

    #intro_wrapper_rm_trailer{
        background: url('../images/rm_trailer_background.png') no-repeat left top;
        background-size: cover; /* important, because the div will seem to break into the following div otherwise */
        text-align: left;
        padding-top: 20vh;
        padding-right: 3vw;
    }

    .rm_trailer_content_box{
        display: flex;
        display: -ms-flexbox;
        max-width: unset;
    }

    .rm_trailer_text_wrapper,
    .rm_trailer_img_wrapper{
        width: 50%;
    }

       
    /*Footer Beginning*/  
    .footer_content{
        padding-left: 60px;
    }
    
    .footer_content{
        padding-bottom: 50px;
    }
    
    .footer_logo_no_text{
        width: 60px;
        float: left;
    }
    
    .footer_content .greyline{
        display: none;
    }
    
    .footer_lists{
        float: left;
        margin-left: 5%;
    }
    /*Footer Ending*/ 

    .lead_form_legal_notice{
        font-size: 12px;
    }

    .white_content_box h1{
        font-size: 28px;
    }

    .white_content_box h3{
        font-size: 28px;
        margin: 10px;
    }
}

@media (min-width: 1300px){
    body{
        font-size: 36px;
    }

    h1{
        font-size: 100px;
    }

    h2{
        font-size: 48px;
    }

    h3{
        font-size: 43px;
    }

    .blue_buttons{
        font-size: 24px;
    }

    #intro_wrapper_rm_trailer{
        padding-top: 25vh;
    }

    

}

/* Cookie Consent Begin */
#cookieConsent {
 display: inline-table;
 background-color: #D8DE2A;
 min-height: 2rem;
 font-size: 1rem;
 color: black;
 line-height: 26px;
 padding: 8px 0 8px 30px;
 font-family: "Trebuchet MS",Helvetica,sans-serif;
 position: fixed;
 bottom: 0;
 width: 100%;
 z-index: 9999;
 text-align: center;
}
#cookieConsent a {
 color: #4B8EE7;
 text-decoration: none;
}
#closeCookieConsent {
 display: inline-block;
 cursor: pointer;
 height: 20px;
 width: 20px;
 margin: -15px 0 0 0;
 font-weight: bold;
}
#closeCookieConsent:hover {
 color: #FFF;
}
/* Cookie Consent End */