.two_column_video_and_text_with_text_box {
	padding: 50px 0 100px;
}

.two_column_video_and_text_with_text_box .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.two_column_video_and_text_with_text_box .wrapper.switch-column {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.two_column_video_and_text_with_text_box .wrapper>div {
	width: 47.21%;
}

.two_column_video_and_text_with_text_box .col-img-wrap {
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
}

.two_column_video_and_text_with_text_box .col-img-wrap img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.two_column_video_and_text_with_text_box .col-img-wrap .play-btn a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--white);
	z-index: 1;
	border-radius: 3px;
	background: #FFF;
}

.two_column_video_and_text_with_text_box .wrapper .text-box {
	border-radius: 12px;
	background: rgba(202, 219, 235, 0.35);
	background-blend-mode: multiply;
	padding: 25px;
	margin-top: 30px;
}

.two_column_video_and_text_with_text_box .wrapper .text-block p:not(:last-child) {
	margin-bottom: 10px;
}

.two_column_video_and_text_with_text_box .wrapper .text-box ul {
	margin: 0;
	list-style-type: none;
}

.two_column_video_and_text_with_text_box .wrapper .text-box ul li:before {
	content: none;
}

.two_column_video_and_text_with_text_box .wrapper .text-box ul li:not(:last-child) {
	margin-bottom: 10px;
}

.two_column_video_and_text_with_text_box .wrapper .text-box ul li {
	color: #243746;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	padding: 0;
	opacity: 0.85;
}

.two_column_video_and_text_with_text_box .wrapper .text-box ul li a {
	padding: 0;
	color: #243746;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

@media (max-width: 991px) {
	.two_column_video_and_text_with_text_box {
		padding-bottom: 70px;
		padding-top: 35px;
	}
	.two_column_video_and_text_with_text_box .wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.two_column_video_and_text_with_text_box .wrapper>div {
		width: 100%;
	}

	.two_column_video_and_text_with_text_box .wrapper .right-col {
		margin-top: 45px;
	}
}

@media (max-width: 767px) {
	.two_column_video_and_text_with_text_box .wrapper .text-box {
		padding: 25px 15px;
	}

	.two_column_video_and_text_with_text_box .wrapper .text-box ul li,
	.two_column_video_and_text_with_text_box .wrapper .text-box ul li a {
		font-size: 16px;
	}

	.two_column_video_and_text_with_text_box .col-img-wrap .play-btn a {
		width: 40px;
		height: 40px;
	}

	.two_column_video_and_text_with_text_box .col-img-wrap .play-btn a svg {
		width: 20px;
	}
}