@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;1,100;1,300&display=swap');

* {
    box-sizing: border-box;

}

:root {
    --texto-general: 'Montserrat', sans-serif;
}

.desarrollos {
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.desarrollos .text_desarrollos {
    font-family: var(--texto-general);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    padding: 20px;
    padding-bottom: 4%;

}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;

}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides .img-des {
    background-size: cover;
    width: 100vh;
    height: 70vh;
    border-radius: 12px;
}

.img-des {
    width: 100%;
}


/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #512161;
    font-weight: bold;
    font-size: 38px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
    user-select: none;


}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    color: #512161;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    color: #512161;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #512161;
    font-size: 3rem;
    padding: 8px 12px;
    padding-left: 1rem;
    padding-right: 1rem;
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
    font-family: var(--texto-general);
    background-color: #97B3A5;
    border-radius: 10px;
}

/* Number text (1/3 etc) */
.numbertext {
    color: black;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-family: var(--texto-general);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #512161;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media (min-width: 320px) and (max-width: 800px) {

    .desarrollos .text_desarrollos {
        font-size: 2rem;
        padding: 2rem 1rem;
    }

    .text {
        font-size: 1rem;
    }

    .mySlides .img-des {
        width: 40vh;
        height: 30vh;
    }

}