.footer-section {
    width: 100%;
    padding: 100px 20px;
    background: url('../img/footer.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.footer-section-text {
    font-size: 40px;
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    color: white;
}

footer {
    width: 100%;
    background-color: #19273B;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

    padding: 50px 20px 100px 20px;
}

.footer-inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

footer img.footer-image {
    width: 120px;
}

.footer-links {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    font-size: 14px;
}

.basic-links {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 50px;
}

.link-group .title {
    color: white;
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 20px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    padding: 4px 0;
}

.link-group ul li a {
    text-decoration: none;
    color: white;
    font-weight: 100;
}

.social-links-image-group {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

.social-links-image-group a img {
    width: 28px;
}


@media screen and (min-width: 768px) {
    .footer-section-text {
        font-size: 44px;
        font-weight: 600;
    }

    footer {
        padding: 50px 50px 100px 50px;
    }

    .footer-links, .basic-links {
        flex-direction: row;
    }

    .social-links-image-group a img {
        width: 24px;
    }
}

@media screen and (min-width: 1024px) {
    footer {
        padding: 50px 100px 150px 100px;
    }

    .footer-inner {
        flex-direction: row;
    }

    .social-links-image-group a img {
        width: 22px;
    }
}

@media screen and (min-width: 1200px) {
    .footer-inner {
        max-width: 1100px;
        margin: 0 auto;
    }
}