.hero {
    /* background-image: url("../images/hero_small.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -10;
}

video#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: -100;    
    background-size: cover;
    background-position: center;
}

.main-header {
    background: rgba(0, 0, 0, 0);
    border-bottom: none;
}

.main-header p {
    color: white;
}

.nav-big a:link,
.nav-big a:visited {
    color: white;
}

.sub-menu {
    background: rgba(0, 0, 0, 0);

    box-shadow: none;
}

.sub-menu li {
    color: white !important;
}

.logo {
    visibility: hidden;
}

.current {
    color: #fff3bf !important;
}

.info {
    width: 600px;
    text-align: center;
}

.info a:link {
    text-decoration: none;
}

.name {
    font-family: "Merriweather", serif;
    font-size: 62px;
    color: white;
    transition: 0.2s;
    line-height: 1.1;
    letter-spacing: -1px;
}

.name:hover {
    font-size: 64px;
    text-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    /* color: #fff9db; */
}

.icons {
    position: absolute;
    bottom: 128px;
    width: 120px;
    font-size: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.icons a {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 800px) {
    .nav-small {
        display: inline-block;
        color: white;
    }

    .active {
        color: #343a40;
    }

    .logo {
        visibility: hidden;
        width: 50%;
    }

    .logo::after {
        content: "Bipasana";
        visibility: hidden;
        position: absolute;
        top: 10px;
        left: 20px;
    }

    .name {
        margin-bottom: 74px;
    }

    .nav-big {
        display: none;
    }

    video#bgVideo {
        right: -80%;
    }
}
