body {
    margin: 0;
    padding: 0;
}

.nosotros_rotador_hero-container {
    position: relative;
    width: 1200px;
    height: 450px;
    margin: 100px auto 0 auto;
    overflow: hidden;
    border-radius: 25px;
}

.nosotros_rotador_hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.nosotros_rotador_hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.nosotros_rotador_hero-slide.active {
    opacity: 1;
}

.nosotros_rotador_hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}










@media (max-width: 1200px) {
    .nosotros_rotador_hero-container {
        width: calc(100% - 40px) !important;
        height: 575px !important;
        margin: 100px 20px 0 20px !important;
        border-radius: 25px !important;
    }

    .nosotros_rotador_hero-slide img {
        border-radius: 25px !important;
    }
}