
.play-btn{
    display: inline-block;
    position: relative;
    width: 3.57143vw;
    height: 2.38095vw; 
    border: solid 1px #000; 
    line-height: 1;
    margin-top: 2.61905vw;
    font-size: 1.07143vw;
    cursor: pointer;
    overflow: hidden;
}
.play-btn:hover{
    /*border: solid 1px transparent; */
}
.play-btn:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: #000;
    content: "";
    transition: all 277ms cubic-bezier(0.16, 0.01, 0.77, 1);
    z-index: 1;
}
.play-btn:hover:before{ 
    transform: translateX(0%);
}
.play-btn span{
    display: block;
    width: 100%;height: 100%;
    background-image: url(../images/play_btn_arrow_black.svg);
    background-position: 51% 51%;
    background-repeat: no-repeat;
    background-size: 65%; 
    position: relative;
    z-index: 99;
}
.play-btn:hover span{
    background-image: url(../images/play_btn_arrow_white.svg);
} 
.play-btn.play-btn-circular,
.play-btn.play-btn-circular:before{
    border-radius: 50%;
}
.play-btn.play-btn-circular 
.play-btn.play-btn-square{

}
.play-btn.play-btn-circular{
    border:1px solid transparent;
}
.play-btn.play-btn-circular.play-btn-white,
.play-btn.play-btn-circular.play-btn-black{
    border:1px solid transparent;
}
.play-btn.play-btn-circular span{
    width: calc( 100% - 2px);
    height: calc( 100% - 2px);
    border-radius: 50%;
}
.play-btn.play-btn-white{
    border: solid 1px #fff; 
}
.play-btn.play-btn-white span{ 
    background-image: url(/global_common/common/images/play_btn_arrow_white.svg);
    border: solid 1px #fff; 
}
.play-btn.play-btn-white:hover span{
    background-image: url(/global_common/common/images/play_btn_arrow_black.svg);
} 
.play-btn.play-btn-white:before {
    background: #fff;
}
.play-btn.play-btn-black{
    border: solid 1px #000; 
}
.play-btn.play-btn-black span{ 
    background-image: url(/global_common/common/images/play_btn_arrow_black.svg);
    border: solid 1px #000; 
}
.play-btn.play-btn-black:hover span{
    background-image: url(/global_common/common/images/play_btn_arrow_white.svg);
} 
.play-btn.play-btn-black:before {
    background: #000;
}



.videos-container{
	margin-bottom: 25px;
}
.videos-container .title{
	margin-bottom: 15px;
}
.videos-container .videos{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.videos-container .videos .video{
	width: 49%; margin-bottom: 30px;
	position: relative;
}
.videos-container .videos .video .play-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 5%;
    right: 2%;
}
@media screen and (max-width:640px) {
	.videos-container .videos .video{
		width: 100%; margin-bottom: 15px;
		position: relative;
	}
}
