.NewsSlider-container {
  position: relative;
  width: 100%;
  margin: auto;
}

.NewsSlider-container .NewsSlide {
  display: none; 
}

.NewsSlider-container .NewsSlide .NewsInfo {
  position: relative;
}


.NewsSlider-container  .Newsdot {
  height: 12px;
  width: 12px;
  margin: 3px;
  background: rgba(36,20,20,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.NewsSlider-container  .Newsdot.Newsactive {
  background: #2696E9;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.NewsSlider-container .Newsfade{
  -webkit-animation-name: DLSfade;
  -webkit-animation-duration: 1.5s;
  animation-name: DLSfade;
  animation-duration: 1.5s; 
}


/* DLS slide */
.myDLSSlides {display: none;}
.myDLSSlides img {
   position: relative;
   vertical-align: middle;
}

/* Slideshow container */
.DLSslideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.DLStext {
  /* color: #000;
  font-size: 15px;
  padding: 8px 8px;
  position: relative;
  bottom: 0px; */
  width: 100%;
  text-align: left;
}

/* Number text (1/3 etc) */
.numbertext {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 5px;
}

/* The dots/bullets/indicators */
.DLSdot {
  height: 12px;
  width: 12px;
  margin: 3px;
  background: rgba(36, 20, 20, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease; 
  cursor: pointer;
}

.DLSactive {
  background: #2696E9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}



/* Fading animation */
.DLSfade {
  -webkit-animation-name: DLSfade;
  -webkit-animation-duration: 1.5s;
  animation-name: DLSfade;
  animation-duration: 1.5s;
}

@-webkit-keyframes DLSfade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes DLSfade {
  from {opacity: .4} 
  to {opacity: 1}
}
      

/* scroll text */
.scroll-container{
  height: 200px;
  overflow: hidden;
  margin-top: 10px;
}
.scroll-text {
  padding-top: 100%;
  -moz-animation: marquee 25s linear infinite;
  -webkit-animation: marquee 25s linear infinite;
  animation: marquee 25s linear infinite;
}
@-moz-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes marquee {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -moz-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
}


