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

.who_link{
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #eceded;
    border-radius: 12px;
    height: 506px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 83% 100%, 0% 100%); 
}

/* .who_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.833vw;
    background-color: #eceded;
    height: 37.292vw;
    max-height: 537px;
    width: 100%;
}

.who_container:hover{
    cursor: pointer;
}

.who_container:hover .who_button{
    transform: rotate(45deg);
    transition: transform 0.5s;
}

.who_container:hover .who_button:hover{
    transform: none;
}

.who_container .who_button{
    transition: transform 0.5s;
} */

.who_frame{
    display: flex;
    flex-direction: column;
    padding: 32px;
    width: 55%;
    height: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.who_text{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.who_large{
    font-size: 39px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.39px;
    color: #202020;
}

.who_small_frame{
    display: flex;
    flex-direction: column;
    gap: 1.667vw;
}

.who_small{
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: #545454;
}

.who_photo{
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    width: 45%;
    height: 100%;
}

.who_photo img{
    height: 100%;
}

.thing{
    display: flex;
    align-self: flex-end;
    position: relative;
}

.who_frame:hover .who_button div{
    transform: rotate(45deg);
}

.who_frame:hover .read_more{
    transform: scaleX(1);
}

@media screen and (max-width: 768px) {
    .who{
        padding: 72px 16px;
        flex-direction: column-reverse;
    }

    .who_container{
        flex-direction: column-reverse;
        gap: 36px;
        justify-content: center;  
        height: auto;
        max-height: none;  
        border-radius: 12px;    
    }

    .who_link{
        flex-direction: column-reverse;
        height: auto;
        clip-path: polygon(0% 0%, 65% 0%, 100% 25%, 100% 100%, 0% 100%);
    }

    .who_photo{
        width: 100%;
        height: 71.795vw;
    }

    .who_frame{
        width: 100%;
        justify-content: center;
        padding: 16px;
        gap: 32px;
        height: auto;
        max-height: none;
    }

    .who_text{
        gap: 24px;
    }

    .who_large{
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .who_small{
        font-size: 16px;
    }

    .who_frame .read_more{
        transform: scaleX(1);
    }

    .who_frame:hover .who_button div{
        transform: rotate(0deg);
    }
}

@media screen and (min-width: 1440px) {


    .who_container{
        border-radius: 12px;
    }

    .who_large{
        font-size: 39px;
        letter-spacing: -0.39px;
    }

    .who_small_frame{
        gap: 24px;
    }
}