body {
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
    /*  color: #67696c;/*COLOR GRIS*/
    font-weight: 300;
    letter-spacing: 0.5px;
}

.container__form{
    height: 100%;
    width: 500px;
    margin-left: 150px;
    margin-top: 10%;
    border-radius: 20px;
    position: relative;
    max-height: 100vh;
}

.item-carrusel{
    width: 38%;
    height: 50%; 
    background-color: transparent;
}

.contenedor {
    display: flex;
}

.carrusel {
    margin-left: auto;
    margin-top: 20px;
    margin-right: 15px;
    width: 40%;
    height: 500px;
    border-radius: 20px;
    padding: 15px;
}


.text-carrusel{
    text-wrap: wrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-item{
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
}

.navbar-expand{
    position: absolute;
    z-index: 1;
    margin-left: 150px;
    margin-top: 10px;
}

.carrusel-movil{
    display: none;
}

.dropdown-toggle{
    padding: 15px;
}

@media (max-width: 1210px){
    .contenedor {
        flex-direction: column;
    }

    .carrusel {
        margin: auto;
        margin-top: 25px;
        width: 80%;
    }

    .item-carrusel{
        width: 72%;
    }
}

@media (max-width: 900px){
    body{
        max-width: 100%;
        max-height: 100vh;
        background-color: lightgray;
        display: flex;
        flex-direction: column;
    }
    .carousel-pc{
        display: none;
    }
    
    .container__form{
        margin: auto;
        width: 60%;
        margin-top: 20%;
        height: auto;
    }
    .carrusel-movil{
        display: block;
    }
    .carrusel-movil img{
        height: 100vh;
    }
    .navbar-expand{
        width: 100%;
        height: auto;
        margin: auto;
    }

    .dropdown-toggle{
        padding: 10px;
    }
}