.footer {
    margin-top: 60px;
    margin-bottom: 60px;
}
.footer-container {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.footer-text {
    flex: 0 0 60%;
    font-size: 14px;
}
.social-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.social-item:first-child a {
    margin-right: 5px;
}
.social-item a {
    color: #000;
    transition: 0.3s ease-in-out color;
}
.social-item a:hover {
    color: var(--primary-color);
}
.footer-menu {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-menu a {
    color: #000;
    transition: 0.3s ease-in-out color;
}
.footer-menu a:hover {
    color: var(--primary-color);
}
.footer-menu a:last-child {
    background: var(--primary-color);
    border-radius: 50px;
    padding: 10px 12px;
    color: #fff;
    border: 1.4px solid var(--primary-color);
    transition: 0.3s ease-in-out background;
}

.footer-menu a:last-child:hover {
    background: transparent;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-text {
        text-align: center;
    }
    .footer-menu {
        width: fit-content;
        margin: 30px auto;
    }
    .social-item {
        margin-bottom: 8px;
        text-align: center;
    }
    .socials {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-item:last-child {
        margin-top: 20px;
    }
}