/* Custom CSS */

#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#bgvid {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

#hero .container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
}

#hero h2 {
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.card {
    border: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.text-justify {
    text-align: justify;
}