/*
 * ШАПКА
 */


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


.header__inner-3 {
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(.4rem);
    height: 5rem;
    justify-content: center;
    border-top: .1rem solid rgba(255, 255, 255, .12);

    display: none;
}

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





.nav-tgl {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    left: 0;
    /*text-transform: uppercase;*/
    padding: 0 0 0 6rem;
    /*letter-spacing: .2rem;*/
    /*opacity: .7;*/
    cursor: pointer;
    transition: .3s;
    width: 40rem;
}
.nav-tgl i {
    font-size: 1.6rem;
    margin-right: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .05);
}


.cats-tgl {
    display: none;
}




















.sidebar {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: auto;
    min-width: 30rem;
    max-width: 50rem;
    padding: 5rem 6rem 6rem 6rem;
    z-index: 950;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    transition: .3s;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateX(-3rem);
    pointer-events: none;
    overflow-y: auto;
}
.sidebar.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sidebar-close {
    color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 5rem;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 0, 0, .05);
    z-index: 960;
    transition: .2s;
    cursor: pointer;
    border-radius: 0 1.2rem 1.2rem 0;
}
.sidebar-close:after {
    font-family: 'Fontello';
    content: '\e82e';
    font-size: 1.4rem;
}
.sidebar-close:hover {
    color: #000;
}



.nav-primary {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    align-items: flex-start;
}
.nav-primary .menu-item {
    display: flex;
    position: relative;
    margin-top: .6rem;
}
.nav-primary .menu-item:first-child {
    margin-top: 0;
}
.nav-primary .menu-item a {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, .4);
    font-weight: 700;
    transition: .2s;
    position: relative;
    width: 100%;
    line-height: 1.2;
    height: 4rem;
    /*text-transform: uppercase;*/
    padding: 0 2.4rem .1rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .05);
}
.nav-primary .menu-item a:hover,
.nav-primary .current-menu-item a {
    color: rgba(0, 0, 0, 1);
}
.nav-primary .sub-menu {
    display: none;
}




































.header .contacts {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    padding-right: 6rem;
    width: auto;
}
.header .contacts .contacts-item {
    display: flex;
    align-items: stretch;
    margin-left: 1.2rem;
}
.header .contacts .contacts-item:first-child {
    margin-left: 0;
}
.header .contacts .contacts-item__content {
    display: flex;
    align-items: center;
}
.header .contacts .contacts-item__link {
    
}
.header .contacts .contacts-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    font-size: 1.4rem;
    color: #000;
    transition: .2s;
    background-color: rgba(0, 0, 0, .04);
}
.header .contacts .contacts-item__icon--address {
    font-size: 1.4rem;
}
.header .contacts .contacts-item__icon--phone {
    font-size: 1.4rem;
    padding-left: .1rem;
}
.header .contacts .contacts-item__icon--time {
    font-size: 1.4rem;
}
.header .contacts .contacts-item__icon--instagram {
    font-size: 1.6rem;
}
.header .contacts .contacts-item__text {
    display: flex;
    align-items: center;
    margin-right: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    /*text-transform: uppercase;*/
    /*letter-spacing: .2rem;*/
    color: #000;
    transition: .2s;
    white-space: pre-wrap;
}
.header #contacts-tgl {
    cursor: pointer;
}













.contacts-fixed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.contacts-fixed.on {
    opacity: 1;
    pointer-events: auto;
}

.contacts-fixed .map-wrap {
    width: 100%;
    flex-shrink: 1;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5rem);
    background-color: #fff;
}
.contacts-fixed.on .map-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contacts-fixed .contacts-items {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 3.6rem 6rem 6rem;
    width: 40rem;
    flex-shrink: 0;
    background-color: #fff;
    position: relative;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5rem);
}
.contacts-fixed.on .contacts-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contacts-fixed-close {
    color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 3.6rem;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 0, 0, .05);
    z-index: 960;
    transition: .2s;
    cursor: pointer;
}
.contacts-fixed-close:after {
    font-family: 'Fontello';
    content: '\e82e';
    font-size: 1.4rem;
}
.contacts-fixed-close:hover {
    color: #000;
}

