@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    background: #f5f5f5;
}

.container-all{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 60px;
    background: white;
    margin-top: 100px;
    border-top: 6px solid #65d6a6;
}

.title{
    font-size: 40px;
    margin-bottom: 60px;
}

.sub-title{
    font-size: 30px;
    font-weight: 400;
}

.container-all img{
    width: 300px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.container-all p{
    font-size: 18px;
    font-weight: 300;
    margin-top: 20px;
}