.b-section {

}

.mt-animation {
    padding: 54px 0px;
}


.b-section-marquee-box {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.b-section-marquee-box p {
    animation: b-text-scroll 270s linear infinite;
    padding: 0 10px;
    transform: translateX(0);
    white-space: nowrap;
    width: max-content;
    color: #0C2764;
    font-family: Inter;
    font-size: 40px;
    font-weight: 300;
    line-height: 44px;
    text-transform: uppercase;
    margin: 0;
}

@keyframes b-text-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}






/**** New Code *****/


/* .b-section-marquee-box {
    overflow: hidden; /* Ensure the text doesn't overflow */
    white-space: nowrap; /* Prevent text from wrapping */
}

.b-section-marquee-box p {
    animation: b-text-scroll 15s linear infinite; /* Adjusted duration for faster scroll */
    padding: 0 10px;
    transform: translateX(0);
    white-space: nowrap;
    width: max-content; /* May need testing across browsers */
    color: #0C2764;
    font-family: Inter;
    font-size: 40px;
    font-weight: 300;
    line-height: 44px;
    text-transform: uppercase;
    margin: 0;
}

@keyframes b-text-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
} */

/**** New Code *****/


.mt-animation {
    padding: 54px 0px;
}





/*********** Responsive code ***************/

/************** ipad ***************/

@media (max-width: 1200px) {}


@media (max-width: 1080px) {}

/************** ipad nd tab ***************/
@media only screen and (min-width:768px) and (max-width: 1024px) {}

/************** iphone roatate***************/
@media (max-width: 767px) {


}

/************** iphone ***************/
@media (max-width: 479px) {


  .mt-animation {
      padding: 30px 0px;
  }
  

  .b-section-marquee-box p {
      font-size: 18px;
      font-style: normal;
      font-weight: 300;
      line-height: 22px;
      text-transform: uppercase;
  }
  
  

  
}



