footer {
    width: 1600px;
    width: 100%;
    height: 464px;
    top: 4367px;
    background: #222222;
    background-image: linear-gradient(to top, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0.8)), url("footer-background.webp");
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 52px;
    padding-top: 68px;
    padding-bottom: 68px;
}
footer .main {
    display: flex;
    justify-content: space-between;
    /* height: 464px; */
    flex-direction: column;
}
.left_side_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.left_side_head {
    display: flex;
    gap: 24px;
    flex-direction: column;
    padding-top: 8px;
}
.footer_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}
.join {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #AACDF6;
}
.left_side_foot {
    display: flex;
    gap: 24px;
    flex-direction: column;
    position: absolute;
    margin-top: 270px;
    width: 54vw;
}
.rules {
    display: flex;
    gap: 16px 36px;
    flex-wrap: wrap;
}
.rules p {
    /* font-family: SF Pro Display; */
    font-weight: 200;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #fff;
}
.copyright {
    /* font-family: SF Pro Display; */
    font-weight: 200;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #fff;
    opacity: 0.5;
}
@media (max-width: 767px) {
    footer {
        height: fit-content;
        padding-top: 60px;
        padding-bottom: 24px;
    }
    .left_side_footer {
        flex-direction: column;
        align-items: center;
    }
    .left_side_foot {
        position: relative;
        margin-top: 32px;
        max-width: 100%;
    }
    .right_side_footer {
        margin-top: 40px;
    }
}
@media (max-width: 410px) {
    .left_side_footer {
        align-items: normal;
    }
}