

#sports-team-slider .owl-item.active .heading-wrapper h2,
#sports-team-slider .owl-item.active .heading-wrapper h3,
#sports-team-slider .owl-item.active .sports-team-content-wrapper p{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}


#desktop-key-business .tab-content .tab-pane, 
.follow-card-img,
.our-vision-img,
.leadership-img,
.all-media-section .news-top-left-img,
.news-card-inner-wrapper,
.team-right-img-wrapper{
  overflow: hidden;
}

#desktop-key-business .tab-content .tab-pane img, 
.follow-card-img img,
.our-vision-img img,
.leadership-img img,
.all-media-section .news-top-left-img img,
.news-card-inner-wrapper img,
.team-right-img-wrapper img{
  transition: 1s all ease;
}

#desktop-key-business .tab-content .tab-pane img:hover,
.follow-card-img img:hover,
.our-vision-img img:hover,
.leadership-img img:hover,
.all-media-section .news-top-left-img img:hover,
.news-card-inner-wrapper img:hover,
.team-right-img-wrapper img:hover{
  transform: scale(1.05);
}



.home-banner-text-wrapper h2{
   animation: slide-down 1s forwards;
}

.home-banner-text-wrapper h3{
     animation: slide-down 1.5s forwards;
}



@keyframes slide-down {
  from {
    opacity: 0;
    transform: none;
  }
  to {
    opacity: 1;
    transform: translateY(-50px);
  }
}

