.site-footer {
    padding: 8rem 0 3rem;
    background: #cecdca;
}

.footer-widget-title {
    margin-bottom: 5rem;
    font-family : 'Inter';
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color : #fff;
    letter-spacing : 0.72px;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    padding-top : 1.2rem;
    padding-bottom : 1.2rem;
}

.footer-widget a {
    font-family : 'Inter';
    font-size : 1.8rem;
    font-weight : 300;
    color: var(--gray-main);
    text-decoration: none;
    line-height : 2;
    margin-bottom : 1px;
    border-bottom : 1px solid transparent;
    transition: all .3s ease;
}

.footer-widget a:hover {
    color: #fff;
    border-bottom : 1px solid #fff;
}

footer .bottom {
    margin-top : 8rem;
    display : flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;    
}

footer .bottom, footer .bottom a {
    font-family : 'Inter';
    font-size : 1.6rem;
    font-weight : 300;
    color : #fff;
    text-transform : uppercase;
    
}

 .bottom a {
     margin-bottom : 1px;
     border-bottom : 1px solid transparent;
     transition: border-color 0.3s ease;
}


footer .bottom ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    color : #fff;
}

footer .bottom a:hover {
    border-bottom : 1px solid #fff;
}

