*{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: Arial, sans-serif;
    font-size: 15px;
}
h1{
    font-family: 'Crete Round',serif;
    font-size: 45px;
    color: #444;
}
small{
    font-size: 13px;
    font-style: italic;
}
a{
    text-decoration: none;
    color: #444;
}
a:hover{
    color: #ff7a00;
}
h4{
    font-size: 24px;
    color: #444;
}
p{
    line-height: 20px;
    color: #777;
}
h2{
    color: #444;
    font-size: 55px;
}
h3{
    font-size: 30px;
    color: #444;
}
.clear{
    clear: both;
}
ul{
    list-style: none;
}
.wrapper{
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}
.orange{
    color: #ff7a00;
}
header{
    height: 120px;
}
header h1{
    float: left;
    margin-top: 32px;
}
header nav{
    margin-top: 50px;
    float: right;
}
header nav ul li{
    display: inline-block;
}
header nav ul li a {
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}
#main-image{
    height: 580px;
    background: url(image/24.6\ main.jpg.jpg) center;
}
#main-image h2{
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 150px 0 40px 0;
    margin-bottom: 20px;
}
.button-1{
    width: 120px;
    height: 50px;
    display: block;
    background-color: #ff7a00;
    color: white;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
}
.button-1:hover{
    background-color: #02b8dd;
}
#steps ul{
    margin: 80px 0;
}
#steps ul li{
    width: 300px;
    float: left;
    padding-top: 140px;
    text-align: center;
    margin-right: 10px;

}
#steps h4{
    text-transform: uppercase;
    margin-bottom: 24px;
}
#steps p{
    margin-bottom: 20px;
}
#step-1{
    background: url(image/24.2\ steps-icon-1.png) no-repeat top center;
    cursor: pointer;
}
#step-2{
    background: url(image/24.1\ steps-icon-2.png) no-repeat top center;
    cursor: pointer;
}
#step-3{
    background: url(image/24.3\ steps-icon-3.png) no-repeat top center;
    cursor: pointer;
}

#possibilities{
    background-color: #efefef;
    padding: 60px 0;
}
#possibilities article{
    width: 460px;
    float: left;
    border-radius: 10px;
}
#possibilities article:first-child{
    margin-right: 20px;
}
.overlay{
    background: rgba(255, 255, 255, 0.95);
    width: 190px;
    height: 270px;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    text-align: center;
}
article h4{
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    text-align: center;
    margin-bottom: 20px;
}
#possibilities p{
    text-align: center;
    margin-bottom: 20px;
    
}
.button-2{
    color: white;
    background-color: #ff7a00;
    padding: 6px 20px;
    border-radius: 3px;
}
.button-2:hover{
    color: white;
    background-color: #02b8dd;
}
#contact{
    padding: 60px 0;
    text-align: center;
}
#contact h3{
    text-transform: uppercase;
    margin:0 auto 20px auto;
    width: 400px;
    border-bottom: 1px solid #02b8dd;
    padding-bottom: 20px;
}
form{
    margin: 60px 0 20px 0;
}
LABEL{
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    color: #777;
}
input[type="text"]{
    padding: 10px;
    font-size: 20px;
    margin-right: 20px;
    border: 2px solid #DDD;
    border-radius: 3px;
}
.button-3{
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 11px;
    border-style: none;
    background-color: #02b8dd;
    border-radius: 3px;
    cursor: pointer;
}
.button-3:hover{
    color: white;
    background-color: #444;
}
footer{
    height: 260px;
    background-color: #444;
}
footer h1{
    color: white;
    text-align: center;
    padding-top: 80px;
}
.copyright{
    text-align: center;
    font-weight: bold;
    padding-top: 30px;
    color: #777;
}

/* ===== TABLETTE (max-width: 768px) ===== */
@media (max-width: 768px) {
    .wrapper{
        width: 100%;
        max-width: 940px;
    }

    header{
        height: auto;
        padding: 20px 0;
    }
    header h1{
        float: none;
        text-align: center;
        margin-top: 0;
    }
    header nav{
        float: none;
        margin-top: 15px;
        text-align: center;
    }
    header nav ul li{
        display: inline-block;
        margin: 5px;
    }

    #main-image{
        height: 400px;
    }
    #main-image h2{
        font-size: 34px;
        padding: 100px 20px 40px 20px;
    }

    #steps ul li{
        width: 100%;
        float: none;
        margin-right: 0;
        padding-top: 100px;
    }

    #possibilities article{
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    #possibilities article:first-child{
        margin-right: 0;
    }

    #contact h3{
        width: 90%;
    }

    form{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    label{
        margin-bottom: 8px;
    }
    input[type="text"]{
        width: 80%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* ===== MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    h1{ font-size: 32px; }
    h2{ font-size: 26px; }
    h3{ font-size: 22px; }
    h4{ font-size: 20px; }

    #main-image{
        height: 320px;
    }
    #main-image h2{
        font-size: 24px;
        padding: 80px 15px 30px 15px;
    }

    .overlay{
        width: 100%;
        box-sizing: border-box;
    }
    #possibilities article{
        background-size: cover;
        background-position: center;
    }

    footer{
        height: auto;
        padding: 40px 0;
    }
    footer h1{
        padding-top: 0;
    }

    input[type="text"]{
        width: 90%;
    }
}


