.ytplayer-wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
	background: #d9d2c2;
}
.ytplayer-wrap:first-child {
	margin-top: 160px;
}
@media (max-width: 991px){
	.ytplayer-wrap {
		height: 400px;
	}
}
@media (max-width: 767px){
	.ytplayer-wrap {
		height: 300px;
	}
}
.ytplayer-wrap .embed-container{
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ytplayer-wrap .embed-container .screen{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    border: 0;
    width: 100%;
    height: 100%;
}
.ytplayer-wrap .mask{
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.4s linear opacity;
}
.ytplayer-wrap .mask{
    opacity: 1;
}
.ytplayer-wrap .text-container{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: #fff;
    padding-bottom: 50px;
}
@media (max-width: 991px){
	.ytplayer-wrap .text-container{
	    padding-bottom: 40px;
	}
}
@media (max-width: 767px){
	.ytplayer-wrap .text-container{
	    padding-bottom: 30px;
	}
}
.ytplayer-wrap .text-container .title{
    font-size: 80px;
    line-height: 90px;
    max-height: 180px;
    overflow: hidden;
}
.ytplayer-wrap .text-container .intro{
    font-size: 20px;
    line-height: 30px;
    max-height: 90px;
    overflow: hidden;
    margin-top: 30px;
}
.ytplayer-wrap .text-container .controls{
    margin-top: 30px;
    font-size: 0;
    line-height: 0;
    height: 50px;
}
.ytplayer-wrap .text-container .controls .bi{
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    font-size: 24px;
    line-height: 46px;
    text-align: center;
    border-radius: 25px;
    margin-right: 10px;
    cursor: pointer;
	transition: border 0.3s ease, color 0.3s ease;
}
.ytplayer-wrap .text-container .controls .bi:last-child{
    margin-right: 0;
}
.ytplayer-wrap .text-container .controls .bi:hover{
    color: #CD3A31;
    border-color: #CD3A31;
}