body {

    min-height: 100vh;

    background: #202020;

    padding: 1em;

    border: solid #111 25px;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(50,50,50,1);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(50,50,50,1);
    box-shadow: inset 0px 0px 0px 1px rgba(50,50,50,1);

    overflow-x: hidden;

}

@media ( min-width: 768px ) {

    body {
        
        padding: 3em;

    }

}

.fixed-right {
    position: fixed;
    background: #fff;
    opacity: 0.5;
    right: 0;
    transition: all .2s;
    border-radius: 7px 0 0 7px;
    padding: .5em;
}

.fixed-right:hover {
    position: fixed;
    background: #fff;
    opacity: 1;
    right: 0;
    transition: all .2s;
}

.fixed-right.bottom1 {
    bottom: 7.7em;
}
.fixed-right.bottom1:hover {
    bottom: 8em;
}

.fixed-right.bottom2 {
    bottom: 11.7em;
}
.fixed-right.bottom2:hover {
    bottom: 12em;
}

.fixed-right.bottom3 {
    bottom: 15.7em;
}
.fixed-right.bottom3:hover {
    bottom: 16em;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

.hidden {
    display: none;
}

.logo {

    max-width: 312px;
    width: 100%;
    height: auto;

}

.navbar-nav {

    font-size: 1.25em;

}

.navbar-nav a {

    color: #ffffff !important;
    transition: all .2s;

}

.navbar-nav a:hover {

    color: #aaa !important;
    transition: all .2s;

}

hr.line {

    border-color: #333333;

}

.maxheight150 {
    max-height: 150px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}

footer a:hover {
    color: #ccc;
    text-decoration: none;
    transition: all .2s;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 0px;
    padding: 0;
    z-index: 100;
    background: #fff;
    border-radius: 4px 0 0 4px;
    padding: 1em;
    color: #111;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.back-to-top:hover {
    color: #111;
}

.video {
    background: url('../img/bg_video.png') top center no-repeat;
    background-size: cover;
}

.video iframe {
    height: 40rem;
    border: #fff solid 1px !important;
    padding: 1em;
}

@media (min-width: 401px) {
    
}

@media (max-width: 400px) {

    .video {
        border: #333333 solid 1px !important;
        padding: 1em;
        max-height: 20rem;
    }
    
}

.line-border {
    border: #333333 solid 1px !important;
    padding: 1em;
}

.copyright {
    line-height: 2em;
}

.copyright a {
    color: #fff;
    font-weight: bold;
}

.copyright a {
    text-decoration: none;
}

.nav-icon { 
    width: 100%;
    height: auto;
    max-width: 100px;
}

.navbar .nav-item {
    line-height: 2.5em;
}

.navbar .nav-link {
    color: #aaa !important;
}

.navbar .nav-link:hover {
    color: #fff !important;
}

.grayscale img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale( 100% ); /* Chrome 19+ & Safari 6+ */
    transition: all .3s;
  }
  
.grayscale:hover img {
    filter: none;
    -webkit-filter: grayscale( 0% );
    transition: all .3s;
}

.img-responsive {

    width: 100%;
    height: auto;

}

h2 span {
    color: #333 !important;
    font-weight: 700;
    font-size: 2em;
}

/* -----
SVG Icons - svgicons.sparkk.fr
----- */

.svg-icon {
    width: 2em;
    height: 2em;
  }
  
  .svg-icon path,
  .svg-icon polygon,
  .svg-icon rect {
    fill: #111;
  }
  
  .svg-icon circle {
    stroke: #111;
    stroke-width: 1;
  }