#why h2{
    background-image: url(/assets/img/why-h2.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% auto;
}

.why-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.625rem;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
}

.why-item span{
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #8C8C8C
}

.why-item-content{
    width: 75%;
    flex-shrink: 0;
    display: flex;
    gap: 4.5rem;
}

.why-item h3 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0 0 0.4375rem;
}

.why-item-img{
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .why-item-content{
        width: 85%;
    }
}

@media (max-width: 620px) {
    .why-item{
        flex-direction: column;
    }
    .why-item-content{
        width: 100%;
        gap: 2rem;
    }
}