.home .threew_banner_outer_wrapper {
	aspect-ratio: 16/9;
}

.threew_banner_wrapper {
    position: relative;
    overflow: hidden;
}

.threew_banner_wrapper .slick-list {
    line-height: 0;
}

.threew_banner_wrapper .threew_image .overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(1, 58, 86, 0.80) 100%);
	mix-blend-mode: multiply;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner_content_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.banner_content_wrapper .container-fluid {
    height: 100%;
    display: flex;
    flex-flow: row wrap;
}

@media (min-width: 992px) {
	.banner_content_wrapper .container-fluid {
		padding-left: 55px;
		padding-right: 55px;
	}
}

.banner_content_wrapper .banner_content {
    flex: 1 1 100%;
    align-self: flex-end;
    padding: 3rem 0 0;
    margin-bottom: 4rem;
    text-align: left;
	max-width: 800px;
	position: relative;
}

.banner_content_wrapper .banner_content .text_wrapper {
    color: #FFF;
}

/* homepage */
.banner_content_wrapper .banner_content .text_wrapper .banner-title {
    font-size: calc(1.425rem + 2.1vw);
    margin-bottom: 1rem;
	color: var(--w3-white);
	font-weight: 400;
}

@media (min-width: 992px) {
	.banner_content_wrapper .banner_content .text_wrapper .banner-title {
		font-size: 3rem;
	}
}

/* single post page */
.single-post .banner_content .text_wrapper .banner-title {
    font-size: 1.5rem;
}

/* homepage */
.banner_content_wrapper .banner_content .text_wrapper .banner-text {
    font-size: 1.5rem;
    margin: 0;
}

/* single post page */
.single-post .banner_content .text_wrapper .banner-text {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .entry-content > .vc_row:first-of-type .banner_content_wrapper .container:before {
        width: 100px;
        height: 100px;
    }

    .threew_banner_wrapper:after {
        width: 164px;
        height: 130px;
    }
}

/* Mobiel */
@media (max-width: 578px) {

    .banner_content_wrapper .banner_content {
        margin-bottom: 3rem;
    }

    .banner_content_wrapper .banner_content .text_wrapper .banner-title {
        font-size: 1.875rem;
    }

    .banner_content_wrapper .banner_content .text_wrapper .banner-text {
        font-size: 1.25rem;
        margin: 0;
    }

    /* single post page */
    .single-post .banner_content_wrapper .banner_content {
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .single-post .banner_content .text_wrapper .banner-title {
        font-size: 1.3rem;
    }

    .single-post .banner_content .text_wrapper .banner-text {
        font-size: 1.125rem;
    }
}

/* Banner animation */
.home .threew_banner_outer_wrapper .threew_image.slick-active img {
	animation: scale-up 6s ease-out forwards;
}

@keyframes scale-up {
    0% {
		transform: scale(1) translate(0, 0);
		transform-origin: center bottom;
	}

	100% {
		transform: scale(1.1) translate(0, 1px);
		transform-origin: center bottom;
	}
}



/*  banner section */

#banner-section .banner_content {
	background-image: url('../images/vector-1.svg');
	background-size: auto;
	background-position: 26% 0%;
	background-repeat: no-repeat;
}

#banner-section .threew_banner_wrapper .threew_image .overlay {
	background: unset;
}

#banner-section .threew_banner_outer_wrapper .threew_image img {
	height: auto;
	width: 100%;
	aspect-ratio: 16/9;
}

#banner-section .banner_content {
	background-color: var(--w3-blue);
	max-width: 444px;
	padding: 4%;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
	margin-left: auto;
	margin-right: 7vw;
}

#banner-section .banner_content .banner-title {
	color: var(--w3-green);
	font-size: 36px;
}

#banner-section .banner_content .banner-text {
	font-size: 1rem;
}

#banner-section .banner_content .btn {
	padding: 0;
	margin-top: 1rem;
	background: unset;
	border: none;
	box-shadow: none;
}

@media (max-width: 992px) {
	#banner-section .threew_banner_outer_wrapper .threew_image img {
		height: 100%;
	}
	
	#banner-section .banner_content {
		max-width: 340px;
		margin-right: 3vw;
	}
}

@media (max-width: 768px) {
	#banner-section .banner_content_wrapper {
		position: static;
		margin-right: 0;
	}
	
	#banner-section .banner_content {
		max-width: unset;
        height: auto;
        margin-bottom: 0;
		margin-left: -15px;
		margin-right: -15px;
	}
}