@media (min-width: 1256px) {
  body > header .mobile-menu-toggle {
    display: none;
  }
}
@media (max-width: 1256px) {
  body .container {
    width: 100%;
  }
  body > header .mobile-menu-toggle {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    position: absolute;
  }
  body > header .mobile-menu-toggle[aria-expanded="true"] .bar1 {
    -webkit-transform: rotate(-45deg) translate(-8px, 7px);
    transform: rotate(-45deg) translate(-8px, 7px);
  }
  body > header .mobile-menu-toggle[aria-expanded="true"] .bar2 {
    opacity: 0;
  }
  body > header .mobile-menu-toggle[aria-expanded="true"] .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }
  body > header .mobile-menu-toggle .bar1,
  body > header .mobile-menu-toggle .bar2,
  body > header .mobile-menu-toggle .bar3 {
    width: 35px;
    height: 5px;
    background-color: #322fa1;
    margin: 6px 0;
    transition: 0.3s;
  }
  body > header .container a[rel=home] {
    margin: auto;
  }
  body > header #main-nav {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 35px 1fr;
    grid-template-areas: "menu" "search" "rashut";
    grid-row-gap: 30px;
    background-color: #ffffff;
    position: fixed;
    z-index: 1;
    top: 107px;
    left: 0;
    height: calc(100vh - 107px);
    right: 0;
    width: 0;
    margin: 0;
    padding: 20px;
    overflow: hidden;
    -webkit-transition: width ease 0.2s;
    transition: width ease 0.2s;
    border-top: 3px solid #f4f4f4;
  }
  body > header #main-nav:not(.ng-hide) {
    width: 100vw;
  }
  body > header #main-nav > ul {
    grid-area: menu;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 65px);
    grid-template-areas: "jobs courses" "store articles" "contact about";
    grid-row-gap: 15px;
    height: auto;
  }
  body > header #main-nav > ul li#nav-courses {
    grid-area: courses;
  }
  body > header #main-nav > ul li#nav-jobs {
    grid-area: jobs;
  }
  body > header #main-nav > ul li#nav-store {
    grid-area: store;
  }
  body > header #main-nav > ul li#nav-articles {
    grid-area: articles;
  }
  body > header #main-nav > ul li#nav-contact {
    grid-area: contact;
  }
  body > header #main-nav > ul li#nav-about {
    grid-area: about;
  }
  body > header #main-nav > ul li a {
    margin: 0 auto;
  }
  body > header #main-nav #nav-search {
    grid-area: search;
    width: 281px;
    margin: 15px 0 0;
    left: 50%;
    transform: translateX(-50%);
  }
  body > header #main-nav #nav-search .input-wrapper #search-input {
    width: 243px;
  }
  body > header #main-nav #nav-search .input-wrapper #search-submit {
    clip: auto;
    top: 1px;
    left: 1px;
    bottom: 0;
    width: 35px;
    height: 33px;
    padding: 0;
  }
  body > header #main-nav #rashut {
    grid-area: rashut;
    align-self: end;
    justify-self: end;
  }
  body > header #accessibility {
    display: none;
  }
  body main .banner {
    max-height: 215px;
    margin-bottom: 70px !important;
  }
  body main .banner .content h1 {
    transform: translateY(-40px);
    font-size: 45px !important;
    position: absolute;
    left: 0;
    right: 0;
  }
  body main .banner .content .contact-assistant {
    bottom: -205px !important;
    top: auto !important;
    zoom: 0.8;
  }
  body main > *:not(.banner) {
    padding: 0 5px;
  }
  body main .mobile-column {
    flex-direction: column;
  }
  body .site-footer:first-of-type {
    height: auto;
    padding-bottom: 60px;
  }
  body .site-footer #jump-to-top {
    top: -19px;
    left: 5px;
  }
  body .site-footer #call-now {
    text-align: center;
  }
  body .site-footer #call-now .blue {
    display: block;
  }
  body .site-footer #rate-us {
    padding: 0 20px;
  }
  body .site-footer #rate-us > span {
    font-size: 15px;
    display: block;
  }
  body .site-footer #rate-us .rating {
    vertical-align: top;
    display: inline;
  }
  body .site-footer #rate-us .pipe {
    display: none;
  }
  body .site-footer #rate-us a {
    margin-top: 5px;
    display: inline-block;
  }
  body .site-footer #facebook {
    top: auto;
    transform: none;
    bottom: -45px;
  }
  body .site-links .container {
    flex-direction: column;
    padding: 20px 10px;
  }
  body .site-links .container section:first-of-type {
    border: 0;
    padding: 0;
    margin: 0 0 20px;
  }
  body .site-links .container section.courses ul {
    columns: 2;
  }
}
@media (max-width: 480px) {
  body > header {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 70px;
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(12, 13, 14, 0.1), 0 1px 6px rgba(59, 64, 69, 0.1);
  }
  body > header #main-nav:not(.ng-hide) {
    height: calc(100% - 70px);
    top: 70px;
    z-index: 100000000000;
  }
  body > header .container a[rel=home] img {
    width: 76px;
    vertical-align: top;
  }
}
