@keyframes play-icon {
	from {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	to {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

.d_homeFree {
	background: white;
	color: black;
	padding: 1px 20px 25px 20px;
}

.d_homeFree_title {
	font-size: 22px;
	line-height: 30px;
	margin: 50px auto 20px auto;
	text-align: center;
	letter-spacing: 1px;
	color: black;
	font-weight: 700;
	text-transform: uppercase;
}

.d_homeFree_text {
	text-align: center;
	padding: 0 20px;
	margin: 0 auto 40px auto;
	max-width: 500px;
}

.d_homeFree_video {
	max-width: 100%;
	width: 750px;
	margin: auto;
	position: relative;
	background: #fff;
	box-shadow: 0 3px 5px 0 rgb(0 1 1 / 10%);
	height: 240px;
}

.d_homeFree_video iframe {
	width: 100%;
	height: 100%;
}

.d_homeFree_cover {
	position: absolute;
	z-index: 5;
	cursor: pointer;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.d_homeFree_cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.d_homeFree_play {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.d_homeFree_btn {
	height: 85px;
	width: 85px;
	animation: play-icon .7s alternate ease-in-out infinite;
	transition: all .2s ease-in-out;
	border: 2px solid #fff;
	background: rgba(0,0,0,.5);
	border-radius: 50%;
	cursor: pointer;
	padding: 23px 0 0 7px;
	display: block;
	margin: 0 auto;
}

.d_homeFree_btn img {
	width: 36px;
	height: 36px;
	margin: 0 auto;
	filter: invert(97%) sepia(10%) saturate(2%) hue-rotate(152deg) brightness(110%) contrast(101%);
}

.d_homeFree_btnText {
	font-weight: bold;
	color: white;
	font-size: 15px;
	text-shadow: 1.5px 2.598px 4px rgb(2 2 1 / 80%);
	margin-top: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.d_homeFree_name {
	margin: 30px auto 20px auto;
	font-size: 18px;
	text-align: center;
}

.d_homeFree_link {
	margin: 25px auto 30px auto;
	display: block;
	max-width: calc(100% - 20px);
	box-shadow: 0 3px 5px 0 rgb(0 0 0 / 10%), inset 0 0 0 transparent;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 25px;
}

@media (min-width: 576px) {
	.d_homeFree_video {
		height: 422px;
	}

	.d_homeFree_link {
		display: inline-block;
		margin-top: 15px;
	}

	.d_homeFree {
		text-align: center;
	}
}

@media (min-width: 1200px) {
	.d_homeFree {
		padding: 20px 20px 50px 20px;
	}

	.d_homeFree_title {
		margin: 50px auto 20px auto;
		font-size: 36px;
		line-height: 1.364;
	}
}