.footer {
    margin-top: 200px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;

    .column_1 {
        .links_container {
            align-items: flex-start;
        }
    }

    .column_2 {
        .links_container {
            align-items: center;
        }
    }

    .column_3 {
        .links_container {
            align-items: flex-end;
        }
    }

    .column_1, .column_2, .column_3 {
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
        
        .links_container {
            display: flex;
            flex-direction: column;
            gap: 12px;

            .link {
                font-family: 'Delight', sans-serif;
                text-align: center;
                font-size: 24px;
                font-weight: 600;
                color: #f0f0f0;
                text-decoration: none;
                cursor: none;
            }

            .link:hover {
                color: #AE041E;
            }
        }

        .img_container {
            width: 100%;
            height: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }
}