.footer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    color: var(--secondary-font-color);
    background-color: var(--rose);
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 100;
}

.footer-map {
    width: 100%;
    height: 100%;
    filter: brightness(90%);
    max-width: 1920px;
}

.footer-map-container {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--primary-color);
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    background-color: var(--primary-color);
}

.footer .footer-info-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 64px;
    padding-top: 32px;
    flex-flow: row nowrap;
    justify-content: space-around;
    max-width: 1240px;
}

@media only screen and (max-width: 1240px) {
    .footer {
        font-size: 14px;
    }

    .footer .footer-info-container {
        max-width: 940px;
    }
}

.footer-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-icon img {
    height: 100%;
    width: 100%;
}

.footer-icon {
    max-width: 48px;
    height: auto;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
}

.footer-logo {
    max-width: 360px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    vertical-align:middle;
}

.footer-logo a{
    display: flex;
}

.footer-logo-container {
    display: flex;
    flex-flow: row nowrap;
    align-self: center;
}

.footer-logo-container img {
    width: 100%;
    height: 100%;
    align-self: center;
}

.footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 35px;
    padding-bottom: 10px;
    font-size: 16px;
    background-color: var(--primary-color);
}

.footer-list {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.footer-list ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list ul li {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.footer-links {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-left: 10px;
    padding-top: 10px;
}

.footer-links ul li a:hover {
    cursor: pointer;
    color: var(--faded-font-color);
}

.footer-title {
    margin-bottom: 12px;
    font-size: 24px;
    font-family: "GAELA";
    color: var(--gold-g1);
}

.footer-logo {
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
}

.footer-info {
    grid-column: 4 / span 2;
    grid-row: 1 / span 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-left: 32px;
}

.footer-info ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 100%;
    padding: 8px 0 8px 0;
}

.footer-info-inline {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.footer-info-inline a {
    text-decoration: none;
    color: var(--shahded-font-color);
    padding-left: 16px;
}

.footer-info-inline span {
    padding-left: 16px;
}

.footer-info-inline div {
    max-width: 18px;
}

.footer-info-icon {
    width: 100%;
    height: auto;
}

.footer-icon img {
    transition: 150ms ease-in-out;
}

.footer-icon img:hover {
    filter: brightness(30%);
}

.footer-links a {
    text-decoration: none;
    color: var(--secondary-font-color);
}


