.heroAB{
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
}

.heroAB .who_button{
    background-color: #eceded;
    transform: rotate(135deg);
    align-self: center;
    cursor: initial;
}

.heroAB .who_button:hover div{
    transform: none;
}

.heroAB_text{
    display: flex;
    margin: auto;
    justify-content: space-between;
}

.heroAB_large{
    font-size: 76px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -3.04px;
    color: #202020;
}

.heroAB_small{
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    color: #202020;
    letter-spacing: -0.25px;
    width: 50%;
}

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

    .heroAB .who_button{
        display: none;
    }

    .heroAB_text{
        flex-direction: column;
        gap: 32px;
        justify-content: initial;
    }

    .heroAB_large{
        font-size: 61px;
        letter-spacing: -2.44px;
    }

    .heroAB_small{
        font-size: 20px;
        letter-spacing: -0.2px;
        width: auto;
    }
}

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

}