/*NavBar*/
*{
    margin: 0;
    padding: 0;
}
header{
    width: 100%;
    height: auto;
    padding-bottom: 75px;
    /*padding-bottom: 1em;*/
}
nav{
    background-color: #efefef;
    overflow: hidden;
    /*padding: 0;*/
    position: fixed;
    /* position: absolute; */
    z-index: 1;
    width: 100%;
}
nav ul{
    margin-right: 30px;
}
nav ul li{
    margin: 20px;
    float: right;
    display: inline;
}
li a{
    font-size: 1.1em;
    color: black;
    text-decoration: none;
}
.logo-space{
    float: left;
    padding: .8em;
    width: 30%;
}
.logo{
    font-size: 1.4em;
    text-decoration: none;
}
.iconNav{
    cursor: pointer;
    display: block;
    width: 40px;
    margin: 10px;
    float: right;
}
.show{
    display: block;
    float: none;
}
/*NavBar*/

body{
    margin: 0em;
    /*background-color: rgba(0,0,0,0.8); Opacidad desde 0.0 a 1
    background-color: #eee;*/
    background-image: url("./images/Fondo.png");
}
.cover{
    height: 400px;
    color: white;
    width: 100%;
    background: url("./images/Background.jpg") 0/ cover fixed;
    background-position: center;
    background-color: rgba(0,0,0,.35);
    background-blend-mode: darken;
}
.cover-card{
    width: 300px;
    margin: auto;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    flex-flow: row wrap;
    margin-top: 20px;

}
.cover-small{
    background-size: cover;
    background-position: center;
}
div.Align{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-around;
    align-items: center; 
}
div.Polaroid{
    background-color: white;
    width: 300px;
    /* padding: 10px; */
    margin: auto;
    /* margin-bottom: 10px; */
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    flex-flow: row wrap;
    margin-top: 20px;
}
/*.Polaroid img{
    opacity: .4;
}
.Polaroid img:hover{
    opacity: 1;
}*/
.FondoParallax{
    position: relative;
    background: url("./images/Fondo.jpg") 0/ cover fixed;
    width: 100%;
    height: 500px;
    background-position: center;
}
.content{
    position: absolute;
    background-color: rgba(0, 38, 153, 0.6);
    top: 440px;bottom: 0px; left: 0px; right: 0px;
}
.text{
    position: absolute;
    color: white;
    bottom: 8px;
    right: 10px;
    font-size: 30px;
}
.TextCard{
    text-align: center;
}
.stripe-container, .slider-container {
    display:flex;
}
.stripe-container, .Polaroid{
    /* width: 300px; */
    flex-shrink: 0;
    margin-right: 1rem;;
}
.product-stripe, .slider{
    overflow-x: scroll;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.responsive-iframe{
    position: relative;
    padding-top: 56.25%;
}
.responsive-iframe iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carrousel{
    width: 300px;
    background-color: white;
    /* padding: 10px; */
    margin: 1em;
    /* margin-bottom: 10px; */
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    flex-flow: row wrap;
    margin-top: 20px;
}
.image-container{
    width: 100%;
    height: 300px;
    padding-top: 40.25%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.slider{
    overflow-x: hidden;
}
.slider-container{
    transform: translateX(0);
    animation: slider 10s infinite;
}
.recuadro{
    background-color: white;
    margin: 0 auto;
    width: 154px; 
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    flex-flow: row wrap;
    margin-top: 10px;
}
.avatar{
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 1em;
}
@keyframes slider{
    0%{/*Tiempo en pantalla*/
        transform: translateX(0);
    }
    20%{/*Tiempo en pantalla*/
        transform: translateX(0);
    }
    25%{/*Cambio a la siguiente imagen*/
        transform: translateX(-100%);
    }
    45%{/*Tiempo en pantalla*/
        transform: translateX(-100%);
    }
    50%{/*Cambio a la siguiente imagen*/
        transform: translateX(-200%);
    }
    70%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-300%);
    }
    95%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(0);
    }
}
@media screen and (max-width: 480px){
    .content{
        position: absolute;
        background-color: rgba(38, 38, 150, 0.6);
        top: 370px; bottom: 0px; left: 0px; right: 0px;
    }
    nav ul li{
        display: none;
    } 
    .logo-space{
        width: 80%;
    }
}
@media screen and (min-width: 481px) and (max-width: 760px){
    .content{
        position: absolute;
        background-color: rgba(38, 38, 150, 0.6);
        top: 400px; bottom: 0px; left: 0px; right: 0px;
    }
    nav ul li{
        display: none;
    }
    .logo-space{
        width: 70%;
    }
}
@media screen and (min-width: 761px){
    div.Polaroid{
        display: inline-block;
        margin-left: 5%;
    }
    .iconNav{
        display: none;
    }
    .logo-space{
        padding: .8em;
    }
}