.services__title{
    color: white;
    margin-top: 100px;
  }
  
  .services__title::after{
    content: '';
    height: 5px;
    background: #d0850f;
    border-radius: 5px;
    display: flex;
    margin-top: 7px;
    margin-left: 45%;
    margin-right: 45%;
    z-index: 30;
    
  }
  
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 50px;
    transition: all 1s ease 0s;
  }
  
  .cards_item {
    display: flex;
    padding: 1rem;
  }
  
  .cards_item__left {
    display: flex;
    padding: 1rem;
  
  }
  
  
  @media (min-width: 40rem) {
    .cards_item {
      width: 50%;
    }
  }
  
  @media (min-width: 56rem) {
    .cards_item {
      width: 25%;
    }
  }
  
  .card {
   
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #1c1d21;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    
  }
  
  
  .card_content {
    padding: 2rem;
    background-color: #1c1d21;
  }
  
  .card__icon{
    height: 45px;
  }
  
  .card_title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .card__left{
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  
  
  }
  
  .card_title_left {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 70px;
    margin-bottom: 20px;
  
  }
  
  .card_text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;    
    font-weight: 300;
  
  }
  
  
  .card__left__link{
    color: #d0850f;
    font-size: 17px;
    text-decoration: none;
   
  }
  
  .arrow {
    color: #d0850f;
    margin: 1em 0;
    cursor: pointer;
  }
  .arrow::after {
    display: inline-block;
    padding-left: 8px;
    content: "➞";
    transition: transform 0.3s ease-out;
  }
  .arrow:hover {
    color: #d0850f;
  }
  .arrow:hover::after {
    transform: translateX(4px);
  }