/* MAIN PAGE CAROUSAL */

header{
    z-index: 999;
    position: absolute;
    padding: 15px 200px;
    left: 0;
    width: 100%;
    transition: 0.5s ease;
}

.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
}

.home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}

.home .media-icons a:hover{
    transform: scale(1.3);
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1040px){
    header{
        z-index: 999;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 20px;
        transition: 0.5s ease;
    }

    .home .media-icons{
        right: 15px;
    }
    
}


/* MEDIA QUERY */
@media (max-width:576px) {
    .media-icons{
        display: none !important; 
    }
}

@media (min-width:577px) and (max-width:767px) {
    .media-icons{
        display: none !important; 
    }
}


@media (min-width:768px) and (max-width:991px) {
    .media-icons{
        display: none !important; 
    }
}


@media (min-width:992px) and (max-width:1199px) {}


@media (min-width:1200px) and (max-width:1399px) {}


@media (min-width:1400px) {}