:root {
    --primary-color: #003615;
    --white-color: #fff;
    --secondary-color: #ee1a24;
    --button-color: #003615;
    --bg-black: #121212;
    --light-white: #999;
}

/* service area style  */
.service-area {
    background-color: var(--bg-black);
    position: relative;
    z-index: 1;
    padding: 0 45px;
  }
  @media only screen and (max-width: 991px) {
    .service-area {
      padding: 0 15px;
    }
  }
  .service-area .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
  }
  .service-area .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .service-area .section-title {
    max-width: 700px;
    color: var(--white-color);
  }
  .service-area .services-wrapper-box {
    margin-top: 90px;
  }
  @media only screen and (max-width: 1919px) {
    .service-area .services-wrapper-box {
      margin-top: 70px;
    }
  }
  @media only screen and (max-width: 1399px) {
    .service-area .services-wrapper-box {
      margin-top: 50px;
    }
  }
  
  .service-box {
    border-bottom: 1px solid #3D3D3D;
    padding: 36px 0;
    display: grid;
    gap: 30px;
    grid-template-columns: 80px 220px 1fr;
    align-items: center;
    transition: all 0.5s;
  }
  @media only screen and (max-width: 1399px) {
    .service-box {
      grid-template-columns: 50px 200px 1fr;
    }
  }
  @media only screen and (max-width: 1199px) {
    .service-box {
      grid-template-columns: auto 1fr;
    }
  }
  .service-box:hover {
    background-color: #242424;
  }
  .service-box:hover .number {
    transform: translateX(30px);
  }
  .dir-rtl .service-box:hover .number {
    transform: translateX(-30px);
  }
  @media only screen and (max-width: 1199px) {
    .service-box:hover .number {
      transform: none;
    }
  }
  .service-box:hover .wc-btn-circle {
    transform: translateX(-30px);
    background-color: var(--white-color);
    border-color: transparent;
    color: var(--bg-black);
  }
  .dir-rtl .service-box:hover .wc-btn-circle {
    transform: translateX(30px);
  }
  @media only screen and (max-width: 1199px) {
    .service-box:hover .wc-btn-circle {
      transform: none;
    }
  }
  .service-box:first-child {
    border-top: 1px solid #3D3D3D;
  }
  .service-box .number {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    transition: all 0.5s;
  }
  .service-box .thumb img {
    border-radius: 60px;
  }
  .service-box .title {
    font-size: 28px;
    line-height: 1.07;
    color: var(--white-color);
  }
  @media only screen and (max-width: 991px) {
    .service-box .title {
      font-size: 24px;
    }
  }
  .service-box .text {
    color: var(--light-white);
    max-width: 360px;
  }
  @media only screen and (max-width: 1399px) {
    .service-box .text {
      max-width: 330px;
    }
  }
  .service-box .wc-btn-circle {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    font-size: 20px;
    color: var(--white-color);
    transition: all 0.5s;
  }
  @media only screen and (max-width: 991px) {
    .service-box .wc-btn-circle {
      width: 50px;
      height: 50px;
      font-size: 16px;
    }
  }
  .service-box .wc-btn-circle i {
    transform: rotate(-45deg);
  }
  .service-box .content {
    display: grid;
    gap: 20px;
    grid-template-columns: 31% 1fr auto;
    align-items: center;
  }
  @media only screen and (max-width: 1199px) {
    .service-box .content {
      grid-column: span 2;
    }
  }
  @media only screen and (max-width: 767px) {
    .service-box .content {
      grid-template-columns: 1fr;
    }
  }