footer.footer-section {
    display: flex;
    background: var(--black);
    color: rgba(242, 243, 234, 0.40);
    padding: 80px 0;
}

footer.footer-section a {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-1 p {
    margin: 0;
    font-size: 14px;
}

.footer-grid h3 {
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
}

.footer-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer.footer-section .footer-1 a {
    color: rgba(242, 243, 234, 0.40);
    font-family: 'poppins';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

.footer-2 {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    gap: 10px;
}

.footer-2 a {
    text-decoration: none;
    font-family:"gyst-variable";
}

.footer-3,
.footer-4,
.footer-5 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-3 p {
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: var(--white);
    margin: 0;
}

.footer-3 a {
    text-decoration: none;
}

footer.footer-section a {
    transition: ease 0.6s;
}

footer.footer-section a:hover {
    opacity: 0.6;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}