*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color: white;
    color:black;
    font-size: 15px;
    line-height: 1.5;
}
.container{
    width:90%;
    margin:auto;
}

/*nav bar*/

.main-nav a{
    color:hsl(243, 87%, 12%);
    text-decoration:none;

}
.main-nav a:hover{
    border-bottom:darkslateblue solid 2px;
}

.main-nav .logo{
    width:130px;
}

.main-nav ul {
    list-style: none;
    
}

.main-nav ul li{
    display: inline;
    padding:0 20px;

}

.main-nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 50px 0;
    font-size: 13px;
}

/*file*/

.main-file{
    width:100%;
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding-bottom:60px;
    margin-top:50px;
}

section .illustration{
    width:50%;
    order: 2;

}

section .file{
    width: 50%;
    order:1;
    margin-top:60px;
}

section  h1{
    color:hsl(243, 87%, 12%);
    line-height:1.5;
    font-size:30px;
    word-spacing:3px;
    padding-bottom: 20px;
    
}

section .file p, .box-1 p{
    color:hsl(238, 22%, 44%);
    padding-bottom: 20px;
}

input{
    width:50%;
    height: 40px;
    border-radius:5px;
    padding:10px;
    border-color:grey;
    border-width:1px;
}

section .btn{
    width:30%;
    height:40px;
    background-color:hsl(224, 93%, 58%);
    color: white;
    border:0;
    font-size:12px;
    border-radius:5px;
   
}
form .btn:hover{
    background-color: hsla(224, 63%, 64%, 0.708);
    cursor:pointer;
}
/*curve*/

.curve{
    width:100%;
    margin-top:30px;
    margin-bottom: -10px;
    padding-bottom: 0;
}

/*productive*/

.main-productive{
    background-color:hsl(240, 75%, 98%);
    width:100%;
}
section .container{
    display:flex;
    justify-content:space-between;
    padding: 50px 0;
    
}
section .main-box{
    width:50%;
    order:1;
    margin-bottom:30px;
}

section .illustration-2{
    width:40%;
    height:40%;
    margin:auto 0;
    order: 2;
}


section .box-1 h1{
    color:hsl(243, 87%, 12%);
    line-height:1.5;
    font-size:25px;
    word-spacing:3px;
    

}
section .box-1 p{
   width:80%;
}

section .box-1 a{
    color:green;
    text-decoration:none;
}
section .box-1 a .arrow{
    width:15px;
    margin-left:5px;
   position:relative;
   margin-bottom:-3px;
}
section .box-1 span{
    padding:10px 0;
    border-bottom:solid green 1px;
    margin-bottom:50px;
}

section .box-2{
    background-color:white;
    width:60%; 
   margin-top:40px;
    border-radius: 10px;
    height:45%;
    font-size:13px;
    padding:25px;
    box-shadow: 0 0 10px rgb(175, 172, 172);
}


.box-2 .icon{
   padding: 0;
   display: inline;
   margin:10px 0;
   font-size:10px;
   
}
.box-2 p{
    padding:0;
    margin-bottom:10px;
}
.box-2 .pic{
    border-radius: 30px;
    width:40px;
    float:left;
   
    margin-right:5px;
}
.box-2 .icon .info{
    margin-top:20px;
    padding-top:5px;
}

/*access*/

.access{
    background-color:  hsl(238, 22%, 44%);
    color:white;
    padding:50px 0;
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.access .get{
    width:40%;
}
.access form{
    width:40%;
}
.access .btn{
    display: block;
    margin-top:10px;
    width:200px;
    height:45px;
    font-size:13px;
    background-color: hsl(224, 93%, 58%);
}
.access .mail{
    width:400px;
    height:45px;
    border-radius: 5px;
    border:none;
}
.access h2{
    padding-bottom:10px;
    font-size:25px;
}
.access p{
    font-size:13px;
    color: white;
}

/*footer*/

.main-footer{
    background-color:hsl(243, 87%, 12%);
    color:hsl(0, 0%, 75%);
    padding:100px 50px;   

}

.main-footer ul{
    list-style:none;
    
}
.main-footer .box{
    display:flex;
    color:hsl(0, 0%, 75%);
    justify-content: space-between;
}
.main-footer ul li{
    padding-bottom: 10px;
    color:hsl(0, 0%, 75%);
}

.main-footer .logo{
    color:white;
    margin:20px 0;
}

.main-footer span{
    margin-left:10px;
}
.main-footer a{
    color:hsl(0, 0%, 75%);
    text-decoration:none;
    
}
.main-footer a:hover{
    border-bottom:solid white 2px;

}

/*media query*/

@media(max-width:700px){
    .main-nav .logo{
        width:90px;
    }
    .main-nav ul li{
      
        padding:0 10px;
    
    }
    
    .main-file{
        width:100%;
        display:block;
        
    }
    section  h1{
        font-size:25px;
        word-spacing:3px;
        
    }
    .main-file .illustration{
        width:100%;
        margin-top:0px;
    }
    .main-file .file{
        width:100%;
        text-align:center;
    }
    .main-file .btn,.main-file input{
        width:100%;
        margin-bottom:10px;
        height:40px;
    }

    section .container{
        display:block;
    }

    .main-productive .illustration-2{
        width:90%;
        margin-bottom:100px;
    }

    .main-productive .main-box{
        width:100%;
        margin:0;
        text-align:center;
    }
    .main-productive .main-box .box-1 p{
        width:100%;
    }
    .main-productive .main-box .box-2{
        margin: 40px auto;
    }
    .access{
        display: block;
        width:100%;
        padding:0;
    }
    .access form ,.access form .mail{
        width:90%;
        margin:auto;
    }
    .access .get{
        width:100%;
        text-align:center;
        padding-bottom: 20px;
    }
    .access .btn{
        width:90%;
        font-size:13px;
    }

    .main-footer .box{
        display:block;
        padding-top:20px;
    }
    .main-box .box-2 {
        width:80%;
    }
}