.whychoose {
    padding: 100px 0;
    background: #f9fafb;
}

.whychoose-item {
    width: 100%;
    margin-bottom: 20px;
    border-radius: clamp(20px, 3.4vw, 40px);
    break-inside: avoid;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    aspect-ratio: 2/1.2;
    overflow: hidden;
    padding: 20px 30px;
}
.whychoose-item.item-2,
.whychoose-item.item-3 {
    padding: 30px 40px;
}
.whychoose-item img {
    position: relative;
    z-index: 1;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    width: 100%;
}
.whychoose-item__content{
    position: relative;
    z-index: 5;
    height: fit-content;
    width: fit-content;
    bottom: 0;
    left: 0;
}
.whychoose-item__content h3 {
    color: var(--text-color);
    font-weight: 700;
    font-size: clamp(16px, 1.9vw, 30px);;
    line-height: 1.3;
    vertical-align: middle;
}
.whychoose-item::before{
    content: '';
    position: absolute;
    z-index: 0;
}
.whychoose-item::after{
    content: '';
    position: absolute;
    z-index: 0;
}
.whychoose-item.item-1 img{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}
.whychoose-item.item-1 .whychoose-item__content{
    margin-top: auto;
    margin-bottom: 0;
}
.whychoose-item.item-2 img{
    width: 80%;
    margin-left: auto;
    margin-right: 0;

}
.whychoose-item.item-4 img{
    width: 90%;
}
@media (min-width: 769px) {
    .whychoose-masonry {
        column-count: 2;
        column-gap: 20px;
    }
    .whychoose-item:nth-child(2),
    .whychoose-item:nth-child(3) {
        aspect-ratio: 3/2.2;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .whychoose-item {
        aspect-ratio: 4/3;
        padding: 15px 25px !important;
    }
}
