

.no-light-theme {
    display: none;
}

.dark-them .no-light-theme {
    display: unset;
}
.dark-them .light-theme {
    display: unset;
}

.footer {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin: 90px auto 0;
    padding-bottom: 90px;
}

.footer__tagline {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    color: var(--basic-color);
}

.footer__location {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    color: var(--basic-color);
}

.footer__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer__policy {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--basic-color);
    text-decoration: underline;
}
.social-media__head .desc a {
    text-decoration: underline;
}
.footer__policy:hover, .social-media__head .desc a:hover {
    color: var(--gradient-orange);
    text-decoration: underline;
}

@media (max-width: 650px) {
    .footer {
        gap: 35px;
        padding-bottom: 110px;
    }

    .footer__tagline {
        font-size: 24px;
        line-height: 36px;
    }

    .footer__location, .footer__policy {
        font-size: 14px;
        line-height: 1;
    }

    .footer__meta {
        flex-direction: column;
        gap: 15px;
    }
}
