
h1 {  
    color: #fff !important; 
    /* background-blend-mode: multiply; */
    mix-blend-mode: difference;
    margin-top: 12rem;
}
.revealed-section h1 { 
    margin-top: 6vw 
};
.h6 { 
    margin-bottom: 10vw !important 
}
.about-section {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    padding-top: 10vw;
    z-index: -1;
    margin-top: 10vw;
}
.about-section h2 { 
    line-height: 2.2rem; 
    text-align: left !important;
    font-size: 1.8vw;
}
.parallax-container {
    position: relative;
    padding-top: 3rem;
}

.parallax {
    /* The image used */
    /* background-image: url('/assets/images/holdings-hero.png'); */
    /* background-image:  url('/assets/images/Hero.mp4'); */
    /* Create the parallax scrolling effect */
    min-height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
    
    /* Ensures the parallax effect works */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

video {
    /* object-fit: cover; */
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: -2%;
    left: 25%;
    z-index: -999;
  }


.content {
    position: relative;
    height: 100%;
    align-items: center;
    text-align: center;
    margin-top: 12rem;   
}

.business-section-inner { 
    width: 80%;
    padding-top: 5%;
    padding-left: 50px;
}
.business-section-inner h6 {
    font-size: 1vw;
}
.business-section-inner-row
{
    border-top: 1px black solid; 
}
.business-section-row {
    background-image: linear-gradient(to right, #fff 40%,  #F3F1EF 60%);
    
    background-size: 300% 100%;
    transition: background-position 1s;
    background-position: 0;
    border: none;
}
.business-section-row:hover {
    background-position: 100%;
}
.team-section h6 { width: 50%;}


.business-section-row:hover::before {
    left: 0;
}

.scroll-section h6 {
    text-align: center;
    margin: 3rem 0;
}


/* Mobile  */
@media (max-width: 900px) {
    .parallax {
        background-size: 100%;
        background-position: top 174px center;
        /* top: 140px; */
        /* position: relative; */
    }
    .parallax-container {
        padding-top: 0;
    }
    .content h1 {
        white-space: normal !important;
        font-size: 20vw;
        line-height: 0.8;
    }
    .revealed-section h6 {
        margin-top: 30px;
        /* font-size: 4vw; */
    }
    .revealed-section h1 {
        margin-top: 15vw;
    }
    .about-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 35vw;
    }
    .about-section h2 {
        line-height: 1.4rem;
        text-align: left !important;
        font-size: 5.6vw;
    }
    .business-section-inner {
        width: 100%;
        padding-top: 5%;
        padding-left: 0px;
    }
    .business-section-inner h6 {
        font-size: 4.2vw;
    }
    .team-section h6 {
        width: 100%;
    }
    footer > div {
        flex-direction: column;
    }
    .scroll-section h6 {
        text-align: center;
        margin: 3rem 0;
    }
    /* video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: relative;
        top: 0;
        left: 0;
        z-index: -999;
      } */
    body {
        background: #fff; /* Base background */
    }
    
    .video-container {
        position: relative;
        width: 100%;
        height: 50vh; /* Full viewport height */
        overflow: hidden;
    }
    
    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        top: 0;
        left: 0;
        z-index: 1; /* Ensure the video stays above the pseudo-element */
    }
    
    .video-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2; /* Ensure it stays above the video */
        mix-blend-mode: difference; /* Header dynamically interacts with video */
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent layer for contrast */
        pointer-events: none; /* Allow interactions with the video */
    }

    .video-container h1 {
        color: #fff !important;
        pointer-events: none; /* Prevent text from interfering with interactions */
        font-size: 20vw;
        line-height: 0.8;
        margin-top: 1rem;
    }
    .content {
        margin-top: 1rem;
    }

    
 }

/*iPad mini portrait  */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {

    .about-section h2 {
        line-height: 5vw;
    }
    .business-section-inner {
        padding-top: 0;
    }
    .business-section-inner h6, .business-section-inner p {
        font-size: 2.5vw;
    }
    footer > div {
        /* flex-direction: row; */
    }
    
}

/* iPad Pro Portrait */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {}

/* XL Displays */
@media only screen and (min-width: 2560px) {
    .about-section h2 {
        line-height: 1.75vw;
    }
    .business-section-inner p {
        font-size: 1.2vw;
    }

    .team-member-box img {
        width: 450px;
    }
    .team-member-box p {
        width: 440px;
    }
}