.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("omosshead.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    filter: blur(2px);
    
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 30%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 100px;
    font-family: "Oswald";
    z-index: 0;
    opacity: 90%;
    text-shadow: 0 0 10px black;
  }
  .maintext {
    text-align: left;
    top: 50%;
    left: 55%;
    position: absolute;
    font-size: 40px;
    color: white;
    font-family: "Oswald";
    text-shadow: 0 0 10px rgb(0, 0, 0);
  }
  .container {
  position: absolute;
  top: 29%;
  left: 2%;
}
.center{
 position: absolute;
 top: 20%;
 width: 100%;
 text-align: center;
 font-size: 100px;
}
.button {
 display: inline-block;
 border-radius: 80px;
 background-color: #474747cc;
 border: none;
 margin-bottom: 80px;
 text-align: center;
 font-size: 40px;
 font-family: "Oswald";
 width: 300px;
 height: 70px;
 transition: all 0.4s;
 cursor: pointer;
 box-shadow: 5px 5px 8px black;

}
.button  span {
 cursor: pointer;
 display: inline-block;
 position: relative;
 transition: 0.5s;
 color: #FFFFFF;
}
.button span:after {
 content: '\00bb';
 position: absolute;
 opacity: 0;
 top: 0;
 right: -20px;
 transition: 0.5s;
}
.button:hover span {
 padding-right: 25px;
}
.button:hover span:after {
 opacity: 1;
 right: 0;
}
.slider {
  width: 1000px;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300%; /* 3 images = 300% */
  animation: slide 9s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
}

/* Animation */
@keyframes slide {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(0%); }

  38%  { transform: translateX(-100%); }
  66%  { transform: translateX(-100%); }

  71%  { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

@media screen and (max-width: 750px) {
  .nav__hamburger {
    width: 1.875rem;
    height: 1.313rem;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.nav__hamburger__line{
    height: 0.188rem;
    width: 100%;
    background-color: #fff;
    border-radius: 0.625rem;
    transition: all ease-in-out 0.2s;
    z-index: 1;
}
.nav__hamburger {
        display: flex;
    }
    .nav__menu {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(20, 233, 56, 0);
        top: -36rem;
        width: 100%;
        transition: all ease-in-out 0.4s;
        padding-right: 2%;
        margin-left: 1%;
    }
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav__menu ul {
        flex-direction: column;
        padding-left: 40rem;
        align-items: center;
        width: 100%;
        padding: 20rem 0 0.2rem;
    }
    .nav__menu ul li {
        text-align: center;
        margin-left: 1rem;

    }
    .nav__menu {
        z-index: 0;
    }
    .nav__menu.active {
        top: 0;
    }
    .nav__menu li:hover { 
        background-color: #eb916400;
    }
    .nav__hamburger.active :nth-child(1) {
        transform: rotate(45deg) translate(0.45rem, 0.1875rem);
    }
    .nav__hamburger.active :nth-child(2) {
        opacity: 0;
    }
    .nav__hamburger.active :nth-child(3) {
        transform: rotate(-45deg) translate(0.45rem, -0.1875rem);
    }
 
 
    .container {
        background-color: rgba(192, 192, 192, 0.5);    
        display: grid;
        margin: 0 auto;
        margin-top: 1%;
        margin-bottom: 5;
        width: 50%;
        text-align: center;
        height: 100px;
        color: white;     
        background-color: grey;
        width: 50%;
        margin-top: 1%;
        padding-right: 8%;
        padding-bottom: 66%;
        margin-bottom: 5%;
       }
       .hero-image {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("omosshead.jpg");
        height: 15rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
      }
      .hero-text {
        text-align: center;
        position: absolute;
        font-size: 15px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        z-index: -2;
      }
}