.half-text-content-icons {
    background: var(--color-black);
    position: relative;
    --spacing: -20px;
    padding-bottom: 200px;
}

.half-text-content-icons::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(#0B1D2C 0%, rgba(11, 29, 44, 0.6) 80%, rgba(11, 29, 44, 0) 100%);
    position: absolute;
    height: 100%;
    z-index: 1;
}

.half-text-content-icons .image-text__img-item {
    border: 16px solid var(--color-white);
}

.half-text-content-icons .image-text__img {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
}

.half-text-content-icons .image-text__img-left {
    position: relative;
}

.half-text-content-icons .image-text__img-left .image-text__img-item-bg {
    position: absolute;
    bottom: 60px;
    z-index: 1;
    left: -275px;
    width: 100%;
}

.half-text-content-icons .image-text__img-right {
    position: relative;
}

.half-text-content-icons .image-text__img-right .image-text__img-item-bg {
    position: absolute;
    top: -100px;
    right: -70px;
    z-index: 1;
    width: 100%;
    max-width: 328px;
}

.half-text-content-icons .image-text__img--large {
    width: 100%;
    position: relative;
    z-index: 2;
}

.half-text-content-icons .image-text__img--medium {
    width: 100%;
    position: relative;
    z-index: 2;
}

.half-text-content-icons .image-text__img--small {
    height: 278px;
    width: 100%;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.half-text-content-icons .image-text__content :where(h2, h3, h4, h5, h6, p:not(.sub-heading), a:not(.btn), ul li, ol li) {
    color: var(--color-white);
}

.image-text__content-inner {
    position: relative;
    z-index: 2;
}

.content-icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 15px;
}

.content-icon-list__item {
    background: none;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transform: translateY(100px) scale(0.8);
    opacity: 0;
}

.content-icon-list__img {
    flex: 1;
    max-width: 32px;
    width: 100%;
}

.content-icon-list__content {
    flex: 2;
    color: var(--color-white);
    padding: 10px;
}

.content-icon-list__content span {
    display: inline-block;
    background-image: linear-gradient(to right, var(--color-gold) 0%, var(--color-gold) 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.half-text-content-icons__pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.half-text-content-icons__pattern-bg svg {
    opacity: 0.08;
}

@media ( max-width: 767px ) {
    .content-icon-list {
        flex-direction: column;
    }
}

@media ( min-width: 768px ) {   

    .content-icon-list {
        gap: unset;
        margin: 15px -15px 0;
    }

    .content-icon-list__item {
        flex-basis: 50%;
        padding: 0 15px;
    }

    .content-icon-list__item:nth-child(n+3) {
        margin-top: 8px;
    }

    .half-text-content-icons .image-text__img-right {
        padding-top: 35px;
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .half-text-content-icons .image-text__img--large {
        max-width: 480px;
        height: 560px;
    }
    
    .half-text-content-icons .image-text__img--medium {
        max-width: 395px;
        height: 340px;
    }
    
    .half-text-content-icons .image-text__img--small {
        margin-top: 0;
        max-width: 278px;
    }
}

@media ( min-width: 1025px ) {

    .half-text-content-icons::before {
        height: 500px;
    }

    .half-text-content-icons__pattern-bg {
        width: 100%;
    }

    .half-text-content-icons .image-text__img {
        flex-wrap: nowrap;    
    }

    .half-text-content-icons .image-text__img--large {
        transform: translateX(-25px);
    }

    .half-text-content-icons .image-text__img--small {
        margin-top: 25px;
    }
}

@media ( min-width: 1200px ) {
    .half-text-content-icons .image-text__content :where(p:not(.sub-heading), ul li, ol li) {
        font-size: 18px;
    }

    .image-text__content-inner {
        max-width: 550px;
        width: 100%;
    }

    .half-text-content-icons .image-text__img-right {
        display: block;
    }
}

@media ( min-width: 1200px ) {
    .content-icon-list__item:hover .content-icon-list__content span {
        background-size: 100% 2px;
        color: var(--color-gold);
    }
}

@media ( min-width: 2560px ) {
    .half-text-content-icons__pattern-bg svg {
        width: 100%;
        height: 100%;
    }

    .half-text-content-icons .image-text__img-right {
        display: flex;
        align-items: flex-start;
    }
}