.videos-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	margin-bottom: 40px;
	text-align: left;
}

.centered-content .videos-container {
	justify-content: center;
}

.centered-content h2 {
	text-align: center;
}

.left-align-content .videos-container {
	justify-content: flex-start;
}

.videos-wrapper {
	margin-top: 20px;
}

.video-item-wrap {
	width: 48%;
}

.video-item-wrap:nth-child(2n) {
    animation-delay: 0.2s;
}

.video-item-wrap:nth-child(odd) {
	margin-right: 2%;
}

.video-item-wrap .title {
	color: #005972;
	font-size: 18px;
	line-height: 1.2;
	font-weight: bold;
	letter-spacing: .05em;
	margin-bottom: 20px;
}

.video-item-wrap p {
	font-size: 14px;
	color: #605f5f;
}

.video-item {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	height: 315px;
	position: relative;
	margin-bottom: 10px;
}

.video-item .play-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-item .play-video::after {
    content: '';
	display: block;
	width: 81px;
	height: 81px;
	border-radius: 50%;
	background: #fdb728 url(../Media/play_black.png) center center no-repeat;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	backface-visibility: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.video-item .play-video:hover::after {
    opacity: 0.8;
}

.video-item-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 200;
}

.video-holder {
	position: absolute;
	max-width: 1440px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	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;
}

.video-holder iframe,
.video-holder video {
	display: none;
}

.video-close {
	color: #fdb728;
	font-size: 36px;
	position: absolute;
	top: 50px;
	right: 50px;
}

@media screen and (max-width: 767px) {
	.video-item-wrap {
		width: 100%;
	}

	.video-close {
		top: 10px;
		right: 10px;
	}
}

.videos-wrapper h2 {
	font-size: 30px;
}