.rts-client-area {
  background-color: rgb(250, 250, 250);
  padding-bottom: 100px;
  padding-top: 100px;
  }

  .sponsor-area-title {
    text-align: center;
    position: relative;
  }

  .sponsor-title{
    margin-bottom: 60px;
    position: relative;
  }

  .sponsor-area-title h2{
    font-size: 36px;
    font-weight: bold;
    color: #8B0000;
    text-align: center;
    padding-bottom: 15px;
  }

  .sponsor-area-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 200px;
    background-color: #8B0000;
    left: calc(50% - 100px);
  }

  .sponsor-area-title h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 8px;
    width: 8px;
    background-color: #8B0000;
    left: calc(50% - 4px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .col-12 {
    flex: 0 0 100%;
  }
  
  .client-two-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .client-two-wrapper img {
    max-width: 150px;
    height: auto;
    margin: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .client-two-wrapper img:hover {
    /* Add styles for the hover effect here */
    border-color: #8B0000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
    transition: all 0.3s ease;
  }


