/*******************General******************/
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, sans-serif;
    font-size: 15px;
}

h1{
    font-family: 'Crete round', serif;
    font-size: 45px;
    color: #444;
}

ul{
    list-style: none;
}

.orange{
    color: #ff7a00;
}

a{
    text-decoration: none;
    color: #444;
}

.wrapper{
    width: 940px;
    margin: 0 auto;
    padding: 0 10px;
}

h2{
    color: #444;
    font-size: 55px;
}

h4{
    font-size: 24px;
    color: #444;
}

p{
    line-height: 20px;
    color: #444;
}

small{
        font-size: 13px;
        font-style: italic;
}

h3{
    font-size: 30px;
    color: #444;
}

/******************Header********************/

header{
    height: 120px;
}

header h1{
    float: left;
    margin-top: 32px;
}

header nav{
    float: right;
    margin-top: 50px;
}

header nav ul li{
    display: inline-block;
}

header nav ul li a{
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}

/********************main-image**********************/

#main-image{
    height: 580px;
    background: url(./img/Image20230307150711.jpg) center;
}

#main-image h2{
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    padding: 150px 0 40px 0;
    margin-bottom: 20px;
}

.button-1{
    display: block;
    width: 120px;
    height: 50px;
    background: #ff7a00;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius: 3px;
}

.button-1:hover{
    background: #02b8dd;
}

/*********************Steps******************/

#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: 20px;
}

#steps p{
    margin-bottom: 20px;
}

#step-1{
    background: url(./img/Image20230307150718.jpg) no-repeat top center;
}

#step-2{
    background: url(./img/Image20230307150724.jpg) no-repeat top center;
}

#step-3{
    background: url(./img/Image20230307150728.jpg) no-repeat top center;
}

.clear{
    clear: both;
}

/******************possibilities*********************/

#possibilities{
    background-color: #efefef;
    padding: 60px 0;
}

#possibilities article{
    width: 460px;
    height: 260px;
    float: left;
    border-radius: 10px;
}

#possibilities article:first-child{
    margin-right: 20px;
}

.overlay{
    background: rgba(255, 255, 255, 0.95);
    height: 100%;
    width: 190px;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    text-align: center;
    box-sizing: border-box;
}

article h4{
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;    
}

article p{
    text-align: center;
    margin-bottom: 20px;
}

.button-2{
    color: #fff;
    background: #ff7a00;
    padding: 6px 20px;
    border-radius: 3px;
}

.button-2:hover{
    background-color: #02b8dd;
}

/*********************Contact******************************/

#contact{
    padding: 60px 0;
    text-align: center;
}

#contact h3{
    text-transform: uppercase;
    border-bottom: 1px solid #02b8dd;
    margin: 0 auto 20px auto;
    width: 400px;
    padding-bottom: 20px;
}

form{
    margin: 60px 0 20px 0;
}

label{
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    color: #777;
}

input[type="text"]{
    padding: 10px;
    font-size: 20px;
    margin-right: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
}

.button-3{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 11px;
    background-color: #02b8dd;
    border-style: none;
}

.button-3:hover{
    background-color: #444;
}

/******************footer*******************/

footer{
    height: 260px;
    background-color: #444;
}

footer h1{
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.copyright{
    text-align: center;
    padding-top: 30px;
    color: #777;
    font-weight: bold;
}