.submission-header {
  padding-top: 6rem;
  padding-bottom: 6rem;
  
  .container {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: row;
    justify-content: space-between;
    display: flex;

    @media only screen and (max-width: 991px) {
      flex-direction: column-reverse;

      &.left_pos {
        flex-direction: column;
      }
    }

    .about-us-contents {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      flex-direction: column;
      align-items: flex-start;
      max-width: 640px;
      display: flex;
      width: 50%;

      @media only screen and (max-width: 991px) {
        width: 100%;
      }

      h1 {
        letter-spacing: 1px;
        font-size: 6rem;
        color: var(--secondary);
        margin-top: 0;
        margin-bottom: 0;
        font-weight: 700;

        @media only screen and (max-width: 767px) {
          font-size: 5rem;
          letter-spacing: 0;
        }
        
      }

      .paragraph,
      .paragraph * {
        font-size: 20px;
        line-height: 150%;
        color: var(--paragraph);
        max-width: 620px;
        margin-bottom: 2rem;
        font-weight: 300;
        letter-spacing: 0;

        @media only screen and (max-width: 470px) {
          font-size: 18px;
        }

        a {
          font-size: 1em;
          font-weight: 400;
          text-decoration: underline;
        }

        strong {
          font-weight: 700;
        }
      }

      .about-us-icon-lists {
        grid-column-gap: 25px;
        grid-row-gap: 25px;
        flex-direction: column;
        margin-top: 25px;
        display: flex;
        .lists-box {
          color: #667085;
          grid-column-gap: 25px;
          grid-row-gap: 25px;
          align-items: flex-start;
          width: 100%;
          font-size: 16px;
          display: flex;

          @media only screen and (max-width: 479px) {
            grid-column-gap: 15px;
            grid-row-gap: 15px;
          }

          .lists-box-image {
            background-color: #f9f9f9;
            border-radius: 100%;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 62px;
            height: 62px;
            padding: 12px;
            display: flex;
            
            img {
              max-height: 25px;
              width: auto;
              height: initial;
            }

            @media only screen and (max-width: 479px) {
              max-width: 40px;
              height: 40px;
              padding: 8px;
            }
          }

          .lists-box-info {
            flex-direction: column;
            display: flex;
            grid-column-gap: 16px;
            grid-row-gap: 16px;
            h4 {
              font-family: Jost, sans-serif;
              line-height: 130%;
              font-size: 26px;
              color: var(--secondary);
              font-weight: 500;
              margin: 0;

              @media only screen and (max-width: 991px) {
                font-size: 20px;
              }
            }
            div {
              font-family: Jost, sans-serif;
              color: var(--paragraph);
              max-width: 820px;
              margin-bottom: 0;
              font-size: 18px;
              letter-spacing: 0.2px;
              font-weight: 400;
              p {
                font-weight: 400;
              }
              @media only screen and (max-width: 479px) {
                font-size: 15px;
                line-height: 24px;
              }
            }
          }
          
        }
      }
    }

    .about-us-img {
      border-radius: 1rem;
      width: 50%;
      min-width: 490px;

      @media only screen and (max-width: 991px) {
        width: 100%;
        max-width: 640px;
        min-width: initial;
      }

      img {
        border-radius: 1rem;
        width: 100%;
        height: initial;
      }
    }
    
  }

  &.about-us-icon-list {
    padding-top: 100px;
    padding-bottom: 0;

    @media only screen and (max-width: 767px) {
      padding-top: 80px;
    }

    @media only screen and (max-width: 479px) {
      padding-top: 60px;
    }
    
    .container {

      @media only screen and (max-width: 991px) {
        flex-direction: column;
      }
      .about-us-contents {
        max-width: 640px;

        .paragraph p {
          letter-spacing: 0;
          max-width: 100%;
        }
      }
      .about-us-img {
        max-width: 600px;
        img {
          border-top-left-radius: 0;
          border-top-right-radius: 251px;
          border-bottom-left-radius: 106px;

          @media only screen and (max-width: 479px) {
            border-top-right-radius: 160px;
            border-bottom-left-radius: 80px;
          }
        }
      }
    }
  }
}

.page.About {
  .submission-header{
    &.about-us-page {
      padding-bottom: 0;
    }
    &.about-us-icon-list {
      padding-top: 60px;  
    }
  }
}