/* Custom Card css */ 
.ccw-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ccw-image img {
    width: 100%;
    display: block;
}

.ccw-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(2 123 254 / 75%); 
    color: #fff;
    padding: 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: end    ;
    transition: bottom 0.4s ease-in-out;
}
.ccw-designation {
	border: 1px solid #ffffff;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 30px;
}
.ccw-card:hover .ccw-overlay {
    bottom: 0;
}

.ccw-social a {
    color: #fff;
    margin: 0 5px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
	background-color: #000000;
    padding: 8px 12px;
    border-radius: 25px;
    transition: color 0.3s;
}

.ccw-social a:hover {
    color: #BAFFD7;
}

/* Custom Marquee css */
.logo-marquee {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            background-color: #fff;
            padding: 10px 0;
        }

        .logo-track {
            display: inline-block;
            animation: marqueeScroll 15s linear infinite;
        }

        .scroll-right .logo-track {
            animation-direction: reverse;
        }

        .logo-track img {
            height: 50px;
            margin: 0 40px;
            vertical-align: middle;
            object-fit: contain;
        }

        .logo-marquee:hover .logo-track {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-33.33%);
            }
        }
        
 /* Custom Single Blog css */
  .single-blog-post {
   display: flex;
   flex-direction: column;
   align-items: center;
   
  }
 .single-blog-post .slide-img{
    width: 100%;
    height: 600px;
 }
  .single-blog-post .slide-content{
  text-align: center;
  }
    .single-blog-post .slide-category,
    .single-blog-post .slide-date{
    width: 50%;
    }
    
@media (max-width: 767px){
 .blog-post {
  flex-direction: column;
 }
}