.footer-container{
    position: relative;
    width: 100%;    
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-top: 30px;
}

.copy-right{
    display: flex;
    text-align: bottom;
    justify-content: center;
    z-index: 2;
}

.copy-right p{
    font-weight: 500;
    font-size:  var(--font-size-30);
}

.copy-right img{
    width: calc(var(--dimension-ratio) * 24px);
    height: calc(var(--dimension-ratio) * 24px);
    margin: auto calc(var(--dimension-ratio) * 5px);;
}

.footer-links{
    display: flex;
    justify-content: center;
    z-index: 2;
    gap: 20px;
    padding: 7px;
}

.footer-links a{
    font-weight: 500;
    font-size: var(--font-size-40);
    text-decoration: none;
    color: var(--white-color);    
}

@media (max-width: 635px) {
    .footer-container {
        flex-direction: column;
    }
    .copy-right {
        order: 2;
    }
    .copy-right img {
        width: 12px;
        height: 12px;
        margin: auto 5px;
    }
    .footer-contact span{
        font-size: 7px;
    }
}