/**
 * Theme Name:     Congin Child
 * Author:         TPLabs
 * Template:       congin
 * Text Domain:	   congin-child
 * Description:    Congin - Industry &amp; Factory WordPress Theme
 */




















.marquee {
    width: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    animation: marquee 20s linear infinite; /* Infinite animation */
    animation-play-state: running; /* Default running state */
  }
  
  .marquee:hover .marquee-content {
    animation-play-state: paused; /* Pause the animation on hover */
  }
  
  .marquee-item {
    flex-shrink: 0;
    width: 170px; /* Set your desired width */
    height: auto;
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    font-size: 20px;
    transition: transform 0.5s ease, filter 0.4s ease;
  }
  
  .marquee:hover .marquee-item {
    filter: blur(4px);
    transform: scale(0.9);
  }
  
  .marquee .marquee-item:hover {
    filter: none;
    transform: scale(1.2);
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  



.master-news-block .master-news .post-date {
    color: #5e92da !important;
}
.master-image-box:before {
    bottom: -20px !important;
    height: 3px !important;
}
.image-box-style-2 .master-image-box .master-icon {
    box-shadow: 0px 0px 0px 6px rgb(26 55 95) !important;
}




div#featured-title {
    display: none;
}

.congin-menu-panel li.current-menu-item > a, .congin-menu-panel li:hover > a {
    color: #5e92da !important;
}

.master-slider .text-decor {
    margin-left: 0 !important;
}




/* ======= Responsive start here =======  */

@media only screen and (max-width: 600px) {
	.master-heading .main-heading {
    font-size: 24px !important;
    line-height: 34px !important;
}
}


















