
.banner
{     
   
 overflow:hidden;
 width:100%;    
 overflow-x:hidden;

}
.slider
{
    position:relative;
  width:500%;
  animation:animate 40s linear infinite;
    top: 0px;
    left: 0px;
    
}
.slide {
  
  float: left;
  width: 20%;
  height: 100vh;
  background-attachment: fixed;
  background:top fixed;
  background-size: cover;
  background-repeat: no-repeat;
}


@keyframes animate {
    0% {
        left: 0%;
    }

    10% {
        left: 0%;
    }

    12% {
        left: -100%;
    }

    22% {
        left: -100%;
    }

    24% {
        left: -200%;
    }

    34% {
        left: -200%;
    }

    36% {
        left: -300%;
    }

    46% {
        left: -300%;
    }

    48% {
        left: -400%;
    }

    58% {
        left: -400%;
    }

    60% {
        left: -300%;
    }

    70% {
        left: -300%;
    }

    72% {
        left: -200%;
    }

    82% {
        left: -200%;
    }

    84% {
        left: -100%;
    }

    94% {
        left: -100%;
    }

    100% {
        left: 0%;
    }
}

/***********************************
************************************
#intro
************************************
***********************************/
.ContentContainer {
    background-color: black;
    opacity: 0.6;
    height: 300px;

}
.slide .S-Content {
  padding-top: 85vh;
  height: auto;
  /*background-color:black;*/
}

.S-Content h2 {
    margin:0;
    padding:0;
    text-align:center;
  color: #fff;

  font-size: 48px;
  font-weight: 700;
  z-index:1;
}

@media (max-width: 768px) {
  .S-Content h2 {
    font-size: 28px;
  }
}

.S-Content p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  .S-Content p {
    width: 60%;
  }
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.section-padding {
  padding: 60px 0px;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Add animation to "page content" */

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }
  to {
    bottom: 0px;
    opacity: 1
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }
  to {
    bottom: 0;
    opacity: 1
  }
}

  @media screen and (max-width: 500px) {

    .slide .S-Content {
      padding-top: 80vh;
      height: auto;
     
    }

    
  }
