.site-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footerWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 34px;
}

@media (max-width: 1024px) {
    .footerWrapper {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding-inline: 24px;
    }
}

@media (max-width: 768px) {
    .footerWrapper {
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    .footerWrapper {
        padding-inline: 16px;
    }
}

.footerLeft {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 7rem;
}

@media (max-width: 1400px) {
    .footerLeft {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4rem;
    }
}

@media (max-width: 1024px) {
    .footerLeft {
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .footerLeft {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
}

.colElem {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@media (max-width: 600px) {
    .colElem {
        align-items: center;
    }
}

.listTitle {
    font-size: 12px;
    color: var(--text-2);
    font-weight: 400;
    font-family: "IBM Plex Mono", monospace;
    margin: 0;
}

.colElemList {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.colElemList a {
    margin: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-main);
    text-decoration: none;
    transition: text-decoration 1s;
    align-self: flex-start;
    width: max-content;
    display: inline-block;
}

.colElemList a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .colElemList {
        align-items: center;
    }

    .colElemList a {
        align-self: flex-start;
    }
}

.footerRight {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 7rem;
}

@media (max-width: 1024px) {
    .footerRight {
        justify-content: center;
    }
}

.colElemRight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .colElemRight {
        align-items: center;
        text-align: center;
    }
}

.colElemRight h2 {
    margin: 0 0 0.8rem 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-main);
}

.listTitleRight {
    font-size: 12px;
    color: var(--text-2);
    font-weight: 400;
    font-family: "IBM Plex Mono", monospace;
    margin: 0 0 0.8rem 0;
}

.BIGLINKMAIL,
.SMALLLINKMAIL {
    align-self: flex-start;
    width: max-content;
    display: inline-block;
}

@media (max-width: 600px) {
    .BIGLINKMAIL,
    .SMALLLINKMAIL {
        align-self: center;
        text-align: center;
    }
}

.BIGLINKMAIL {
    color: #00aaff;
    /* text-decoration: underline; */
    /* text-underline-offset: 6px; */
    font-size: 28px;
}

@media (max-width: 900px) {
    .BIGLINKMAIL {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .BIGLINKMAIL {
        font-size: 20px;
    }
}

.SMALLLINKMAIL {
    color: #00aaff;
    font-size: 18px;
}

@media (max-width: 900px) {
    .SMALLLINKMAIL {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .SMALLLINKMAIL {
        font-size: 14px;
    }
}

.namingORG {
    margin-top: 10px;
    margin-bottom: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-2);
}

.copyrights {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-inline: 34px;
    margin-top: 45px;
}

@media (max-width: 1024px) {
    .copyrights {
        padding-inline: 24px;
    }
}

@media (max-width: 768px) {
    .copyrights {
        flex-direction: column;
        gap: 0.75rem;
        padding-inline: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .copyrights {
        padding-inline: 16px;
    }
}

.copyrightsText {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    color: var(--text-2);
    font-weight: 400;
    font-family: "IBM Plex Mono", monospace;
    align-self: flex-start;
    width: max-content;
    margin: 0;
}

.copyrightsText a {
    color: inherit;
    text-decoration: none;
}

.copyrightsText a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .copyrightsText {
        align-self: center;
        justify-content: center;
    }
}
