
* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
    background-image: url('/img/fondo_slide.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.img {
    vertical-align: middle;
    width: 23%;
    margin: 4em;
}

/*
@media screen and (max-width: 875px){
            .img {vertical-align: middle; width:23%; margin: 1em; }
    }
*/

@media screen and (max-width: 736px) {
    .img {
        vertical-align: middle;
        width: 91%;
        margin: 1em;
    }
}

/* Slideshow container */
.slideshow-container {
    /*max-width: 1000px;*/
    position: relative;
    margin: auto;
    display: table;
    padding-bottom: 11px;
    background-image: url('/img/linea.gif');
    background-repeat: no-repeat;
    background-position: bottom;
    border-radius: 0.375em;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 2.4em;
    padding: 8px 12px;
    bottom: 8px;
    width: 59%;
    line-height: normal;
    text-align: left;
    float: right;
    top: 2.5em;
    position: relative;
    font-family: 'Special Elite', cursive;
}

@media screen and (max-width: 736px) {
    .text {
        top: 0px;
        width: 100%;
    }
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

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

.activo {
    background-color: #717171;
}

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

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}
