.form-group:not(.js-form-item):not(.js-form-wrapper) {
  margin-top: 0 !important;
	margin-bottom: 10px;
	border: 1px solid #285a6f;
	border-radius: 0 0 10px 10px;
	padding: 20px;
}

.block-title {
  margin-bottom: 0 !important;
}



/*==================================
  Banner Oferta Académica
===================================*/

.banner-oferta{
    display: flex;
    width: calc(100% + 40px);
    height: 90px;

    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 25px;

    background: #285B6F;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Contenedor de la imagen */
.banner-oferta__img{
    position: relative;
    width: 35%;
    overflow: hidden;
    flex-shrink: 0;
}

/* Imagen */
.banner-oferta__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Diagonal azul */
.banner-oferta__img::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 90px;
    height: 100%;

    background: #285B6F;

    clip-path: polygon(120% 0, 100% 100%, 0 0);
}

/* Título */
.banner-oferta__titulo{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #285B6F;

    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.banner-oferta{
    border-radius: 0 18px 0 0;
    overflow: hidden;
}

#block-drudg8b3-views-block-tecnico-superior-block-1,
#block-drudg8b3-views-block-licenciatura-block-1,
#block-drudg8b3-views-block-posgrados-block-1,
#block-drudg8b3-views-block-cursos-y-diplomados-block-1-2 {
    border-radius: 0 18px 18px 0;
    overflow: hidden;
}



/* ==========================
   Tablets y celulares
========================== */

@media (max-width: 768px){

    .banner-oferta{
        width: calc(100% + 40px);
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 20px;

        height: 70px;
    }

    .banner-oferta__img{
        width: 40%;
    }

    .banner-oferta__img::after{
        width: 55px;
    }

    .banner-oferta__titulo{
        font-size: 20px;
        letter-spacing: .5px;
        padding: 0 12px;
    }

}


@media (max-width: 480px){

    .banner-oferta{
        width: calc(100% + 40px);
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 20px;

        height: 60px;
    }

    .banner-oferta__titulo{
        font-size: 16px;
    }

    .banner-oferta__img{
        width: 42%;
    }

    .banner-oferta__img::after{
        width: 40px;
    }

}