@media screen and (max-width: 1140px) {

    .burger-menu {
        display: grid;
        align-items: center;
        justify-content: right;
    }

    .hamburger {
        width: 24px;
        height: 24px;
    }

    .hamburger__bar {
        transition-property: transform;
        transition-duration: 0.3s;
        transform-origin: center;
        stroke: #333;
        stroke-width: 10%;
    }

    .hamburger__bar {
        transition-property: transform;
        transition-duration: 0.3s;
        transform-origin: center;
    }

    .hamburger__bar--top {
        transform:translate(8px,-25%);
    }

    .hamburger__bar--bot {
        transform: translateY(25%);
    }

    .bottom .hamburger__bar--top {
        transform: rotate(45deg);
    }

    .bottom .hamburger__bar--mid {
        transform: scaleX(0.1);
    }

    .bottom .hamburger__bar--bot {
        transform: rotate(-45deg);
    }

    .primary-header.bottom{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
        bottom: 0;
   }

    .mainMenu  {
        margin: 30px 0 0!important;
        grid-column-start: 1!important;
        grid-column-end: 2!important;
        grid-row-start: 3!important;
        grid-row-end: 3!important;
    }
    .mainMenu ul {
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
    }
    .mainMenu ul li {

        padding: 12px 0 8px 0;
        border-bottom: solid 1px #f1f1f1;
    }

    .primary-header #headerSearch {
        display: none;
    }
    .mobileSearch{
        display: block;
    }
	.mobile-hidden{
		display:none;
	}
}