@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@300;400;500;600;700;800;900');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
    
  
  body {
    font-family: 'Montserrat Alternates', sans-serif;  
    background-color: #c9f3c8;
  }
  
  .ser {
    width: 80%;
    margin: auto;
    max-width: 796px;
  }
    
    
  .section-title {
    color: #185f41;
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 50px 0 0 0;
  }  
    .section-title::after {
      content: "";
      display: block;
      height: 2px;
      background-color: #36AE7C;
      margin-bottom: 40px;
    }
  
    
    
  .services-inner {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-row-gap: 50px;
    grid-column-gap: 20px;
  }
    
    
  .services-box {
    color: rgb(18, 17, 17);
    text-align: center;
    text-transform: capitalize;
    border: 1px solid #36AE7C;
    padding: 40px;
  }
    
    
  .icon {
    display: block;
    background-color: #36AE7C;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 12px;
    margin: 0 auto 10px auto;
  }
    
    
  .icon #symbol {
    color: rgb(18, 17, 17);
    font-size: 3.5rem;
  }
    
    
  .services-title {
    font-weight: normal;
    font-size: 1.2rem;
  }
    



  