footer a , 
footer a:active{
    color: var(--white);
}
footer a:hover{
    color: var(--theme);
}
iframe{
    border-radius: 10px;
}
.footer-top{
    padding: 50px 0px;
    color: var(--white);
    background: #412804;
}
.footer-top h3{
  
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    border-bottom: 2px solid var(--theme);
    width: fit-content;
    color: var(--theme);

}
.footer-top h4{
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
}
.footer-top ul>li{
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;
}
.footer-bottom{
    padding: 15px 0px;
    background-color: var(--dark-blue);
    color:var(--light-white) ;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}
.footer-bottom ul>li:first-child::after{
    content: "|";
    margin: 0px  15px;
}

@media screen and (max-width:767px) {
    
    .footer-bottom ul>li:first-child::after{
        content: "";
        margin: 0px;
    }
    .footer-bottom ul>li{
        padding: 8px 0px;
    }
}