/* #region Typography */
.footer-title {
    color: var(--white);
    font-size: 1.3em;

    @media (min-width: 768px) {
        font-size: 2em;
    }

    @media (min-width: 1280px) {
        max-width: 650px;
    }
}

.footer-quotation-mark {
    color: var(--main-orange);
    font-size: 4em;
}

.footer-text {
    color: var(--white);
    font-size: 1em;
    font-weight: 500;
    line-height: 1.3em;
    max-width: 480px;
    margin-bottom: 1em;

    @media (min-width: 768px) {
        font-size: 1.2em;
    }
}

.footer-founder-info-text {
    font-size: 0.8em;

    @media (min-width: 768px) {
        font-size: 1em;
    }
}

/* #endregion Typography */

/* #region Layout */
.global-footer {
    background: var(--black);
    padding: 4em 1em 2.5em 1em;
}

.footer-container-main {
    @media (min-width: 768px) {
        max-width: 720px;
        margin: 0 auto;
    }

    @media (min-width: 1280px) {
        max-width: 1200px;
    }
}

.footer-content-container {
    display: flex;
    flex-direction: column;
    gap: 2em;

    @media (min-width: 1280px) {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    max-width: 300px;
    height: auto;

    @media (min-width: 768px) {
        max-width: 400px;
    }
}

.footer-team-img {
    max-width: 327px;
    max-height: 184px;
    width: 100%;
    height: 100%;

    @media (min-width: 768px) {
        max-width: 650px;
        max-height: 100%;
    }
}

.footer-founder-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.footer-founder-img {
    max-width: 96px;
    width: 100%;
    border-radius: 15px;
}

.footer-founder-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* #endregion Typography */

/* #region Footer Links */
/* #region Typography */
.footer__links__header-text {
    color: var(--white);
    font-weight: 600;
}

.footer__links-text {
    color: var(--white-op6);
    width: fit-content;
}

.footer__links-text:hover {
    color: var(--main-orange-hover-color);
    cursor: pointer;
}

.footer__header-margin {
    margin-top: 10px;
}

.footer__copyright-text {
    color: var(--white-op6);
    font-size: 0.8em;

    @media (min-width: 768px) {
        font-size: 1em;
    }
}

/* #endregion Typography */

/* #region Layout */
.footer__main-container {
    display: grid;
    gap: 32px;

    @media (min-width: 768px) {
        grid-auto-flow: column;
    }

    @media (min-width: 1280px) {
        margin: 0;
    }
}

.footer__links__main-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__apps__main-container {
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.footer__apps__links-container {
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (min-width: 1280px) {
        gap: 16px 8px;
    }
}

.footer__apps-header-text {
    @media (min-width: 768px) {
        grid-column: span 3;
    }
    
}

/* #endregion Layout */

/* #endregion Footer Links */

/* #region Footer Learn More */
/* #region Typography */
.footer-learn-more-text {
    font-size: 0.9em;
    color: var(--white-op6);

    @media (min-width: 768px) {
        font-size: 1em;
    }
}

/* #endregion Typography */

/* #region Layout */
.footer-links-and-learn-more-container {
    margin: 4em auto;
    display: flex;
    flex-direction: column;
    gap: 48px;

    @media (min-width: 1280px) {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-learn-more_and_socials-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.footer-learn-more-container {
    margin: 0 auto;
    line-height: 1.3em;
    letter-spacing: 1px;
    width: 100%;
    height: 100%;

    @media (min-width: 1280px) {
        width: 495px;
    }
}

.footer-learn-more-img {
    display: block;
    background-image: url(/static/images/belt-buckle.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 150px;
}

.footer-socials-container {
    display: grid;
    grid-auto-flow: column;
    width: fit-content;
    gap: 32px;
}

.footer-social-icons {
    color: var(--white-op6);
    font-size: 2em;
}

.footer-social-icons:hover {
    color: var(--main-orange-hover-color);
}
/* #endregion Layout */

/* #endregion Footer Learn More */