.carousel-inner .zoom {animation: scale 20s linear infinite;}
  
@keyframes scale {
  50% {
    -webkit-transform:scale(1.2);
    -moz-transform:scale(1.2);
    -ms-transform:scale(1.2);
    -o-transform:scale(1.2);
    transform:scale(1.2);
  }
}

.scroll a span {
  position: absolute; 
  bottom: 5%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  -ms-transform: translate(-50%, -50%); 
  width: 30px; 
  height: 50px; 
  border: 2px solid #fff; 
  border-radius: 50px; 
  box-sizing: border-box; 
  z-index: 9;
}

.scroll a span::before {
  position: absolute; 
  top: 10px; 
  left: 50%; 
  content: ''; 
  width: 6px; 
  height: 6px; 
  margin-left: -3px; 
  background-color: #00aa66; 
  border-radius: 100%; 
  -webkit-animation: sdb10 2s infinite; 
  animation: sdb10 2s infinite; 
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.carousel-caption {width: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: left;}
.carousel-caption h1 {font-size: 60px; font-weight: 600;}
.carousel-caption p {font-size: 18px; font-weight: 400; color: #fff;}

/* about */
.about h4 {
  font-size: 32px;
  color: #D2D2D2;
  font-weight: 300;
}
.about .ab {
 width: 90%;
}


/* committee */
.committee {
  background: url(../images/team-bg.jpg) no-repeat top center;
  background-size: cover;
}

.committee .box p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.committee .box img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.committee .box:hover img {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
  box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
}

/* categories */
.categories .item {
  position: relative;
  margin-top: 25px;
}
.categories .item figure {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
}

.categories .item:hover figure {
  background: #2E3192;
}

.categories .item figure.effect-ruby img {
  opacity: .6;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.categories .item:hover figure.effect-ruby img {
  opacity: 0.2;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.categories .text {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 15px 30px;
  -webkit-transition: 1s;
  transition: 1s;
}

.categories .text h4 {
  opacity: 1;   
  -webkit-transition: 1s;
  transition: 1s;
  font-size: 22px;
}

.categories .item:hover figure.effect-ruby .text {
  opacity: 1;
}

.categories p {
  color: #fff;
  display: none;
  -webkit-transition: 1s;
  transition: 1s;
}

.categories .item .btn {
  border-radius: 0;
  display: none;
  -webkit-transition: 1s;
  transition: 1s;
}

.categories .btn {
  width: auto;
  margin: auto;
}

.categories .item:hover p {
  display: block;  
  -webkit-transition: 1s;
  transition: 1s;}
.categories .item:hover .btn {
  display: inline-block;  
  -webkit-transition: 1s;
  transition: 1s;
}


/* news */
.news .box img {
  border-radius: 10px;
  margin-bottom: 20px;
  width: 100%;
}
.news .box span {
  color: #515C58;
  font-size: 12px;
}
.news .box h4 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.news .box a.bg {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 50px;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
}










@media only screen and (min-width : 1920px) and (max-width : 2560px){}

@media only screen and (min-width : 1600px) and (max-width : 1919px){}

@media only screen and (min-width : 1440px) and (max-width : 1599px){}

@media only screen and (min-width : 1366px) and (max-width : 1439px){}

@media only screen and (min-width : 1280px) and (max-width : 1365px){
.carousel-caption h1 {
  font-size: 55px;
}

}

@media only screen and (min-width : 1200px) and (max-width : 1279px){
.carousel-caption {
  width: 55%;
}
.carousel-caption h1 {
  font-size: 50px;
}



}

@media only screen and (min-width : 1024px) and (max-width : 1199px){
.carousel-caption {
  width: 55%; 
  top: 50%;
}
.carousel-caption h1 {
  font-size: 45px;
}
.about h4 {
  font-size: 26px;
}
.committee .box p {
  font-size: 12px;
}
.committee .box h5 {
  font-size: 16px;
}
.categories .text h4 {
  font-size: 18px;
}
.news .box h4 {
  font-size: 18px;
}


}

@media only screen and (min-width : 768px) and (max-width :1023px){
.carousel-caption {
  width: 60%; 
  top: 50%;
}
.carousel-caption h1 {
  font-size: 35px;
}
.carousel-caption p {
  font-size: 16px;
}
.scroll a span {
  display: none;
}
.about .ab {
  width: 50%;
}
.committee .box {
  margin-top: 20px;
}
.news .box {
  margin-top: 30px;
}


}

@media only screen and (min-width : 150px) and (max-width : 767px){
.carousel-caption {
  width: 80%; 
  top: 50%;
}
.carousel-caption h1 {
  font-size: 32px;
}
.carousel-caption p {
  font-size: 16px;
}
.carousel-inner {
  height: 100vh;
}
.carousel-item {
  height: 100vh;
}
.carousel-item img {
  height: 100vh; 
  object-fit: cover;
}
.about .ab {
  width: 90%;
}
.committee .box {
  margin-top: 20px;
}
.news .box {
  margin-top: 30px;
}



}

@media only screen and (max-width : 375px){}

@media only screen and (max-width : 360px){
.carousel-caption {
  width: 90%;
}
.carousel-caption h1 {
  font-size: 30px;
}


}

@media only screen and (max-width : 320px){}