*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans";
}

html, body{
    height: 100%;
}

@font-face{
    src: ('../fonts/OpenSans-Light.ttf');
    font-family: "Open Sans";
}

.center{
    width: 100%;
    margin: 0 auto;
}

header{
    width: 100%;
    height: 60px;
    padding: 0 2%;
    background-color: #212343;
}

header img{
    margin: 19px;
}

.container-banner{
    width: 100%;
    height: 557px;
    padding:  0 2%;
    background-image: url('../images/header_bg.png');
    background-size: cover;
    background-position: center;
}

.container-banner > .center{
    height: 100%;
    max-width: 1280px;
}

.form{
    padding: 10px;
    width: 400px;
    height: calc(100% + 30px);
    float: right;
    position: relative;
    top: -15px;
    border: 8px solid #cecece;
    background-color: #fff;
}

.form h2{
    font-weight: normal;
    color: #999999;
    font-size: 21px;
}

.input-container{
    margin-top: 20px;
}

.input-container span{
    display: inline-block;
    width: 100%;
    color: #888888;
    font-size: 17px;
}

.input-container input[type=text],input[type=email]{
    width: 100%;
    height: 50px;
    border: 1px solid #cecece;
    margin-top: 8px;
}

.form p{
    margin: 20px 0;
    color: #888888;
    width: 100%;
}

.form input[type=submit]{
    border: none;
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: #363a6d;
    font-size: 25px;
    margin-top: 8px;
    text-transform: uppercase;
    cursor: pointer;
}

.form input[type=submit]:hover{
    background-color: #323665;
}

.container-list{
    float: left;
    width: 619px;
    /**height: 270px;*/
    background-color: rgba(33, 35, 37, .7);
    margin-top: 40px;
    padding: 15px;
}

.container-list ul{
    list-style-position: inside;
}

.container-list ul li{
    margin: 30px;
    color: #fff;
}

.container-two{
    padding: 40px 2%;
    background-color: #dddddd;
    text-align: center;
}

.container-two p{
    font-weight: normal;
    text-align: justify;
    max-width: 768px;
    width: 100%;
    display: inline-block;
    margin: 15px 0;
}

.seta{
    width: 40px;
    height: 40px;
    background-image: url('../images/arrow.png');
    background-size: 100% 100%;
    position: relative;
    top: 60px;
    left: 50%;
    margin-left: -20px;
}

.section{
    padding: 90px 0;
}

.section h2{
    color: #462663;
    font-weight: normal;
    text-align: center;
}

.container-three{
    margin-top: 48px;
}

.container-three{
    text-align: center;
}

.container-single{
    float: left;
    width: 33.33%;
    padding: 30px;
}

.container-single img{
    width: 70px;
}

.container-single p{
    padding: 10px 25px;
    text-align: justify;
}

footer{
    padding: 30px 0;
    border-top:  4px solid #888888;
    clear: both;
    text-align: center;
}

.clear{
    clear: both;
}

@media screen and (max-width: 1024px){
    header{
        width: 100%;
        text-align: center;
        
    }

    .container-banner{
        width: 100%;
        height: auto;
        padding: 2%;
        text-align: center;
    }

    .form{
        max-width: 400px;
        padding: 10px;
        width: 90%;
        height: 100%;
        float: none;
        display: inline-block;
        position: relative;
        top: 0px;
        margin-top: 20px;
    }

    .container-list{
        float: none;
        width: 90%;
        max-width: 500px;
        height: auto;
        display: inline-block;
        margin-top: 0;
    }

    .container-single{
        display: inline-block;
        width: auto;
        padding: 30px;
    }
}