@import url('default.css');


.footer{
    width: 100%;
    height: auto;
    background-color: #FBFBFB;
    padding: 45px 0px;
}

.content-footer{
    width: 95%;
    height: auto;
    margin: auto;
    padding: 20px 0px;
    border-top: 1px solid rgba(128, 128, 128, 0.164);
    display: flex;
    flex-direction: column;
}

.cont-foo1{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont-foo1 h4{
    font-family: var(--fuenteTitle);
    font-size: 1.2rem;
    color: #2d2d2d;
    font-weight: 500;
}

.cont-foo2{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cont-foo2 img{
    width: 70%;
    display: block;
    margin: 10px auto;
}

/* Media Querie phone Landscape */
@media screen and (min-width:576px){

}


/* Media Querie Tablet */
@media screen and (min-width:768px){
    .content-footer{
        flex-direction: row;
    }
    .cont-foo1{
        width: 50%;
        justify-content: flex-end;
    }
    
    .cont-foo2{
        width: 50%;
    }
}

/* Media Querie Tablet-desktop */
@media screen and (min-width:992px){
   
}

/* Media Querie desktop */
@media screen and (min-width:1200px){
    .cont-foo2 img{
        width: 55%;
        display: block;
        margin: 10px auto;
    }
}

/* Media Querie desktop large*/
@media screen and (min-width:1366px){
   
}