.service {
    width: 100%;
  }
  .service .title {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .service .title h2 {
    position: relative;
    display: inline-block;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    color: #3a3a3a;
  }
  .service .title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 2px;
    background-color: #4C0200;
  }
  .service .body {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service .body .content {
    width: 50%;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: 500;
    
  }
  .service .body .content  .main{
    
    justify-content: space-between;
    
  }
  .service .body .content 
  .service .body .content .service-list {
    margin-bottom: 35px;
  }
  .service .body .content .service-list .item {
    font-size: 0.7em;
    
  }
 
  .service .body .image {
    width: 40%;
    
  }
  .service .body .image img {
    display: block;
    width: 100%;
   
  }
  .service .cat {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 80px;
    margin: 40px auto;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #f1f1f1;
    background-color: #4C0200;
    transition: background-color 0.25s ease-in-out;
  }
  .service .cat:hover {
    background-color: #b92a2a;
  }

  @media screen and (max-width: 500px) {
    /* ------------- HEADER -------------- */
   
 
    .service {
      width: 100%;
    }
    .service .title h2 {
      position: relative;
      display: inline-block;
      font-size: 2em;
      text-align: center;
      text-transform: uppercase;
      color: #3a3a3a;
    }
    .service .title h2::after {
      right: 50%;
      transform: translateX(50%);
    }
    .service .body {
      display: flex;
      flex-flow: column nowrap;
      justify-content: space-between;
      align-items: center;
    }
    .service .body .content {
      width: 100%;
      font-size: 1.2em;
      letter-spacing: 1px;
      font-weight: 500;
    }
    .service .body .content .main,
    .service .body .content .service-list {
      margin-bottom: 35px;
    }
    .service .body .content .service-list .item {
      margin-left: 20px;
      margin-bottom: 10px;
    }
    .service .body .image {
      margin: 40px 0;
      width: 80%;
    }
    .service .body .image img {
      display: block;
      width: 100%;
    }
    .service .cat {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      padding: 20px;
      font-size: 1.1em;
      text-align: center;
    }

  }

