/* style-footer */
footer {
    background-color: #225581;
    color: #fff;
    justify-content: center;
    display: flex;
    width: 100%;
    padding: 20px 0;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

@media screen and (max-width: 400px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .slog {
        border-bottom: #4a66c1 2px solid;
        width: 200px;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    margin: 0 15px 0 15px;
}

.footer-section span {
    margin-bottom: 15px;
    font-size: 1.7em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0083cf;
}

.social-icons {
    display: flex;
    flex-direction: column;
}

.social-icons li {
    display: flex;
    flex-direction: column;
}

.social-icons li a {
    display: flex;
    flex-direction: row;
}

.social-icons li a img {
    width: 25px;
    height: auto;
}

.social-icons li a span {
    margin: 5px 0 5px 5px;
    font-size: 1.2em;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    padding: 10px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}