* {
    margin: 0;
    padding: 0;
}


.wrapper {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.logo {
    position: absolute;
    top: calc(50% - 196.5px);
    left: calc(50% - 300px);
    max-width: 1000px;
     transform: scale(0.8); 
}

.logo h1 {
    display: block;
    margin-top: 50px;
    text-align: center;
    font-size: 2rem;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    letter-spacing: 10px;
}



.progressBar {
    position: relative;
    display: block;
    width: 80%;
    height: 15px;
    background-color: #fff;
    top: 8vh;
    margin: 0 auto;
}

#setProgress {
    width: 0%;
    height: 15px;
    background-color: #FF1654;
}


/* .progressBar:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 15px;
    background: #ff1654;
    display: block;
    content: '';
    transition: width 0.5s ease-in-out;
} */

/* .progressBar:hover:after {
    width: 70%;
} */


.start {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    font-family: Lato;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 20px 0;
}

.end {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    font-family: Lato;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 20px 0;
    float: right;
}

video.header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -3;
}

@media(max-width:800px) {
    .header {
        height: 30vh;
    }
}

.media {
    position: absolute;
    width: 100%;
    bottom: 18%;
    text-align: center;
    left: 8%;
}

.media a {
    display: block;
    text-decoration: none;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.fb:hover {
    transform: scale(1.2);
    background-color: #4267B2;

}

.instagram:hover {
    transform: scale(1.2);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
}

.linkedin:hover {
    transform: scale(1.2);
    background-color: #0077B5;
}

.wrapper {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.mainVideo {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}



.fb {
    position: absolute;
    display: inline-block;
    color: white;
    font-size: 2rem;
    border: 2px solid white;
    border-radius: 50%;
    left: 35%;
    width: 50px;
    height: 50px;
    text-align: center;
    transition: .2s;

}

.fb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.instagram {
    position: absolute;
    display: inline-block;
    color: white;
    font-size: 2rem;
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    left: 40%;
    text-align: center;
    transition: .2s;

}

.instagram i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.linkedin {
    position: absolute;
    display: inline-block;
    color: white;
    font-size: 2rem;
    border: 2px solid white;
    border-radius: 50%;
    left: 45%;
    width: 50px;
    height: 50px;
    text-align: center;
    transition: .2s;

}

.linkedin i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media (max-width: 800px) {
    .logo {
        transform: scale(.4);
    }

    .start,
    .end {
        font-size: 30px;
    }

    .fb {
        left: 0%;
    }

    .instagram {
        left: 36%;
    }

    .linkedin {
        left: 70%;
    }
}