.main-footer{
    padding-block: 2rem;
    background-color: var(--colorSec);
}

.main-footer-wrapper{
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1rem;
}

.main-footer-row{
    --rowHeight: 200px;
    width: 100%;
    height: var(--rowHeight);
    position: relative;
}
.main-footer-row .footer-logo{
    width: calc(2 * var(--rowHeight));
    margin-inline: auto;
    position: absolute;
    left: 50%;
    top: calc(-1 * var(--rowHeight) / 2);
    pointer-events: none;
    transform: translateX(-50%);
}

.main-footer-top{
    width: 100%;
    font-size: 24px;
    margin-bottom: 1rem;
}
.main-footer-top .logo{
    width: fit-content;
    margin-left: auto;
}

.footer-social{
    gap: 2rem;
}
.footer-social > h4{
    font-size: 1.5rem;
}

.developer{
    width: 100%;
    text-align: right;
    border-top: 1px solid var(--colorGold);
    padding-top: 1rem;
}
@media screen and (max-width: 1220px) {
    .main-footer-row{
        --rowHeight: 150px;
    }
}
@media screen and (max-width: 820px) {
    .main-footer-row{
        --rowHeight: 100px;
    }
}
@media screen and (max-width: 620px) {
    .main-footer-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .main-footer-top{
        width: fit-content;
        font-size: 20px;
    }
    .developer{
        text-align: center;
    }
    .footer-social{
        margin-bottom: 1rem;
        gap: 1rem;
    }
    .footer-social > h4{
        font-size: 1.25rem;
    }
}