 
  .flex-container {
    display: flex;
    column-gap: 15px; 
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
  }
  .space-between {
    justify-content: space-between;
  }
  .col {
    width: 100%;
  }
  .service-main-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    column-gap: 20px;
    box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  }
  .service-main-card img {
    width: 100%; 
  }
  .img-placeholder {
    position: relative; 
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
  }
  h3 {
    font-weight: 400;
  }
  p {
    font-weight: 300;
  }
  a {
    color: #888;
    text-decoration: none;
  }
  a:hover {
    color: inherit;
  }
  
 
  .service-main-button{
    border:none;
    background-color:offwhite;
    /* font-size:30px; */
    padding:20px 50px;
    text-transform:capitalize;
    cursor:pointer;
    transform:all 0.3s;
    position:relative;
    box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  }
  .service-main-button:before{
    content:"";
    position :absolute;
    width:24px;
    height:24px;
    top:-5px;
      left:-5px;
    border-top:2px solid #B8AE7D;
    border-left:2px solid #B8AE7D;
    transition:all 0.25s;
  }
  .service-main-button:hover:before , .service-main-button:hover:after{
    width:104%;
    height:110%;
  }
  .service-main-button:after{
    content:"";
    position :absolute;
    width:24px;
    height:24px;
    bottom:-5px;
      right:-5px;
    border-bottom:2px solid #B8AE7D;
    border-right:2px solid #B8AE7D;
    transition:all 0.30s;
  }

/* other Card */
  .card-section {
    width: 100%;
    margin:20px auto;
    /* height: 600px; */
    box-shadow: 0 5px 12px 2px rgba(0, 0, 0, 0.2);
  }
  .card-section img {
    width: 100%;  
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 36px));
  }
  .card-body h4 {
    margin: 0px;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.5px;
    color: #323e8d;
  }
  .card-body {
    padding: 0px 15px 20px 15px;
  }
.border-line{
    border-bottom:1px solid #B8AE7D;
    border-width:3px;
    width:100px;  
    margin:10px 0px;
  }
 
  .card-body .card-text{
    color:gray;  
    font-size:13px;
    letter-spacing:0.5px;
    margin-bottom:0px;
  }