header {
    position: relative;
    z-index: 30;
}
header .header {
    position: relative;
    padding: 12px 3rem;
    background: #fff;
}
header .header .logo {
    margin: 0;
    font-size: 0;
    max-width: 85px;
    position: relative;
}
header .header .logo img {
    position: relative;
}
header .header nav ul li {
    display: inline-block;
    margin-left: 60px;
}
header .header nav ul li.home {
    display: none;
}
header .header nav ul li a {
    color: #493a4a;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: block;
    height: 40px;
    line-height: 36px;
}
header .header nav ul li a:hover,
header.black .header nav ul li a:hover {
    text-decoration: none;
    color: #5d66d3;
}
header .header nav ul li.cursos {
    float: right;
}
header .header nav ul li.cursos a {
    border: solid 2px #5d66d3;
    background: #5d66d3;
    color: #fff;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease-out;
}
header .header nav ul li.cursos a:hover {
    background: #6d77e8;
    border-color: #6d77e8;
    text-decoration: none;
}
header .header nav ul li.cursos a i {
    margin-right: 8px;
    display: inline-block;
}
header .header nav ul li a i {
    display: none;
}
header .header nav > ul .hr-mob {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #a3b1ba;
    display: block;
    position: relative;
    margin: 30px 0 20px;
}
header .header nav > ul .hr-mob::before {
    content: '';
    position: absolute;
    right: 10%;
    left: 90px;
    top: 9px;
    height: 1px;
    background: #dae4e9;
}
header .search {
    position: relative;
}
header .search i {
    position: absolute;
    font-size: 18px;
    color: #9ca5b1;
    top: 50%;
    margin-top: -10px;
    left: 3rem;
}
header .search input[type=text] {
    background: #f0f3f8;
    height: 88px;
    margin: 0;
    border: none;
    border-bottom: solid 2px #f6f6f6;
    width: 100%;
    color: #020002;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 3rem 0 6rem;
}
header .header .nav,
header .header nav ul > a,
header .header nav > ul.user .mob {
    display: none;
}


/*
INPUTS
*/
input[type="text"].simple,
input[type="password"].simple,
textarea.simple {
    width: 100%;
    border-radius: 3px;
    border: solid 1px #eeeff0;
    background: #fff;
    font-size: 14px;
    padding: 20px;
    height: 48px;
}
textarea.simple {
    height: 140px;
    line-height: 1.5;
}

span.inp_simple {
    display: block;
    color: #6f7077;
    font-size: 13px;
    margin-bottom: 5px;
}

span.text-error {
    font-size: 10px;
    color: #fe0c47;
    overflow: hidden;
    display: block;
    line-height: 20px;
    transition: all 0.2s ease-out;
}
textarea.simple.error + span.text-error,
input.simple.error + span.text-error {
    opacity: 1;
    max-height: 35px;
}
textarea.simple + span.text-error,
input.simple + span.text-error {
    opacity: 0;
    max-height: 0;
}
textarea.simple.error,
input.simple.error {
    border-color: #ff000d;
}

input.simple:disabled {
    background: #f3f5f7;
    cursor: no-drop;
}

.form-submit {
    text-align: right;
    padding: 48px 0 30px;
}
.form-submit a.cancel {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin-right: 15px;
    color: #1648cd;
}
.form-submit a.cancel:hover {
    text-decoration: underline;
}
.modal-backdrop .form-submit {
    text-align: right;
    padding: 13px 50px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 29px 0 rgba(34, 41, 51, 0.1);
}

