.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 16px;
    background-color: rgba(84,84,84,1);
}

.footer-container-upper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    padding: 64px 0;
}

.footer-section-upper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.footer-paragraph {
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.footer-button {
    padding: 12px 32px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.6px;
}

.footer-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.6px;
}

.footer-tel {
    text-decoration: none;
    color: white;
}

.footer-contact {
    text-decoration: underline;
    color: white;
}

.footer-section-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}

.footer-paragraph-big {
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    color: white;
}

.footer-container-lower {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-bottom-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-bottom-link {
    width: 100%;
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.6px;
    padding: 4px 0;
    text-align: center;
    border-bottom: 1px solid #ab8848;
}

.footer-paragraph-end {
    width: 100%;
    color: white;
    font-family: Montserrat, sans-serif;
	font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 32px 0;
    text-align: center;
}

@media (min-width: 1025px) {
    .footer-container-upper {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 128px 0;
    }  
    .footer-container-lower {
        max-width: 1280px;
        margin: 0 auto;
    }
    .footer-section-bottom {
        text-align: right;
        align-items: flex-end;
    }  
    .footer-bottom-links {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-bottom-link {
        width: fit-content;
        color: white;
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1.6px;
        padding: 0;
        text-align: center;
        border-bottom: none;
    }
}