/*==================== CSS RESET==============================*/
body{
    padding: 0;
    margin:0;
}
.clearfix::after{
    content:'';
    display: block;
    clear:both;
}

.container_menu_icon {
    display: inline-block;
    cursor: pointer;
    
}
a{
    text-decoration: none;
}
.container_gvf{
    width: 100%;
}
/*==================== MENU ICON==============================*/
.bar1, .bar2, .bar3{
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    margin-top: 3px;
    
    transition: 0.4s;
}
.menu_icon:first-child{
    margin-top: 8px;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 2px);
    transform: rotate(-45deg) translate(-9px, 2px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -3px);
    transform: rotate(45deg) translate(-8px, -3px);
    
}
.logo{
    height: 20px;
}
/*==================== MAIN COVER==============================*/
.cover{
/*    position: relative;*/
    z-index: 2;
    width: 100%;
    height: 600px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-align: center;
    background:#ffffff url(Images/iStock_000018135789Medium1_blur.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    background-attachment: fixed;
        
}
.cover p,.cover h1{
    margin: 0;
}
.cover h1{
    font-size: 60px;
}
.main_title{
/*    position: relative;*/
    width: 700px;
    margin: auto;
    margin-top: 150px;
    margin-bottom: 20px;
    font-weight: 900;
    
}
.subtitle{
    width: 700px;
    font-weight: 400;
    font-size: 20px;
    margin: auto;
}
.button{
/*    position: relative;*/
    font-size: 20px;
    width:200px;
    height: 50px;
    font-weight: 900;
    background-color: #146aff;
    color:#fff;
    border-radius: 3px;
    display: block;
    margin: auto;
    margin-top: 30px;
    line-height: 50px;
    cursor: pointer;
    transition: background-color 1s,color 1s;
}
.button:hover{
    background-color: #3aeff2;
    color: #000;
}
/*==================== MIDDLE SECTION==============================*/

.middle{
    
    width: 100%;
    padding: 40px 80px;
    box-sizing: border-box;
    margin: auto;
    background-color: #fff;
    text-align: center;
    font-weight: 400;
    line-height: 25px;
    color: #7c7c7c;
    font-family: 'Libre Franklin', sans-serif;
    
}
.middle h2{
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #000;
}
.line{
    width: 50%;
    margin: auto;
    height: 1px;
    background-color: #7c7c7c;
}
/*==================== FOOTER==============================*/
.footer{
    background-color: #1e74ff;
    margin:auto;
    width: 100%;
    
    
}
.footer_contact{
    float:left;
    padding: 30px 30px;
    font-size: 19px;
    text-align: center;
    /*box-sizing: border-box;*/
   
    color: #fff;
    
}
.footer_contact p:first-child{
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin:0px;
    color: #fff;
}
.footer_contact a{
    color: #fff;
    font-size: 19px;
    transition: color 1s;
}

.footer_contact a:hover{
    color: #3aeff2
}
.footer_contact a:visited{
    color: #707070
}
.footer_contact a:active{
    color: #707070
}
.centered{
    margin: auto;
    width: 658px;
    
}
.copyright{
    clear:both;
    width:80%;
    margin: auto;
    margin-top: 10px;
    padding-bottom: 10px;
    color:#fff;
    text-align: center;
}


/*==================== RESPONSIVE==============================*/

@media screen and (max-width: 670px){
    .main_title{width: 100%;padding: 5px;}
    .subtitle{width: 100%;padding: 0px;font-size: 20px;}
    .middle{padding: 20px; font-size: 15px;}
    .footer_contact{float:none;margin: auto; width: 100%;max-width: 180px;padding: 10px;}
    .footer_contact p:first-child{font-size: 20px}
    .cover h1{font-size: 40px;}
    .centered{width: 100%;}
}

