
.bgvideo {
    height: 70vh;
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bgvideo video {
    height: 70vh;
    width: 100%;
    height: 700px;

    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    position: relative;
    transform: translateX(-130%); 
    opacity: 0;
    animation: slideIn 1.5s ease-out forwards;
}
.effect {
    height: 70vh;
    width: 100%;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.317);
}

.bgimage {
    height: 70vh;
    width: 100%;
    height: 700px;   
    display: grid;
    grid-row: repeat(2, 1fr);
    overflow: hidden;
    position: relative;
}

.bgimage img {
    display: grid;
    object-position: 33.33% 0;
    height: 70vh;
    width: 100%;
    height: 700px;
    position:absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}


.img-text {
    color: rgb(255, 255, 255);
    z-index: 2;
    grid-row: 1/2;
    margin-top: 100px;
    margin-left: 80px;
    position: relative;
    transform: translateY(-100%); 
    opacity: 0;
    animation: slideIn1 2s ease-out forwards;
}
.img-text h1 {
    font-size: 100px;
    font-weight: bold;
}
.img-text p {
    font-size: 30px;
}




@media (max-width:720px){
    section>.bgvideo {
        height: 320px;
    }
    section>.bgvideo video {
        height: 320px;
    }
    section>.bgvideo>.effect {
        height: 320px;
    }
    .about-us {
        height: 1100px;
    }
    
}
@media (max-width:1000px) {
    .media-links{
        padding-bottom: 10px;
    }
    .bgvideo {
        height: 500px;
    }
    .bgvideo video {
        height: 500px;
    }
    .effect {
        height: 500px;
    }
    .footer-content {
        min-height: 0;
    }
}


