.footer-container{
    width: 100%;
    padding-top: 3.75rem;
    padding-bottom: 6.875rem;
    background: #000000;
}
.footer-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-header-left{
    width: 22.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-brand-logo{
    height: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.footer-header-brand-logo-img{
    height: 3rem;
    object-fit: contain;
}
.footer-header-brand-description{
    width: 100%;
    padding-top: 3.125rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #FFFFFF;
}
.footer-header-social-medias{
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-header-social-media{
    width: 2rem;
    height: 2rem;
    background: #FFFFFF;
    border-radius: 0.125rem;
    margin-right: 0.3125rem;
    margin-bottom: 0.3125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-header-social-media:hover{
    background: var(--primary-color);
}
.footer-header-social-media-icon{
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer-header-social-media-icon-img{
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}
.footer-header-social-media-icon-img:last-of-type{
    display: none;
}
.footer-header-social-media:hover .footer-header-social-media-icon-img:last-of-type{
    display: block;
}
.footer-header-social-media:hover .footer-header-social-media-icon-img:first-of-type{
    display: none;
}
.footer-header-right{
    padding-left: 7.5rem;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-header-contact-info{
    width: 22.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-contact-info-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-contact-info-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: bold;
    color: #FFFFFF;
}
.footer-header-contact-info-header-description{
    width: 100%;
    padding-top: 2.1875rem;
    text-align: left;
    font-size: 1rem;
    color: #8f8f8f;
}
.footer-header-contact-methods{
    width: 100%;
    padding-top: 2.1875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-contact-method{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #8f8f8f;
}
.footer-header-contact-method a{
    color: #FFFFFF;
    text-decoration: none;
}
.footer-header-contact-method a:hover{
    color: var(--primary-color);
}
.footer-header-menus{
    flex: 1;
    padding-right: 3.125rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4.375rem;
    grid-row-gap: 4.375rem;
}
.footer-header-menu-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-menu-group-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
}
.footer-header-menu-group-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: bold;
    color: #FFFFFF;
}
.footer-header-menu-group-header:hover .footer-header-menu-group-header-title{
    color: var(--primary-color);
}
.footer-header-menu-items{
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-header-menu-item{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #8f8f8f;
    margin-bottom: 0.625rem;
    text-decoration: none;
}
.footer-header-menu-item:hover{
    color: var(--primary-color);
}
.footer-header-menu-item:last-of-type{
    margin-bottom: 0;
}
.footer-footer{
    width: 100%;
    padding-top: 11.875rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-footer-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.footer-copyright{
    font-size: 1rem;
    color: #FFFFFF;
}
.footer-copyright a{
    color: #FFFFFF;
    text-decoration: none;
}
.footer-copyright a:hover{
    color: var(--primary-color);
}
.footer-footer-right{
    flex: 1;
    padding-left: 3.125rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.footer-quick-links{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-quick-link{
    font-size: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 1.125rem;
}
.footer-quick-link:last-of-type{
    margin-right: 0;
}
.footer-quick-link:hover{
    color: var(--primary-color);
}