* {
  box-sizing: border-box;
}
#slide {
  width: 100%;
}

.header-logo {
  width: 130px;
  height: 130px;
}
.mySlides {
  position: relative;
  text-align: center;
  color: white;
}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-image {
  width: 100%;
  height: 550px;
}

.slideshow-container {
  width: 100%;
  position: relative;
  /* margin: -10px; */
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #1b0238;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slider-menu > .active,
.dot:hover {
  background-color: #ea512e;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 4s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}
.features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  color: #6b6b84;
}
.ordered-list > .submenu {
  margin-bottom: 16px;
  /* position: relative; */
  padding-left: 14px;
  color: #6b6b84;
}
.features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 40px;
  background-color: #faf5f5;
  color: #f5890d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}
.history-image {
  float: left;
  width: 300px;
  margin: 10px;
}
.staff-image {
  height: 350px;
  width: 100%;
}
.application1Web {
  /* overflow: hidden; */
  display: block;
}
.application1Mobile {
  display: none;
}
.copyright-area-content > p > a:hover {
  color: white !important;
}
.pdf-frame {
  height: 600px;
}
.welcome-image-container {
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.owl-1 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}
.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
  border: 1px solid red;
  z-index: 92;
  position: absolute;
  top: 50%;
}
.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
  outline: none;
}
.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
  color: #fff;
}
.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}
.owl-1 .owl-nav .owl-next {
  border: 4px solid blue;
  right: 20px;
}
.owl-1 .owl-nav .owl-prev {
  left: 20px;
}

.owl-1 .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.owl-1 .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}
.owl-1 .owl-dots .owl-dot > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdeee9;
  /* background: rgba(255, 255, 255, 0.5); */
  margin: 4px;
}
.owl-1 .owl-dots .owl-dot.active > span {
  background: #ea512e;
}
.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
  outline: none;
}

.overlay-img {
  width: 150px;
  height: 150px;
}
.overlay-txt {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
#container {
  height: 350px;
  position: relative;
  overflow: hidden;
  margin-top: 25px;
}

.photobanner {
  display: flex;
  flex-direction: column;
  top: 0px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 100s linear infinite;
}
.photobanner:hover {
  animation-play-state: paused;
}

.photobanner img {
  margin: 0 0.5em;
}

@keyframes bannermove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0%, -80%);
  }
}

@media only screen and (max-width: 700px) {
  .header-logo {
    width: 70px;
    height: 70px;
  }
  .header-txt {
    font-size: 18px;
  }
  .img-fluid {
    height: 400px;
  }
  .overlay-txt {
    font-weight: normal;
    font-size: 14px;
  }
  .overlay-img {
    width: 70px;
    height: 70px;
  }
  .pdf-frame {
    height: 400px;
  }
  .history-image {
    float: none;
    width: initial;
    margin: initial;
  }
  .staff-image {
    height: initial;
  }
  .application1Web {
    display: none;
  }
  .application1Mobile {
    display: block;
    width: 200px;
    height: 200px;
  }
  .slider-image {
    width: 100%;
    /*height: 450px;*/
    height: 500px;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}
