.content-banner-block {
	position: relative;
	display: flex;
	
	gap: 40px;
    padding:80px 140px !important;
}

.content-banner-block__image { text-align: center; grid-area: image; }
.content-banner-block__image { text-align: center;flex-basis: 50%; }
.content-banner-block__image img {
	max-width: 630px;
	width: 100%;
	height: auto;
	border-radius: 12px;
    padding-top: 35px;
}

@media(max-width:1600px) {

    .content-banner-block {
        padding:60px 80px !important;
    }
}
@media(max-width:1100px) {

    .content-banner-block {
        padding:30px 40px !important;
    }
}
@media(max-width:768px) {

    .content-banner-block {
        padding:30px !important;
        flex-direction: column-reverse;
    }
    .content-banner-block__image img {
        max-width: 100%;
    }
}
@media(max-width:768px) {

    .content-banner-block {
        padding:28px !important;
        flex-direction: column-reverse;
    }
    .content-banner-block__image img {
        max-width: 100%;
    }
}
.headline {
    line-height:1.2;color:#023e84;
}

.content-banner-block__text {
	display: flex;
	flex-direction: column;
    flex-basis: 50%;
   
}
.content-banner-block__badge {
	font-weight: 600;
}
.features-list {
	list-style: none;
	padding-left: 0;
	margin: 12px 0 0;
}
.features-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #023e84;
	font-size: 20px;
	margin: 10px 0;
	margin-bottom: 20px;
}
.features-list li::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: #e9f7ef;
	color: #28a745;
	font-weight: 700;
}
.content-banner-block__button {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Custom icon support via --list-icon and .has-icon */
.features-list.has-icon li::before {
	content: "";
	background: transparent;
	background-image: var(--list-icon);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 26px;
	height: 26px;
	border-radius: 0;
	color: inherit;
}


@media(max-width:768px) {

  .content-banner-block__button {
    width: 100%;
    margin: auto;
    margin-top: 30px;
    text-align: center !important;
    margin-bottom: 30px;
    span {
        width: 100%;
        text-align: center !important;
    }
  }
}