/* * **************************
 * Author: Gate Technology
 * Product Name: Gate Technology website
 * Poduct Version: 1.0
 * Web Site: https://www.gatetechnology.net
 * Contact: infos@gatetechnology.net
 * Support: support@gatetechnology.net
 * Kinshasa - DRC
 * Tell their always that, the strength of a man is in his knowledge of humanity...
 * Copyright (C) 2023 Gate Technology
 * *************************** */

.background-video {
    position: relative;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    z-index: -1;
}

.background-video video {
    width: 100vw;
    height: auto;
    margin: auto;
    display: block;
    object-fit: cover;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .background-video video {
        width: 100vw;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .background-video video {
        height: 100vh;
        width: auto;
        margin-left: 50vw;
        transform: translate(-50%);
    }
}