.contacts-fixed .contacts-item {
    margin-top: 2.8rem;
    padding-top: 2.8rem;
    border-top: .3rem dotted rgba(0, 0, 0, .1);
}
.contacts-fixed .contacts-item:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}
.contacts-fixed .contacts-item__title {
    font-weight: 700;
    color: rgba(0, 0, 0, .3);
    font-size: 2rem;
}
.contacts-fixed .contacts-item__details {
    margin-top: 2rem;
}
.contacts-fixed .contacts-item__content {
    display: flex;
    align-items: center;
    margin-top: .8rem;
}
.contacts-fixed .contacts-item__content:first-child {
    margin-top: 0;
}
.contacts-fixed .contacts-item__icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 20rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.contacts-fixed .contacts-item__icon:before {
    font-family: 'Fontello';
    font-size: 1.6rem;
    color: rgba(0, 0, 0, .5);
}
.contacts-fixed .contacts-item__icon.address:before {
    content: '\f031';
}
.contacts-fixed .contacts-item__icon.time:before {
    content: '\e817';
}
.contacts-fixed .contacts-item__icon.phone:before {
    content: '\e80c';
}
.contacts-fixed .contacts-item__icon.instagram:before {
    content: '\f16d';
}
.contacts-fixed .contacts-item__text {
    display: block;
    margin-left: .8rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
}






















.nav-tgl {
    /*display: none;*/
}







.logo {
    display: block;
    flex-shrink: 0;
    align-self: stretch;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20rem;
    margin-left: -10rem;
    left: 50%;
}
.logo__link {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 2rem 0 2rem;
    transition: .2s;
}
.logo__image {
    width: auto;
    height: 100%;
    display: block;
    transition: .2s;
}
.header.on .logo__link {
    padding: .6rem 0 .6rem;
}
.header.on .logo__image {
    
}









.nav-wrap {
    display: flex;
    align-items: stretch;
    align-self: stretch;
}
.nav__item {
    display: flex;
    align-items: stretch;
    position: relative;
    margin-left: 3.6rem;
}
.nav__item:first-child {
    margin-left: 0;
}
.nav__link {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    transition: .2s;
    padding-bottom: .3rem;
}
.nav__link:hover,
.nav__link.on {
    color: #FAA613;
}















.cats-nav {
    position: relative;
    overflow-y: hidden;
    margin-top: 1.2rem;
}

