html {
    height: -webkit-fill-available;
    height: -moz-available;
    height: 100%;
}
body{
    height: 100%;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "helvetica", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.wrapper {
    min-height: 100vh;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: stretch;
    display: flex;
    align-items: center;
    height: 100%
}

.video-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    max-width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    top: 0;
    left: 0;
}

    .video-wrap video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        font: inherit;
        vertical-align: baseline;
    }

.show-more {
    cursor: pointer;
    position: absolute;
    bottom: 2px;
    width: 100%;
    z-index: 105;
    display: flex;
    justify-content: center;
    padding: 30px;
    color: #000000;
    text-decoration: none;
}

a:hover{
    color: none;
}

#volume {
    cursor: pointer;
    position: absolute;
    top: 2px;
    width: 10%;
    z-index: 100;
    display: flex;
    padding: 30px;
}

#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}

#back-to-top a {
    display: block;
    padding: 10px;
    cursor: pointer;
    color: #e1ff01 !important;
}

.contact a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .logo {
        max-width: none !important;
        padding-top: 20px;
    }

    .content {
        padding: 100px 48px !important;
    }

    .contact {
        padding-top: 100px !important;
    }
}

.container {
    align-content: stretch;
    align-items: stretch;
    min-height: auto;
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 545px) {
    .container {
        padding: 0 1.1rem;
    }
}
