@media only screen and (max-width: 1200px) {
  .wrapper {
    width: 100vw;
  }
  .header {
    display: none;
  }
  .navigation {
    display: none;
  }
  .mobHeader {
    display: block;
  }
  .mobHeader .logo {
    padding: 40px;
    width: calc(100% - 80px);
  }
  .mobNavigation {
    display: block;
    width: 100%;
    height: 50px;
    background: #00529C;
    color: white;
    text-align: center;
    font-size: 20px;
  }
  .mobNavigation option {
    text-align: center;
    background: #00529C;
    color: white;
  }
  .body {
    width: calc(100vw - 80px);
  }
  .content {
    float: none;
    width: calc(100%);
    margin: 0 !important;
    padding: 0 !important;
  }
  .contentLeft {
    width: calc(100%) !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    margin-bottom: 50px !important;
  }
  .contentRight {
    width: calc(100%) !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }
}
