/*BOOT*/
body {
    background-color: #FBFAF9;
}

.content {
    width: 90%;
    margin: 0 5%;
}

.fontzero {
    font-size: 0px;
}

.section_title {
    margin-bottom: 20px
}

.section_title h1 {
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    letter-spacing: 1px;
    line-height: 1em;
}

.section_title .tagline {
    border: 1px solid #868686;
    border-radius: 30px;
    font-size: 1em;
    display: inline-block;
    fill: #868686;
    text-align: center;
    padding: 5px 15px;
    margin-bottom: 20px;
}

.title_border {
    margin-top: 15px;
    margin-bottom: 25px;
    width: 60px;
    height: 2px;
    background-color: #111111;
    border: none;
}

.title_logo {
    font-size: 1.8em;
    /*font-weight: 300;*/
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Calibri Light';
}

.cta_btn {
    display: inline-block;;
    background: #fff;
    color: #333;
    padding: 10px 23px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 30px;
    text-decoration: none;
    transition: 0.4s;
    font-weight: 400;
    font-size: 0.9em;
    border-radius: 30px;
}

.cta_btn:hover {
    transform: scale(105%);
}


/*.section_title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 0;*/
/*    width: 150px;*/
/*    height: 3px;*/
/*    border-bottom: 3px solid #01afee;*/
/*}*/

/*CHAT WHATSAPP*/
.chat_online {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    transition: 0.2s;
    z-index: 999;
}

.chat_online:hover {
    box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.36);
}

/*MENU MOBILE*/
.mobile_action {
    position: absolute;
    top: 25px;
    right: 5%;
    z-index: 99;
    display: block;
}


.nav-icon {
    width: 40px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.mobile_action:hover .nav-icon span {
    background: #333;
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2) {
    top: 13px;
}

.nav-icon span:nth-child(3) {
    top: 26px;
}

.nav-icon.open span:nth-child(1) {
    background: #333;
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
    background: #333;
    opacity: 0;
    left: -60px;
}

.nav-icon.open span:nth-child(3) {
    background: #333;
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


@media (max-width: 59.99em) {
    .mobile_action.mobile_fixed {
        position: fixed;
        display: none;
    }

    .main_header_nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 76%;
        height: 100%;
        min-width: 200px;
        max-width: 360px;
        z-index: 99;
        background: #fff;
        overflow: hidden;
        overflow-y: auto;
        border-right: 10px solid #333;
    }

    .main_header_nav_item {
        float: left;
        width: 100%;
        position: relative;
    }

    .main_header_nav_item > a {
        float: left;
        width: 100%;
        padding: 15px;
        text-transform: uppercase;
        text-decoration: none;
        color: #333;
        font-size: 1em;
        font-weight: 500;
    }

    .main_header_nav_item:hover, .main_header_nav_item > a:hover {
        background: #333;
        color: #fff;
    }
}

/*FIM MENU MOBILE*/

/*HEADER*/

.main_header {
    background: #FBFAF9;
}

.main_header_logo {
    padding: 0;
    margin: -5px 0px;

}

.main_header_logo img {
    height: 90px;
}


/*FIM HEADER*/

/*DESTAQUE*/
.main_destaque {
    padding: 10px 0 80px 0;
    text-align: center;
    position: relative;
}

.main_destaque .conteudo {
    border-radius: 15px;
    background-image: linear-gradient(to bottom, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.5) 50%), url(images/destaque.png);
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    padding: 15px 15px 50px;
}

.main_destaque p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    letter-spacing: 1px;
    line-height: 18px;
    margin-bottom: 30px;
}

.main_destaque .tagline {
    font-size: 1.6em;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    letter-spacing: 1px;
    line-height: 1em;
}

.main_destaque h1{ 
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 1em;
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    margin-top: 200px;
    margin-bottom: 20px;
}

/*FIM DESTAQUE*/

/*CURSOS*/
.main_cursos{
    padding: 50px 0 90px 0;
    color: #333;
    text-align: center;
}

.main_cursos .section_title h1 {
    color: #333;
    margin-bottom: 40px;
}

.curso {
    margin-bottom: 25px;
}

.curso_img {
    height: 400px;
}

.curso_img.atualizacao {border-radius: 15px;
    background-image: url(images/curso.png);
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 100%;
}

.curso_img.imunologia {border-radius: 15px;
    background-image:  url(images/imunologia.png);
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 100%;
}

