
* {
    margin: 0;
    padding: 0;
}
 
body {
        font-family: 'Oswald';
    background-color: black;
}
video {
width: 100%;
height: calc(100% - 141px);
position: absolute;
top: 50px;
left:0%;
object-fit: contain;
cursor: pointer;
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    border-top:1px solid #666;
    height: 40px;
    color: white;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
        line-height: 40px;

    /*! background-color: black; */
}
footer a {
    color: #666;
    text-decoration: none;
    font-size: 20px;
    transition: all;
    text-align: center;

}
footer a#btn_email, footer a#btn_tel {
    font-size: 14px;
    
    font-weight: 200;
    line-height: 16px;
    text-transform: uppercase;
}

footer p:nth-of-type(1) {
    color: #ccc;
    font-size: 0.9em;
}
footer p:nth-of-type(2) {
    color: #B6B6B6;
  font-weight: 100;
    text-transform: uppercase;
    font-size: 0.8em;
    animation-name: clignotte;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}


footer a:hover {
    color: #fff;
}


button#sound_btn {
position: fixed; 
transition:all 0.3s;
opacity: 0.6;
top: 10px;
right: 10px;
z-index: 2;
background-image: url(../img/sound-on.svg);
text-indent: -1000px;
overflow: hidden;
width: 25px;
height: 25px;
background-color: transparent;
border:none;
filter:invert(1);
cursor:pointer;
}
button#sound_btn:hover {
opacity: 1;
transform: scale(1.1);
}
button#sound_btn.muted {
background-image: url(../img/sound-off.svg);
}

@media screen and (max-width:715px) {
    
    video {

	top: 10px;
}
    
    
    footer {
        height: auto;
    }
    footer p:nth-of-type(1) {
            width: 65%;
    text-align: center;
    line-height: 30px;
    border-bottom: 1px solid #666; 
    }
footer p:nth-of-type(2) {
    width: 35%;
    text-align: center;
    line-height: 30px;
    border-bottom: 1px solid #666;

    }
    footer a {
        text-align: center;
        border-right:1px solid #666;
        width: 50%;
        box-sizing: border-box;
        line-height: 30px;
    }
    footer a#btn_tel, footer a#btn_email {
        width: 100%;
        border-top: 1px solid #666;
        line-height: 30px;
        height: 30px;
    }
}
}
@media screen and (max-width:415px) {
        footer p:nth-of-type(1) {
            width: 100%}
            footer p:nth-of-type(2) {
            width: 100%}

}

@keyframes clignotte { 
    0% {color: #666;}
    50% {color: #aaa;}
    100% {color: #666;}
}