/* QUESTIONS */
div.questions {
    padding: 6rem 0 5rem;
    background: #fbf6f6;
}
div.questions h2 {
    max-width: 310px;
    margin: 0 0 20px;
    font-size: 2.5rem;
    color: #493a4a;
}
div.questions p.mb {
    font-size: 14px;  
    line-height: 1.71;
    color: #726471;
    max-width: 310px;
}
div.questions ol.questions {
    padding-top: 2rem;
}
div.questions ol.questions li {
    background: #fff;
    margin: 0 .5rem 8px;
    border-radius: 5px;
    position: relative;
    padding: 13px 25px;
    transition: all 0.2s ease-out;
}
div.questions ol.questions h3 {
    font-size: 14px;
    margin: 0;
    padding: 13px 30px 13px 0;
    color: #493a4a;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease-out;
}
div.questions ol.questions li.active h3,
div.questions ol.questions li:hover h3 {
    color: #f655c5;
}
div.questions ol.questions h3 i {
    color: #493a4a;
    font-size: 1rem;
    position: absolute;
    top: 25px;
    right: 25px;    
}
div.questions ol.questions li.active h3 i,
div.questions ol.questions li:hover h3 i {
    color: #f655c5;
}
div.questions ol.questions .text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
} 
div.questions ol.questions p {
    margin: 0;
    padding: 20px 0;
}
div.questions ol.questions li.active .text {
    max-height: 200px;
    overflow: auto;
    opacity: 1;
}
div.questions p.mb .button {
    margin-top: 2rem;
}

footer {
    background: #f655c5;
    padding: 3rem 0 0;
}
footer h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    line-height: 2.29;
}
footer ul li a {
    font-size: 14px;
    color: #fff;
}
footer ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
footer ul li a i {
    font-size: 18px;
    margin-right: 10px;
}
footer .contact {
    text-align: right;
}
footer .copy {
    margin-top: 5rem;
    background: #fff;
    color: #726471;
    font-size: 14px;
    padding: 1.2rem;
}
footer .copy a {
    color: #ea54bc;
}
footer .copy a:hover {
    text-decoration: underline;
}
footer .copy .noot {
    width: 75px;
}

/* Medium */
@media (max-width:1020px) {
    header .header nav ul li {
        margin-left: 30px;
    }
}

/* Small */
@media (max-width:640px) {
    header .header {
        padding: 12px 1.8rem;
    }
    header .header .nav {
        display: block;
        float: right;
        color: #5d66d3;
        font-size: 21px;
    }
    header .header .nav:hover {
        color: #6d77e8;
    }
    header .header nav > a i {
        color: #fff;
        margin-right: 15px;
    }
    header .header nav > ul {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #fff;
        padding: 10% 0 0 10%;
        z-index: 10;
    }
    header .header nav > ul > a {
        display: block;
        margin-bottom: 40px;
        text-align: left;
        font-size: 18px;
        color: #5d66d3;
    } 
    header .header nav > ul > a:hover {
        color: #6d77e8;
    }
    header .header nav > ul > li {
        margin-bottom: 10%;
    }
    header .header nav > ul > li > a {
        font-size: 24px;
        text-decoration: none;
        font-weight: 800;
        text-transform: none;
        height: 30px;
        color: #493a4a;
    }
    header .header nav > ul.user > li {
        margin-bottom: 5%;
    }
    header .header nav > ul.user > strong {
        font-size: 24px;
        font-weight: 800;
        color: #abb7be;
        margin-bottom: 20px;
        display: block;
    }
    header .header nav > ul.user .mob {
        display: block;
    }
    header .header nav > ul.user > li > a {
        font-size: 17px;
        color: #493a4a;
    }
    header .header nav > ul.user > li > a > i {
        display: inline-block;
        margin-right: 10px;
    }
    header .header nav > ul.user > strong > a.sair {
        font-size: 18px;
        color: #5d66d3;
        margin-left: 10px;
    }
    header .header nav > ul > li.active > a,
    header .header nav > ul > li a:hover {
        color: #5d66d3;
        text-decoration: none;
    }
    header .header nav ul li.home,
    header .header nav ul li {
        margin-left: 0;
        display: block;
    }
    header .header nav ul li a {
        color: #5d66d3 !important;
    }
    header .header nav ul li.cursos {
        position: fixed;
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
    header .header nav ul li.cursos {
        margin: 0;
    }
    header .header nav ul li.cursos a {
        border: none;
        text-align: center;
        height: 72px;
        line-height: 72px;
        font-size: 21px;
        color: #fff !important;
    }
    header .header nav ul.user li.cursos a {
        display: none;
    }
    body.open header .header nav > ul {
        overflow: auto;
        display: block;
    }

    footer .contact {
        text-align: left;
    }
    footer .copy {
        text-align: center;
        line-height: 1.5;
    }
}