.ei-footer{
    background-color: var(--light-brown);
    padding: 100px 0px;
}
.ei-footer-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--font-gotham);
}
.ei-foo-col{width: 33.33%;}
.ei-foo-col h3{
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--font-gotham);

}
.ei-foo-col ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.ei-foo-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 200;
    font-family: var(--font-gotham);

}
.ei-foo-col ul li a:hover{text-decoration: underline;}


.ei-foo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}


#backToTopBtn {
    display: none; 
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: var(--black);
    color: white;
    border: none;
    z-index: 99999;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none;
    transition: opacity 0.3s, transform 0.3s;
}
.address-line{line-height: 2.2;}
#backToTopBtn:hover {
    background-color: var(--brown);
}

#backToTopBtn.show {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    opacity: 1;
    transform: scale(1);
}

.ei-foo-credits p{
    font-family: var(--font-gotham);
    font-weight: 200;
    font-size: 14px;
    font-style: normal;
    color: #333;
    text-align: center;
}
.foo-hr{
    border: 0.1px solid #333;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    margin-top: 25px;
}

.ei-foo-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ei-foo-socials {
    display: flex;
    gap: 5px;
}
.ei-foo-socials a {
    color: #222;
}
.ei-foo-socials a:hover{
    color: var(--brown);
}
.ei-foo-socials a:nth-child(2){
    margin-left: -5px;
}
