.column-half-and-half {
    background-color: #EBECED;
    position: relative;
}

.column-half-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.column-half-col:last-child {
    margin-bottom: 0;
}

.column-half-col-icon {
    width: 33px;
    height: 38px;
    margin-right: 17px;
}
.column-half-col-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.column-half-col-content {
    width: calc(100% - 50px);
}

.column-half-col-content h4 {
    font-size: 18px;
    color: #002C5F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1em;
    padding-bottom: 7px;
}

.column-half-col-content p {
    font-size: 16px;
    color: #475565;
    padding: 0;
    line-height: 1.75em;
}

.column-half-and-half-left {
    padding: 75px 0;
    position: relative;
}

.column-half-and-half-right {
    padding: 75px 0;
    position: relative;
    
}

.column-half-and-half-right h3 {
    position: relative;
}

.column-half-and-half-right:before {
    content: "";
    position: absolute;
    left: -22px;
    width: calc(100% + 44px);
    top: 0;
    height: 100%;
    background-color: #DFE1E2;
}


@media(min-width: 768px) {
    .column-half-and-half-right:before {
        left: -52px;
        width: calc(100% + 104px);
    }
}

@media (min-width: 1025px) {
    .column-half-and-half-right:before {
        left: -63px;
        width: calc(100% + 126px);
    }
}


@media(min-width: 1200px) {
    .column-half-and-half-wrapper {
        display: flex;
        z-index: 1;
        position: relative;
    }
    .column-half-and-half-left {
        width: 50%;
        padding: 75px 0 75px 35px ;
    }
    
    .column-half-and-half-right {
        width: 50%;
        padding: 75px 0 75px 84px ;
    }

    .column-half-and-half-right:before {
        display: none;
    }

    .column-half-and-half:after {
        content: "";
        position: absolute;
        right: 0;
        width: 50%;
        top: 0;
        height: 100%;
        background-color: #DFE1E2;
    }

    .column-half-icon-list {
        padding-left: 25px;
    }

    .column-half-and-half-right ul {
        margin: 0 0 0 39px;
    }
}