.cats-nav .cats-wrap {
    overflow-x: auto;
    width: 100%;
    padding: 3.6rem 6rem;
    background-color: #FFF6E3;
    position: sticky;
    top: 0;
    position: relative;
}
.cats-nav .cats-items {
    display: flex;
    position: relative;
    flex-shrink: 0;
}
.cats-nav .cats__item {
    position: relative;
    margin-left: 3.6rem;
    width: 12rem;
    flex-shrink: 0;
}
.cats-nav .cats__item:hover {
    /*background-color: rgba(0, 0, 0, .07);*/
}
.cats-nav .cats__item:before {
    position: absolute;
    content: '';
    width: .1rem;
    height: 6rem;
    background-color: rgba(0, 0, 0, .07);
    right: -1.8rem;
    top: 3rem;
}
.cats-nav .cats__item:first-child {
    margin-left: 0;
}
.cats-nav .cats__item:last-child {
    padding-right: 6rem;
    width: 18rem;
}
.cats-nav .cats__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cats-nav .cats__link-icon-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 300rem;
    width: 12rem;
    background-color: #fff;
}
.cats-nav .cats__link-icon-wrap:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.cats-nav .cats__link-icon {
    position: absolute;
    left: 3rem;
    top: 3rem;
    width: calc(100% - 6rem);
    height: calc(100% - 6rem);
    object-fit: contain;
    opacity: .8;
}
.cats-nav .cats__link-label {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.cats-nav .cats__next {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 50;
    background-color: #fff;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .3);

    display: none;
}
.cats-nav .cats__next-icon {
    opacity: .6;
}
.cats-nav .cats__next-icon:before {
    font-family: 'Fontello';
    content: '\E84E';
    font-size: 2.4rem;
}












.cats-nav-fixed {
    position: fixed;
    overflow-y: hidden;
    left: 0;
    top: 7rem;
    right: 0;
    background-color: #fff;
    z-index: 300;
    height: 6rem;
    box-shadow: 0 0 3rem rgba(0, 0, 0, .1);
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2rem);
}
.cats-nav-fixed.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cats-nav-fixed .cats-wrap {
    overflow-x: auto;
    width: 100%;
    padding: 0 6rem;
    height: 100%;
    position: relative;
}
.cats-nav-fixed .cats-items {
    display: flex;
    position: relative;
    flex-shrink: 0;
    height: 100%;
    align-items: center;
}
.cats-nav-fixed .cats__item {
    position: relative;
    margin-left: 2.4rem;
    flex-shrink: 0;
    opacity: .6;
    transition: .2s;
}
.cats-nav-fixed .cats__item:hover {
    /*background-color: rgba(0, 0, 0, .07);*/
    opacity: 1;
}
.cats-nav-fixed .cats__item:first-child {
    margin-left: 0;
}
.cats-nav-fixed .cats__item:last-child {
    padding-right: 6rem;
}
.cats-nav-fixed .cats__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s;
}
.cats-nav-fixed .cats__link.on {
    color: #F44708;
}
.cats-nav-fixed .cats__link-label {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}














.right-tgls {
    display: flex;
    align-items: center;
    align-self: center;
}
.searchform-tgl {
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .04);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.searchform-del {
    width: .2rem;
    flex-shrink: 0;
    display: block;
    background-color: rgba(0, 0, 0, .12);
    height: 4rem;
    margin: 0 2rem 0 2rem;
}
.searchform-tgl:before {
    content: '\e801';
    font-size: 1.4rem;
    font-family: 'Fontello';
}

.searchform-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #fff;
    z-index: 970;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6rem;
    transition: .3s;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-2rem);
}
.searchform-wrap.on {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.searchform {
    display: flex;
    align-items: stretch;
    height: 5rem;
    width: 100%;
}
.searchform__input {
    background-color: rgba(0, 0, 0, .07);
    border-radius: 1rem 0 0 1rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    width: 100%;
    flex-shrink: 1;
    font-family: 'Montserrat';
}
.searchform__btn {
    width: 5rem;
    border-radius: 0 1rem 1rem 0;
    flex-shrink: 0;
    background-color: #0C6EE6;
    background-color: #E46707;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchform__btn:before {
    content: '\e801';
    font-size: 2rem;
    font-family: 'Fontello';
}
.searchform__close {
    width: 5rem;
    border-radius: 0 1rem 1rem 0;
    flex-shrink: 0;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .6;
    cursor: pointer;
}
.searchform__close:before {
    content: '\e82e';
    font-size: 1.6rem;
    font-family: 'Fontello';
}

.search-results-title {
    font-size: 2rem;
    line-height: 1.4;
    display: block;
    width: 100%;
}










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






















































@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;
    background-color: #fff;
}
.header.on {
    box-shadow: 0 .1rem 2rem rgba(0, 0, 0, .1);
}
.header__width-limiter {
    width: 100%;
}
.header__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 6rem;


    padding: 0;
}
.header__inner-2 {
    background-color: rgba(255, 255, 255, .1);
    height: 12rem;
    transition: .2s;
    padding: 0;
    position: relative;
    justify-content: space-between;
    align-items: stretch;


    height: 6rem;
}
.header.on .header__inner-2 {
    height: 7rem;


    height: 6rem;
}


