body {
    background-color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

body.blocked{
    overflow: hidden;
}


.left{ text-align: left; }
.center{ text-align: center; }
.right{ text-align: right; }

.row,
.form-group{
    margin: 0 !important;
    overflow: hidden;
}

a, button, textarea, input {
    outline: none;
    text-decoration: none !important;
}


.full_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(75, 75, 75, 0.2);
    z-index: 999;
}

.full_overlay .loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #f3ba19;
    width: 120px;
    height: 120px;

    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*==================================================================================================*/
/*BUTTONS*/
/*==================================================================================================*/


button.v1 {
    background: #434444;
    padding: 10px 60px;
    margin: auto;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

button.v1:hover {
    background: #1f8b7c;
}


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

    button.v1 {
        padding: 7px 40px;
        font-size: 18px;
        line-height: 25px;
    }
}


/*==================================================================================================*/
/*LLOAD*/
/*==================================================================================================*/


.lload {
    visibility: hidden;
}



/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    padding: 0 0 10px;
    z-index: 99;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu .custom_container {
    position: relative;
    width: 80%;
    margin: auto;
}

.menu.scroll {
    background: #fff;
}

.menu .top_menu {
    background: #434444;
    position: relative;
    min-height: 31px;
    margin-bottom: 25px;
}

.menu.scroll .top_menu {
    margin-bottom: 10px;
}

.menu .top_menu .holder_col {
    position: relative;
    display: flex;
    float: right;
}

.menu .top_menu .holder_col .col {
    position: relative;
    padding: 7px 20px;
    color: #fff;
    font-size: 12px;
}

.menu .top_menu .holder_col .col a {
    color: #fff;
}

.menu .top_menu .holder_col .col:not(:nth-child(1)) {
    border-left: 1px solid #fff;
}

.menu .top_menu .holder_col .col:nth-child(4) {
    padding-right: 0;
}

.menu .top_menu .holder_col .col .holder_redes_sociais {
    position: relative;
    display: flex;
}

.menu .top_menu .holder_col .col .holder_redes_sociais .single {
    background: #fff;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    padding: 1px 0 0 1px;
    color: #434444;
    text-align: center;
    border-radius: 100%;
}

.menu .logo {
    position: relative;
    width: 250px;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu.scroll .logo {
    width: 125px;
}

.menu .logo img {
    width: 100%;
}


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

    .menu .top_menu .holder_col .col {
        font-size: 11px;
    }

    .menu .top_menu .holder_col .col .holder_redes_sociais .single {
        margin: 0 2px;
    }
}


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

    .menu .top_menu {
        min-height: 46px;
    }
}


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

    .menu .top_menu {
        display: none;
    }
}



.menu_holder {
    background: #434444;
    position: fixed;
    top: 32px;
    bottom: 0;
    right: -100vh;
    width: 400px;
    padding: 140px 40px 75px 25px;
    z-index: 100;
}

.menu_holder .inner_menu {
    position: relative;
    text-align: right;
}

