@import url('default.css');


.section-lifestyle{
    width: 100%;
    height: auto;
    padding: 50px 0px;
}

.content-lifestyle{
    width: 95%;
    height: auto;
    margin: auto;
}


.lifestyle-title{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifestyle-line{
    width: 20%;
    border-bottom: 1px solid var(--colorPrincipal);
}

.lifestyle-h2{
    margin: 0px 10px;
    color: var(--colorPrincipal);
    font-size: 2.3rem;
    font-family: var(--fuenteTitle);
}

.content-image{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-image{
  width: 100%;
  height: auto;
  margin-top: 20px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.item-image img{
    width: 100%;
    transition: all .9s ease-in-out;
}


.item-image img:hover{
    transition: all .9s ease-in-out;
    transform: scale(1.1);
}







/* Media Querie phone Landscape */
@media screen and (min-width:576px){

}


/* Media Querie Tablet */
@media screen and (min-width:768px){

    .content-image{
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .item-image{
        width: 29%;
    }


    .lifestyle-line{
        width: 25%;
        border-bottom: 1px solid var(--colorPrincipal);
    }
    
    .lifestyle-h2{
        margin: 0px 10px;
        color: var(--colorPrincipal);
        font-size: 2.9rem;
        font-family: var(--fuenteTitle);
    }
}

/* Media Querie Tablet-desktop */
@media screen and (min-width:992px){
    .content-lifestyle{
        width: 90%
    }
}

/* Media Querie desktop */
@media screen and (min-width:1200px){
   
}

/* Media Querie desktop large*/
@media screen and (min-width:1366px){
   
}