.professoresEspecialistas {
    float: left;
    width: 100%;
    background-color: #0F1A2A;
    padding: 50px 0 0 0;
}

.professoresEspecialistas h2 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 50px 0;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
}

.professoresEspecialistas h2 strong {
    color: #DCB24C;
}

.professoresEspecialistas ul {
    float: left;
    width: 100%;
    padding: 0;
}

.professoresEspecialistas ul li .boxInterno {
    float: left;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.professoresEspecialistas ul li .boxInterno img {
    width: 100%;
}

.professoresEspecialistas ul li .boxInterno .boxBaixo {
    float: left;
    width: 100%;
    padding: 20px;
    background-color: #1E2A3B;
    min-height: 133px;
}

.professoresEspecialistas ul li .boxInterno .boxBaixo .nome {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.professoresEspecialistas ul li .boxInterno .boxBaixo .boxLinks {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.professoresEspecialistas ul li .boxInterno .boxBaixo .boxLinks button {
    flex: 1;
    background: none;
    color: #fff;
    border: solid 2px #fff;
    margin: 0 5px;
    border-radius: 3px;
    padding: 5px 0;
    transition: all 0.2s linear;
    font-size: 13px;
}

.professoresEspecialistas ul li .boxInterno .boxBaixo .boxLinks button:hover {
    background: #fff;
    color: #1E2A3B;
}

/* Setas */

.professoresEspecialistas ul .setaBanner {
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    cursor: pointer;
    z-index: 1;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #1E2A3B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professoresEspecialistas ul .setaBanner.proximo {
    transform: rotate(180deg);
    right: 0;
    left: auto;
}

.professoresEspecialistas ul .setaBanner.slick-disabled {
    opacity: 0.5;
    cursor: default;
}

/* Modal Currículo */

.professoresEspecialistas .modalCurriculo {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 9999999999;
    left: 0;
    top: 0;
}

.professoresEspecialistas .modalCurriculo .boxFlex {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.professoresEspecialistas .modalCurriculo .boxFlex .boxInterno {
    position: relative;
    width: 500px;
    max-width: 95%;
    background: #fff;
    padding: 50px 30px 30px 30px;
    height: 100%;
}

.professoresEspecialistas .modalCurriculo .boxFlex .boxInterno .fecharCurriculo {
    position: absolute;
    right: 12px;
    top: 10px;
    line-height: 100%;
    font-size: 20px;
    cursor: pointer;
}

.professoresEspecialistas .modalCurriculo .boxFlex .boxInterno .nome {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 18px;
}

.professoresEspecialistas .modalCurriculo .boxFlex .boxInterno p {
    float: left;
    width: 100%;
    font-size: 13px;
    line-height: 170%;
    margin: 0;
}

.professoresEspecialistas .modalCurriculo .boxFlex .boxInterno p br {
    display: block;
    margin: 10px 0;
    line-height: 22px;
    content: " ";
}

@media only screen and (max-width: 768px) {

    .professoresEspecialistas .col-sm-12 {
        padding: 0;
    }

    .professoresEspecialistas h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .professoresEspecialistas ul {
        padding: 0 20px;
    }

}