.delivery-and-payment__terms-of-delivery-of-orders{
  display: flex;
  flex-direction: column;
  gap: 32px;
  .heading{
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #222222;
    margin: 0;
  }
  .list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    .list-item{
      border: 1px solid #E8E8E8;
      padding: 24px;
      display: flex;
      flex-direction: column;
      .list-item__title{
        display: flex;
        align-items: center;
        gap: 12px;
        flex-direction: row;
        svg {
          width: 48px;
          height: 48px;
        }
        .list-item__title-heading{
          font-weight: 600;
          font-size: 28px;
          line-height: 120%;
          letter-spacing: 0em;
          color: #222222;
          margin: 0;
        }
      }
    }
  }
  .list-item__delivery{
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    flex: 1;
    .list-item__delivery-title{
      font-weight: 600;
      font-size: 20px;
      line-height: 140%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
    }
    .list-item__delivery__list{
      display: flex;
      flex-direction: row;
      gap: 10px;
      padding-bottom: 20px;
      .list-item__delivery__list-item{
        display: flex;
        align-items: center;
        height: 52px;
        width: 186px;
        justify-content: center;
        border-radius: 8px;
        background-color: #F6F6F6;
      }
      .list-item__delivery__list-item--cdek{
        svg {
          width: 83px;
          height: 23px;
        }
      }
      .list-item__delivery__list-item--yandex{
        svg {
          width: 146px;
          height: 28px;
        }
      }
    }
  }
  .list-item__payment{
    padding-top: 20px;
    .list-item__payment-title{
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
    }
  }
  .list-item__сalendar{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    .list-item__сalendar-title{
      font-weight: 600;
      font-size: 20px;
      line-height: 140%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
    }
    .list-item__сalendar-description{
      font-weight: 400;
      font-size: 16px;
      line-height: 140%;
      letter-spacing: 0em;
      color: #222222;
      margin: 0;
    }
  }
  .list-item__location{
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    flex: 1;
    .list-item__location__list{
      display: flex;
      flex-direction: column;
      gap: 2px;
      .list-item__location__list-item{
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0em;
        color: #222222;
        margin: 0;
        a {
          color: #222222;
          text-decoration: underline;
          font-weight: 600;
          &:hover {
            text-decoration: none;
          }
        }
        &::before{
          content: "• ";
        }
      }
    }
    .list-item__location__block{
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 8px;
      background-color: #F6F6F6;
      .list-item__location__block-title{
        font-weight: 600;
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0em;
        color: #222222;
        margin: 0;
      }
      .list-item__location__block-description{
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0em;
        color: #222222;
        margin: 0;
      }
    }
  }
}
@media (max-width: 991px) {
  .delivery-and-payment__terms-of-delivery-of-orders{
    gap: 16px;
    .heading{
      font-size: 24px;
      line-height: 130%;
    }
    .list{
      grid-template-rows: repeat(4, minmax(224px, auto));
      grid-template-columns: repeat(1, 1fr);
      .list-item{
        padding: 16px;
        .list-item__title{
          svg {
            width: 40px;
            height: 40px;
          }
          .list-item__title-heading{
            font-size: 20px;
            line-height: 140%;
          }
        }
      }
    }
    .list-item__delivery{
      .list-item__delivery-title{
        font-size: 18px;
      }
      .list-item__delivery__list{
        gap: 16px;
        padding-bottom: 0px;
        .list-item__delivery__list-item{
          height: 40px;
          width: 138px;
          border-radius: 4px;
        }
        .list-item__delivery__list-item--cdek{
          svg {
            width: 69px;
            height: 20px;
          }
        }
        .list-item__delivery__list-item--yandex{
          svg {
            width: 106px;
            height: 20px;
          }
        }
      }
    }
    .list-item__payment{
      padding-top: 16px;
      .list-item__payment-title{
      }
    }
    .list-item__сalendar{
      padding-top: 16px;
      gap: 8px;
      .list-item__сalendar-title{
        font-size: 18px;
      }
      .list-item__сalendar-description{
      }
    }
    .list-item__location{
      gap: 24px;
      .list-item__location__list{
        .list-item__location__list-item{
          &::before{
            content: "→ ";
          }
        }
      }
      .list-item__location__block{
        padding: 16px 12px;
        border-radius: 4px;
        .list-item__location__block-title{
          font-size: 18px;
        }
        .list-item__location__block-description{
          
        }
      }
    }
  }
}