@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 100px;
    box-shadow: 0px 1px 10px #2c334f27, 0px -1px 10px #2c334f23;
}

.footer--logo {
    height: 150px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all ease 250ms;
}

.social-circle:hover {
    background: #b7ecff;
}

.social-circle img {
    width: 20px;
    height: 20px;
}
.links-section {
    margin-top: 30px;
}
.links-section h6 {
    color: #2c334f;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.links-section ul {
    list-style: none;
    padding: 0;
}

.links-section ul li {
    margin-bottom: 0.5rem;
}

.links-section ul li:hover {
    text-decoration: underline;
}

.links-section ul li a {
    color: #8898aa;
    text-decoration: none;
}

.links-section ul li a:hover {
    color: #2c334f;
}

.copyright {
    margin-top: 30px;
    color: #8898aa;
    font-size: 0.875rem;
}
@media (max-width: 768px) {
    .links-section {
        margin-top: 20px;
        text-align: center;
    }
    .social-section {
        text-align: center;
    }
}