.gallery-container {
    display: block;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 100px 2vw;
    box-sizing: border-box;
}

.gallery-container .box {
    width: 40vw;
    margin: 50px 0px;
    padding: 50px;
    /* border: 5px solid rgb(0, 98, 255); */
    border-radius: 42px;
    box-sizing: border-box;
    position: relative;
}

.gallery-container .box h1 {
    font-size: 34px;
    /* text-align: center; */
    /* margin: 20px 0px; */
    padding: 20px 0px;
    padding-left: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #080808;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-transition: 0.3s -webkit-box-shadow ease-in-out;
    transition: 0.3s -webkit-box-shadow ease-in-out;
    transition: 0.3s box-shadow ease-in-out;
    transition: 0.3s box-shadow ease-in-out, 0.3s -webkit-box-shadow ease-in-out;
    -webkit-transition: 0.3s position ease-in-out;
    transition: 0.3s position ease-in-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 5px 5px 5px rgb(0 0 0 / 30%);
    box-shadow: 5px 5px 5px rgb(0 0 0 / 30%)
}

.gallery-container .box>h1>span {
    font-size: 18px;
}

.gallery-container .box video {
    width: 100%;
    height: 100%;
}

.gallery-container .box>div {
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    -webkit-box-shadow: 5px 5px 5px rgb(0 0 0 / 30%);
    box-shadow: 5px 5px 5px rgb(0 0 0 / 30%)
}

.vjs-poster {
    background-size: cover;
    height: 100%;
    background-repeat: no-repeat;
}

.hover-video {
    width: 40vw !important;
    height: auto !important;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 42px;
    position: absolute;
    top: -1px;
    left: 0px;
    visibility: hidden;
    z-index: 50;
}

.vjs-big-play-button {
    z-index: 99;
}