.show_video {
    height: 100%;
    margin: 30px auto 10px;;
    padding: 0;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% ;
    background-attachment: fixed;
}
.show_video .container {
    display: flex;
    z-index: 9;
    top: 0;
    height: 100%;
    align-items: center;
    left: 0;
    right: 0;
    padding:80px 0;
}
.show_video .showdescription {
    color: #fff;
    width: 50%;
}
.show_video .showdescription h2 {
    position: relative;
    margin: 0 0 40px;
    padding: 0 0 10px;
}
.show_video .showdescription h2:before {
    padding: 0;
    margin: 0px;
    position: absolute;
    content: "";
    width: 100px;
    display: block;
    height: 2px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}
.show_video .area-video {
    width: 50%;
    text-align: center;
}
.show_video .area-video img {
    width: auto;
    background-color: rgba(37,54,118,1);
    border-radius: 50%;
    padding:5px;
    transition: all 0.3s ease 0s;
    box-shadow: 0px 0px 10px 1px #fff;
    -moz-box-shadow: 0px 0px 10px 2px #fff;
    -webkit-box-shadow: 0px 0px 10px 2px #fff;
    -khtml-box-shadow: 0px 0px 10px 2px #fff;
}
.show_video .area-video img:hover {
    background-color: rgba(37,54,118,1);
}
@media (max-width: 767px) {
	.show_video {
		background-size: cover;
	}
    .show_video .container {
        flex-direction: column;
    }

    .show_video .showdescription {
        color: #fff;
        width: 100%;
        padding: 0 40px 40px;
    }
}