.join{
    max-width: 1440px;
    margin: auto;
    display: flex;
    padding: 64px 40px;
    box-sizing: border-box;
}

.join_container{
    position: relative;
    display: flex;
    background-image: url(../items/backgrounds/JoinBG.png);
    width: 100%;
    border-radius: 0.833vw;
    height: 633px;
}

.join_left{
    display: none;
}

.join_right{
    display: flex;
    position: absolute;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 12px;
    top: 90px;
    left: 90px;
    background-color: #BA282D;
    padding: 40px;
    gap: 90px;
    width: 544px;
    height: 455px;
    justify-content: flex-end;
    align-items: end;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 40% 100%, 0% 60%);
}

.join_text{
    font-size: 61px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -2.44px;
    color: #f8f8f8;
    text-align: center;
}

@keyframes wave {
    0%, 100%{
        transform: rotate(0deg);
    }

    25%{
        transform: rotate(-30deg);
    }

    75%{
        transform: rotate(30deg);
    }
}

@media screen and (max-width: 768px) {
    .join{
        padding: 72px 16px 45px 16px;
    }

    .join_container{
        flex-direction: column;
        height: auto;
        max-height: none;
        background-image: none;
    }

    .join_left{
        display: flex;
        border-radius: 12px 12px 0px 0px;
        width: 100%;
        aspect-ratio: 1;
        background-image: url(../items/backgrounds/JoinMBG.png);
        background-size: 100%;
    }

    .join_right{
        position: initial;
        padding: 54px 36px;
        border-radius: 0px 0px 12px 12px;
        width: 100%;
        align-items: start;
        height: auto;
        clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0% 100%);
    }

    .join_wave img{
        width: 42px;
        height: 42px;
    }

    .join_text{
        font-size: 31px;
        letter-spacing: -0.31px;
        text-align: left;
    }
}

@media screen and (min-width: 1440px){
    .join_container{
        border-radius: 12px;
    }

    .join_text{
        letter-spacing: -0.39px;
    }

    .join_left div{
        border-radius: 12px 0 0 12px;
    }
}