.marquee-container {
    height: 130px;
    overflow: hidden;
    /* line-height: 130px; */
  }
  .marquee-container .marquee {
    top: 0;
    left: 100%; 
    width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 140px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .marquee-container .marquee img {
    width: 200px;
  }

  .marquee-container b {
    padding-left: 10px;
  }
  
  @keyframes marquee {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }

  .sscroll img{
    width: 200px;
  }
  .sscroll {
    position: relative;
    width: 100vw;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
  }
  
  .m-sscroll {
    overflow: hidden;
    height: 100%;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    margin: 0;
    font-size: 0;
    display: flex;
    gap: 140px;
    justify-content: space-around;
    width: fit-content;
    align-items: center;
  }
  
  span {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: white;
  }
  
  @keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }


.our-work-section{
    padding-top: 80px;
  }
.our-work-inner .our-work-col {
    margin-bottom: 120px;
}
.our-work-inner  .genius-wrap  {
    padding-left: 50px;
    height: 100%;
    position: relative;
    justify-content: center;
    display: flex;
    flex-direction: column;
    
}
.genius-wrap a, .our-work-detail a {
    position: absolute;
    height: 100%;
    width: 100%;
}
.our-work-inner .visions-colrtl {
  
    align-items: center;
    justify-content: center;
    display: flex;
}
.our-work-inner .visions-colrtl .genius-wrap {
    padding-right: 50px;
    padding-left: 0;
}
.our-work-inner .visions-col {
    align-items: center;
    justify-content: center;
    display: flex;
}
 .our-work-title {
    font-size: 18px;
    font-family: var(--title-font)!important;
    text-transform: uppercase;
}
 .our-work-subtitle {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--body-font);
    text-transform: inherit;
}
.our-work-inner img {
    width: 100%;
}
.our-work-inner .col-md-6:nth-child(even) .our-work-wrap{
    margin-left: 50px;
}
.our-work-inner .col-md-6:nth-child(odd) .our-work-wrap{
 
    margin-right: 50px;
}
.our-work-detail {
    margin-top: 50px;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-height: 500px;
    /* Set the height as needed */
    overflow: hidden;
    margin-bottom: 20px;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    transition: opacity 0.5s;
  }

  .our-work a:hover{
    color: var(--secondary-color);
  }

  .our-work-inner .our-work-col h3{
    font-family: var(--body-font)!important;
}
@media screen and (max-width: 1199px) {
    .our-work-subtitle {
        font-size: 32px;
    }
    .our-work-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 991px) {
    .our-work-subtitle {
        font-size: 24px;
    }
    .our-work-title {
        font-size: 20px;
    }
    .marquee-container .marquee {
        flex-wrap: wrap;
        position: relative;
        animation:none;
        top: unset; 
        left: unset; 
        width: unset; 
        white-space: unset;
        gap: 45px;
    }
    .marquee-container .marquee img {
        width: 100px;
    }
    .marquee-container {
        overflow: unset;
        height: auto;
        padding: 0 15px;
    }
}
@media screen and (max-width: 767px) {
    .our-work-inner .col-md-6:nth-child(even) .our-work-wrap{
        margin-left: 0;
    }
    .our-work-inner .col-md-6:nth-child(odd) .our-work-wrap{
     
        margin-right: 0;
    }
    .our-work-inner .visions-colrtl .genius-wrap  {
        padding-right: 0;
    }
    .our-work-inner  .genius-wrap  {
        padding-left: 0;
    }
    .our-work-inner .visions-col,.our-work-inner .visions-colrtl {
        display: block;
    }

    .our-work-inner .our-work-col {
      margin-bottom: 0px;
    }
    .our-work-inner .our-work-col h3{
        margin-bottom: 80px;
    }

    .our-work-detail {
      margin-top: 20px;
    }
 }