.serviceImages {
    width: 113px;
    border-radius: 8px;
  }
  
  .serviceTitle {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 14px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    color: #182D49;
  }
  
  @keyframes slideInFromRight {
    from {
      transform: translateX(100vw);
      opacity: 0;
    }
    to {
      transform: translateX(0%);
      opacity: 1;
    }
  }
  
  @media (max-width: 580px) {
    .service-col {
      margin-right: 0px;
      margin-left: 0px;
    }
  }
  
  @media (min-width: 580px) {
    .service-col {
      margin-right: 30px;
      margin-left: 30px;
    }
  }
  
  .service-col:nth-child(1) {
    animation-delay: 0s;
  }
  
  .service-col:nth-child(2) {
    animation-delay: 0.1s;
  }
  
  .service-col:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .service-col:nth-child(4) {
    animation-delay: 0.3s;
  }
  
  .service-col:nth-child(5) {
    animation-delay: 0.4s;
  }
  
  .service-col:nth-child(6) {
    animation-delay: 0.5s;
  }
  
  .service-col:nth-child(7) {
    animation-delay: 0.6s;
  }
  
  .service-col:nth-child(8) {
    animation-delay: 0.7s;
  }
  
  .service-col:nth-child(9) {
    animation-delay: 0.8s;
  }
  
  .service-col:nth-child(10) {
    animation-delay: 0.9s;
  }
  
  .service-col:nth-child(11) {
    animation-delay: 1s;
  }
  
  .service-col:nth-child(12) {
    animation-delay: 1.1s;
  }
  
  .service-col:nth-child(13) {
    animation-delay: 1.2s;
  }
  
  .serviceItemContainer {
    height: 100%;
    border-radius: 47px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 10px 10px 20px #dedede, -10px -10px 20px #ffffff;
    padding: 24px;
  }
  
  .service-col {
    opacity: 0;
    animation: slideInFromRight 0.5s ease forwards;
  }
  
  .serviceCardButton {
    opacity: 0;
    transition: 0.5s;
  }
  
  .serviceItemContainer:hover .serviceCardButton {
    opacity: 1;
  }
  
  .serviceDetailsRow {
    padding: 29px;
    padding-left: 0px;
    padding-top: 39px;
  }
  
  @media (max-width: 768px) {
    .serviceDetailsRow {
      padding: 29px;
      padding-top: 39px;
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  .serviceCardButton {
    margin-top: 13px;
    width: 80%;
    border-style: none;
    background: #b38f54;
    color: rgb(255,255,255);
    border-radius: 4px;
  }
