.module-video {
    display:flex;
    flex-wrap: wrap;
    gap:3rem;
}

.module-video h1,
.module-video h2,
.module-video h3,
.module-video h4,
.module-video h5,
.module-video h6 {
    margin:0;
}

.module-video .intro-wrapper {
    padding:2rem;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    justify-content: center;
    text-align: center;
}

.module-video .intro-wrapper .copy {
    font-size:1.9rem;
    line-height: 3rem;
    color:var(--dark-gray);
}

.module-video .video-outer-wrapper {
    width:100%;
    height:auto;
}

.module-video .video-container {
    position: relative;
    width: 100%; /* Adjust as needed */
    overflow: hidden;
    aspect-ratio: 16/9; /* Maintains video aspect ratio */
    
}

.module-video .video-placeholder {
    width: 100%;
    cursor: pointer;
    display: block;
}

.module-video .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--dark-orange);
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    width:75px;
    height:75px;
    display:flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.module-video .video-container:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2); /* Increase size on hover */
}

.video-frame {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width:1200px) {
    .module-video {
        
    }

}