.header__inner-3 {
    background-color: rgba(0, 0, 0, .6);
    backdrop-filter: blur(.4rem);
    height: 5rem;
    justify-content: center;
    border-top: .1rem solid rgba(255, 255, 255, .12);

    display: none;
}

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





.nav-tgl {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    left: 0;
    /*text-transform: uppercase;*/
    padding: 0 0 0 6rem;
    /*letter-spacing: .2rem;*/
    /*opacity: .7;*/
    cursor: pointer;
    transition: .3s;
    width: 40rem;


    padding-left: 2rem;
    width: auto;
    font-size: 0;
    width: 6rem;
}
.nav-tgl i {
    font-size: 1.6rem;
    margin-right: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .05);


    margin-right: 0;
}



.cats-tgl {
    display: none;


    display: flex;
    align-items: center;
    font-weight: 700;
    position: relative;
    left: 0;
    cursor: pointer;
    transition: .3s;
    padding-right: 2rem;
    width: auto;
    font-size: 0;
    width: 6rem;
}
.cats-tgl i {
    

    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .05);
    margin-right: 0;
    transition: .2s;
}
.cats-tgl.on i {
    background-color: #E46707;
    color: #fff;
}



















.sidebar {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: auto;
    min-width: 30rem;
    max-width: 50rem;
    padding: 5rem 6rem 6rem 6rem;
    z-index: 950;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    transition: .3s;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateX(-3rem);
    pointer-events: none;
    overflow-y: auto;
}
.sidebar.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sidebar-close {
    color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 5rem;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 0, 0, .05);
    z-index: 960;
    transition: .2s;
    cursor: pointer;
    border-radius: 0 1.2rem 1.2rem 0;
}
.sidebar-close:after {
    font-family: 'Fontello';
    content: '\e82e';
    font-size: 1.4rem;
}
.sidebar-close:hover {
    color: #000;
}



.nav-primary {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    align-items: flex-start;
}
.nav-primary .menu-item {
    display: flex;
    position: relative;
    margin-top: .6rem;
}
.nav-primary .menu-item:first-child {
    margin-top: 0;
}
.nav-primary .menu-item a {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, .4);
    font-weight: 700;
    transition: .2s;
    position: relative;
    width: 100%;
    line-height: 1.2;
    height: 4rem;
    /*text-transform: uppercase;*/
    padding: 0 2.4rem .1rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .05);
}
.nav-primary .menu-item a:hover,
.nav-primary .current-menu-item a {
    color: rgba(0, 0, 0, 1);
}
.nav-primary .sub-menu {
    display: none;
}




































.header .contacts {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    padding-right: 6rem;
    width: 40rem;


    display: none;
}
.header .contacts .contacts-item {
    display: flex;
    align-items: stretch;
    margin-left: 1.2rem;
}
.header .contacts .contacts-item:first-child {
    margin-left: 0;
}
.header .contacts .contacts-item__content {
    display: flex;
    align-items: center;
}
.header .contacts .contacts-item__link {
    
}
.header .contacts .contacts-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    font-size: 1.4rem;
    color: #000;
    transition: .2s;
    background-color: rgba(0, 0, 0, .04);
}
.header .contacts .contacts-item__icon--address {
    font-size: 1.4rem;
}
.header .contacts .contacts-item__icon--phone {
    font-size: 1.4rem;
    padding-left: .1rem;
}
.header .contacts .contacts-item__icon--time {
    font-size: 1.4rem;
}
.header .contacts .contacts-item__icon--instagram {
    font-size: 1.6rem;
}
.header .contacts .contacts-item__text {
    display: flex;
    align-items: center;
    margin-right: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    /*text-transform: uppercase;*/
    /*letter-spacing: .2rem;*/
    color: #000;
    transition: .2s;
    white-space: pre-wrap;
}
.header #contacts-tgl {
    cursor: pointer;
}













.contacts-fixed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.contacts-fixed.on {
    opacity: 1;
    pointer-events: auto;
}

