/*================================================
                    FOOTER CSS
==================================================*/

.footer {
    background-image: url("../images/footer-bg-2.jpg");
    background-size: cover;
    height: auto;
    color: #ffffff;
    padding: 29px 0px;
    position: relative;
    z-index: 0;
}

.footer:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
    z-index: -1;
}

.social-links h3,
.footer-quick-links h3,
.footer-address h3 {
    font-size: 20px;
    color: #eeeeee;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: "Roboto";
    font-weight: 600;
    position: relative;
}

.social-links>h3:after,
.footer-quick-links>h3:after,
.footer-address>h3:after {
    position: absolute;
    content: "";
    bottom: -10px;
    width: 110px;
    height: 3px;
    background: #2555a0;
    left: 0px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img.footer-website-logo {
    width: 265px;
    padding: 20px;
}

.quick-links {
    list-style-type: none;
    padding-left: 10px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #777777;
}

.social-icons a:hover,
.quick-links a:hover {
    text-decoration: underline;
}

.social-icons a i,
.footer-address i {
    border-radius: 3px;
    color: #2a4493;
    font-size: 20px;
    margin-right: 12px;
    font-weight: bold;
    width: 15px;
}

.quick-links li a,
.social-icons li a {
    text-decoration: none;
    color: #eeeeee;
    font-size: 18px;
    font-family: "Roboto";
}

.quick-links li a:hover {
    color: #fff;
}

.footer-location {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #b5adad;
}

.back-to-top {
    background-color: #2555a0;
    border: 2px solid #2555a0;
    border-radius: 5px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1;
}

i.fa-solid.fa-circle-chevron-up {
    color: #ffffff;
    /* font-size: 26px; */
}

.footer-social p {
    color: #fff;
    display: flex;
    justify-content: center;
}

.footer-address a,
.footer-social a {
    color: #fff;
    display: flex;
    
}

.footer-social span {
    margin-left: 5px;
    text-decoration: underline;
}

