/* The animation code */
@keyframes fadein {
    from {opacity:0;}
    to {opacity:1;}

}


/* The element to apply the animation to */
#rg {
    width: 100%;
    padding: 50px 120px 10px 120px;
    height: aUto;
    animation-name: fadein;
    animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	transition: .1s ease;	
-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
    animation-fill-mode: forwards;
}

.nav {
    height: 100%;
    background-color:#147;
    padding:0;
    margin:0;
    opacity:70%;
    color:#147;
}

 .container {
      padding: 0;
    margin-top:0px;
    background-color:#147;
    width: 100%;
  }

.active a {
    background-color: red !important;
}
     
 h2 {
      font: 600 24px Lato, sans-serif;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0px;
      font-family: Montserrat, sans-serif;
  }

h3 {
      font: 600 20px Lato, sans-serif;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0px;
      font-family: Montserrat, sans-serif;
  }

  h4 {
       font: 400 18px Lato, sans-serif;
      line-height: 1.375em;
      color: #fff;
      text-size: 12px;
  }  
  h5 {
       font: 400 14px Lato, sans-serif;
      line-height: 1.375em;
      color: #fff;
      text-size: 12px;
  }  
 .container-fluid {
    width: 100%;
      padding:0 0px 0 0;
      margin-top: 0px;
    background-color:grey;
  }
.logo {
      padding:10;
      width: 70px;
      height: 70px;
  }
 .slideanim {visibility:hidden;}
  .slide {
      animation-name: slide;
      -webkit-animation-name: slide;
      animation-duration: 1.5s;
      -webkit-animation-duration: 1.5s;
      visibility: visible;
  }
  @keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
