﻿.footer {
    padding-block: 10rem;
    background-color: var(--gray-200);
}

.footer-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand-bx img {
    width: 20rem;
}

.footer-back-to-top {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
    border: 0;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

.footer-back-to-top span {
    font-size: 1.8rem;
    font-family: 'Rawson';
    font-weight: 300;
}

.footer-arrow {
    width: 4.2rem;
    animation: bounce 0.6s alternate infinite;
}

.footer-location {
    display: flex;
    gap: .8rem;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3.6rem;
}

.footer-location-title {
    margin: 0;
    color: var(--black);
    font-size: 2.4rem;
    font-weight: 600;
}

.footer-location-txt {
    margin: 0;
    color: var(--black);
    font-size: 2.2rem;
}

.footer-site-map {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5.4rem;
}

.footer-site-map-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-site-map-item.first {
    margin-bottom: 2.8rem;
    color: var(--black);
    font-size: 2.2rem;
    font-weight: 600;
}

.footer-site-map-item:not(.first) {
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 1.8rem;
    opacity: .4;
    transition: .2s;
}

.footer-site-map-item:not(.first):hover {
    opacity: 1;
}

.footer-policies {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    border-top: 1px solid var(--gray-400);
}

.footer-policies-col {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-policies-item {
    display: block;
    color: var(--gray-700);
    font-size: 1.8rem;
    font-weight: 300;
}

@media screen and (max-width: 992px) {
    .footer-site-map {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .footer-header {
        gap: 5rem;
        flex-direction: column;
    }

    .footer-site-map {
        grid-template-columns: 1fr;
    }
}