.ad-icons{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 0;

  .ad-item{
    display: flex;
    align-items: flex-start;
    width: 340px;
    padding: 10px;

    img{
      margin-right: 10px;
    }

    .ad-text{
      display: flex;
      flex-direction: column;

      .title{
        font-weight: bold;
        margin: 0 0 4px 0;
      }

      .subtitle{
        font-size: 14px;
        line-height: 21px;
        margin: 0;
      }
    }
  }
}

@media(max-width: 768px){
  .ad-icons{
    display: none;
  }
}
