/* Trending videos */


.trendingvideos{
    width: 100%;
    background: #e5ebef;
    text-align: center;
    padding: 60px 0px;
}

.trendingvideos h2{
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 42px;
    font-weight: 600;
    color: #191919;
}

.trendingvideos .trendvideo-item{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.trendingvideos .trendvideo-item span{
    width: 100%;
    height: 150px;
    background: var(--blue);
    display: inline-block;
    overflow: hidden;
    float: left;
}

.trendingvideos .trendvideo-item span img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition-duration: 0.3s;
}

.trendingvideos .trendvideo-item:hover img{
    opacity: 0.2;
}

.trendingvideos .trendvideo-item .videocontent{
    width: 100%;
    height: 100px;
    border: 1px solid #c5d2da;
    display: table;
    position: relative;
    border-top: none;
    padding: 30px 10px 0px 10px;
    margin: 0;
    transition-duration: 0.3s;
}

.trendingvideos .trendvideo-item .videocontent h6{
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle;
}

.trendingvideos .trendvideo-item .videocontent font{
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    padding-top: 15px;
    padding-left: 3px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    transition-duration: 0.3s;
    z-index: 990;
    box-shadow: 0 0 0 0 rgba(25, 153, 204, 0.5);
    -webkit-animation: puls 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: puls 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: puls 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: puls 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

  @-webkit-keyframes puls {to {box-shadow: 0 0 0 15px rgba(25, 153, 204, 0);}}
  @-moz-keyframes puls {to {box-shadow: 0 0 0 15px rgba(25, 153, 204, 0);}}
  @-ms-keyframes puls {to {box-shadow: 0 0 0 15px rgba(25, 153, 204, 0);}}
  @keyframes puls {to {box-shadow: 0 0 0 15px rgba(25, 153, 204, 0);}}

  .trendingvideos .trendvideo-item:hover font{
    margin-top: -100px;
    background: #fff;
    color: var(--blue);
  }

  .trendingvideos .trendvideo-item:hover .videocontent{
      border-color: var(--blue);
      padding-top: 0px;
  }

  .trendingvideos .trending-videos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/***end of trending videos***/
/* banner */
.banner-imageslide img{
    width: 100%;
}
.home-slider .carousel-item img{
    height: 380px;
}
.home-slider .carousel-item img{
    opacity: 0.3;
}

.home-slider .carousel-item img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
/* end banner */