.logo_box{
    width:200px;
    height:80px;
    overflow: hidden;
}
.logo_box .logo{
    width:100%;
    height:100%;
    object-fit: contain;
}

@media screen and (max-width:768px){
.logo_box{
    width:100px;
    height:80px;
    overflow: hidden;
}
.logo_box .logo{
    width:100%;
    height:100%;
    object-fit: contain;
}
.title_section{
    margin-top:-80px;
}
}

@media screen and (min-width:769px){
.title_section{
    margin-top:10px;
}
}

.logo-slider {
  height: 100px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.logo-item img {
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    padding: 0 10px;
  }
}

.site-footer_two {
  background: url('/static/images/samuel-scalzo-xyuYk9oLA8I-unsplash.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 60px 0 30px;
  color: #f1f1f1;
}

.site-footer_two::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
  z-index: 1;
}

.site-footer_two .container,
.site-footer_two .row {
  position: relative;
  z-index: 2;
}

.site-footer_two h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.site-footer_two .links li {
  margin-bottom: 8px;
}

.site-footer_two .links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer_two .links a:hover {
  color: #fff;
}

.site-footer_two .social li {
  list-style: none;
  margin-right: 15px;
}

.site-footer_two .social a {
  color: #ccc;
  font-size: 20px;
  display: inline-block;
  transition: color 0.3s;
  text-decoration: none !important;
  text-align: center;
}

.site-footer_two .social a:hover {
  color: #fff;
}

.site-footer_two address {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.site-footer_two .copyright {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 767.98px) {
  .site-footer_two {
    text-align: center;
  }

  .site-footer_two .social {
    justify-content: center !important;
  }
}

#fab_two {
  position: fixed;
  bottom: 1em;
  right: 1em;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

a{
  text-decoration: none !important;
}