/* VIDEO SECTION */
section#video-section {
    background: #F4F2EF;
    padding: 0 0 140px;
}
section#video-section .md-video-holder {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #F4F2EF;
    aspect-ratio: 16/9;
}
section#video-section img.md-video-poster {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}
section#video-section .md-video-player {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    aspect-ratio: 16/9;
}
section#video-section .md-video-holder.md-video-started .md-video-player {
    display: block;
}
section#video-section button.md-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}
section#video-section button.md-video-play-button img {
    display: block;
    width: 100px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
    transition: filter 0.3s ease;
}
section#video-section button.md-video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}
section#video-section button.md-video-play-button:hover img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
}
section#video-section .md-video-holder.md-video-playing button.md-video-play-button {
    display: none;
}
@media only screen and (max-width:1500px){
	section#video-section {
		padding: 0 0 120px;
	}
}
@media only screen and (max-width:1200px){
	section#video-section {
		padding: 0 0 100px;
	}
	section#video-section button.md-video-play-button img {
		width: 90px;
	}
}
@media only screen and (max-width:992px){
	section#video-section {
		padding: 0 0 100px;
	}
	section#video-section button.md-video-play-button img {
		width: 75px;
	}
}
@media only screen and (max-width:768px){
	section#video-section {
		padding: 0 0 60px;
	}
	section#video-section button.md-video-play-button img {
		width: 60px;
	}
}
