footer{
    width: 76rem;
    max-width: calc(100dvw - 4rem);
    margin: 1rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    row-gap: 0.5rem;
    justify-content: space-evenly;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
}
body[data-screen="mobile"] footer{
    flex-direction: column;
}
.footer-outer{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.footer-logos{
    width: 46rem;
    max-width: calc((100dvw - 4rem) * 0.984 - 4rem);
    padding: 2rem 2rem 3rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.footer-inner{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.footer-contact{
    width: 24rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 1rem;
}
body[data-screen="mobile"] .footer-contact{
    width: fit-content;
    margin: 0 auto;
}
.footer-email, .footer-tel{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}
.footer-email div, .footer-tel div{
    padding: 0.5rem;
    position: relative;
}
.footer-email div img, .footer-tel div img{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.footer-email div a{
    font-family: CarterOne;
    font-size: 1.25rem;
    color: #FBE9CE;
    text-decoration: none;
}
.footer-tel div span{
    font-family: CarterOne;
    font-size: 1.25rem;
    color: #FBE9CE;
}
.footer-licence, .footer-licence *, .footer-gitlab, .footer-gitlab *{
    width: 100%;
    text-align: center;
    font-family: MontserratAlternates;
    font-weight: bold;
    color: #FBE9CE;
    transition: all 0.3s ease;
}
.footer-licence a:hover, .footer-gitlab a:hover{
    filter: brightness(1.2);
}
.footer-bg{
    width: 100%;
    height: max-content;
    z-index: -1;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}
.footer-bg-img{
    width: 100%;
}
.footer-bg-ext{
    width: 100%;
    height: max-content;
    background-color: #DCA854;
}
.footer-container{
    padding: 6rem 2rem 2rem 2rem;
    width: calc(100% - 4rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-logo{
    width: 15%;
    margin-left: 12.5%;
    transform: translate(-50%, 0);
}
.footer-teamtit{
    padding: 2rem;
    margin-left: 12.5%;
    border-radius: 2rem;
    width: max-content;
    height: max-content;
    background-color: #BF8D4E;
    transform: translate(-50%, 0);
}
.footer-teamtit span{
    font-size: 2rem;
    color: #FBE9CE;
}
.footer-info{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: flex-end;
}
.footer-info-left, .footer-info-right{
    width: calc(60% - 1rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.footer-info-left{
    width: calc(60% - 1rem);
}
.footer-info-right{
    width: calc(40% - 1rem);
}