.home-half-image-text {
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}

.home-half-image-text__image {
    height: 354px;
    position: relative;
}

.home-half-image-text__image img {
    height: 388px;
    margin-top: -33px;
    object-position: top;
}

.home-half-image-text__image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 198px;
    left: 0;
    bottom: -1px;
    background: linear-gradient(to bottom,  rgba(22,21,42,0) 0%,rgba(22,21,42,1) 100%);
}

.home-half-image-text__text {
    background: #16152A;
}
.home-half-image-text__text__wrap {
    padding: 47px 22px 60px;
}

.home-half-image-text__text__wrap h2 {
    color: #fff;
    margin-bottom: 25px;
}

.home-half-image-text__text__wrap ul {
    margin-left: 8px;
    margin-bottom: 25px;
}

.home-half-image-text__text__wrap ul li {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 16px;
    padding-left: 33px;
}

.home-half-image-text__text__wrap ul li::before  {
    content: '\e905';
    font-size: 17px;
    color: #fff;
    top: 7px;
    left: 4px;
    z-index: 1;
    line-height: 1em;
}


.home-half-image-text__text__wrap ul li::after  {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--color-secondary);
}

@media (max-width: 1200px) {
	.masthead + .home-half-image-text {
		display: flex;
		flex-direction: column-reverse;
	}
}

@media (min-width: 768px) {
    .home-half-image-text__image {
        height: 444px;
    }
    
    .home-half-image-text__image img {
        height: 489px;
        margin-top: -45px;
    }
    
    .home-half-image-text__image::after {
        height: 210px;
    }
    
    .home-half-image-text__text__wrap {
        padding: 42px 52px 75px;
    }
    
    
    .home-half-image-text__text__wrap ul {
        margin-left: 15px;
    }

}

@media (min-width: 1200px) {

    .home-half-image-text {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
       
    }
	
	.masthead + .home-half-image-text {
		padding-top: 0;
	}

    .home-half-image-text__image,
    .home-half-image-text__text {
        width: 50%;
    }

    .home-half-image-text__text  {
        padding-left: 21px;
    }

    .home-half-image-text__image {
        height: auto;
        position: relative;
        background: var(--bg-dark);
    }
    
    .home-half-image-text__image img {
        height: calc(100% + 33px);
        margin-top: -32px;
        position: absolute;
    }

    .home-half-image-text__image::after {
        width: 300px;
        height: 100%;
        bottom: 0;
        background: linear-gradient(to right,  rgba(22,21,42,1) 0%, rgba(22,21,42,0) 100%);
    }

    .home-half-image-text__text__wrap h2 {
        margin-bottom: 25px;
    }

    .home-half-image-text__text__wrap {
        padding: 90px 0px;
        max-width: 660px;
        margin-left: auto;
    }
}