.benefits-table .section-header{
    display: flex;
    flex-direction: column;
}
.benefits-table .icons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
    margin-bottom: 16px;
}
.benefits-table .icons .icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 100%;
    border-radius: 12px;
    background: #E8FFF4;
}
.benefits-table .icons img{
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px){
    .benefits-table .section-header{
        flex-direction: row;
        justify-content: flex-end;
        margin-right: 0;
        padding-right: 0;
        gap: 77px;
    }
    .benefits-table .icons{
         align-items: center;
    }
    .benefits-table .icons img{
        width: 32px;
        height: 32px;
    }
    .benefits-table .icons .icon-box{
        width: 48px;
        height: 48px;
       
    }
}

@media (min-width: 1440px){
    .benefits-table .section-header{
        gap: 192px;
    }
}

@media (min-width: 1600px){
    .section-row{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: flex-start;
    }
    .benefits-table .section-header{
        flex-direction: column;
         gap: 0;
    }
    .benefits-table .icons{
        justify-content: flex-start;
    }	
	.benefits-table .section-table{
		padding-left: 90px;
	}
}

.benefits-table .section-table{
    width: 100%;
}

.benefits-table .section-table .table-own-gives{
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 14px;
    overflow: hidden;
}

.benefits-table .section-table .row-head{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    background: #f1edf9;
}

.benefits-table .section-table .cell-head{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.benefits-table .section-table .cell-head--own{
    color: #000;
}

.benefits-table .section-table .cell-head--gives{
    color: #704fbf;
}

.benefits-table .section-table .cell-head-arrow{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.benefits-table .section-table .cell-head-arrow img{
    display: block;
    width: 16px;
    height: 16px;
}

.benefits-table .section-table .table-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid #cfcfcf;
}

.benefits-table .section-table .cell-own{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.benefits-table .section-table .cell-gives{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.benefits-table .section-table .iconbox{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 1000px;
    background: #e8fff4;
}

.benefits-table .section-table .iconbox img{
    width: 20px;
    height: 20px;
}

.benefits-table .section-table .iconbox img.table-icon-arrow-right{
    display: none;
}

.benefits-table .section-table .iconbox img.table-icon-arrow-down-right{
    display: block;
}

.benefits-table .section-table .cell-gives-text{
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
}

@media (min-width: 768px){
    .benefits-table .section-table .table-own-gives{
        border-radius: 16px;
    }

    .benefits-table .section-table .row-head{
        justify-content: flex-start;
        gap: 0;
        padding: 0;
    }

    .benefits-table .section-table .cell-head{
        flex: 1 0 0;
        min-width: 0;
        padding: 20px 56px;
        font-size: 13px;
        letter-spacing: 2.2px;
    }

    .benefits-table .section-table .cell-head-arrow{
        display: none;
    }

    .benefits-table .section-table .table-row{
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .benefits-table .section-table .cell-own,
    .benefits-table .section-table .cell-gives{
        flex: 1 0 0;
        min-width: 0;
        min-height: 76px;
        padding: 22px 56px;
        line-height: normal;
    }

    .benefits-table .section-table .cell-own{
        display: flex;
        align-items: center;
    }

    .benefits-table .section-table .cell-gives{
        gap: 16px;
    }

    .benefits-table .section-table .iconbox img.table-icon-arrow-right{
        display: block;
    }

    .benefits-table .section-table .iconbox img.table-icon-arrow-down-right{
        display: none;
    }
}