.text-with-icons > .container {
    margin-top: 52px;
}

@media screen and (min-width: 976px) {
    .text-with-icons > .container {
        margin-top: 104px;
    }
}

.text-with-icons__heading {
    margin-bottom: 32px;
}

.text-with-icons__description {
    max-width: 416px;
    margin-bottom: 32px;
    line-height: 150%;
}

.text-with-icons__benefits {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
}

@media screen and (min-width: 992px) {
    .text-with-icons__benefits {
        gap: 0 0px;
    }
  
  .text-with-icons__heading h3,
  .text-with-icons__description h3 {
    font-size: 44px;
  }

  .text-with-icons__heading h4,
  .text-with-icons__description h4 {
    font-size: 40px;
  }

.text-with-icons__benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--blue-4-background);
}

.text-with-icons__benefit {
    flex: 0 0 50%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--blue-4-background);
}

.text-with-icons__benefit:nth-child(2n+1) {
    padding-right: 5px;
}

.text-with-icons__benefit:nth-child(2n+2) {
    padding-left: 5px;
}

@media screen and (min-width: 992px) {
    .text-with-icons__benefit {
        padding: 44px 0;
    }

    .text-with-icons__benefit:nth-child(2n+1) {
        padding-right: 15px;
    }
    
    .text-with-icons__benefit:nth-child(2n+2) {
        padding-left: 15px;
    }
}

.text-with-icons__benefit:nth-last-child(1), 
.text-with-icons__benefit:nth-last-child(2) {
    border-bottom: none;
}

.text-with-icons__benefit h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

@media screen and (min-width: 992px) {
    .text-with-icons__benefit h3 {
        font-size: 22px;
    }
}

.text-with-icons__benefit img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    margin: 0 auto 12px;
}