main {
  margin: 0 auto;
  margin-top: 80px;
  width: 90%;
  max-width: 1280px;
  .back {
    display: flex;
    align-items: center;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary-color);
    gap: 9px;
    margin-bottom: 15px;
  }
  .container{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 2px 12px 3px #0000001a;
    border: 2px solid #c8cbd0;
    border-radius: 12px;
    /* color: var(--secondary-color); */
    h1 {
      font-family: 'Open sans', sans-serif;
      font-size: 26px;
      font-weight: 600;
    }
    h2 {
      margin-top: 30px;
      font-family: 'Open sans', sans-serif;
      font-size: 22px;
      font-weight: 600;
    }
    p,
    li {
      font-family: 'Open sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      max-width: 800px;
    }
    li {
      margin-top: 5px;
    }
    p {
      margin-top: 15px;
    }
    ul {
      margin-top: 15px;
    }
    .contacts {
      margin-top: 50px;
      h2 {
        margin-bottom: 20px;
      }
      .hr{
        width: 100%;
        height: 2.5px;
        background-color: var(--primary-color);
      }
      .contacts_wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        a {
          font-family: 'Open sans', sans-serif;
          font-weight: 700;
          font-size: 16px;
          color: var(--primary-color);
        }
      }
    }
  }
  @media (max-width: 1000px) {
    .orders_container {
      width: fit-content !important;
    }
  }
  @media (max-width: 730px) {
    .wrapper {
      padding: 25px;
      h1 {
        font-size: 20px;
      }
      h2 {
        font-size: 18px;
      }
      .contacts {
        .contacts_wrapper{
          a {
            font-size: 14px;
          }
        }
      }
      li,
      p {
        font-size: 14px;
      }
    }
  }
  @media (max-width: 535px) {
    width: 95%;
    .wrapper {
      padding: 15px;
      h2 {
        font-size: 16px;
      }
      h1 {
        font-size: 18px;
      }
      .contacts {
        .contacts_wrapper{
          a {
            font-size: 14px;
          }
        }
      }
      li,
      p {
        font-size: 14px;
      }
    }
  }
}
