section.iso {
  background-color: var(--background-secondary);
  padding: 10px 0 20px 0;
  width: 100%;
  @media screen and (max-width: 930px) {
    padding: 0;

    .notonmobilefirst {
      display: none;
    }
  }


  > header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
    padding: 10px;
    gap: 15px;

    @media screen and (max-width: 930px) {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 30px;
      margin-top: 10px;
      justify-content: center;

      > p {
        margin-top: 10px;
        text-align: center;
      }
    }

    @media screen and (max-width: 661px) {
      .notonmobilesecond {
        display: none;
      }
    }

    > img {
      margin-right: 10px;
      @media screen and (max-width: 930px) {
        max-width: 64px;
        max-height: 36px;
      }
    }
  }

  > main {
    display: flex;
    border-radius: 16px;
    background-color: white;
    justify-content: space-between;
    width: 92%;
    padding: 20px 20px 20px 20px;
    margin: 0 auto;
    box-sizing: border-box;

    @media screen and (max-width: 930px) {
      flex-direction: column;
      width: 100%;
      align-items: center;
      height: fit-content;
      padding: 10px 10px 10px 10px;
    }

    > header {
      display: flex;
      justify-content: flex-start;

      @media screen and (max-width: 930px) {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
      }

      > img {
        max-width: 171px;
        margin-right: 40px;

        @media screen and (max-width: 930px) {
          max-width: 115px;
          max-height: 38px;
          margin: 0;
        }
      }
    }

    > footer {
      display: flex;
      justify-content: flex-end;
      > ul {
        > li {
        margin-bottom: 5px;
       };
      }

      @media screen and (max-width: 930px) {
        > ul {
          max-width: 323px;
          text-align: left;
          padding: 16px;

          > li {
            margin-left: 3px;
            margin-bottom: 1px;
          }
        }
      }
    }
  }
}
