.footer.logo {
    display: flex;
    flex-direction: column;
    min-width: 96px;
    min-height: 96px;
    max-width: 96px;
    max-height: 96px;
    margin-bottom: 24px;
    border-radius: var(--max-border);
    background-color: var(--orange);
    transition: background-color 0.25s ease;
}

.logo.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 64px;
}

.section.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--yellow);
}

.content-wrapper.footer {
    margin-bottom: 12px;
    border-radius: var(--s-border);
    overflow: hidden;
}

.footer.logo-text {
    font-size: 40px;
    font-weight: 900;
}

.split.content-wrapper.footer {
    display: flex;
    flex-direction: row;
    margin-bottom: 24px;
    width: 100%;
}

.footer.title {
    font-weight: 700;
    margin-bottom: 12px;
}

.footer.item {
    white-space: nowrap;
    margin-bottom: 6px;
}

.footer.address {
    color: var(--green);
    font-style: italic;
}

.split.footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .split.footer-content {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .split.content-wrapper.footer {

        flex-direction: column;

    }
}

.disclaimer.footer {
    color: var(--green);
    font-size: 14px;
    font-style: italic;
}