

.anim_div {
    display: flex;
    height: 450px;
    overflow: hidden;
    text-align: center;
}

.container_page {
    min-width: 950px;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.filler {
    width: 100%;
    background-color: #0099c1;
    animation-name: slide;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    padding-top: 3.5%;
}

@keyframes slide {
    0% {
        width: 100%;
    }

    100% {
        width: 35%;
    }
}

@-webkit-keyframes slide {
    0% {
        width: 100%;
    }

    100% {
        width: 35%;
    }
}

@-moz-keyframes slide {
    0% {
        width: 100%;
    }

    100% {
        width: 35%;
    }
}

.slogan_sti {
    color: white;
    font-size: 44pt;
    animation-name: fill;
    animation-duration: 2s;
}

.slogan {
    color: white;
    font-size: 24pt;
    animation-name: fill;
    animation-duration: 3s;
}

@keyframes fill {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

@-webkit-keyframes fill {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

@-moz-keyframes fill {
    from {
        opacity: 0;
    }

    to {
        opacity: 100;
    }
}

.about_banner {
    height: 100%;
}

.anim_pic {
    width: 0;
    float: right;
    animation-name: slide2;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide2 {
    from {
        width: 0;
    }

    to {
        width: 65%;
    }
}

@-webkit-keyframes slide2 {
    from {
        width: 0;
    }

    to {
        width: 65%;
    }
}

@-moz-keyframes slide2 {
    from {
        width: 0;
    }

    to {
        width: 65%;
    }
}

.titulo_about {
    color: #00718f;
    font-size: 32pt;
    margin-top: 0;
    text-align: center;
}

.text_exp {
    font-size: 16pt;
    text-align: center;
    color: #2B2D42;
}

.text_block {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    animation: opac 1s;
}

.middle_block {
    text-align: center;
    margin-top: 100px;
    padding-left: 25px;
    padding-right: 25px;
    border-left: 1px solid #e5e5e5;
    width: 33.3%;
}

.about_icon {
    height: 120px;
    margin-top: -10px;
}

.small_title {
    color: #00718f;
    padding-top: 25px;
    font-size: 16pt;
    text-align: center;
    font-weight: bold;
}

.small_paragraph {
    color: #6c757d;
    font-size: 14pt;
    text-align: justify;
}

.block_wrapper {
    display: flex;
    position: relative;
    animation-name: moveup;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    padding: 25px;
}

@keyframes moveup {
    from {
        bottom: -45px;
    }

    to {
        bottom: 35px;
    }
}

@-webkit-keyframes moveup {
    from {
        bottom: -45px;
    }

    to {
        bottom: 35px;
    }
}

@-moz-keyframes moveup {
    from {
        bottom: -45px;
    }

    to {
        bottom: 35px;
    }
}
/*#region ........ Video and Modal*/

.video_bkg {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("../Images/Fotos/lvl3_concursos_F7.jpg");
    background-size: cover;
    color: white;
    font-size: 32pt;
}

.about_play {
    width: 80px;
    padding-top: 20px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

    .about_play:hover {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
    }


.popup-youtube {
    font-size: 48pt;        
    text-decoration: none;
    outline: none;
   
}

    .popup-youtube:visited {
        text-decoration: none;
        outline: none;
        border: none;
    }

    .popup-youtube:hover {
        color: #00718f;
        outline: none;
        border: none;
     
    }

.pop.popup-youtube:active {
    outline: none;
    border: none;
    box-shadow: none;
}

/*MODAL*/

.mfp-fade.mfp-bg {
    opacity: 0;
    -o-transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

    .mfp-fade.mfp-bg.mfp-ready {
        opacity: 0.8;
    }

    .mfp-fade.mfp-bg.mfp-removing {
        opacity: 0;
    }

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -o-transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/*#endregion*/


.team_block {
    padding-top: 60px;
}


.CDM_block {
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-left: 16%;
    padding-right: 18%;
}

.staff_cargo {
    color: #6c757d;
    font-size: 21px;
}

.txt_L {
    text-align: left;
}

.txt_R {
    text-align: right;
}

.foto_cdm {
    /*width: 100%;*/
    height: 260px;
}

.staff_div1 {
    width: 100%;
    font-size: 14pt;
    color: #00718f;
    padding-left: 5%;
}

.staff_p1 {
    color: #2B2D42;
    text-align: justify;
}

.staff_div2 {
    width: 100%;
    font-size: 14pt;
    color: #00718f;
    padding-right: 5%;
}

.staff_p2 {
    color: #2B2D42;
    text-align: justify;
}

.parc_titulo {
    color: #00718f;
    font-size: 32pt;
    margin-top: 0;
    text-align: center;
    padding-top: 85px;
    padding-bottom: 40px;
}

.parcerias {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parc_img {
    width: 30%;
    height: auto;
    padding: 0 3% 0 3%;
}
.privacy_text {
    height: 55px;
    bottom: 0;
    position: absolute;
    padding-left: 20px;
    color: black;
    font-size: 0.9em;
}

    .privacy_text a {
        color: #0099c1;
        text-decoration: none;
        background-color: transparent;
    }

        .privacy_text a:hover {
            color: #01beef;
        }

/*#region .......... MEDIA Screens*/

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

    .about_banner {
        max-height: 100%;
        width: 100%;
    }

    .filler {
        padding: 40px;
        min-width: 350px;
    }

    .titulo_about {
        font-size: 3.5em;
        padding-bottom: 30px;
    }

    .text_exp {
        font-size: 2em;
    }

    .text_block {
        padding-bottom: 30px;
    }

    .block_wrapper {
        display: block;
        animation: none;
    }

    .team_block {
        padding-top: 120px;
        padding-bottom: 50px;
    }


    .middle_block {
        margin-top: 70px;
        padding-left: 15%;
        padding-right: 15%;
        width: 100%;
        border-left: none;
    }

    .small_title {
        font-size: 3em;
    }

    .small_paragraph {
        font-size: 2em;
        text-align: justify;
    }

    .CDM_block {
        padding-left: 5%;
        padding-right: 5%;
    }

    .staff_p1 {
        font-size: 1.4em;
    }

    .staff_p2 {
        font-size: 1.4em;
    }

    .parc_img {
        padding: 0 3% 15px 3%;
    }

    .parc_titulo {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 1650px) {
    .filler{
        padding-top:5.5%;
    }
}

/*#endregion*/
