/*
* **********************************
* ################################## ESTILOS DO INDEX
* **********************************
*/

/*
========================
======================== ESTILOS GERAIS DO ÍNDICE
========================
*/

/*
========================
======================== BANNER
========================
*/

.banner_mobile{
    display: none;
}

@media(max-width: 1024px){

    .banner{
        display: none !important;
    }

    /*.banner_mobile{*/
    /*    display: block;*/
    /*}*/
}

/*
========================
======================== SERVICES
========================
*/

.services{
    display: flex;
    justify-content: flex-end;
}

@media(max-width: 1024px){
    .services{
        margin-top: 50px;
    }

}

.services .content{
    display:flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.services_content{
    max-width: 1000px;
}

@media(max-width: 1024px){
    .services_content{
        max-width: 100%;
    }
}

.services_header{
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.services_header h1{
    font-size: 2.25em;
    font-weight: 300;
    color: var(--colorBlack);
}

.services_header h1 strong{
    font-weight: 600;
    display: block;
}

.services_list{
    flex-basis: 100%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services_item{
    flex-basis: 48%;
    display: flex;
    flex-wrap: wrap;
}

@media(max-width: 1024px){
    .services_item{
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .services_item:last-child{
        margin-bottom: 0;
    }
}

.services_item_icon{
    background-color: var(--colorBlueTwo);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

@media(max-width: 1024px){
    .services_item_icon{
        margin: 0 auto;
    }
}

.services_item:hover .services_item_icon{
    background-color: var(--colorBlue);
}

.services_item_desc{
    width: calc(100% - 100px);
    padding-left: 20px;
}


@media(max-width: 1024px){
    .services_item_desc{
        width: 100% !important;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
}

.services_item_desc h1{
    font-size: 1.5em;
    font-weight: 500;
    color: var(--colorBlueTwo);

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.services_item_desc p{
    font-size: 1em;
    font-weight: 300;
    color: var(--colorBlueTwo);

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.services_item_desc .btn{
    margin-top: 5px;
    padding: 13px 30px;
    
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.services_item:hover .services_item_desc h1,
.services_item:hover .services_item_desc p{
    color: var(--colorBlue);
}

/*
========================
======================== ABOUT/HOURS
========================
*/

.about_hours{
    margin-top: 70px;
    position: relative;
}

.about_hours::after {
    background: url("../../img/global/custom/bg_about_hours.png") no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 710px;
    height: 900px;

    margin-left: -100px;
    margin-top: -50px;
}

@media(max-width: 1366px){
    .about_hours::after {
        margin-left: -180px;
        margin-top: -30px;
    }
}

@media(max-width: 1024px){
    .about_hours::after {
        display: none !important;
    }
}

.about_hours .content{
    display:flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 9;
    position: relative;
}

.about_hours .about{
    flex-basis: 40%;
    margin-right: 5%;
}

@media(max-width: 1024px){
    .about_hours .about{
        flex-basis: 100%;
        margin-right: 0;
    }
}

.about_hours .about_header {
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .about_hours .about_header {
        text-align: center;
    }
}

.about_hours .about_header h1 strong {
    font-weight: 600;
    display: block;
}

.about_hours .about_header h1 {
    font-size: 2em;
    font-weight: 300;
    color: var(--colorBlack);
}

.about_hours .about_header .htmlchars p {
    font-size: 1em;
    font-weight: 300;
    color: var(--colorBlack);
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .about_hours .about_header .htmlchars p {
        text-align: center !important;
    }
}

.dilab_questions{
    margin-top: 30px;
}

.dilab_questions_item{
    background-color: var(--colorGrey);
    padding: 20px;
    margin-bottom: 5px;
    cursor: pointer;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.dilab_questions_item:nth-child(even){
    background-color: var(--colorGreyTwo);
}

.dilab_questions_item h1{
    font-size: 1em;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.dilab_questions_item .j_accordion_icon{
    font-size: 1em;
    border-right: 1px solid #000;
    padding-right: 5px;
    margin-right: 13px;
}

.dilab_questions_item_box{
    margin-top: 20px;
}

.dilab_questions_item_box .htmlchars p{
    font-size: 1em;
}

.about_hours .hours{
    flex-basis: 30%;
    overflow: hidden;
}

@media(max-width: 1024px){
    .about_hours .hours{
        flex-basis: 100%;
        margin-top: 50px;
    }
}

/*
========================
======================== NEWS
========================
*/

.news{
    margin-top: 50px;
}

@media(max-width: 1024px){
    .news {
        margin-top: 0;
    }
}

.news .content{
    display:flex;
    flex-wrap: wrap;
}

.news_header{
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.news_header h1{
    font-size: 2.25em;
    font-weight: 300;
    color: var(--colorBlack);
}

.news_header h1 strong{
    font-weight: 600;
    display: block;
}

.news-list{
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
}

.news-item {
    flex-basis: 33.3333333333%;
    position: relative;
}

@media(max-width: 1024px){
    .news-item {
        flex-basis: 100%;
    }
}

.news-item:first-child .news-item-cover{
    -webkit-border-radius: 6px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius: 6px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.news-item:last-child .news-item-cover{
    -webkit-border-radius: 0px;
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius: 0px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}


.news-item-cover {
    position: relative;
    background: var(--colorBlue);
    overflow: hidden;
}

.news-item-cover:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', GradientType=0);
}

.news-item-cover img {
    min-width: 100%;
    height: 380px;
    object-fit: cover;

    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

@media(max-width: 1024px){
    .news-item-cover img {
        height: 320px;
    }
}

.news-item:hover .news-item-cover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);

    opacity: .5;
}

.news-item-header {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
}

.news-item-header h1 {
    font-size: 1.425em;
    font-weight: 600;
    color: var(--colorWhite);
}

.news-item-header p {
    font-size: 1em;
    font-weight: 400;
    color: var(--colorBlueEight);
    margin-top: 10px;
    display: block;
}

.news-item:hover .news-item-header p{
    color: var(--colorWhite);
}

.news_link{
    flex-basis: 100%;
    margin-top: 20px;
    text-align: center;
}

.news_link a{
    font-size: 1em;
    font-weight: 300;
    color: var(--colorBlack);
}

.news_link a:hover{
    text-decoration: underline;
}

/*
========================
======================== PESQUISA DE SATISFAÇÃO
========================
*/

.for_company p
{
    margin: 0 0 15px 0;
}
.for_company .content {
    display: block;
    overflow: hidden;
}

.for_company_content {
    margin-top: 0;
    float: left;
    width: 50%;
}

.search_satisfaction {
    margin-top: 0;
    float: right;
    width: 50%;
}
@media(max-width: 1024px){
    .for_company_content {
        width: 100%;
        margin-bottom: 25px;
    }
    .search_satisfaction {
        width: 100%;
    }   
}
.search_satisfaction h1 {
    font-size: 2em;
    font-weight: 400;
    color: var(--colorWhite);
}
.search_satisfaction p {
    font-size: 1em;
    font-weight: 300;
    color: var(--colorWhite);
}
.search_satisfaction a.btn {
    padding: 20px 30px;
    margin-top: 0;
    font-size: 1.2em;
    font-weight: 300;
    text-transform: none;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.search_satisfaction a.btn_attendance {
    background-color: var(--colorBlueThree);
    color: var(--colorBlack);
    margin-right: 10px;
}

.search_satisfaction a.btn_attendance:hover {
    background-color: var(--colorBlueFour);
}