﻿.HeroSection h1 {
    text-transform: uppercase;
}

.mw-300 {
    max-width:300px;
}

.stepicon {
    width: 50px;
    padding-bottom: 10px;
}

#howitworkscol h2 {
    padding-bottom: 10px;
}

.HeroSection {
    height: 400px;
    background-color: black;
    color: white;
    padding-top: 120px;   
    background-position: right center;
    background-size: cover;
}

.video-placeholder {
    position: relative; /* Make sure this is here */
    display: block; /* or 'inline-block', depending on layout */
    width: 350px;
    height: 197px;
    cursor: pointer;
    /* Additional styling as needed */
}

.btn-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Cover the entire width of the container */
    height: 100%; /* Cover the entire height of the container */
    border: none; /* Remove border */
    cursor: pointer;
}

.HeroSection > .container {
    position: relative; /* This ensures that the text (and other content) is positioned above the overlay */
    height: 100%;
    z-index: 2; /* Higher than the ::before pseudo-element */
}

@media only screen and (min-width: 768px) {
    .stepicon {
        width: 75px;
        padding-bottom: 0px;
    }

    #howitworkscol h2 {
        padding-bottom: 20px;
    }

    /* Desktop Overlay */
    .HeroSection::before {
        content: ""; /* Required for pseudo-elements */
        position: absolute;
        top: 0;
        right: 0;
        height: 400px;
        bottom: 0;
        left: 0;
        z-index: 1; /* Ensure it sits below the text content */
    }
}
           
