#section-16 {
    margin-top: 70px;
}

.container-section-16 {
    display: flex;
    gap: 50px;
    margin-top: 46px;
    align-items: center;
}

.right-section-16 img {
    width: 100%;
    height: auto;
    max-height: 676px;
    object-fit: cover;
    border-radius: var(--border-radius-60);
}

.left-section-16,
.right-section-16 {
    width: 48%;
}

.title-left-section-16 {
    font-family: Gotham Rounded;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 52px;
    color: var(--black);
}

.check-benefit {
    background: var(--primary-color);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    ;
}

.list-benefit {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.item-benefit {
    display: flex;
    gap: 10px;
    align-items: center;
}

.text-benefit {
    font-family: Gotham Rounded;
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
}

.btn-action-section-16 {
    border-radius: var(--border-radius-60);
}


@media(max-width : 1100px) {
    .title-left-section-16 {
        font-size: 26px;
    }
}

@media(max-width :992px) {
    .container-section-16 {
        flex-direction: column;
    }

    .left-section-16,
    .right-section-16 {
        width: 100%;
    }

    .right-section-16 img {
        max-height: 376px;
    }

    .check-benefit {
        width: 50px;
        height: 50px;

    }

    .item-benefit {
        align-items: flex-start;
    }
}