main {
  margin-bottom: 400px;
}

.carousel .carousel-control-prev {
  background: black;
  background: -moz-linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.carousel .carousel-control-next {
  background: black;
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

#principal-message {
  min-height: 400px;
}
#principal-message img {
  transition: all 0.6s ease-in-out;
}

.shadows {
  transform: translateY(-5px);
  box-shadow: 0px 0px 100px -15px rgba(0, 0, 0, 0.685);
}

#aboutUs {
  background-image: url("../img/banner/banner-2.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 90vh;
  position: relative;
}
#aboutUs .container {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
#aboutUs .animateAboutUs {
  animation: aboutUsSmoothReveal 1s ease-in-out forwards;
}

@keyframes aboutUsSmoothReveal {
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.topper-carousel .item {
  padding-bottom: 20px;
}

.topper {
  background-color: white;
  padding: 10px;
  padding-bottom: 30px;
}

.topper:after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 70px;
  background-image: url(../img/badge.png);
  background-size: contain;
  right: 37%;
  bottom: 0px;
}

.owl-nav > button {
  background: #006eff !important;
  width: 120px;
}
.owl-nav > button i {
  color: white !important;
}

.latestNews .item {
  border-radius: 5px;
  color: white;
  padding: 20px;
}
.latestNews .item p {
  font-size: 12px;
}
