.slider {
    position: relative;
    background: whitesmoke;
    width: 100%;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
}

.slider .slide.activec {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

.slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .slider .slide .info {
    color: whitesmoke;
    width: 75%;
    margin-top: 250px;
    margin-left: 100px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
} */

/* .slider .slide .info h2 {
    font-size: 2em;
    font-weight: 800;
    text-align: left;
    text-shadow: black 1px 0 10px;
} */
/* 
.slider .slide .info p {
    font-size: 1.3em;
    font-weight: 400;
    text-align: left;
    text-shadow: black 1px 0 10px;
} */

.slider .navigation {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider:hover .navigation {
    opacity: 1;
}

.prev-btnc,
.next-btnc {
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
}

.prev-btnc {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.next-btnc {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.body-carusel {
    height: 70vh;
    width: 100%;
}

/* ******************************* TELEFON ***************************** */
/* Extra small devices (phones, less than 640px) */
@media screen and (max-width: 640px) {
    .body-carusel {
        display: none;
    }

    .slider {
        display: none;
    }
}

/* ******************************* TABLETA ***************************** */
/* Small devices (tablets, 640px and up) */
@media screen and (min-width: 641px),
handheld and (min-width: 641px) and (max-width: 980px) {

    .body-carusel {
        margin: 6em auto 0 auto;

    }

    .slider {
        position: relative;
        background: whitesmoke;
        width: 100%;
        height: auto;
        margin: 0;
        overflow: hidden;
        border-radius: 10px;
        /* top: 5em; */
    }
}

/* ******************************* CALCULATOR *************************** */
/* Medium and large devices (desktops, 980px and up) */
@media screen and (min-width: 981px),
handheld and (min-width: 640px) {

    /* ========== carusel ========== */

    .slider {
        position: relative;
        width: 100%;
        height: auto;
        /* top: 5em; */
        background: whitesmoke;
        margin: 0px;
        overflow: hidden;
        border-radius: 10px;
    }
}

@media screen and (min-width: 1120px),
handheld and (min-width: 640px) {
    .body-carusel {
        height: 75vh;
        width: 100%;
    }

    .slider {
        position: relative;
        background: whitesmoke;
        width: 100%;
        height: auto;
        margin: 0;
        overflow: hidden;
        border-radius: 10px;
        /* top: 5em; */
    }

    /* .container-principal {
        font-size: 0.8em;
        margin: 5% auto;
        width: 100%;
    } */

    .chenar4 {
        width: 25%;
        height: 470px;
    }
}