@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #333333;
  * {
    box-sizing: border-box;
  }
  .header {
    .corporate-logo {
      opacity: 0;
    }
    .nav {
      ul li:first-child {
        /* display: none; */
      }
    }
  }
  .main.corporate-logo {
    height: calc( 100% - 75px - 35px );
    display: flex;
    justify-content: center;
    align-items: center;
    img.logo {
      width: 240px;
      margin-top: -60px;
    }
  }
  .footer {
    /* position: absolute;
       bottom: 0px; */
  }
}

@media screen and ( max-width: 500px ) {
  body {
    .header {
      /* display: none; */
    }
  }
}
