@use "../../assets/scss/customVariables.scss" as *;

.pageContainer{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;

  .maxContainer {
    width: 100%;
    min-height: 100vh;
    max-width: $max-width-layout;
    box-sizing: border-box;

    @media screen and (max-width: calc($max-width-layout + 60px)) {
        padding: 0 30px;
      }

    .banner {
      width: 100%;

      @media screen and (max-width: 650px) {
        display: none;
      }
    }
    .bannerResponsive {
      display: none;
      width: 100%;
      box-sizing: border-box;

      @media screen and (max-width: 650px) {
        display: block;
      }
    }
  }

  .content {
    width: 100%;
    @media screen and (max-width: calc($max-width-layout + 60px)) {
      padding: 0 30px;
    }
  }
}