.services-container {
    background-color: #f5f6f7;
  }
  .services-list {
    padding: 100px 50px;
  }
  .services-list h2 {
    padding-bottom: 60px;
    font-size: 50px;
    font-weight: bolder;
    color: #0a165e;
  }
  .services {
    row-gap: 30px;
    column-gap: 40px;
  }
  .services .each-service {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
  }
  .each-service .col-lg-2 i {
    font-size: 20px;
    background-color: #f5f6f7;
    border-radius: 10px;
    padding: 20px;
    color: #0a165e;
  }
  .each-service:hover .col-lg-2 i {
    color: #ffffff;
    background-color: #0a165e;
  }
  .each-service h3 {
    font-size: 30px;
    font-weight: bolder;
    color: #0a165e;
  }
  .each-service p {
    color: #585b6f;
  }
  .each-service a {
    text-decoration: none;
    color: #2b4dff;
    font-weight: bold;
  }
  .each-service a:hover {
    color: #ff4500;
  }
  @media (max-width: 768px) and (min-width: 426px) {
    .each-service .col-lg-2 {
      margin-bottom: 15px;
    }
  }

  @media (max-width: 426px) {
    .each-service .col-lg-2 {
      margin-bottom: 15px;
    }
    .services-list h2 {
      font-size: 40px;
    }
    .services{
      margin-left: 0px;
    }

    .services .each-service {
      text-align: center;
    }
  }
