*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: sans-serif;*/
   /* font-family: 'Poppins', sans-serif;*/
    font-family: sans-serif;
    line-height: 1.2;
}

body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    /*background-color: #bbbbbb;*/
}

footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #f7f5ee;
   /* background-color: #755843;*/
    padding-top:20px;
    padding: 30px 10%;
}

ul{
    list-style: none;
}

.footer-col{
    width: 25%;
}

.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 16px;
    /*color: #707070;*/
    text-transform: capitalize;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #e6d4a9;
    height: 2px;
    width: 40px;
}


.copyright {
    position: relative;
    width:100%;
    margin:auto;
    margin-top: 30px;
    border-top: 1px solid #e6d4a9;

}

.copyright h4{
    position: relative;

   
    margin-top: 30px;
    
    font-weight: 400;
    font-size: 16px;
    /*color: #606060;*/
    text-transform: capitalize;
    text-align: center;
}


ul li a{
    
    font-size: 16px;
    text-transform: capitalize;
    /*color: #696969;*/
    color: #000;
    text-decoration: none;
   
}

ul li a:hover{
    color: #c1b872;
    transition: color 0.3s ease;
   /* padding-left: 2px;*/
}

.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    /*background-color: rgba(40, 130, 214, 0.8);*/
   /*  background-color: #89716d;*/
    /* background-color: #da6f52;*/
    background: #be7c54;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover{
    color: #4d4f55;
    background-color: #c1b872;;
}

@media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before{
        all: unset;
    }
}

@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}