.contacts-fixed .map-wrap {
    width: 100%;
    flex-shrink: 1;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5rem);
    background-color: #fff;
}
.contacts-fixed.on .map-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contacts-fixed .contacts-items {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 3.6rem 6rem 6rem;
    width: 40rem;
    flex-shrink: 0;
    background-color: #fff;
    position: relative;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5rem);
}
.contacts-fixed.on .contacts-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contacts-fixed-close {
    color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 3.6rem;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: rgba(0, 0, 0, .05);
    z-index: 960;
    transition: .2s;
    cursor: pointer;
}
.contacts-fixed-close:after {
    font-family: 'Fontello';
    content: '\e82e';
    font-size: 1.4rem;
}
.contacts-fixed-close:hover {
    color: #000;
}

.contacts-fixed .contacts-item {
    margin-top: 2.8rem;
    padding-top: 2.8rem;
    border-top: .3rem dotted rgba(0, 0, 0, .1);
}
.contacts-fixed .contacts-item:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}
.contacts-fixed .contacts-item__title {
    font-weight: 700;
    color: rgba(0, 0, 0, .3);
    font-size: 2rem;
}
.contacts-fixed .contacts-item__details {
    margin-top: 2rem;
}
.contacts-fixed .contacts-item__content {
    display: flex;
    align-items: center;
    margin-top: .8rem;
}
.contacts-fixed .contacts-item__content:first-child {
    margin-top: 0;
}
.contacts-fixed .contacts-item__icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 20rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.contacts-fixed .contacts-item__icon:before {
    font-family: 'Fontello';
    font-size: 1.6rem;
    color: rgba(0, 0, 0, .5);
}
.contacts-fixed .contacts-item__icon.address:before {
    content: '\f031';
}
.contacts-fixed .contacts-item__icon.time:before {
    content: '\e817';
}
.contacts-fixed .contacts-item__icon.phone:before {
    content: '\e80c';
}
.contacts-fixed .contacts-item__icon.instagram:before {
    content: '\f16d';
}
.contacts-fixed .contacts-item__text {
    display: block;
    margin-left: .8rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
}






















.nav-tgl {
    /*display: none;*/
}






.logo {
    display: block;
    flex-shrink: 0;
    align-self: stretch;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10rem;
    margin-left: -5rem;
    left: 50%;
}
.logo__link {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: .6rem 0 .6rem;
    transition: .2s;
}
.logo__image {
    width: auto;
    height: 100%;
    display: block;
    transition: .2s;
}
.header.on .logo__link {
    padding: .6rem 0 .6rem;
}
.header.on .logo__image {
    
}









.nav-wrap {
    display: flex;
    align-items: stretch;
    align-self: stretch;
}
.nav__item {
    display: flex;
    align-items: stretch;
    position: relative;
    margin-left: 3.6rem;
}
.nav__item:first-child {
    margin-left: 0;
}
.nav__link {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    transition: .2s;
    padding-bottom: .3rem;
}
.nav__link:hover,
.nav__link.on {
    color: #FAA613;
}















.cats-nav {
    position: relative;
    overflow-y: hidden;
    margin-top: 1.2rem;
}

