.video-object-section {
    margin-top: 4.375rem;
}

.video-object-section h2 {
    margin-bottom: 2.5rem;
}

.container-video-object {
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
}

.row-video-object {
    width: 33%;
	position:relative;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.438rem;
    height: 5.438rem;
}


.row-video-object img {
    width: 100%;
    height: 100%;
    max-height: 50rem;
    object-fit: cover;
}

.play-button img {
    object-fit: contain;
    cursor: pointer;
	transition: all 0.4s;
}

.play-button img:hover {
    scale: .9;
}

.sub-text-slider.video-object-sub {
    padding-left: 0;
}

@media (max-width:766px) {
	
.container-video-object {
    flex-direction: column;
}
	
	.row-video-object {
    width: 100%;
}
	
.video-object-section h2 {
    margin-bottom: 1.875rem;
}	
	
	.play-button {
    width: 4rem;
    height: 4rem;
}
}

