/* Por que a PucRS? */
.m-banner-full {
    position: relative;
    display: flex;
    align-items: center;
    background: #002a3f;
    height: 400px;
    overflow: hidden;
    justify-content: space-between;
}
.m-banner-full__content {
    /* padding-right: 90px; */
    padding-left: 8%;
    /* margin-left: calc((100vw - 1240px) / 2); */
    width: 35%;
    color: #fff;
}
.m-banner-full__title {
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: #ffffff;
}
.m-banner-full__media {
    position: relative;
    text-align: right;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 50%;
}
.m-banner-full__media img{
    width: 948px;
    height: 400px;
}
.m-banner-full__media--video::after{
    position: absolute;
    display: block;  
    content: "";
    width: 66px;
    cursor: pointer;
    height: 66px;
    top:50%;
    left: 50%;
    margin-top: -33px;
    margin-left: -33px;
    background: url('../../../assets/images/icons/ico-play.svg') no-repeat;
}
.m-banner-full .m-link{
    color: #83D0F5;
}
.m-banner-full .m-link::after {
    background: url("../../../assets/images/icons/arrow-light.svg") no-repeat;
}

@media (max-width: 576px) {
    .m-banner-full {
        flex-direction: column;
        height: auto;
    }
    .m-banner-full__title {
        font-size: 32px;
        margin-bottom: 8px;        
    }
    .m-banner-full__content {
        padding-right: 0;
        width: 100%;
        margin-left:0;
        padding: 25px;
        order: 2;
    }
    .m-banner-full__media{   
        width: 100%;  
        order: 1;
    }
    .m-banner-full__media img{
        width: 100%;
        height: auto;
    }
}

.m-modal-video {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal {
    text-align: center;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: white;
}