/*
 * ШАПКА
 */


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 950;
    transition: .2s;
    height: 12rem;
    background-color: #fff;
}
.header.on {
    height: 7rem;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .1);
}
.header__width-limiter {
    width: 100%;
    align-self: stretch;
    display: flex;
}
.header__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    justify-content: center;
    align-self: stretch;
}

.flexible-spacing-horizontal {
    width: 100%;
    flex-shrink: 1;
}









.nav-tgl {
    position: absolute;
    top: 50%;
    margin-top: -3rem;
    left: 6rem;
    justify-content: flex-start;
    align-items: center;
    transition: .3s;
    display: flex;
    width: auto;
    height: 6rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-tgl.on {

}
.nav-tgl .nav-tgl__icon {
    position: relative;
    align-self: stretch;
    width: 2rem;
}
.nav-tgl .nav-tgl__dash {
    display: block;
    position: absolute;
    height: .2rem;
    width: 100%;
    background: #000;
    opacity: .7;
    /*left: 50%;*/
    width: 100%;
    /*margin-left: -1rem;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-tgl .nav-tgl__dash--1 {
    top: 2.6rem;
}
.nav-tgl .nav-tgl__dash--2 {
    bottom: 2.6rem;
}
.nav-tgl.on .nav-tgl__dash {
    
}
.nav-tgl.on .nav-tgl__dash--1 {
    top: 2.9rem;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-tgl.on .nav-tgl__dash--2 {
    bottom: 2.9rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-tgl__label {
    color: rgba(0, 0, 0,.7);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .3rem;
    display: block;
    margin-left: 1.2rem;
    text-transform: uppercase;
}










.logo {
    display: block;
    flex-shrink: 0;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}
.logo__link {
    display: flex;
    align-self: stretch;
    align-items: center;
    height: 100%;
    width: 100%;
}
.logo__image {
    width: 16rem;
    height: auto;
    display: block;
    transition: .2s;
}
.header.on .logo__image {
    width: 13rem;
}













.minicart {
    position: absolute;
    right: 6rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.minicart__link {
    display: flex;
    align-items: center;
    height: 6rem;
    transition: .2s;
    position: relative;
}
.minicart__link:hover {
    
}
.minicart__icon {
    font-size: 1.8rem;
    color: #000;
    padding-bottom: .2rem;
    opacity: .7;
}
.minicart__count {
    margin-left: .5rem;
    display: flex;
    width: 2.6rem;
    height: 2.6rem;
    font-weight: 800;
    border-radius: 10rem;
    color: rgba(0, 0, 0, .7);
    background-color: rgba(0, 0, 0, .07);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.minicart__amount {
    color: rgba(0, 0, 0, .7);
    font-size: 1.2rem;
    margin-left: 1rem;
    font-weight: 700;
    letter-spacing: .2rem;
}








.header .contacts {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    position: absolute;
    right: 6rem;
    top: 3rem;
}
.header .contacts-item {
    display: flex;
    align-items: stretch;
    margin-left: .6rem;
}
.header .contacts-item:first-child {
    margin-left: 0;
}
.header .contacts-item__content {
    display: flex;
    align-items: center;
}
.header .contacts-item__link {
    
}
.header .contacts-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 20rem;
    font-size: 1.8rem;
    color: #000;
    transition: .2s;
    background-color: rgba(0, 0, 0, .04);
}
.header .contacts-item__icon--address {
    font-size: 1.8rem;
}
.header .contacts-item__icon--phone {
    font-size: 1.8rem;
    padding-left: .1rem;
}
.header .contacts-item__icon--time {
    font-size: 1.8rem;
}
.header .contacts-item__icon--instagram {
    font-size: 2rem;
}
.header .contacts-item__text {
    display: flex;
    align-items: center;
    margin-left: .6rem;
    font-size: 1.4rem;
    color: #000;
    transition: .2s;
    white-space: pre-wrap;
}












.sidebar {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 12rem;
    bottom: 0;
    right: 0;
    z-index: 800;
    width: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    transition: .5s;
    opacity: 0;
    pointer-events: none;
}
.sidebar.resize {
    top: 7rem;
}
.sidebar.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Главное меню навигации */

.nav-primary {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.nav-primary .menu-item {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 1;
    color: #fff;
    background-color: #000;
    border-left: .1rem solid #fff;
}
.nav-primary .menu-item:first-child {
    border-left: none;
}
.nav-primary .menu-item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    transition: .6s;
}
.nav-primary .menu-item a {
    padding-top: 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
    transition: .2s;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    font-family: 'Dirk';
    letter-spacing: .3rem;
}
.nav-primary .menu-item:hover .menu-item-img,
.nav-primary .current-menu-item .menu-item-img {
    transform: scale(1.1);
    opacity: .3;
    filter: grayscale(100%);
}
.nav-primary .menu-item:hover {
    color: #eedfc2;
}
.nav-primary .current-menu-item {
    color: #eedfc2;
}
.nav-primary .sub-menu {
    display: none;
}



































































@media all and (max-width: 1200px) {


/*
 * ШАПКА
 */


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 950;
    transition: .2s;
    height: 6rem;
    background-color: #fff;
}
.header.on {
    height: 7rem;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .1);


    height: 6rem;
}
.header__width-limiter {
    width: 100%;
    align-self: stretch;
    display: flex;
}
.header__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    justify-content: center;
    align-self: stretch;
}