.curso_img.alergia {border-radius: 15px;
    background-image:  url(images/alergia.png);
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    width: 100%;
}

.curso_info {
    text-align: left;
    margin-top: 15px;
    background-color: #FBFAF9;
    padding: 40px 15px;
    border-radius: 30px;
    border: 1px solid #EDECEB;
}

.curso_info h1{
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 30px;
}

.curso_info p{
    font-size: 1em;
    font-weight: 400;
    color: #000;
}

.curso_info .cta_btn{
    color: #fff;
    background-color: #000;
}

/*FIM CURSOS*/

/*SOBRE*/
.main_sobre {
    padding: 50px 0;
    text-align: left;
    color: #333;

}

.sobre_conteudo {
    border-radius: 15px;
    background-image: url(images/sobre.png);
    -o-background-size: 1080px;
    -moz-background-size: 1080px;
    -webkit-background-size: 1080px;
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    color: #333;
    padding: 50px 25px 0px;
    border-radius: 30px;
    overflow: hidden;
}

.sobre_conteudo h1 {
    font-size: 1.2em;
    font-size: 200;
    color: #333;
}

.sobre_conteudo p {
    font-size: 0.9em;
    font-size: 200;
    margin-bottom: 15px;
}

.main_sobre img{
    border-radius: 25px;
    margin-top: 30px;
}
/*FIM SOBRE*/


/*CTA*/
.main_call {
    background-image: linear-gradient(to bottom, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.5) 50%), url(images/call.png);
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding: 100px 0;
    text-align: left;
}

.main_call .tagline {
    font-size: 15px;
    font-weight: 400;
    color: #FFBC13;
    margin-bottom: 10px;
    -webkit-animation-delay: .2s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    text-transform: uppercase;
    letter-spacing: 5px;
    max-width: 900px;
}

.main_call h1 {
    font-size: 35px;
    display: block;
    text-transform: uppercase;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    color: #fff;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 45px;
}

.main_call h1 span {
    font-size: 40px;
    margin-bottom: 0;
    animation-delay: .4s;
    letter-spacing: 1px;
    font-weight: 900;
    color: #FFBC13;
}

.main_call .call_desc {
    color: #fff;
    /*display: block;*/
    margin: 40px 0 0;
    max-width: 550px;
    font-size: 18px;
}

.main_call .call_desc span {
    color: #FFBC13;
}

/*FIM CTA*/


/*DEPOIMENTOS*/
.main_depoimentos {
    background-color: #fff;
    padding: 100px 0;
    color: #333;
}

.main_depoimentos .section_title {
    margin-bottom: 50px;
    text-align: center;
}

.main_depoimentos .section_title h1{
    color: #333;
}

.depoimentos_itens {
    position: relative;
    display: block;
    max-width: 650px;
    margin: 40px auto 0;
}

.depoimento_item .avaliacao {
    color: #ffd606;
    margin-bottom: 20px;
}

.depoimento_item {
    padding-bottom: 20px;
    text-align: center;
    display: none;
}

.depoimento_item.first {
    display: block;
}

.depoimento_item p {
    min-height: 50px;
    margin-bottom: 20px;
}

.depoimento_item h1 {
   margin-bottom: 50px;
}

.depoimento_slide_pager {
    position: absolute;
    bottom: -30px;
    right: calc(50% - 78px);
    display: block;
    text-align: center;
}

.depoimento_slide_pager span {
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 1em;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 0 6px;
}

.depoimento_slide_pager span:hover {
    background: rgb(0, 0, 0, 0.7);
}

.depoimento_slide_pager span.active {
    background: rgba(0, 0, 0);
}

/*FIM DEPOIMENTOS*/

.contato_mapa iframe {
    width: 100%;
    height: 500px;
    margin-bottom: -10px;
    background-color: #eee;
}


/*FOOTER*/

.main_footer {
    padding: 60px 0 20px;
    background-color: #FBFAF9;
    color: #333;    
    font-size: 15px;
    border-bottom: 1px solid #EDECEB;
}

.footer_title {
    font-size: 26px;
    color: #333;
    font-weight: 500;
    line-height: 1.2em;
    margin: 0 0 15px 0;
}


.main_footer a {
    color: #333;
}

.main_footer_logo img {
    display: block;
    width: 180px;
    margin: -15px 20px;
    margin-left: -10px;
}

