.footer-wrapper{
    background: var(--brown);
    padding-block: 35px;
}
.footer-section-cont {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer-section {
    width: 100%;
}
.footer-link{
    display: inline-block;
    width: 160px;
    height: 200px;
}
.footer-icon{
    scale: 1;
    transition: scale 0.3s ease-in-out;
    width: 100%;
    height: 100%;
}
.footer-icon:hover{
    scale: 1.2;
    transition: scale 0.3s ease-in-out;
}

.footer-link-heading {
    margin-bottom: 30px;
}
.footer-link-heading p{
    font-family: 'Poppins-Light';
}
.text-hover {
    transition: all 0.3s ease;
}
.text-hover:hover {
    color: var(--white);
    transition: all 0.3s ease;
}
.footer-text-contact,
.footer-text-email{
margin-bottom: 10px;
}

.copyRigth-cont{
    font-family: 'Poppins-Light';
    text-align: center;
    margin-top: 20px;
}
.copyRigth-cont::before{
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--green);
    margin-bottom: 35px;
}

@media screen and (max-width:767.5px) {
    
    .footer-section-cont {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}