.licences__img {
    width: 326px;
    height: 448px;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  
  .licences__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .licences {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
  }
  
  .licences__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .licences__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 1400px;
    padding: 10px;
    margin: 0 auto;
    max-width: 100%;
    gap: 32px;
  }
  
  .licences__descr {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 61px;
  }
  
  .licences h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #002D4B;
    margin-bottom: 80px;
  }
  
  @media (max-width: 900px) {
    .licences h1 {
      font-size: 24px;
      margin-bottom: 40px;
    }
  
    .licences__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      padding: 0 32px;
      margin: 0 auto;
      gap: 16px;
    }
  
    .licences__img {
      width: 100%;
      height: auto;
    }
  
    .licences-slider__item {
      padding: 20px;
    }
  
    .licences-slider__name {
      font-size: 16px;
    }
  
    .licences {
      margin-top: -80px;
    }
  }
  @media (min-width: 900px) and (max-width: 1522px) {
    .licences__list {
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    .licences__img {
      width: 100%;
      height: auto;
    }
  }