.main-header {
  color: #252525;
  line-height: 70px;
  background: none;
  height: auto;
}

.main-header__content {
  height: 200px;
  /*  background-color: #f7f7f7;
    box-shadow: 0px 0px 10px 0px #7e7e7e;*/
}

.main-header__grid {
  height: 100%;
}



.header-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* mobile */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row-reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /**/
}
@media (max-width: 1024px) {
  .main-header__content .hidden--medium {
    display: none;
  }

  .main-header__grid {
    justify-content: center;
    flex-direction: column;
  }
  .header-container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .main-header__content {
    height: 70px;
  }
  .main-header__grid {
    justify-content: center;
    flex-direction: row;
  }
  .header-container {
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .main-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 11;
    line-height: inherit;
  }

  body.sub-menu-open #main-header {
    top: 0;
    bottom: 0;
  }

  .main-header__content {
    height: 100px;
    background-color: rgba(255, 255, 255, .87);
    box-shadow: none;
  }

  /*.main-header__background {
        content: '';
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        z-index: -1;
        height: 85px;
        background-color: rgba(255, 255, 255, .87);
        transform-origin: 0 0;
        transform: skewX(93deg);
    }*/

  .header-container {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-left: 14px;
  }

  .row-header--top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 36px;
  }

  .row-header--bottom {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 1280px) {
  .main-header {
    line-height: 60px;
  }

  .main-header__background {
    transform: skewX(92deg);
  }
}

@media (min-width: 1400px) {
  .main-header {
    line-height: 70px;
  }
}