.menu_holder .inner_menu .single_menu {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu_holder .inner_menu .single_menu a {
    color: #fff;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu.scroll .inner_menu .single_menu a {
    color: #fff;
}

.menu_holder .inner_menu .single_menu.active a,
.menu_holder .inner_menu .single_menu:hover a {
    color: #1f8b7c;
}

.menu_holder .inner_menu .single_menu .submenu {
    position: relative;
    list-style: none;

    display: none;
}

.menu_holder .inner_menu .single_menu.has_submenu.active .submenu {
    display: block;
    padding: 0;
}

.menu_holder .inner_menu .single_menu .submenu a {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu_holder .inner_menu .single_menu .submenu a.active,
.menu_holder .inner_menu .single_menu .submenu a:hover {
    color: #1f8b7c;
}


.menu-toggler {
    background: transparent;
    position: fixed;
    top: 65px;
    right: 10%;
    width: 41px;
    height: 40px;
    cursor: pointer;
    z-index: 999;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.menu-toggler.scroll {
    top: 55px;
}

.menu-toggler span {
    background: #333;
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    opacity: 1;
    left: 0;
    border-radius: 15px;

    -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;
}

.menu-toggler.open span:nth-child(1),
.menu-toggler.open span:nth-child(2),
.menu-toggler.open span:nth-child(3) {
    background: #fff !important;
}

.menu-toggler.open span:nth-child(4) {
    color: #fff;
}

.menu-toggler:hover span {
    opacity: 0.9;
}

.menu-toggler span:nth-child(1) {
    top: 0px;
}

.menu-toggler span:nth-child(2) {
    top: 10px;
}

.menu-toggler span:nth-child(3) {
    top: 20px;
}

.menu-toggler span:nth-child(4) {
    background: transparent;
    top: 25px;
    left: -1px;
    font-weight: 600;
    letter-spacing: -1px;
}

.menu-toggler.open span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menu-toggler.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggler.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}



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

    .menu {
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 65px;
        padding: 0;
        z-index: 11;
        border-bottom: 3px solid #00acc8;
    }

    .menu .logo {
        position: fixed;
        width: 90px !important;
        top: 5px;
        left: 25px;
    }

    .menu-toggler {
        display: block;
        position: fixed;
        top: 10px !important;
        right: 25px;
    }

    .menu-toggler.open span:nth-child(1),
    .menu-toggler.open span:nth-child(2),
    .menu-toggler.open span:nth-child(3) {
        background: #333 !important;
    }

    .menu-toggler.open span:nth-child(4) {
        color: #333 !important;
    }

    .menu_holder {
        top: 65px;
        bottom: 0;
        width: 100vw;
        padding: 0;
    }

    .menu_holder .inner_menu {
        width: 100%;
        padding: 0px 10%;
        margin-top: 50px;
        border-bottom: 0;
        text-align: center;
    }

    .menu_holder .inner_menu .single_menu {
        display: block;
        margin: 20px 0;
        font-size: 25px;
    }
}


.ecommunity {
    position: fixed;
    bottom: 30%;
    right: -115px;
    height: 50px;
    z-index: 99;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.ecommunity:hover {
    right: 0px;
}

.ecommunity img {
    height: 100%;
}


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

    .ecommunity {
        height: 40px;
        right: -95px;
    }
}


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


.banner {
    position: relative;
    width: 100%;
    height: 90vh;
}

.banner .single_banner {
    position: relative;
    width: 100%;
    height: 100vh;

    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.banner .single_banner .conteudo {
    position: absolute;
    top: 40%;
    width: 50%;
    text-align: center;
    max-width: 950px;
    left: 0;
    right: 0;
    margin: auto;
}

.banner .single_banner .conteudo h2 {
    margin: 0;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.banner .single_banner .conteudo h3 {
    margin: 10px 0 0;
    color: #fff;
    font-weight: 100;
    font-style: italic;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.banner .holder_slider_banner .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.banner .holder_slider_banner .owl-dots .owl-dot {
    background: #fff;
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 100%;
}

.banner .holder_slider_banner .owl-dots .owl-dot.active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 100%;
}


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

    .banner,
    .banner .single_banner {
        height: 300px;
    }

    .banner_interno {
        margin-top: 65px;
    }

    .banner .single_banner .conteudo {
        top: 40%;
        width: 90%;
        max-width: unset;
    }

    .banner .single_banner .conteudo img {
        width: 40px;
        margin-bottom: 10px;
    }

    .banner .single_banner .conteudo h2 {
        font-size: 20px;
    }

    .banner .single_banner .conteudo h3 {
        font-size: 16px;
    }
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/


.bloco {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
}

.bloco.fullscreen {
    height: 100vh;
}

.bloco.inicial{
    margin-top: -75px;
    padding-top: 150px;
}

.bloco .custom_container{
    position: relative;
    width: 80%;
    margin: auto;
}

.bloco h2 {
    position: relative;
    margin: 0 0 25px;
    color: #434444;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco h4 {
    position: absolute;
    left: 3vw;
    opacity: 0.7;
    color: #f6f6f6;
    font-size: 8vw;
    font-weight: 800;
    line-height: 7vw;
    text-transform: uppercase;
}

.bloco p {
    color: #434444;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}


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

    .bloco h2 {
        font-size: 25px;
    }

    .bloco h2 span {
        font-size: 17px;
    }

    .bloco h4 {
        display: none;
    }

    .bloco p {
        font-size: 14px;
    }
}


/*==================================================================================================*/
/*HOME*/
/*==================================================================================================*/


.bloco_home_pre_inscricoes {
    position: relative;
    padding: 5px 0;
    z-index: 1;
}

.bloco_home_pre_inscricoes::before {
    content: '';
    background: #434444;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(50% + 50px);
}

.bloco_home_pre_inscricoes .custom_container {
    position: relative;
    width: 80%;
    margin: auto;
}

.bloco_home_pre_inscricoes h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_pre_inscricoes p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_pre_inscricoes button {
    background: #fff;
    position: absolute;
    left: calc(50% - 100px);
    bottom: 30px;
    border: 0;
    padding: 5px 20px;
    color: #434444;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_home_pre_inscricoes button:hover {
    background: #d9d9d9;
}



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

    .bloco_home_pre_inscricoes button {
        position: relative;
        left: 0;
        bottom: 15px;
    }
}

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

    .bloco_home_pre_inscricoes::before {
        width: 100%;
    }

    .bloco_home_pre_inscricoes h2 {
        font-size: 18px;
    }

    .bloco_home_pre_inscricoes p {
        font-size: 12px;
    }
}


/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/


.bloco_home_quemsomos {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_home_quemsomos .custom_container {
    position: relative;
    width: 50%;
    min-width: 850px;
    margin: auto;
}

.bloco_home_quemsomos h4{
    bottom: 0;
    color: #fff;
}


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

    .bloco_home_quemsomos .custom_container {
        width: 80%;
        min-width: unset;
    }
}


/*==================================================================================================*/
/*EQUIPA*/
/*==================================================================================================*/


.bloco_equipa {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_equipa .custom_container {
    position: relative;
    width: 50%;
    min-width: 850px;
    margin: auto;
}

.bloco_equipa h4{
    bottom: 0;
    color: #fff;
}

.bloco_equipa .inner_holder {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.bloco_equipa .inner_holder .holder_pessoas {
    position: relative;
    text-align: center;
}

.bloco_equipa .inner_holder .holder_pessoas .single_pessoa {
    position: relative;
    display: inline-block;
    width: 150px;
    margin: 15px auto;
    text-align: center;
}

.bloco_equipa .inner_holder .holder_pessoas .single_pessoa .imagem {
    background-color: #4d4d4d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 100%;
}

.bloco_equipa .inner_holder .holder_pessoas .single_pessoa .nome {
    margin-top: 5px;
    color: #4d4d4d;
    font-size: 15px;
}


.bloco_equipa .inner_holder .holder_pessoas .single_pessoa .funcao {
    color: #4d4d4d;
    font-size: 13px;
    font-style: italic;
}


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

    .bloco_equipa .custom_container {
        width: 80%;
        min-width: unset;
    }
}


/*==================================================================================================*/
/*METRICAS*/
/*==================================================================================================*/


.bloco_home_metricas {
    position: relative;
    margin-top: -15px;
    z-index: 1;
}

.bloco_home_metricas::before {
    content: '';
    background: #1f8b7c;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 90%;
}

.bloco_home_metricas .custom_container {
    position: relative;
    width: 80%;
    margin: auto;
}

.bloco_home_metricas .holder_metricas {
    position: relative;
    display: flex;
}

.bloco_home_metricas .holder_metricas .single_metrica {
    position: relative;
    padding: 25px 0;
    width: 100%;
    text-align: center;
}

.bloco_home_metricas .holder_metricas .single_metrica img {
    height: 60px;
    filter: grayscale(1) brightness(100) invert(1);
}

.bloco_home_metricas .holder_metricas .single_metrica .titulo {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    font-style: italic;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_metricas .holder_metricas .single_metrica .numero {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_metricas p {
    padding-bottom: 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 100;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}


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

    .bloco_home_metricas::before {
        width: 100%;
    }

    .bloco_home_metricas .holder_metricas .single_metrica img {
        height: 40px;
    }

    .bloco_home_metricas .holder_metricas .single_metrica .titulo {
        font-size: 14px;
    }

    .bloco_home_metricas .holder_metricas .single_metrica .numero {
        font-size: 25px;
    }
}


/*==================================================================================================*/
/*PROJETOS*/
/*==================================================================================================*/


.bloco_home_projetos {
    background: #fff;
}

.bloco_home_projetos h2 {
    text-align: left;
}

.bloco_home_projetos h4 {
    top: 0;
    color: #f6f6f6;
}

.bloco_home_projetos .holder_colunas {
    position: relative;
    display: flex;
}

.bloco_home_projetos .holder_colunas .holder_lista {
    position: relative;
    width: 100%;
    padding-top: 25px;
}

.bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista {
    position: relative;
    width: 100%;
    margin: 60px 0 0 50px;
}

.bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista .single_projeto {
    background: #f2f2f2;
    padding: 4px 20px 5px;
    border-bottom: 1px solid #fff;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista .single_projeto:hover,
.bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista .single_projeto.active {
    background: #434444;
    color: #fff;
}

.bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista .single_projeto:not(.active) {
    cursor: pointer;
}

.bloco_home_projetos .holder_colunas .holder_conteudo {
    background: #434444;
    position: relative;
    width: 800px;
    padding: 30px;
}

.bloco_home_projetos .holder_colunas .holder_conteudo .subtitulo {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_projetos .holder_colunas .holder_conteudo .titulo {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_projetos .holder_colunas .holder_conteudo p {
    margin: 35px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_projetos .holder_colunas .holder_imagem {
    background: #e3e3e3;
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 40px;
    margin-left: 90px;
}


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

    .bloco_home_projetos .holder_colunas {
        display: block;
    }

    .bloco_home_projetos .holder_colunas .holder_lista .holder_inner_lista {
        margin: 30px 0 0 0;
    }

    .bloco_home_projetos .holder_colunas .holder_conteudo {
        width: 100%;
        margin-top: 20px;
    }
}


/*==================================================================================================*/
/*VALORES*/
/*==================================================================================================*/


.bloco_valores {
    background: #fff;
    padding: 90px 0 150px;
}

.bloco_valores h2 {
    text-align: center;
}

.bloco_valores h4 {
    top: 0;
    color: #f6f6f6;
}

.bloco_valores .holder_colunas {
    position: relative;
    display: flex;
}

.bloco_valores .holder_colunas .holder_lista {
    position: relative;
    width: 100%;
    padding-top: 25px;
}

.bloco_valores .holder_colunas .holder_lista .holder_inner_lista {
    position: relative;
    width: 100%;
    margin: 60px 0 0 50px;
}

.bloco_valores .holder_colunas .holder_lista .holder_inner_lista .single_valor {
    background: #f2f2f2;
    padding: 4px 20px 5px;
    border-bottom: 1px solid #fff;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_valores .holder_colunas .holder_lista .holder_inner_lista .single_valor:hover,
.bloco_valores .holder_colunas .holder_lista .holder_inner_lista .single_valor.active {
    background: #434444;
    color: #fff;
}

.bloco_valores .holder_colunas .holder_lista .holder_inner_lista .single_valor:not(.active) {
    cursor: pointer;
}

.bloco_valores .holder_colunas .holder_conteudo {
    background: #434444;
    position: relative;
    width: 800px;
    padding: 30px;
}

.bloco_valores .holder_colunas .holder_conteudo .subtitulo {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_valores .holder_colunas .holder_conteudo .titulo {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_valores .holder_colunas .holder_conteudo p {
    margin: 35px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_valores .holder_colunas .holder_imagem {
    background: #e3e3e3;
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 40px;
    margin-left: 90px;
}


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

    .bloco_valores .holder_colunas {
        display: block;
    }

    .bloco_valores .holder_colunas .holder_lista .holder_inner_lista {
        margin: 30px 0 0 0;
    }

    .bloco_valores .holder_colunas .holder_conteudo {
        width: 100%;
        margin-top: 20px;
    }
}


/*==================================================================================================*/
/*OFERTA FORMATIVA*/
/*==================================================================================================*/


.bloco_home_oferta {
    background: #434444;
}

.bloco_home_oferta h2 {
    color: #fff;
}

.bloco_home_oferta h4 {
    color: #3d3e3e;
    text-align: right;
    left: unset;
    right: 3vw;
    bottom: 0;
}

.bloco_home_oferta .holder_ofertas {
    position: relative;
}

.bloco_home_oferta .holder_ofertas .single_oferta {
    position: relative;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.bloco_home_oferta .holder_ofertas .single_oferta .inner {
    background: #fff;
    position: relative;
    max-width: 280px;
    height: 280px;
    margin: auto;
    padding-top: 120px;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

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

}


/*==================================================================================================*/
/*CONTACTOS*/
/*==================================================================================================*/


.bloco_contactos {
    background: #fff;
}

.bloco_contactos h2 {
    text-align: center;
}

.bloco_contactos h4 {
    top: 0;
    color: #f6f6f6;
}

.bloco_contactos .holder_mapa {
    margin: 40px 0 -95px;
}

.bloco_contactos .holder_mapa iframe {
    width: 100%;
}

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

    .bloco_contactos .holder_mapa iframe {
        height: 250px;
    }
}


.bloco_form_contacto {
    background: #434444;
}

.bloco_form_contacto h2 {
    color: #fff;
}

.bloco_form_contacto form label {
    width: 100%;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.bloco_form_contacto .holder_form form input,
.bloco_form_contacto .holder_form form textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 7px 15px;
    margin: 5px 0 15px;
    outline: none !important;
    color: #2b2b2b;
    font-size: 14px;
}

.bloco_form_contacto .holder_form form button.v1 {
    background: #fff;
    color: #434444;
}

.bloco_form_contacto .holder_form form button.v1:hover {
    background: #1f8b7c;
    color: #fff;
}

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

    .bloco_contactos .holder_mapa iframe {
        height: 250px;
    }
}



.bloco_form_trabalhe_connosco form label {
    width: 100%;
    margin: 0;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.bloco_form_trabalhe_connosco .holder_form form input,
.bloco_form_trabalhe_connosco .holder_form form textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 7px 15px;
    margin: 5px 0 15px;
    outline: none !important;
    color: #2b2b2b;
    font-size: 14px;
}


/*==================================================================================================*/
/*BLOCO VIDEO*/
/*==================================================================================================*/


.bloco_video {
    height: 450px;
    padding: 0;
}

.bloco_video iframe {
    width: 100%;
    height: 450px;
}


.bloco_fotos {
    display: flex;
    padding: 0;
    height: 450px;
}

.bloco_fotos .foto {
    position: relative;
    width: 100%;
}

.bloco_fotos .foto a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center;
}

.bloco_fotos .foto  .cover {
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


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

    .bloco_video,
    .bloco_video iframe {
        height: 300px;
    }

    .bloco_fotos {
        height: 300px;
    }

    .bloco_fotos .foto:not(:first-child) {
        display: none;
    }
}


/*==================================================================================================*/
/*NOTICIAS*/
/*==================================================================================================*/


.bloco_home_noticias {
    background: #f2f2f2;
}

.bloco_home_noticias h2 {
    text-align: left;
}

.bloco_home_noticias h4 {
    bottom: 0;
    color: #fff;
}

.bloco_home_noticias .holder_colunas {
    position: relative;
    display: flex;
}

.bloco_home_noticias .holder_colunas .holder_conteudo {
    position: relative;
    width: 500px;
    margin-left: 10%;
}

.bloco_home_noticias .holder_colunas .holder_conteudo button {
    background: #434444;
    border: 0;
    margin-top: 10px;
    padding: 5px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_home_noticias .holder_colunas .holder_conteudo button:hover {
    background: #626262;
}

.bloco_home_noticias .holder_noticias {
    position: relative;
    width: calc(100% - 500px);
    padding-left: 50px;
}

.bloco_home_noticias .holder_noticias .single_noticia {
    position: relative;
    width: 100%;
}

.bloco_home_noticias .holder_noticias.holder_slider_noticias_not .single_noticia {
    max-width: 30vw;
    display: inline-block;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_imagem {
    background: #c3c3c3;
    position: relative;
    width: 100%;
    height: 300px;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_data {
    background: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 10px 13px;
    text-align: center;
    z-index: 9;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_data .mes {
    display: block;
    color: #434444;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_data .ano {
    display: block;
    color: #434444;
    font-size: 13px;
    font-weight: 400;
    line-height: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_content {
    background: #fff;
    padding: 15px;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_content .titulo {
    color: #434444;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_noticias .holder_noticias .single_noticia .holder_content .descricao {
    color: #434444;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_noticias .holder_noticias .owl-next {
    position: absolute;
    right: 10%;
    bottom: -40px;
    font-size: 20px;
}

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

    .bloco_home_noticias .holder_colunas {
        display: block;
    }

    .bloco_home_noticias .holder_colunas .holder_conteudo {
        width: 80%;
    }

    .bloco_home_noticias .holder_noticias  {
        width: 100%;
        margin-top: 50px;
        padding: 0 10%;
    }

    .bloco_home_noticias .holder_noticias.holder_slider_noticias_not .single_noticia {
        max-width: unset;
    }

    .bloco_home_noticias .holder_noticias .owl-next {
        right: 15%;
    }
}



.bloco_noticias {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_noticias h4{
    bottom: 0;
    color: #fff;
}

.bloco_noticias .holder_noticias {
    position: relative;
    margin: 25px 0 0;
}

.bloco_noticias .single_noticia {
    background: #fff;
    position: relative;
    width: 100%;
    padding-top: 5px;
    margin-bottom: 25px;
}

.bloco_noticias .single_noticia .holder_data {
    background: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 10px 13px;
    text-align: center;
    z-index: 9;
}

.bloco_noticias .single_noticia .holder_data .mes {
    display: block;
    color: #434444;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_noticias .single_noticia .holder_data .ano {
    display: block;
    color: #434444;
    font-size: 13px;
    font-weight: 400;
    line-height: 10px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_noticias .single_noticia .imagem {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #7b7b7b;

    height: 350px;
    margin: 0 5px;
}

.bloco_noticias .single_noticia .holder_informacoes {
    position: relative;
    overflow: hidden;
    padding: 20px;
    height: auto;
    max-height: 400px;
    text-align: center;
}

.bloco_noticias .single_noticia .holder_informacoes .titulo {
    display: block;
    margin: 5px 0 15px;
    color: #2b2b2b;
    font-size: 19px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
}

.bloco_noticias .single_noticia .holder_informacoes .descricao {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 500;
}

.bloco_noticias .single_noticia .holder_informacoes button {
    margin-top: 15px;
}

.bloco_noticias .holder_paginacao {
    position: relative;
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

.bloco_noticias .holder_paginacao .single_pagination {
    background: #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #eee;
    color: #6c6c6c;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}


.bloco_noticias .holder_paginacao .single_pagination.disabled {
    color: #fff;
    opacity: 0.3;
    pointer-events: none;
}

.bloco_noticias .holder_paginacao .single_pagination.elipsis {
    pointer-events: none;
}

.bloco_noticias .holder_paginacao .single_pagination:hover {
    background: #4a4a4a;
    color: #fff;
}

.bloco_noticias .holder_paginacao .single_pagination.active {
    background: #2b2b2b;
    color: #fff;
    pointer-events: none;
}


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

    .bloco_noticias {
        padding: 45px 0;
    }

    .bloco_noticias .single_noticia .imagem {
        height: 200px;
    }
}


.bloco_noticia_detalhe {
     text-align: left;
 }

.bloco_noticia_detalhe .holder_informacao h2 {
    margin: 0 0 15px;
    font-size: 35px;
    text-align: left;
}

.bloco_noticia_detalhe .holder_informacao h3 {
    margin: 0;
    color: #6a6a6a;
    font-size: 17px;
    font-weight: 600;
}

.bloco_noticia_detalhe .holder_informacao .holder_imagem {
    position: relative;
    width: 100%;
    margin: 25px 0;
}

.bloco_noticia_detalhe .holder_informacao .holder_imagem .imagem {
    width: 100%;
    height: 450px;
    margin: 0 0 25px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #ccdbe1;
}

.bloco_noticia_detalhe .holder_informacao .holder_conteudo {
    font-size: 16px;
    font-weight: 300;
}

.bloco_noticia_detalhe .holder_informacao .holder_conteudo p {
    margin: 0;
}

.bloco_noticia_detalhe .holder_informacao .holder_conteudo b,
.bloco_noticia_detalhe .holder_informacao .holder_conteudo strong {
    font-weight: 500;
}


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

    .bloco_noticia_detalhe .holder_informacao h2 {
        font-size: 29px;
    }

    .bloco_noticia_detalhe .holder_informacao h3 {
        font-size: 16px;
    }

    .bloco_noticia_detalhe .holder_informacao .holder_imagem .imagem {
        height: 200px;
    }
}


/*==================================================================================================*/
/*DOCUMENTOS*/
/*==================================================================================================*/


.bloco_documentos {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_documentos .custom_container {
    position: relative;
    width: 50%;
    min-width: 850px;
    margin: auto;
}

.bloco_documentos h4{
    bottom: 0;
    color: #fff;
}

.bloco_documentos .holder_documentos {
    position: relative;
    margin-top: 45px;
}

.bloco_documentos .holder_documentos button.v1 {
    width: 100%;
    margin-bottom: 25px;
}


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

    .bloco_documentos .custom_container {
        width: 80%;
        min-width: unset;
    }
}


/*==================================================================================================*/
/*INSTALAÇÕES*/
/*==================================================================================================*/


.bloco_instalacoes {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_instalacoes .custom_container {
    position: relative;
    width: 50%;
    min-width: 850px;
    margin: auto;
}

.bloco_instalacoes h4{
    bottom: 0;
    color: #fff;
}

.bloco_instalacoes .holder_imagens {
    position: relative;
    margin-top: 45px;
}

.bloco_instalacoes .holder_imagens .imagem {
    background-color: #4d4d4d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: block;
    width: 200px;
    height: 200px;
    margin: 10px auto;
}


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

    .bloco_instalacoes .custom_container {
        width: 80%;
        min-width: unset;
    }
}


/*==================================================================================================*/
/*OFERTA EDUCATIVA*/
/*==================================================================================================*/


.bloco_oferta {
    background: #f2f2f2;
    padding: 150px 0 120px;
}

.bloco_oferta .custom_container {
    position: relative;
    width: 50%;
    min-width: 850px;
    margin: auto;
}

.bloco_oferta h4{
    bottom: 0;
    color: #fff;
}

.bloco_ciclos {
    background: #434444;
    overflow: unset;
    margin: 0;
}

.bloco_ciclos h2 {
    color: #fff;
}

.bloco_ciclos .holder_menu {
    position: absolute;
    display: flex;
    top: -25px;
    left: 0;
    right: 0;
    width: 850px;
    margin: 0 auto 0;
}

.bloco_ciclos .holder_menu .single {
    background: #1f8b7c;
    width: calc(100% / 3);
    margin: 0 25px;
    padding: 5px 10px;
    cursor: pointer;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_ciclos .holder_menu .single:hover {
    background: #434444;
}

.bloco_ciclos .holder_menu .single.active {
    background: #4d4f4f;
}

.bloco_ciclos .holder_folheto_informativo {
    position: absolute;
    display: flex;
    top: 35px;
    left: 0;
    right: 0;
    width: 850px;
    margin: 0 auto 0;
}

.bloco_ciclos .holder_folheto_informativo .single_folheto {
    width: calc(100% / 3);
    margin: 0 25px;
}

.bloco_ciclos .holder_folheto_informativo .single_folheto:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.bloco_ciclos .holder_folheto_informativo .single_folheto button {
    background: #fff;
    width: 100%;
    padding: 5px 10px;
    border: 0;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.bloco_ciclos .holder_ciclo {
    position: relative;
    margin-top: 45px;
}

.bloco_ciclos .holder_ciclo:not(.active) {
    display: none;
}

.bloco_ciclos .holder_ciclo p {
    color: #fff;
}

.bloco_ciclos .holder_ciclo img {
    width: 80%;
}


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

    .bloco_ciclos {
        padding: 50px 0;
    }

    .bloco_oferta .custom_container {
        width: 80%;
        min-width: unset;
    }

    .bloco_ciclos .holder_menu,
    .bloco_ciclos .holder_folheto_informativo {
        position: relative;
        display: block;
        width: 100%;
    }

    .bloco_ciclos .holder_menu .single {
        margin: 0 auto 5px;
        font-size: 22px;
    }

    .bloco_ciclos .holder_folheto_informativo .single_folheto {
        margin: 0 auto 5px;
    }
}


.bloco_atividades .holder_logos {
    position: relative;
    margin-top: 25px !important;
}

.bloco_atividades .holder_logos .single_logo {
    margin: 25px 0;
    text-align: center;
}

.bloco_atividades .holder_logos .single_logo .legenda {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
}


/*==================================================================================================*/
/*TESTEMUNHOS*/
/*==================================================================================================*/


.bloco_home_testemunhos {
    background: #1f8b7c;
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.bloco_home_testemunhos h2 {
    color: #fff;
}

.bloco_home_testemunhos .conteudo {
    margin-bottom: 25px;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_testemunhos .titulo {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 12px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.bloco_home_testemunhos .descricao {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.holder_testemunhos .owl-dots {
    position: relative;
    margin-top: 20px;
}

.holder_testemunhos .owl-dots .owl-dot {
    background: transparent;
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border-radius: 100%;
    border: 1px solid #fff;
}

.holder_testemunhos .owl-dots .owl-dot.active {
    background: #fff;
}


/*==================================================================================================*/
/*LOGOS*/
/*==================================================================================================*/


.bloco_logos {
    position: relative;
    padding: 50px 0;
}

.bloco_logos .holder_slider_logos {
    position: relative;
    display: flex;
}

.bloco_logos .holder_slider_logos .logo {
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center;
}

.bloco_logos .holder_slider_logos .logo img {
    width: unset !important;
    max-height: 100%;
    margin: auto;
}


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

    .bloco_logos {
        padding: 30px 0;
    }

    .bloco_logos .holder_slider_logos .logo {
        height: 40px;
    }
}


/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/


.footer {
    position: relative;
    padding: 30px 0 28px;
}

.footer::before {
    content: '';
    background: #434444;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 90%;
}

.footer .footer_menu {
    position: relative;
    display: flex;
    width: 90%;
    padding-left: 10%;
}

.footer .footer_menu .single_menu {
    position: relative;
    width: 100%;
}

.footer .footer_menu .single_menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.footer .footer_menu .single_menu .submenu {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.footer .footer_menu .single_menu .submenu a {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    text-transform: none;
    font-family: 'Montserrat', sans-serif;
}

.lower_footer {
    position: relative;
    width: 90%;
    margin-top: 80px;
    padding: 10px 0 10px 10%;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.lower_footer span {
    font-weight: 600;
    text-transform: uppercase;
}

.lower_footer a {
    color: #fff;
}

.lower_footer button.v1.trabalhe_connosco {
    position: absolute;
    background: #fff;
    right: 30px;
    bottom: 0;
    color: #434444;
}

.lower_footer button.v1.trabalhe_connosco:hover {
    background: #1f8b7c;
    color: #fff;
}


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

    .footer::before {
        width: 100%;
    }

    .footer .footer_menu {
        display: block;
        width: 100%;
    }

    .footer .footer_menu .single_menu {
        margin-bottom: 20px;
    }

    .lower_footer {
        margin-top: 50px;
        font-size: 12px;
    }

    .lower_footer span {
        display: block;
        width: 100%;
    }

    .lower_footer button.v1.trabalhe_connosco {
        display: block;
        position: relative;
        right: unset;
        margin: 0 0 30px;
    }
}


/*==================================================================================================*/
/*COOKIE BAR*/
/*==================================================================================================*/


.cookie_bar {
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    bottom: 5px;
    left: 5px;
    color: #fff;
    width: calc(100% - 10px);
    border-radius: 20px;
    padding: 10px 25px;
    text-align: center;
    z-index: 999;
}

.cookie_bar a {
    color: #fff;
    text-decoration: underline !important;
}

.cookie_bar .close_cookie_bar {
    background: transparent;
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 0;
    cursor: pointer;
}


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

    .cookie_bar {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 35px;
    }

    .cookie_bar .close_cookie_bar {
        background: #333;
        border-radius: 100%;
        top: -15px;
        right: 0px;
        width: 30px;
        height: 30px;
    }
}