.footer-container {
    display: flex;
    align-items: stretch;
    padding: 0px;
    background: #000;
    font-family: "Mulish", sans-serif;
}
.footer-left {
    color: #fff;
    padding: 30px;
    width: 20%;
    text-align: center;
}
.footer-left .footer-logo {
    height: 150px;
    filter: brightness(500);
    margin-top: 40px;
}
.footer-column {
    padding:40px 40px 10px 40px;
}
.footer.content{
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
}
.page-footer{
    padding-bottom: 0 !important;
}
.footer-col-menu{
    margin-bottom: 30px !important;
}
.footer-left p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.footer-subscribe {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.footer-subscribe input {
    padding: 10px;
    width: 70%;
    border: none;
    height: 40px;
}
.footer-subscribe button {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 0;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    width: 80%;
}
.footer-column h3 {
    font-size: 16px;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 0;
    font-weight: 500;
}
.footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 1px;
    margin-top: 6px;
    background-image: linear-gradient(90deg, #fff, #f0c9a1, #d4af37, #f0c9a1, #fff);
    background-size: 200% 100%;
    animation: gradientBorder 2s linear infinite;
}
@keyframes gradientBorder {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin: 5px 0;
}
.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    line-height: 32px;
    font-weight: 300;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-column ul li a i{
    font-size: 18px;
}
.footer-bottom {
    margin-top: 20px;
    text-align: center;
}
.social-icons {
    margin: 10px 0;
}
.social-icons a {
    color: #fff;
    font-size: 28px;
    margin-right: 15px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
}
.footer-copyright .copyright-left{
    font-size: 12px;
    color: #fff;
    font-weight: 300;
}
.footer-copyright .copyright-right{
    font-size: 10px;
    color: #fff;
    font-weight: 300;
}
.footer-copyright {
    font-family: "Mulish", sans-serif;
    border-top: 0.1px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #000;

}
.copyright{
    display: none !important;
}
.footer-copyright a {
    text-decoration: none;
    font-weight: 300;
    color: #fff;
}
.footer-copyright a:hover {
    color: #fff;
}
i.fa-brands.fa-x-twitter {
    font-size: 21px;
    margin-top: 6px;
    display: block;
}
.footer-column ul li a:hover{
 color: #e7c07e !important;
}