/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */
@media all and (max-width: 768px) {
  @import url("https://fonts.googleapis.com/css?family=Montserrat:600&display=swap");

  body {
    font-family: Verdana, Geneva, Arial, sans-serif;
    font-size: medium;
    line-height: 1.5em;
  }

  .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(30px, 192px) minmax(200px, 600px)
      minmax(30px, 192px);
    grid-template-columns: minmax(30px, 192px) minmax(200px, 600px) minmax(
        30px,
        192px
      );
    -ms-grid-rows: minmax(70px, 159px) 50px 1fr 1fr 1fr 1fr 1fr 24px;
    grid-template-rows: auto auto repeat(5, auto);
    grid-template-areas:
      "icon header icon2"
      "menuBar menuBar lang"
      "pageContent pageContent pageContent"
      "pageContent pageContent pageContent"
      "pageContent pageContent pageContent"
      "news news news"
      "footer footer footer";
  }

  .header {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: header;
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column-align: center;
    justify-self: center;
    max-width: 600px;
    user-select: none;
  }

  #header {
    width: 100%;
    height: auto;
  }

  .icon {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: icon;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: end;
    align-self: end;
    user-select: none;
  }

  #icon {
    width: 100%;
    height: auto;
  }

  .icon2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: icon2;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: end;
    align-self: end;
    user-select: none;
  }

  #icon2 {
    width: 85%;
    height: auto;
  }

  .lang {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: lang;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: start;
    align-self: start;
  }

  #flag {
    width: 40px;
    height: 25px;
    margin-top: 36px;
    -webkit-tap-highlight-color: transparent;
  }

  /*=============== Start NEW MENU with Dropdown button ======================*/
  /*==========================================================================*/

  .menuBar {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: menuBar;
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column-align: center;
    justify-self: center;
    margin: 14px 0 5px 0;
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    z-index: 3;
  }

  .menuBar ul {
    margin: 13px;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  .menuBar li a {
    display: block;
    padding: 15px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
    border-radius: 10px;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
  }

  .menuBar li a:hover,
  .menuBar .menu-btn:hover {
    background-color: #c2c2c2;
    border-radius: 10px;
  }

  .menuBar li.selected {
    background-color: #e3e2e2;
    border-radius: 10px;
  }

  /* menu */

  .menuBar .menu {
    clear: both;
    max-height: 0;
  }

  /* menu icon */

  /* START HAMBURGER MENU */

  .menuBar .menu-icon {
    display: block;
    cursor: pointer;
    padding: 20px;
    text-align: center;
    user-select: none;
    width: fit-content;
    margin: auto;
    position: relative;
    top: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .menuBar .menu-icon .navicon {
    background: rgb(50, 50, 50);
    display: block;
    height: 2px;
    position: relative;
    width: 28px;
    margin: auto;
  }

  .menuBar .menu-icon .navicon:before,
  .menuBar .menu-icon .navicon:after {
    background: rgb(50, 50, 50);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    transition: all 0.1s ease-out;
  }

  .menuBar .menu-icon .navicon:before {
    top: 6px;
  }

  .menuBar .menu-icon .navicon:after {
    top: -6px;
  }

  /* END HAMBURGER MENU */

  /* menu btn */

  .menuBar .menu-btn {
    display: none;
  }

  .menuBar .menu-btn:checked ~ .menu {
    max-height: max-content;
  }

  .menuBar .menu-btn:checked ~ .menu-icon .menu-btn-text {
    border-bottom: solid 1px;
  }

  .menuBar .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }

  .menuBar .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .menuBar .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .menuBar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .menuBar .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }

  /*================== End NEW MENU with Dropdown button ====================*/
  /*=========================================================================*/

  .footer {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: footer;
    font-size: 50%;
    -ms-grid-column-align: center;
    justify-self: center;
    margin-top: 15px;
  }
}
