footer{
    background-color: var(--main-color);
    padding: 20px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "font_main";
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 100px;
    overflow: hidden;

}

footer .main-container{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;

}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    z-index: 1;

}


.footer-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links li{
    list-style: none;
    position: relative;
    padding: 10px ;
}

.footer-links li a{
    color: #fff;
    text-decoration: none;
    padding: 10px ;
    
}

.footer-links li a::after,
.footer-links li a::before{

    background-color: #fff;
}


.footer-logo{
    height: 170px;
    z-index: 1;
}

.footer-logo img{
    height: 100%;
    object-fit: contain;
}

.footer-social{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

}

.footer-social a{
    color: #EFE2D5;
    font-size: 24px;
    transition: 0.3s;
}

.footer-social a:hover{
    color: #fff;
}
.footer-copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    z-index: 1;
}

.footer-copyright p{
    font-size: 16px;
    color: #EFE2D5;
    font-weight: 400;
}