﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/
.video {
    /*position: relative;*/
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 100vh;
}

section video {
    /*position: absolute;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        height: auto;
        object-fit: cover;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*za prikaz na telefonu*/

/*section video {
        position: absolute;
        margin: 2.5%;
        /*top: 0;
        left: 0;*/
/* width: 450px;
        height: 350px;
        object-fit: cover;
    }*/
section .navigation {
    position: absolute;
    margin-left: 40%;
    margin-top: 2%;
    margin-right: auto;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

    section .navigation li {
        list-style: none;
        cursor: pointer;
        margin: 0 10px;
        border-radius: 4px;
        background: #fff;
        padding: 3px 3px 0;
        opacity: 0.7;
        transition: 0.5s;
    }

        section .navigation li:hover {
            opacity: 1;
        }

        section .navigation li img {
            width: 120px;
            transition: 0.5s;
        }

            section .navigation li img:hover {
                width: 200px;
            }

@media only screen and (max-width: 768px) {

    .video {
        position: relative;
        width: 100%;
    }

    section video {
        /*position: absolute;
        margin: 3%;
        width: 450px;
        height: 250px;
        object-fit: cover;*/
        position: absolute;
        /*top: 0;
        left: 0;*/
        margin: 0;
        width: 100%;
        height: 60%;
        object-fit: cover;
    }

    section .navigation li img {
        width: 80px;
        transition: 0.5s;
    }

        section .navigation li img:hover {
            width: 150px;
        }
}
