/* CSS reset */
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  background-color: #D4D4D4;
}
nav {
  width: 100%;
  background: #0a121c;
  padding: 20px 0;
  opacity: .8;
  position: fixed;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  nav
  img{
    position: absolute;
    margin-left: 0;
  }
  nav{
    width: 90px;
    left: 20px;
    height: 90px;
    border-radius: 100%;
    top: 5px;
  }
  nav ul li {
    visibility: hidden;
  }
}
nav
img{
  width: 50px;
  border-radius: 20%;
  margin-left: 20px;
  position: absolute;
}
nav ul {
  list-style: none;
  text-align: center;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 10px;

  transition: .2s ease-in-out;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #333;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}
.autoplay img{
  width: 100%;
  filter: blur(1.5px);
}
 .text{
  color: #fff;
  text-align: justify;
  position: absolute;
  bottom: 10%;
  margin-left:  100px;
  z-index: 3;
}
@media screen and (max-width: 600px){

}
.color{
  background-color: rgba(0, 0, 0, 0.68);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.col {
  float: left;
  padding: 10px;
  align-items: center;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}


.container{
  padding: 10px;
  width: 80%;
  margin: auto;
}
.footer .img-footer img{
  width: 100px;
  margin: 10px;
}