.cats-nav .cats-wrap {
    overflow-x: auto;
    width: 100%;
    padding: 3.6rem 6rem;
    background-color: #FFF6E3;
    position: sticky;
    top: 0;
    position: relative;
}
.cats-nav .cats-items {
    display: flex;
    position: relative;
    flex-shrink: 0;
}
.cats-nav .cats__item {
    position: relative;
    margin-left: 3.6rem;
    width: 12rem;
    flex-shrink: 0;
}
.cats-nav .cats__item:hover {
    /*background-color: rgba(0, 0, 0, .07);*/
}
.cats-nav .cats__item:before {
    position: absolute;
    content: '';
    width: .1rem;
    height: 6rem;
    background-color: rgba(0, 0, 0, .07);
    right: -1.8rem;
    top: 3rem;
}
.cats-nav .cats__item:first-child {
    margin-left: 0;
}
.cats-nav .cats__item:last-child {
    padding-right: 6rem;
    width: 18rem;
}
.cats-nav .cats__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cats-nav .cats__link-icon-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 300rem;
    width: 12rem;
    background-color: #fff;
}
.cats-nav .cats__link-icon-wrap:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.cats-nav .cats__link-icon {
    position: absolute;
    left: 3rem;
    top: 3rem;
    width: calc(100% - 6rem);
    height: calc(100% - 6rem);
    object-fit: contain;
    opacity: .8;
}
.cats-nav .cats__link-label {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.cats-nav .cats__next {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 50;
    background-color: #fff;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 4rem rgba(0, 0, 0, .3);

    display: none;
}
.cats-nav .cats__next-icon {
    opacity: .6;
}
.cats-nav .cats__next-icon:before {
    font-family: 'Fontello';
    content: '\E84E';
    font-size: 2.4rem;
}












.cats-nav-fixed {
    position: fixed;
    overflow-y: hidden;
    left: 0;
    top: 7rem;
    right: 0;
    background-color: #fff;
    z-index: 300;
    height: 6rem;
    box-shadow: 0 0 3rem rgba(0, 0, 0, .1);
    transition: .3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2rem);
}
.cats-nav-fixed.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cats-nav-fixed .cats-wrap {
    overflow-x: auto;
    width: 100%;
    padding: 0 6rem;
    height: 100%;
    position: relative;
}
.cats-nav-fixed .cats-items {
    display: flex;
    position: relative;
    flex-shrink: 0;
    height: 100%;
    align-items: center;
}
.cats-nav-fixed .cats__item {
    position: relative;
    margin-left: 2.4rem;
    flex-shrink: 0;
    opacity: .6;
    transition: .2s;
}
.cats-nav-fixed .cats__item:hover {
    /*background-color: rgba(0, 0, 0, .07);*/
    opacity: 1;
}
.cats-nav-fixed .cats__item:first-child {
    margin-left: 0;
}
.cats-nav-fixed .cats__item:last-child {
    padding-right: 6rem;
}
.cats-nav-fixed .cats__link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s;
}
.cats-nav-fixed .cats__link.on {
    color: #F44708;
}
.cats-nav-fixed .cats__link-label {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}


















.right-tgls {
    display: flex;
    align-items: center;
    align-self: center;
}




.searchform-tgl {
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    background-color: rgba(0, 0, 0, .04);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.searchform-del {
    width: .2rem;
    flex-shrink: 0;
    display: block;
    background-color: rgba(0, 0, 0, .12);
    height: 4rem;
    margin: 0 .8rem 0 2rem;


    margin: 0 1.2rem;
}
.searchform-tgl:before {
    content: '\e801';
    font-size: 1.4rem;
    font-family: 'Fontello';
}

.searchform-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #fff;
    z-index: 970;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 6rem;
    transition: .3s;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-2rem);


    padding: 0 2rem;
}
.searchform-wrap.on {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.searchform {
    display: flex;
    align-items: stretch;
    height: 4.4rem;
    width: 100%;
}
.searchform__input {
    background-color: rgba(0, 0, 0, .05);
    border-radius: 1rem 0 0 1rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    width: 100%;
    flex-shrink: 1;
    font-family: 'Montserrat';
}
.searchform__btn {
    width: 4.4rem;
    border-radius: 0 1rem 1rem 0;
    flex-shrink: 0;
    background-color: #0C6EE6;
    background-color: #E46707;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchform__btn:before {
    content: '\e801';
    font-size: 2rem;
    font-family: 'Fontello';
}
.searchform__close {
    width: 4.4rem;
    border-radius: 0 1rem 1rem 0;
    flex-shrink: 0;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .6;
    cursor: pointer;
}
.searchform__close:before {
    content: '\e82e';
    font-size: 1.6rem;
    font-family: 'Fontello';
}

.search-results-title {
    font-size: 2rem;
    line-height: 1.4;
    display: block;
    width: 100%;
}









}



















