.servicediv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.servresponsive-img {
  max-width: 100%;
  height: auto;
}

.services {
    background: #ffffff;
    padding-top: 50px;
    overflow-x: hidden;
    margin-top: 20px;
  }
  .services .row:nth-child(even) {
    padding: 50px;
  }
  .services .row:nth-child(odd) {
    background: #fcfcfc !important;
    padding: 50px;
  }
  .services a {
    padding: 12px 40px;
    color: #ffffff;
    text-decoration: none;
    background: var(--primary-dark);
    border-radius: 5px;
    line-height: 3;
    transition: 0.3s ease-in-out;
  }
  .services a:hover {
    background: #000000;
    color: #FFFF;
  }
  .services img {
    width: 90%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    transition: transform 0.8s;
  }

  .services img:hover{
    width: 90%;
    box-shadow: rgba(100, 100, 111, 0.2) 5px 15px 35px 5px;
    border-radius: 10px;
    transform: scale(1.2);
    transition: 0.8s;
  }

  .services .row h2 {
    padding-top: 50px;
    font-size: 40px;
  }