.flexible-spacing-horizontal {
    width: 100%;
    flex-shrink: 1;
}









.nav-tgl {
    position: absolute;
    top: 50%;
    margin-top: -3rem;
    left: 6rem;
    justify-content: flex-start;
    align-items: center;
    transition: .3s;
    display: flex;
    width: auto;
    height: 6rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    flex-shrink: 0;


    left: 0;
    padding-left: 2rem;
}
.nav-tgl.on {

}
.nav-tgl .nav-tgl__icon {
    position: relative;
    align-self: stretch;
    width: 2rem;
}
.nav-tgl .nav-tgl__dash {
    display: block;
    position: absolute;
    height: .2rem;
    width: 100%;
    background: #000;
    opacity: .7;
    /*left: 50%;*/
    width: 100%;
    /*margin-left: -1rem;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-tgl .nav-tgl__dash--1 {
    top: 2.6rem;
}
.nav-tgl .nav-tgl__dash--2 {
    bottom: 2.6rem;
}
.nav-tgl.on .nav-tgl__dash {
    
}
.nav-tgl.on .nav-tgl__dash--1 {
    top: 2.9rem;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-tgl.on .nav-tgl__dash--2 {
    bottom: 2.9rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-tgl__label {
    color: rgba(0, 0, 0,.7);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .3rem;
    display: block;
    margin-left: 1.2rem;
    text-transform: uppercase;
}










.logo {
    display: block;
    flex-shrink: 0;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}
.logo__link {
    display: flex;
    align-self: stretch;
    align-items: center;
    height: 100%;
    width: 100%;
}
.logo__image {
    width: 16rem;
    height: auto;
    display: block;
    transition: .2s;


    width: 13rem;
}
.header.on .logo__image {
    width: 13rem;
}













.minicart {
    position: absolute;
    right: 6rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;


    right: 0;
}
.minicart__link {
    display: flex;
    align-items: center;
    height: 6rem;
    transition: .2s;
    position: relative;


    padding-right: 1.6rem;
}
.minicart__link:hover {
    
}
.minicart__icon {
    font-size: 1.8rem;
    color: #000;
    padding-bottom: .2rem;
    opacity: .7;


    display: none;
}
.minicart__count {
    margin-left: .5rem;
    display: flex;
    width: 2.6rem;
    height: 2.6rem;
    font-weight: 800;
    border-radius: 10rem;
    color: rgba(0, 0, 0, .7);
    background-color: rgba(0, 0, 0, .07);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;


    margin-left: 0;
}
.minicart__amount {
    color: rgba(0, 0, 0, .7);
    font-size: 1.2rem;
    margin-left: 1rem;
    font-weight: 700;
    letter-spacing: .2rem;


    margin-left: .8rem;
}








.header .contacts {
    display: flex;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    position: absolute;
    right: 6rem;
    top: 3rem;
}
.header .contacts-item {
    display: flex;
    align-items: stretch;
    margin-left: .6rem;
}
.header .contacts-item:first-child {
    margin-left: 0;
}
.header .contacts-item__content {
    display: flex;
    align-items: center;
}
.header .contacts-item__link {
    
}
.header .contacts-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 20rem;
    font-size: 1.8rem;
    color: #000;
    transition: .2s;
    background-color: rgba(0, 0, 0, .04);
}
.header .contacts-item__icon--address {
    font-size: 1.8rem;
}
.header .contacts-item__icon--phone {
    font-size: 1.8rem;
    padding-left: .1rem;
}
.header .contacts-item__icon--time {
    font-size: 1.8rem;
}
.header .contacts-item__icon--instagram {
    font-size: 2rem;
}
.header .contacts-item__text {
    display: flex;
    align-items: center;
    margin-left: .6rem;
    font-size: 1.4rem;
    color: #000;
    transition: .2s;
    white-space: pre-wrap;
}












.sidebar {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 12rem;
    bottom: 0;
    right: 0;
    z-index: 800;
    width: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    transition: .5s;
    opacity: 0;
    pointer-events: none;


    top: 6rem;
}
.sidebar.resize {
    top: 7rem;


    top: 6rem;
}
.sidebar.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Главное меню навигации */

.nav-primary {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    width: 100%;


    flex-direction: column;
}
.nav-primary .menu-item {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 1;
    color: #fff;
    background-color: #000;
    border-left: .1rem solid #fff;


    height: 100%;
    border-left: none;
    border-top: .1rem solid #fff;
}
.nav-primary .menu-item:first-child {
    border-left: none;


    border-top: none;
}
.nav-primary .menu-item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    transition: .6s;
}
.nav-primary .menu-item a {
    padding-top: 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 400;
    transition: .2s;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    font-family: 'Dirk';
    letter-spacing: .3rem;


    padding: 0;
}
.nav-primary .menu-item:hover .menu-item-img,
.nav-primary .current-menu-item .menu-item-img {
    transform: scale(1.1);
    opacity: .3;
    filter: grayscale(100%);
}
.nav-primary .menu-item:hover {
    color: #eedfc2;
}
.nav-primary .current-menu-item {
    color: #eedfc2;
}
.nav-primary .sub-menu {
    display: none;
}



}























