@media (orientation : portrait), (min-width: 1024px) {

  .desktop-app {
    display: none;
  }

  .mobile-wrapper {
    font-size: 1.8vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .mobile-mainContent {
    height: 93vh;
    width: 100vw;
    flex: 0 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .mobile-footer {
    height: 7vh;
    width: 100vw;
    flex: 0 0 auto;
    background-color: #282828;
    color: red;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .mobile-footer .phone, .mobile-footer .mail, .mobile-footer .map {
    height: 7vh;
    width: 33%;
    font-size: 3.5vh;
    line-height: 7vh;
    text-align: center;
  }

  .mobile-logo {
    width: 100vw;
    height: 25vh;
    background-image: url("../schoepf-logo.png");
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
    background-color: #FFFFFF;
    border: inset 3em transparent;
    box-sizing: border-box;
    cursor: pointer;
  }

  .mobile-logo-small {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 10vh;
    background-image: url("../schoepf-header.jpg");
    z-index: 10000;
    background-size: contain;
    background-position: 100% 90%;
    background-repeat: no-repeat;
    transition: all ease-in-out .5s;
    background-color: #FFFFFF;
    border: inset 10px transparent;
    box-sizing: border-box;
    cursor: pointer;
  }


  .mobile-welcome-image {
    background-image: url("../images/about_me.png");
  }

  h1 {
    display: inline-block;
    margin-top: 0.25em;
    margin-bottom: 1em;
    font-size: 2.7vh;
  }

  h2 {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 2.4vh;
  }

  h3 {
    font-size: 2.3vh;
  }

  .darkcolor {
    color: #2c3e50;
  }

  .darkBackground-diagonalSplit {
    background-color: #FFFFFF;
    background-image: -webkit-linear-gradient(-86deg, #FFFFFF 50%, #2c3e50 50%);
    height: 8vh;
    width: 98vw;
    padding: 2vw;
    margin: 0 auto;
  }

  .darkBackground {
    background-color: #2c3e50;
    color: #FFFFFF;
    width: 98vw;
    padding: 2vw;
    margin: 0 auto;
  }

  .lightBackground {
    background-color: #FFFFFF;
    color: #2c3e50;
    width: 98vw;
    padding: 2vw;
    margin: 0 auto;
  }



  #menuToggle
  {
    z-index: 20000;
    display: block;
    position: relative;
    top: 0.5em;
    left: 0.5em;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }

  /*#menuToggle a
  {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
  }

  #menuToggle a:hover
  {
    color: tomato;
  }*/


  #menuToggle input
  {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2000000; /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }

  #menuToggle span
  {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #2c3e50;
    border-radius: 3px;
    z-index: 1;

    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
  }

  #menuToggle span:first-child
  {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2)
  {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #666666;
  }

  #menuToggle input:checked ~ span:nth-last-child(3)
  {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2)
  {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu
  {
    position: fixed;
    width: 120vw;
    height: 120vh;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
         background: #FFFFFF;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  #menu li
  {
    padding: 10px 0;
    font-size: 5vw;
    cursor: pointer;
  }

  /*
   * And let's slide it in from the left
   */
  #menuToggle input:checked ~ ul
  {
    transform: none;
  }

  .success-frame, .failure-frame
  {
    background-color: #FFFFFF;
    padding: 0.5em;
    margin: 0.25em;
    text-align: left;
    border-radius: 0.5em;
  }

  .success-frame {
    color: darkgreen;
  }

  .failure-frame {
    color: darkred;
  }

  .v-expansion-panel-title {
    font-weight: bold;
    color: #2c3e50;
    background-color: #EEEEEE;
  }

  .v-expansion-panel-text__wrapper {
    color: #2c3e50;
  }

  #cookie-banner-text {
    height: 35vh;
  }
}
