/* made with earth energy crystals by ur boy frank */

.global-footer-container {
    overflow-x: hidden;
}

.global-footer-wrapper {
    max-width: 100%;
}

@media screen and (max-width: 730px) {
    .global-footer-container .footer-row-1 {
        text-align: center;
    }
}

.global-footer-container .footer-row-1 {
    padding-bottom: 3rem;
    justify-content: center;
    display: flex;
}

.global-footer-container .footer-row-1 div {
    display: inline-flex;
    
}

.global-footer-container .footer-row-1 p {
    font-size: 0.75em;
    display: inline-flex;
    margin: auto;
    padding: 0.5rem;
    font-family: var(--heading-font-family);
}

.global-footer-container .footer-row-1 > div.button-container.footer-button > p > a{
    border-radius: 0.5rem;
    background-color: #406e0c;
    color: #f7f7f7;
    transition: background-color;
    transition-timing-function: ease;
    transition-duration: 0.3s;
}
.global-footer-container .footer-row-1 > div.button-container.footer-button > p > a:hover{
    background-color: #191B22;
}

.global-footer-container .footer-row-1 .footer-button {
    justify-self: end;
    display: inline-flex;
    font-family: var(--heading-font-family);
}

.global-footer-container .footer-row-1 .footer-button a {
    display: inline-flex;
    font-size: 0.9em;
}

.global-footer-container .global-footer {
    width: 100%;
}

.global-footer-container .footer-row-2 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    padding-bottom: 2rem;
}
.global-footer-container .footer-row-2 div{
    display: flex;
    justify-self: end;
    align-items: center;
}

.global-footer-container .footer-row-2 > div > picture{
    align-self: center;
    justify-self: center;
}

.global-footer-container .footer-row-2 > div > p > a > picture {
    justify-self: end;
    color: #f7f7f7;
    display: inline-flex;
    padding: 0.75rem 0;
    margin: 0.25rem;
    align-self: center;
    transition: all 500ms ease;
}
.global-footer-container .footer-row-2 > div > p > a > picture:hover {
    background-color: #191B22;
    border-radius: 0.5rem;
}

.global-footer-container .footer-row-2 > div:first-child {
    width: 150px;
    justify-self: left;
}

.global-footer-container .footer-row-2 > div:first-child picture,
.global-footer-container .footer-row-2 > div:first-child picture img {
    width: 150px !important;
    height: auto !important;
}

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

.global-footer-container .footer-bottom div{
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.global-footer-container .footer-bottom div p{
    justify-items: center;
}

.global-footer-container .footer-bottom div p .button{
    background-color: transparent;
    color: #f7f7f7;
    font-weight: 300;
    font-family: var(--heading-font-family);
    font-size: 0.6em;
    white-space: normal;
    max-width: 100%;
}

.global-footer-container .footer-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0;
}

.global-footer-container .footer-languages a:not(:last-child)::after {
    content: '|';
    margin-inline: 0.5rem;
    color: var(--text-color);
}

@media (max-width: 900px) {
    .global-footer-container .footer-row-2 {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1rem;
    }

    .global-footer-container .footer-row-2 > div {
        justify-self: center;
    }

    .global-footer-container .footer-row-2 > div:first-child {
        justify-self: center;
    }

    .global-footer-container .footer-languages {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        text-align: center;
        gap: 0.5rem 1rem;
    }

    .global-footer-container .footer-languages a:not(:last-child)::after {
        content: none;
    }

    .global-footer-container .footer-bottom div {
        flex-wrap: wrap;
    }
}