.section-about {
    width: 100%;
    padding: 80px 0px 50px;
    position: relative;
}
.about-img {
    text-align: center;
}
.about-img img {
    width: auto !important;
    height: 430px;
}
#link-secondary {
    color: #7b241c !important;
}
.marquee-container {
      width: 100%;
      overflow: hidden; /* Hides content outside the container */
      font-weight: 300;
	color: #fff;
    }

    .marquee-content {
      display: inline-block; /* Allows content to flow horizontally */
      white-space: nowrap; /* Prevents text from wrapping */
      animation: scroll-left 20s linear infinite; /* Adjust duration and timing function as needed */
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(100%); /* Starts off-screen to the right */
      }
      100% {
        transform: translateX(-100%); /* Moves off-screen to the left */
      }
    }