.tab_with_image_container_main {
	overflow: hidden;
}

.tab_with_image_image_container {
    position: absolute;
	pointer-events: none;
	padding: 0;
	z-index: 1;
	overflow: hidden;
}

.tab_with_image_image_col {
	background-color: rgba(0,0,0,.8);
}

.tab_with_image_image_col_2 {
	background-color: #000;
}

.tab_with_image_image_col_2.background_blue {
	background-color: var(--FC-Color-Blue);
}

.tab_with_image_image_container img {
	opacity: .5;
}


.tab_with_image_image_container, 
.tab_with_image_image_container * {
    height: 100%;
	padding:0;
}

.tab_with_image_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tab_with_image_text_container {
    z-index: 2;
    padding: 20px;
}


.tab_with_image_image_text {
    color: #FFF; 
    text-align: center;
    max-width: 100%;
    padding: 20px;
	padding-left: 60px;
	padding-right: 60px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tab_with_image_image_text p {
	margin: 0;
	color: #fff;
}


.tab_with_image_tab_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab_with_image_tab_text {
    cursor: pointer;
	background-color: #000;
	transition: 200ms;
	clip-path: polygon(100% 0%, 100% 100%, 5% 100%, 0% 50%, 5% 0);
	transform: translatex(0);
}

.tab_with_image_tab_text p {
    margin: 0;
	padding: 15px 0;
	padding-left: 40px;
	color: #fff;
	transition: 200ms;

}

.tab_with_image_tab_text.active {
	background-color: #fff;
	clip-path: polygon(100% 0%, 100% 100%, 5% 100%, 0% 50%, 5% 0);
	transform: translateX(-40px);
	transition: 200ms;
}

.tab_with_image_tab_text.active p {
	color: #000;
	transition: 200ms;
}


.tab_with_image_tab_text.background_blue {
	background-color: var(--FC-Color-Blue);
}

.tab_with_image_tab_text.active.background_blue {
	background-color: #FFF;
	transition: 200ms;
}



.flip_content .row {
	display: flex;
	flex-direction: row-reverse;
}


.flip_content .tab_with_image_tab_text {
	clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0% 50%, 0 0);
	transform: translatex(0);
}


.flip_content .tab_with_image_tab_text.active {
	clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 0% 50%, 0 0);
    transform: translateX(40px);
	transition: 200ms;
}

.flip_content .tab_with_image_tab_text p {
	padding-left: 0;
	padding-right: 40px;
	text-align: right;
}



.tab_with_image_mobile {
	display: none !important;
}


@media screen and (max-width: 991px) {

	.tab_with_image_desktop {
		display: none !important;
	}
	
	.tab_with_image_mobile {
		display: block !important;
	}
	
	
	.tab_with_image_tab_text, .flip_content .tab_with_image_tab_text, .tab_with_image_tab_text.active, .flip_content .tab_with_image_tab_text.active {
		clip-path: unset;
		pointer-events: none;
		transform: translateX(0);
		transition: 200ms;
		background-color: unset;
	}
	
	.tab_with_image_text_container {
		padding: 0;
	}
	
	.tab_with_image_tab_text {
		text-align: center;
		background-color: unset;
		padding-top: 50px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.tab_with_image_image_text {
		padding-top: 25px;
		padding-bottom: 50px;
	}

	.tab_with_image_image_col {
		background-color: rgba(0,0,0,.5);
		height: 100%;
	}
	
	.tab_with_image_swiper .swiper-pagination-bullets {
		display: none;
	}
	
	.tab_with_image_swiper .swiper-pagination-bullets {
		display: none;
	}
	
	.tab_with_image_swiper .swiper-button-next:after, .tab_with_image_swiper .swiper-button-prev:after {
		color: #FFF;
	}
	
	.tab_with_image_swiper .swiper-button-next {
		right: 25px;
	}
	
	.tab_with_image_swiper .swiper-button-prev {
		left: 25px;
	}
	.tab_with_image_container_main{
		max-width: 100%;
	}
	
}



@media screen and (max-width: 767px) {

	.tab_with_image_tab_text {
		padding-top: 25px;
	}
	
	
	.tab_with_image_image_text {
		padding-top: 5px;
		padding-bottom: 25px;
		padding-left: 25px;
		padding-right: 25px;
	}
	
}


@media screen and (max-width: 500px) {
	
	.tab_with_image_tab_text {
		padding-top: 25px;
	}
	
	.tab_with_image_image_text {
		padding-top: 5px;
		padding-bottom: 85px;
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.tab_with_image_swiper .swiper-button-next, .tab_with_image_swiper .swiper-button-prev {
		top: 90%;
	}
	
	.tab_with_image_swiper .swiper-button-next {
		right: 75px;
	}
	
	.tab_with_image_swiper .swiper-button-prev {
		left: 75px;
	}
}