.main_footer_nav {
    display: flex;
    justify-content: space-between;
    width: 280px;
    margin: 20px auto;
}


.main_footer_nav_item a {
    text-decoration: none;
    color: #333;
}

.main_footer_nav_item a:hover {
    text-decoration: underline;
    color: #333;
}

.footer_social {
    margin-bottom: 20px;
}

.footer_social .fab {
    color: #333;
    margin-right: 30px;
    font-size: 30px !important;
}

.fa-instagram:hover {
    color: #000;
}

.copy {
    background-color: #FBFAF9;
    /*border-top: 1px solid rgba(255, 255, 255, 0.05);*/
    padding: 30px 0;
    text-align: center;
}

.copy p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.copy p a {
    color: #000;
    text-decoration: none;
}

.copy p a:hover {
    color: #c2c2c2;
    text-decoration: underline;
}

/*FIM FOOTER*/


/*592px*/
@media (min-width: 37em) {
.curso_img {
    height: 550px;
}
}

/*768px*/
@media (min-width: 48em) {

    .main_destaque p {
        font-size: 20px; 
        line-height: 25px;   
        max-width: 700px;   
        margin: 0 auto 8px auto;         
    }

    .main_destaque .tagline {
        font-size: 2.1em;    
        max-width: 500px;   
        margin: 0 auto 25px auto;     
    }

    .main_destaque h1{  
        margin-top: 300px;            
    }

    .cursos {
        display: flex;
        justify-content: space-between;
    }

    .curso {width: 32%}

    .curso_img {
    height: 280px;
}

    .sobre_conteudo {
        display: flex;
        justify-content: space-between;
        padding: 140px 35px 0;
        align-items: end;

        -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-position-x: left;
        background-position-y: center;
        background-repeat: no-repeat;
    }

    .main_sobre img {display: none;}

    .sobre_info {
        width: 475px;
        margin-bottom: 50px;
    }

    .sobre_img {
        width: 40%;
        max-widht: 350px;
    }
    
    .main_call h1 {
        font-size: 55px;
        line-height: 60px;
    }

    .main_call h1 span {
        font-size: 62px;
    }

}

/*960px*/
@media (min-width: 60em) {

    .mobile_action, .mobile_fixed {
        display: none !important;
    }

    .main_header {
        /*position: fixed;
        z-index: 999;*/
    }

    .main_header .content {
        display: flex;
        justify-content: space-between;
    }


    .main_header_contact .content p:last-of-type {
        margin-right: 0px;
    }


    .main_header_logo img {
        height: 100px;
    }


    .main_header_nav {
        color: #000;
        display: flex;
        justify-content: space-between;
        font-weight: 300;
    }

    .main_header_nav_item {
        position: relative;
        padding: 35px 15px;
    }

    /*.main_header_nav_item:last-of-type {*/
    /*    background-color: #111111;*/
    /*}*/

    .main_header_nav_item > a {
        font-size: 1em;
        font-weight: 300;
        text-transform: uppercase;
        color: #333;
        margin: 1px;
        -webkit-transition: all .4s;
        transition: all .4s;
        padding-right: 7px;
        padding-left: 7px;
        text-decoration: none;
    }

    /*.main_header_nav_item:first-of-type > a {*/
    /*    color: #111111;*/
    /*}*/
    .main_header_nav_item:hover > a, .main_header_nav_item > a:hover {
        color: #333;
        text-decoration: underline;
    }

     .sobre_conteudo {
        padding: 200px 35px 0;
    }

    .sobre_info h1 {
        font-size: 2em;
    }

    .sobre_info p {
        font-size: 1.1em;
    }
    .curso_info p {
        min-height: 100px;
    }

    .curso_img {
    height: 350px;
    }



    .main_footer .main_footer_itens {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .main_footer_logo, .main_footer nav, .main_footer_contact {
        width: 48%;
    }

    .main_footer nav, .main_footer_contact {
        width: 48%;
        padding-top: 10px
    }

    .main_footer_contact {
        margin-bottom: 30px;
    }


}

/*1248*/
@media (min-width: 78em) {
    .content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .diferenciais_itens {
        margin-top: -120px;
    }

    .contato_item p {
        min-height: 50px;
    }

    .main_header_nav_item > a {
        padding: 10px 20px;
        font-size: 1.1em;
    }

    .curso_img {
    height: 430px;
    }
}

@media (max-width: 48em) {
    .foto_none {
        display: none;
    }
}
