.banner-ec {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-ec-section {
    background: url('../images/fondo-banner.svg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 488px;
    padding: 84px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-ec-content {
    max-width: 1128px;
    margin: 0 auto;
}

.banner-ec-text {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
}

.highlight {
    color: rgba(255, 172, 0, 1);
}

.btn-primary {
    background: linear-gradient(to right, rgba(8, 159, 228, 1), rgba(34, 74, 162, 1));
    border: none;
    padding: 17px;
    width: 270px;
    height: 56px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    margin-top: 10px;
}

.btn-primary:hover {
    color: rgba(255, 255, 255, 1);
    background:
        linear-gradient(to right, rgba(75, 196, 240, 1), rgba(120, 139, 214, 1)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background-blend-mode: lighten;
}

.banner-ec-images {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 10%;
}

.banner-ec-image-izq {
    width: 124px;
    height: auto;
}

.banner-ec-image-der {
    width: 292px;
    height: auto;
}

@media (max-width: 1239px) and (min-width: 905px) {
    .banner-ec-section {
        height: 480px;
    }

    .banner-ec-text {
        font-size: 20px;
    }
}

@media (max-width: 904px) and (min-width: 600px) {
    .banner-ec {
        padding: 0 0;
    }

    .banner-ec-section {
        padding: 0 0 0px;
        height: 316px;
    }

    .banner-ec-text {
        font-size: 16px;
        padding: 0px 16px;
    }
}

@media (max-width: 599px) and (min-width: 0px) {
    .banner-ec {
        padding: 0 0;
        height: 425px;
    }

    .banner-ec-section {
        padding: 0 0;
        height: 372px;
    }

    .banner-ec-content {
        margin-bottom: 50px;
    }

    .banner-ec-text {
        font-size: 16px;
        padding: 0px 16px;
    }

    .banner-ec-image-izq {
        width: 94px;
    }

    .banner-ec-image-der {
        width: 262px;
    }
}

@media (max-width: 400px) and (min-width: 0px) {
    .banner-ec-text {
        font-size: 16px;
        padding: 0px 16px;
    }

    .btn-primary {
        margin-top: 25px;
    }

    .banner-ec-images {
        padding: 0;
    }

    .banner-ec-image-izq {
        margin-left: 20px;
        position: relative;
        z-index: 1;
    }

    .banner-ec-image-der {
        position: absolute;
        right: 10%;
        bottom: 0;
        z-index: 2;
    }
}