@charset "UTF-8";
/* MAIN MENU AND FONTS */
@font-face {
    src: url(./fonts/stolzl_bold.otf);
    font-family: stolzl, sans-serif;
    font-style: normal;
    font-weight: 700;
}
@font-face {
    src: url(./fonts/stolzl_medium.otf);
    font-family: stolzl, sans-serif;
    font-style: normal;
    font-weight: 500;
}
@font-face {
    src: url(./fonts/stolzl_regular.otf);
    font-family: stolzl, sans-serif;
    font-style: normal;
    font-weight: 400;
}
@font-face {
    src: url(./fonts/stolzl_light.otf);
    font-family: stolzl, sans-serif;
    font-style: normal;
    font-weight: 200;
}
@font-face {
    src: url(./fonts/stolzl_book.otf);
    font-family: stolzl, sans-serif;
    font-style: normal;
    font-weight: 300;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 30000;
}
#status {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/preloader.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
body {
    font-family: stolzl, sans-serif;
    font-weight: 400;
}
* {
    outline: none;
}
.off-canvas-content {
    /* overflow: hidden; */
}
.position-left {
    transform: translateX(-100%);
}
.menu-container {
    background: #fff;
}
.menu-top {
    height: 60px;
    position: relative;
    width: 90%;
    margin: 0 auto;
}
.mh {
    text-transform: uppercase;
    font-size: 18px;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    line-height: 60px;
    padding-left: 25px;
}
.mh:before {
    content: '';
    background: url('../img/icon/menu/menu.svg') center no-repeat;
    position: absolute;
    left: 0;
    top: 21px;
    width: 16px;
    height: 16px;
}
.logo {
    width: 180px;
    height: 51px;
}
.off-canvas {
    background: #fff;
}
.js-off-canvas-overlay {
    background: rgba(0, 0, 0, 0.5);
}
.off-canvas a,
.off-canvas a:hover,
.off-canvas a:focus,
.off-canvas a:active,
.off-canvas a:visited {
    color: #6d6e71;
    outline: none;
}
.menu-close {
    display: block;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.09em;
    font-weight: 700;
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #cfcfcf;
    text-align: center;
    color: #d52222;
    border-radius: 0;
    cursor: pointer;
}
.menu-close:before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22%;
    width: 15px;
    height: 15px;
    background: url('../img/icon/menu/x.svg') center no-repeat;
    -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-close:hover:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menu-close.back:before {
    background: url('../img/icon/menu/arrow-left-r.svg') center no-repeat;
}
.main-nav {
    margin: 20px 0;
    width: 100%;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.main-nav > a {
    width: 100%;
    cursor: pointer;
    position: relative;
}
.main-nav > a:after,
.main-nav .submenu:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: #ebebeb;
    filter: none;
}
.main-nav > a:last-child:after {
    height: 0;
}
.main-nav > a > .item {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 55px 0 20px;
    transition: all 0.3s ease-in-out;
}
.main-nav > a > .item img {
    position: absolute;
    top: 20px;
    max-height: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.main-nav > a > .item span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.main-nav > a > .item:hover,
.mh:hover,
.main-nav > a.has-submenu.active > .item,
.main-nav .submenu > .item.has-submenu.active {
    transition: all 0.3s ease-in-out;
    -webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
    filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
}
.main-nav .submenu {
    display: flex;
}
.main-nav.more .item {
    display: flex;
    flex-flow: column;
}
.main-nav.more .item:not(:last-child) {
    margin-bottom: 40px;
}
.main-nav.more .item .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6d6e71;
    margin-bottom: 15px;
}
.main-nav.more .item .links {
    display: flex;
}
.main-nav.more .item .links a {
    margin: 0 10px;
}
.main-nav.more .item img {
    min-width: 21px;
    max-height: 21px;
    transition: all 0.3s ease;
}
.main-nav.more .item.socials img:hover {
    opacity: 0.75;
    -webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
    filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
    transition: all 0.3s ease;
}
.main-nav .submenu:not(.main-pages) {
    display: none;
}
.main-nav .main-pages {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: all 0.3s ease;
}
.main-nav .main-pages.active {
    transform: scaleY(1);
    padding-bottom: 20px;
    max-height: 800px;
    opacity: 1;
    transition: all 0.3s ease;
}
.main-nav .main-pages .item {
    line-height: 1;
    padding: 15px 0 0;
    transition: all 0.3s ease-in-out;
}
.main-nav .main-pages .item:hover {
    transition: all 0.3s ease-in-out;
    -webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
    filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%)
        hue-rotate(-50deg) saturate(700%) contrast(2);
}
@media screen and (max-width: 850px) {
    .off-canvas.position-left {
        width: 50%;
    }
    .menu-close:before,
    .menu-close.back:before {
        left: 32%;
    }
    .main-nav {
        height: auto;
        margin: 0;
        justify-content: flex-start;
    }
    .main-nav.more {
        justify-content: center;
    }
    .main-nav > a.has-submenu {
        position: relative;
    }
    .main-nav > a:after,
    .main-nav .submenu:after {
        width: 100%;
    }
    .main-nav .submenu.second:after {
        height: 0;
    }
    .main-nav .submenu > .item.has-submenu {
        transition: all 0.3s ease;
    }
    .main-nav > a.has-submenu > .item:after,
    .main-nav .submenu > .item.has-submenu:after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        width: 24px;
        height: 24px;
        background: url(../img/icon/menu/arrow-down.svg) center no-repeat;
        transition: all 0.3s ease;
    }
    .main-nav .submenu > .item.has-submenu:after {
        width: 16px;
        height: 16px;
    }
    .main-nav > a.has-submenu.active > .item:after,
    .main-nav .submenu > .item.has-submenu.active:after {
        transform: translateY(-50%) rotate(180deg);
        transition: all 0.3s ease;
    }
    .main-nav > a > .item {
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 0 30px 30px;
        position: relative;
    }
    .main-nav > a > .item img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .main-nav .item span {
        margin-left: 20px;
        font-size: 16px !important;
    }
    .main-nav .submenu {
        width: 100%;
        display: flex;
        flex-flow: column;
        text-align: left;
        text-transform: uppercase;
        max-height: 0;
        padding: 0 0 0 55px;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .main-nav .submenu.active {
        transform: scaleY(1);
        padding: 20px 0 20px 55px;
        max-height: 800px;
        opacity: 1;
        transition: all 0.3s ease;
    }
    .main-nav .submenu > .item {
        position: relative;
        color: #6d6e71;
        padding: 10px 0;
        font-size: 16px;
    }
    .main-nav .submenu > .item:first-child {
        padding: 0 0 10px;
    }
    .main-nav .submenu > .item:last-child {
        padding: 10px 0 0;
    }
    .main-nav .submenu.second {
        padding: 0 0 0 40px;
    }
    .main-nav .submenu.second.active {
        padding: 10px 0 10px 40px;
    }
}
@media screen and (max-width: 450px) {
    .off-canvas.position-left {
        width: 100%;
    }
}
.lang {
    display: inline-block;
}
.sticky {
    z-index: 5;
}
.lang {
    position: relative;
    cursor: pointer;
    padding: 10px;
}
.lang .arrow,
.lang .lname {
    display: inline-block;
}
.lang .arrow {
    width: 12px;
    height: 12px;
    background: url('../img/icon/menu/arrow-down.svg') no-repeat center;
    display: inline-block;
}
.langbox {
    background: #fff;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 50px;
    left: 0;
}
.langbox.active {
    transform: scaleY(1);
    transition: all 0.3s ease-in-out;
    z-index: 6;
}
.lname {
    padding-right: 5px;
    color: #555;
    transition: all 0.4s ease-in-out;
}
.langbox .lname {
    display: block;
    padding: 10px 20px;
    text-align: center;
}
.langbox .lname:first-child {
    padding-bottom: 0;
}
.langbox .lname:hover {
    color: #d52222;
    transition: all 0.4s ease-in-out;
}

/* INDEX */
.header {
    height: calc(100vh - 180px);
    width: 100%;
    position: relative;
    overflow: hidden;
}
@media (max-width: 575px) {
    .header {
        height: calc(100vh - 60px);
    }
}
.header > a {
    cursor: default;
}
.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}
.header-image.active {
    z-index: 1;
}
.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.darkside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.header-text {
    color: #fff;
    font-size: 60px;
    line-height: 1.15;
    font-weight: 200;
    position: absolute;
    text-transform: uppercase;
    text-align: left;
    top: 32%;
    left: 29%;
    width: 1px;
}
.header-text span {
    font-weight: 700;
}
.header-text.visible {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
.header-text.invisible {
    opacity: 0;
}
.header-menu {
    position: absolute;
    width: 85%;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    z-index: 2;
}
.header-menu .item {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    position: relative;
    padding-top: 45px;
}
.header-menu img {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 35px;
    max-height: 35px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.header-menu .item:after {
    position: absolute;
    bottom: -2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 2px solid #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.header-menu .item:hover:after {
    transform: scaleX(1);
}
.grid-container.gray {
    background: #f7f7f7;
}
.vgray {
    background: #242626;
    padding: 0 5% 50px 5%;
}
.grid-container.lined {
    border-bottom: 2px solid #3f4344;
    border-top: 2px solid #3f4344;
}
.main {
    padding: 60px 0;
}
.pp-menu {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #000;
}
.pp-menu .item {
    display: inline-block;
    padding-right: 25px;
}
.pp-menu .item:last-child {
    padding-right: 0;
}
.pp-menu a {
    color: #000;
    position: relative;
}
.pp-menu a:after {
    position: absolute;
    bottom: -4px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 2px solid #000;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.pp-menu a:hover:after {
    transform: scaleX(1);
}
@media screen and (max-width: 600px) {
    .header-text {
        font-size: 35px;
        left: 15%;
    }
    .main {
        padding: 40px 0;
    }
}
@media screen and (max-width: 1000px) {
    .header-menu {
        display: none;
    }
}
@media screen and (max-width: 1200px) {
    .pp-menu .item {
        padding-right: 30px;
        font-size: 10px;
    }
    .header-menu .item {
        font-size: 12px;
        margin-right: 35px;
    }
}

/* ABOUT */
.page-title {
    font-size: 35px;
    font-weight: 200;
    text-transform: uppercase;
    padding: 45px 0;
    letter-spacing: 5px;
}
.page-photo-c {
    overflow: hidden;
}
.page-photo {
    background-image: url('../img/pp.jpg');
    background-position: bottom;
    height: 614px;
    overflow: hidden;
    width: 100%;
}
.grid-container.ext {
    max-width: 1670px;
}
.page-section {
    padding: 55px 0 45px;
    font-size: 16px;
    font-weight: 300;
}
.page-text {
    padding-bottom: 10px;
}
.sub-title {
    width: 50%;
    margin: 0 auto;
}
.brands {
    padding: 45px 0 0;
    font-size: 0;
}
.brand {
    width: 19%;
    height: 135px;
    display: inline-block;
}
@media screen and (max-width: 600px) {
    .page-title.podrazd {
        font-size: 24px;
    }
    .brand {
        width: 100%;
    }
}
@media screen and (max-width: 820px) {
    .sub-title {
        width: 100%;
        margin: -30px auto 0 auto;
    }
    .page-section {
        padding: 30px 0 30px 0;
    }
    .page-photo {
        background-position: 55% 50%;
    }
    .page-section img {
        padding: 20px 0 30px;
    }
}
@media screen and (max-height: 450px) {
    .page-title {
        padding: 20px 0;
    }
    .page-photo {
        height: calc(100vh - 120px);
    }
    .brand {
        width: 33%;
    }
    .page-section {
        padding: 30px 0 30px 0;
    }
    .page-section img {
        max-height: calc(100vh - 120px);
        width: 100%;
        object-fit: cover;
    }
}
.brand.gray {
    background: #e4e4e4;
}
.brand.white {
    background: #fff;
}
.bl {
    height: 135px;
}
.bl.ga {
    background: url('../img/brands/ga.png') center no-repeat;
    background-size: 80%;
}
.bl.guc {
    background: url('../img/brands/guc.png') center no-repeat;
    background-size: 50%;
}
.bl.ez {
    background: url('../img/brands/ez.png') center no-repeat;
    background-size: 80%;
}
.bl.bri {
    background: url('../img/brands/bri.png') center no-repeat;
    background-size: 50%;
}
.bl.dg {
    background: url('../img/brands/dg.png') center no-repeat;
    background-size: 80%;
}
.bl.can {
    background: url('../img/brands/can.png') center no-repeat;
    background-size: 50%;
}
.bl.ea {
    background: url('../img/brands/ea.png') center no-repeat;
    background-size: 80%;
}
.bl.san {
    background: url('../img/brands/san.png') center no-repeat;
    background-size: 70%;
}
.bl.lp {
    background: url('../img/brands/lp.png') center no-repeat;
    background-size: 80%;
}
.bl.kit {
    background: url('../img/brands/kit.png') center no-repeat;
    background-size: 70%;
}
.bl.jc {
    background: url('../img/brands/jc.png') center no-repeat;
    background-size: 80%;
}
.bl.mon {
    background: url('../img/brands/mon.png') center no-repeat;
    background-size: 50%;
}
.bl.bal {
    background: url('../img/brands/bal.png') center no-repeat;
    background-size: 80%;
}
.bl.cel {
    background: url('../img/brands/cel.png') center no-repeat;
    background-size: 50%;
}
.bl.mor {
    background: url('../img/brands/mor.png') center no-repeat;
    background-size: 80%;
}
.bl.cor {
    background: url('../img/brands/cor.png') center no-repeat;
    background-size: 70%;
}
.bl.js {
    background: url('../img/brands/js.png') center no-repeat;
    background-size: 50%;
}
.bl.mm {
    background: url('../img/brands/mm.png') center no-repeat;
    background-size: 50%;
}
.bl.stella {
    background: url('../img/brands/stella.png') center no-repeat;
    background-size: 80%;
}

/* BRANDS */
.brand-page {
    background: #242626;
    padding-top: 50px;
}
.brand-page .grid-container {
    padding: 0 3px;
}
.map-container {
    width: 1000px;
    height: 444px;
    margin: 0 auto;
    position: relative;
}
.map-scroller {
    display: none;
    position: absolute;
    top: 100px;
    left: 40%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background-color: #797979;
    -webkit-mask-image: url(../img/swipe.svg);
    mask-image: url(../img/swipe.svg);
    -webkit-mask-size: 45px;
    mask-size: 45px;
    animation: swipe 1.5s ease-in-out infinite alternate both;
}
@media screen and (max-width: 1000px) {
    .pp-map-container {
        overflow: scroll;
    }
    .map-container {
        /*display: none;*/
        margin: 10px 3%;
    }
    .map-scroller {
        display: block;
    }
}
.map-container .item {
    height: 49px;
    background: transparent;
}
.map-container .item.is-active,
.map-container .item.is-active:hover {
    background: #c40d2e;
}
.map-container .item:hover {
    background: #343737;
}
.map-container .item .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 200;
    color: #fff;
    font-size: 12px;
    width: 100%;
    cursor: pointer;
    line-height: 50px;
}
.map-container .item.ga .text,
.map-container .item.dg .text,
.map-container .item.ez .text,
.map-container .item.pac .text,
.map-container .item.bri .text {
    line-height: 15px;
}
.map-container input[type='submit'] {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
/* 5  */
.map-container .item.teatro {
    position: absolute;
    left: 60px;
    top: 126px;
    width: 375px;
    height: 61px;
}
/* 4 */
.map-container .item.lom {
    position: absolute;
    left: 60px;
    top: 188px;
    width: 186px;
}
.map-container .item.cn {
    position: absolute;
    left: 250px;
    top: 188px;
    width: 185px;
}
.map-container .item.lin {
    position: absolute;
    right: 9px;
    top: 193px;
    width: 179px;
    height: 44px;
}
/* 3 */
.map-container .item.lgc {
    position: absolute;
    left: 60px;
    top: 239px;
    width: 162px;
}
.map-container .item.mmb {
    position: absolute;
    left: 224px;
    top: 239px;
    width: 243px;
}
.map-container .item.mmb2 {
    position: absolute;
    right: 199px;
    top: 239px;
    width: 259px;
}
.map-container .item.maxm {
    position: absolute;
    right: 1px;
    top: 239px;
    width: 171px;
}
/* 2 */
.map-container .item.wmb {
    position: absolute;
    left: 60px;
    top: 290px;
    width: 407px;
}
.map-container .item.wmb2 {
    position: absolute;
    right: 1px;
    top: 290px;
    width: 457px;
}
/* 1 */
.map-container .item.bri {
    position: absolute;
    left: 60px;
    top: 341px;
    width: 80px;
}
.map-container .item.canali {
    position: absolute;
    left: 142px;
    top: 341px;
    width: 80px;
}
.map-container .item.kit {
    position: absolute;
    left: 224px;
    top: 341px;
    width: 80px;
}
.map-container .item.loro {
    position: absolute;
    left: 306px;
    top: 341px;
    width: 79px;
}
.map-container .item.ga {
    position: absolute;
    left: 387px;
    top: 341px;
    width: 79px;
}
.map-container .item.dg {
    position: absolute;
    right: 365px;
    top: 341px;
    width: 92px;
}
.map-container .item.ez {
    position: absolute;
    right: 270px;
    top: 341px;
    width: 93px;
}
.map-container .item.corn {
    position: absolute;
    right: 174px;
    top: 341px;
    width: 93px;
}
.map-container .item.gucci {
    position: absolute;
    right: 1px;
    top: 341px;
    width: 171px;
}

/* 0 */
.map-container .item.fs {
    position: absolute;
    left: 60px;
    top: 393px;
    width: 162px;
}
.map-container .item.hi {
    position: absolute;
    left: 224px;
    top: 393px;
    width: 161px;
}
.map-container .item.cjh {
    position: absolute;
    left: 387px;
    top: 392px;
    width: 102px;
}
.map-container .item.acc {
    position: absolute;
    right: 406px;
    top: 393px;
    width: 102px;
}
.map-container .item.bs {
    position: absolute;
    right: 302px;
    top: 393px;
    width: 102px;
}
.map-container .item.pac {
    position: absolute;
    right: 174px;
    top: 393px;
    width: 126px;
}
.map-container .item.dv {
    position: absolute;
    right: 1px;
    top: 393px;
    width: 171px;
}
.scon {
    padding-top: 44px;
    padding-left: 64px;
    max-width: 1000px;
    margin: 0 auto;
}
.scon .dropdown-pane {
    width: 65px;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
}
.scon .cell {
    padding: 30px 0 20px;
}
.scon .cell:last-child {
    padding: 0 0 20px;
}
.btext {
    display: inline-block;
}
.floor {
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}
.floor .select-hidden {
    display: none;
    visibility: hidden;
}
.floor form {
    height: 50px;
}
.floor .select {
    cursor: pointer;
    position: relative;
    font-size: 14px;
    color: #000;
    width: 80px;
    height: 100%;
    font-size: 14px;
    border: 1px solid #000;
}
.floor .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding-right: 25px;
    transition: all 0.3s ease;
}
.floor .select-styled:after {
    content: '';
    width: 20px;
    height: 100%;
    background: url(../img/arrow-down.png) center no-repeat;
    position: absolute;
    top: 0;
    right: 10px;
    transition: all 0.3s ease;
}
.floor .select-styled:hover {
    background: #242626;
    transition: all 0.3s ease;
}
.floor .select-styled:active:after,
.select-styled.active:after {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}
.floor .select-options {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: -1px;
    z-index: 999;
    margin: 0;
    color: #fff;
    padding: 0;
    list-style: none;
    font-weight: 200;
    background-color: #000;
}
.floor .select-options li {
    background: #000;
    width: 80px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid #000;
    transition: all 0.3s ease;
}
.floor .select-options li:hover {
    background: #242626;
    transition: all 0.3s ease;
}
.floor .select-options li[rel='hide'] {
    display: none;
}
.floor > span {
    width: 80px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border: 1px solid #000;
    border-right: 0;
    font-size: 14px;
}
.brands-search {
    width: 80%;
}
#searchBrand {
    display: flex;
}
.brands-search input[type='text'] {
    width: calc(100% - 50px);
    height: 50px;
    margin: 0;
    border: 1px solid #000;
    border-radius: 0;
    background: #242626;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    box-shadow: none;
    transition: none;
}
.brands-search input[type='text']::placeholder {
    opacity: 0.8;
}
.brands-search input[type='submit'] {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    background: #000 url('../img/icon/search.svg') center no-repeat;
    background-size: 35px;
    box-shadow: none;
    transition: 0.3s ease;
}
.brands-search input[type='submit']:hover {
    background: #242626 url('../img/icon/search.svg') center no-repeat;
    background-size: 35px;
    transition: 0.3s ease;
}
.brands-select {
    width: 90%;
    color: #fff;
    font-weight: 200;
}
.brands-select > span {
    padding-left: 10px;
}
.brands-list {
    overflow-y: scroll;
    height: 130px;
    border-top: 1px solid #373a3a;
    padding-top: 10px;
    margin-top: 10px;
}
.brands-list > a {
    width: 100%;
    color: #fff;
}
.brands-list > a > div {
    line-height: 23px;
    padding-left: 10px;
}
.brands-list > a > div:hover {
    background: #373a3a;
}
.brands-list::-webkit-scrollbar {
    width: 18px;
}
.brands-list::-webkit-scrollbar-track {
    background: #373a3a;
}
.brands-list::-webkit-scrollbar-thumb {
    background: #000;
    border: 4px solid #373a3a;
    border-radius: 18px;
}
.brands-list::-webkit-scrollbar-thumb:hover {
    background: #000;
}
.b-fix {
    padding-left: 30px;
}
@media screen and (max-width: 1000px) {
    .b-fix {
        padding-left: 0;
    }
    .brand-page {
        padding-top: 0;
    }
    .scon {
        padding-left: 0;
        padding-top: 20px;
    }
    .floor {
        width: 90%;
        margin: 0 auto;
    }
    .floor > span {
        width: 130px;
        font-size: 20px;
    }
    .floor .select-styled {
        font-size: 20px;
    }
    .floor .select-styled {
        font-size: 20px;
    }
    .scon .cell {
        padding: 0;
        margin: 30px 0 20px;
    }
    .brands-search {
        width: 90%;
        margin: 0 auto;
    }
    .brands-select {
        margin: 0 auto;
    }
    .brands-select > span {
        font-size: 24px;
    }
    .brands-list {
        height: 350px;
    }
    .brands-list > a > div {
        font-size: 18px;
        line-height: 30px;
    }
}
.single-brand {
    padding: 70px 0;
    background: #fff;
}
.sbcontainer {
    max-height: 0px;
    overflow-y: hidden;
    opacity: 0;
    transition: all 1.5s ease-in-out;
    -webkit-transition: all 1.5s ease-in-out;
}
.sbcontainer.active {
    max-height: 2000px;
    opacity: 1;
    transition: all 1.5s ease-in-out;
    -webkit-transition: all 1.5s ease-in-out;
}
.single-brand .cell {
    padding-bottom: 20px;
}
.pbrand {
    border-bottom: 1px solid #000;
    margin: 0 auto;
    width: 90%;
}
.pbrand img {
    margin: 0 auto;
    padding: 0 0 24px;
}
.collection {
    font-size: 16px;
    text-transform: uppercase;
    padding: 24px 0 45px;
    color: #9a9a9a;
}
.single-brand .text {
    font-weight: 300;
    padding: 10px 0;
}
.single-brand .text-new {
    font-weight: 300;
    padding: 22px 5% 10px;
}
.brand-slider {
    padding-left: 30px;
    max-height: 500px;
}
.brand-slider .slick-track {
    display: flex;
    align-items: center;
}
.brand-slider img {
    /*max-height: 450px;*/
    object-fit: contain;
    outline: none;
}
.buybtn {
    color: #000;
    text-transform: uppercase;
    border: 1px solid #000;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.1em;
    height: 62px;
    line-height: 62px;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    max-width: 350px;
    background-size: 200% 200%;
    background-image: linear-gradient(to top, #000 50%, transparent 50%);
    transition: all 0.4s ease-in-out;
}
.buybtn:hover {
    color: #fff;
    background-image: linear-gradient(to top, #000 50%, transparent 50%);
    background-position: 0 100%;
    transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1000px) {
    .single-brand {
        padding: 30px 5% 0;
    }
    .pbrand {
        width: 100%;
    }
    .single-brand .text-new {
        padding: 22px 0 10px;
    }
    .brand-slider {
        padding-left: 0;
    }
}

/* CONTACT */
.map {
    background: #f7f7f7;
    position: relative;
    height: 50vh;
}
#map .js-off-canvas-overlay {
    background: none;
    z-index: 2;
}
#map .off-canvas-absolute {
    background: none;
}
#map .off-canvas-absolute.is-transition-overlap.is-open {
    box-shadow: none;
}
#map .off-canvas-content {
    transition: transform 1.5s ease;
}
#map .off-canvas-absolute.is-transition-overlap {
    z-index: 3;
}
.rbtog {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 66px;
    height: 475px;
    right: 0;
    background: #242626;
}
.rbcontainer {
    width: 100%;
    height: 100%;
    position: relative;
}
.right-bar {
    width: 100%;
    height: 475px;
    background: #242626;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.rbsection {
    width: 100%;
    padding: 45px 0 45px 66px;
}
.rbcon {
    width: 100%;
    height: 100%;
    position: relative;
}
.rbarrow {
    background: url('../img/icon/arrow-right.svg') center no-repeat;
    background-size: 22px;
    height: 475px;
    width: 66px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}
.rbarrowl {
    background: url('../img/icon/arrow-left.svg') center no-repeat;
    background-size: 22px;
    height: 100%;
    cursor: pointer;
}
.rbsection .item {
    line-height: 35px;
    padding-bottom: 50px;
    font-weight: 200;
    position: relative;
    left: 40px;
    width: 90%;
}
.rbsection .item:not(.subscription):before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    width: 37px;
    height: 37px;
}
.rbsection .item.adr:before {
    background: url('../img/icon/adr.svg') center no-repeat;
}
.rbsection .item.clock:before {
    background: url('../img/icon/clock.svg') center no-repeat;
}
.rbsection .item.phone:before {
    background: url('../img/icon/phone.svg') center no-repeat;
}
.rbsection .item.mail:before {
    background: url('../img/icon/mail.svg') center no-repeat;
}
.item.subscription {
    left: 0;
    width: 60%;
    font-size: 0;
}
.subscription > input,
.subscription > button {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 200;
    box-shadow: none;
    border-radius: 0;
}
.subscription > input {
    border: 1px solid #000;
    width: 70%;
    background: transparent;
    margin: 0;
}
.subscription > input::placeholder {
    font-size: 12px;
    color: #6d6d6d;
}
.subscription > input:focus {
    background: transparent;
    box-shadow: none;
    border: 1px solid #000;
}
.subscription > button {
    cursor: pointer;
    width: 30%;
    background-color: #5a5a5a;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    position: relative;
}
.subscription > button:hover {
    background-color: #6d6d6d;
}
.subscription > button:after {
    content: '';
    background: url('../img/icon/sub.svg') center no-repeat;
    background-size: 38px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.mobile-contact {
    width: 100%;
    background: #242626;
    color: #fff;
    display: none;
}
@media screen and (max-width: 1000px) {
    .rbtog {
        display: none;
    }
    .mobile-contact {
        display: block;
    }
    .rbsection {
        padding: 30px 10px 0 10px;
    }
    .rbsection .item {
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .item.subscription {
        width: 100%;
    }
}
@media screen and (min-width: 1001px) {
    .map {
        min-height: 475px;
    }
}

/* NEWS */
.news .text-container {
    margin: 30px 0;
    font-weight: 300;
}
.article {
    position: relative;
    transition: all 0.5s ease-in-out;
}
.article:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}
.article .article-img {
    transition: all 0.4s ease-in-out;
    width: 100%;
    overflow: hidden;
}
.article .article-img:hover {
    opacity: 0.85;
    transition: all 0.4s ease-in-out;
}
.article .article-meta {
    margin: 10px auto 30px auto;
    width: 95%;
}
.article .date {
    position: absolute;
    top: -20px;
    left: 1.2rem;
    font-size: 12px;
    color: transparent;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}
.article:hover .date {
    color: #777;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}
.article .article-meta .name a {
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: #000;
}
.article .article-meta .description {
    font-size: 12px;
    color: #888;
    font-weight: 200;
}
.page-select {
    margin: 0 0 30px;
}
.page-c {
    position: relative;
    height: 60px;
}
ul.pages {
    margin: 0;
    position: absolute;
    top: 10px;
    right: 0;
    list-style: none;
    text-align: center;
}
.pages > li {
    float: left;
}
.pages > li > a {
    padding: 3px 8px;
    color: #000;
    font-size: 14px;
    font-weight: 200;
    transition: all 0.3s ease-in-out;
}
.pages > li > a.active,
.pages > li > a:not(.btn-prev):not(.btn-next):hover {
    color: #d52222;
    transition: all 0.3s ease-in-out;
}
.pages > li > a.btn-prev,
.pages > li > a.btn-next {
    padding: 5px 10px;
}
.pages > li > a.btn-prev {
    margin-right: 10px;
    background: #ccc url('../img/icon/arrow-left.svg') center no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
}
.pages > li > a.btn-next {
    margin-left: 10px;
    background: #ccc url('../img/icon/arrow-right.svg') center no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
}
.pages > li > a.btn-prev:hover {
    background: #777 url('../img/icon/arrow-left.svg') center no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
}

.pages > li > a.btn-next:hover {
    background: #777 url('../img/icon/arrow-right.svg') center no-repeat;
    background-size: 12px;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
    .article .date {
        transform: translateY(20px);
        color: #777;
    }
    ul.pages {
        position: absolute;
        left: 50%;
        width: 260px;
        transform: translate(-50%, 0);
    }
}

/* USLUGI */
.page-photo-c.u > .page-photo {
    max-height: 414px;
}
.ublock {
    text-align: left;
}
.ublock.left {
    width: 90%;
}
.ublock.right {
    margin-left: 24px;
}
.uname {
    color: #d52222;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: 0.07em;
    font-weight: 200;
}
.utext {
    font-size: 14px;
    font-weight: 200;
    line-height: 25px;
    margin: 30px 0;
}
.umore {
    color: #000;
    text-transform: uppercase;
    border: 1px solid #e7e7e7;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 17px 60px;
    cursor: pointer;
    background-size: 200% 200%;
    background-image: linear-gradient(to top, #000 50%, transparent 50%);
    transition: all 0.4s ease-in-out;
}
.umore:hover {
    color: #fff;
    background-image: linear-gradient(to top, #000 50%, transparent 50%);
    background-position: 0 100%;
    transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1000px) {
    .page-section.u {
        padding: 0 0 50px;
    }
    .ublock.left {
        width: 100%;
    }
    .ublock.right {
        margin-left: 0;
    }
    .uname,
    .utext {
        text-align: center;
    }
    .umore {
        text-align: center;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .cell.mobile-1 {
        order: 0;
    }
    .cell.mobile-2 {
        order: 1;
    }
}
.page-section.static {
    padding: 0 0 45px;
}

/* FOOTER */
.soc-c {
    padding: 35px 0 35px 0;
    margin: 0 auto;
    font-size: 0;
}
a.social {
    font-weight: 200;
    width: 120px;
    display: inline-block;
    font-size: 16px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.social:first-child {
    margin-right: 20px;
}
.social:last-child {
    margin-right: -30px;
}
.social.facebook:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    background: url('../img/icon/fb.svg') center no-repeat;
    width: 21px;
    height: 21px;
    transition: all 0.3s ease-in-out;
}
.social.instagram:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    background: url('../img/icon/ig.svg') center no-repeat;
    width: 21px;
    height: 21px;
    transition: all 0.3s ease-in-out;
}
a.social:hover,
.social.facebook:hover:before,
social.instagram:hover:before {
    filter: contrast(60%);
    -webkit-filter: contrast(60%);
    transition: all 0.3s ease-in-out;
}
.footer .logo {
    background: url('../img/logo-pp-w.png') center no-repeat;
    background-size: cover;
    min-height: 100px;
    margin: 0 auto;
}
.footer.about {
    padding: 20px 0 0;
}
.footer.about .cell {
    padding: 0 0 20px 20px;
}
.footer.about .cell:last-child {
    padding: 0 0 0 20px;
}
.footer.about .item.title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 0 0 15px;
}
.footer.about .item {
    color: #7f8082;
    font-size: 12px;
    padding: 0 0 10px;
}
.footer.about .item:last-child {
    padding: 0;
}
.footer.about .item a {
    color: #7f8082;
    position: relative;
}
.footer.about .item a:after {
    position: absolute;
    bottom: -2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 2px solid #7f8082;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.footer.about .item a:hover:after {
    transform: scaleX(1);
}
.footer.about .item.phone {
    padding-top: 30px;
    color: #fff;
}
.item.subscription.footer {
    width: 80%;
    font-size: 0;
}
.item.subscription.footer > input {
    background: #fff;
    color: #242626;
    border: none;
}
.footer.about .item.phone .pn {
    font-size: 18px;
}
.footer.about .item.phone .subpn {
    color: #7f8082;
    font-size: 12px;
}
.static-links {
    color: #7f8082;
    margin-bottom: 15px;
    font-size: 12px;
}
.static-links a {
    color: #7f8082;
    transition: all 0.3s ease;
}
.static-links a:hover {
    color: #fff;
    transition: all 0.3s ease;
}
.to-top-button {
    width: 55px;
    height: 55px;
    border-radius: 30px;
    position: fixed;
    bottom: 70px;
    right: 40px;
    display: none;
    z-index: 8;
    background: rgba(0, 0, 0, 0.5) url('../img/icon/up-arrow.svg') center
        no-repeat;
    background-size: 30%;
    opacity: 0.3;
    transition: background 0.3s ease-in-out;
    border: 2px solid #fff;
    cursor: pointer;
}
.to-top-button:hover {
    background: rgba(0, 0, 0, 1) url('../img/icon/up-arrow.svg') center
        no-repeat;
    background-size: 30%;
}
@media screen and (max-width: 600px) {
    .footer.about .sub {
        text-align: center;
        margin: 0;
        width: 100%;
    }
}
@media screen and (min-width: 601px) and (max-width: 999px) {
    .footer.about .sub {
        text-align: center;
        margin: 0 auto;
        width: 60%;
    }
}
@media screen and (max-width: 1000px) {
    .footer .logo {
        margin-bottom: 20px;
    }
    .footer.about .item.phone {
        padding-bottom: 30px;
    }
    .footer.about .cell {
        padding: 0 0 20px 0;
    }
    .footer.about .cell:last-child {
        padding: 0;
    }
    .footer.about .cell.mobile-hide {
        display: none;
    }
    .item.subscription.footer {
        width: 100%;
    }
    .to-top-button {
        opacity: 1;
        display: block !important;
        margin: 15px 0;
        position: static;
        background: url('../img/icon/up-arrow-g.svg') center no-repeat;
        background-size: 40px;
        height: 20px;
        width: 100%;
    }
    .to-top-button:hover {
        background: url('../img/icon/up-arrow-g.svg') center no-repeat;
        background-size: 40px;
    }
    .page-section:last-child {
        padding-bottom: 0;
    }
    .vgray {
        position: relative;
    }
}

/* ANIMATIONS */
.puff-in-center {
    -webkit-animation: puff-in-center 1.7s both;
    animation: puff-in-center 1.7s both;
}
.puff-out-center {
    -webkit-animation: puff-out-center 1.7s both;
    animation: puff-out-center 1.7s both;
}
.page-phto.puff-in-center {
    -webkit-animation: puff-in-center 2s both;
    animation: puff-in-center 2s both;
}
@-webkit-keyframes puff-in-center {
    0% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@keyframes puff-in-center {
    0% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@-webkit-keyframes puff-out-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
}
@keyframes puff-out-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
}
.chlang {
    padding: 20px 0 0;
}
.chlang a,
.chlang a:hover,
.chlang a:focus,
.chlang a:active {
    color: #000;
}
.landing-slider {
    width: 100%;
    height: 614px;
    max-width: 2500px;
    margin: 0 auto;
}
.landing-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.l-more-text {
    font-size: 28px;
    font-weight: 200;
    line-height: 2.5;
    text-align: center;
    padding: 30px 0;
    position: relative;
}
.l-more-text:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 50%;
    height: 2px;
    background: #000;
}
@media screen and (max-width: 63.9375em) {
    .l-more-text {
        font-size: 16px;
        line-height: 2.2;
    }
    .l-more-text:after {
        top: unset;
        bottom: 10px;
        width: 70%;
    }
    .landing-slider-small {
        margin: 30px 0 0;
    }
}
.parf-brands .cell {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parf-brands .cell img {
    width: 80%;
}
.parf-brands .cell.gray {
    background: #e4e4e4;
}
@media screen and (max-width: 820px) {
    .page-section img {
        padding: 0;
    }
}
.mouse-c {
    width: 100%;
    height: 60px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mouse {
    background: #e4e4e4
        linear-gradient(
            transparent 0%,
            transparent 50%,
            #242626 50%,
            #242626 100%
        );
    position: relative;
    width: 24px;
    height: 40px;
    border-radius: 100px;
    background-size: 100% 200%;
    -webkit-animation: colorSlide 5s linear infinite,
        nudgeMouse 5s ease-out infinite;
    animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.mouse:before,
.mouse:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.mouse:before {
    width: 22px;
    height: 38px;
    background-color: #f7f7f7;
    border-radius: 100px;
}
.mouse:after {
    background-color: #242626;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    -webkit-animation: trackBallSlide 5s linear infinite;
    animation: trackBallSlide 5s linear infinite;
}
.mouse-c.white {
    background: #fff;
}
.mouse-c.white .mouse:before {
    background: #fff;
}
@media screen and (max-width: 1000px) {
    .header {
        height: 100vh;
    }
    .mouse-container {
        padding: 0;
    }
    .mouse {
        display: none;
    }
}
@-webkit-keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }
    20% {
        background-position: 0% 0%;
    }
    21% {
        background-color: #e4e4e4;
    }
    29.99% {
        background-color: #242626;
        background-position: 0% 0%;
    }
    30% {
        background-color: #e4e4e4;
        background-position: 0% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
    51% {
        background-color: #e4e4e4;
    }
    59% {
        background-color: #242626;
        background-position: 0% 0%;
    }
    60% {
        background-color: #e4e4e4;
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 0%;
    }
    81% {
        background-color: #e4e4e4;
    }
    90%,
    100% {
        background-color: #242626;
    }
}

@keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }
    20% {
        background-position: 0% 0%;
    }
    21% {
        background-color: #e4e4e4;
    }
    29.99% {
        background-color: #242626;
        background-position: 0% 0%;
    }
    30% {
        background-color: #e4e4e4;
        background-position: 0% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
    51% {
        background-color: #e4e4e4;
    }
    59% {
        background-color: #242626;
        background-position: 0% 0%;
    }
    60% {
        background-color: #e4e4e4;
        background-position: 0% 100%;
    }
    80% {
        background-position: 0% 0%;
    }
    81% {
        background-color: #e4e4e4;
    }
    90%,
    100% {
        background-color: #242626;
    }
}
@-webkit-keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    6% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    14% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    15%,
    19% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    28%,
    29.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    36% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    44% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    45%,
    49% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    58%,
    59.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    66% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    74% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    75%,
    79% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    88%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
}
@keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    6% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    14% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    15%,
    19% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    28%,
    29.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    30% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    36% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    44% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    45%,
    49% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    58%,
    59.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
    66% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(2.5px);
        transform: scale(0.9) translateY(2.5px);
    }
    74% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(20px);
        transform: scale(0.4) translateY(20px);
    }
    75%,
    79% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-10px);
        transform: scale(0.4) translateY(-10px);
    }
    88%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-10px);
        transform: scale(1) translateY(-10px);
    }
}
@-webkit-keyframes nudgeMouse {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes nudgeMouse {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes nudgeText {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes nudgeText {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    80% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes colorText {
    21% {
        color: #e4e4e4;
    }
    30% {
        color: #242626;
    }
    51% {
        color: #e4e4e4;
    }
    60% {
        color: #242626;
    }
    81% {
        color: #e4e4e4;
    }
    90% {
        color: #242626;
    }
}
@keyframes colorText {
    21% {
        color: #e4e4e4;
    }
    30% {
        color: #242626;
    }
    51% {
        color: #e4e4e4;
    }
    60% {
        color: #242626;
    }
    81% {
        color: #e4e4e4;
    }
    90% {
        color: #242626;
    }
}
.grid-container.w2000 {
    max-width: 1500px;
    padding: 0;
}
.main-brands-slider {
    max-height: 600px;
    overflow: hidden;
}
.main-rest-block {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.black-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}
.chef-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.d-chef-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 3;
}
.d-chef-main.lgc {
    left: 0;
}
.d-main-block {
    padding: 70px 0 30px;
}
.logo-rest-main {
    width: 70%;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.logo-rest-main.dv {
    width: 35%;
    bottom: 0;
}
.d-main-block-title {
    font-size: 40px;
}
.d-main-block-desc {
    font-size: 14px;
    color: #b9b9b9;
    padding-bottom: 0.9735rem;
    text-transform: uppercase;
}
.d-main-block-text {
    font-size: 14px;
    font-weight: 200;
    padding-bottom: 0.5rem;
    text-align: justify;
}
.d-main-block-link {
    font-size: 14px;
    color: #000;
    transition: 0.3s ease;
}
.d-main-block-link:hover {
    color: #b9b9b9;
    transition: 0.3s ease;
}
.puff-in-center-main {
    -webkit-animation: puff-in-center-main cubic-bezier(0.47, 0, 0.745, 0.715);
    animation: puff-in-center-main cubic-bezier(0.47, 0, 0.745, 0.715);
}
@-webkit-keyframes puff-in-center-main {
    0% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@keyframes puff-in-center-main {
    0% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        -webkit-filter: blur(2px);
        filter: blur(2px);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@media screen and (max-width: 850px) {
    .grid-container.w2000 {
        padding: 0 0.9375rem;
    }
    .grid-container.w2000 .text-right {
        text-align: left;
    }
}
@media screen and (max-width: 600px) {
    .main-rest-block.fromdelivery {
        overflow: unset;
        height: 300px;
    }
    .main-rest-block.fromdelivery > img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .d-chef-main {
        top: unset;
        right: unset;
        bottom: 0;
        width: unset;
        height: unset;
    }
}

/*kapsula*/
#lookslist.preload * {
    animation-play-state: paused !important;
}
.grid-container.k-head {
    padding: 3.7rem 0.9375rem;
}
.k-title {
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
}
.k-subtitle {
    font-size: 18px;
    text-align: center;
    font-weight: 300;
}
.k-look {
    width: 90%;
    margin: 0 auto 1.875rem;
    position: relative;
}
.k-look-model {
    width: 100%;
    height: 100%;
}
.k-look-items {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 70%;
    transform: translateY(-50%);
    padding-top: 70%;
}
.k-look-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.animated.delay-1 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.animated.delay-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.animated.delay-3 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.animated.delay-4 {
    -webkit-animation-delay: 2s;
    animation-delay: 2;
}
.animated.delay-5 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.k-items {
    padding: 1.875rem 0.9375rem 3.7rem;
}
.k-heading {
    font-weight: 200;
    font-size: 22px;
    padding-left: 1%;
}
.k-single-item {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    color: #000;
}
.k-single-item:hover {
    color: #000;
}
.ksi-image {
    border: 1px solid #e2e2e2;
}
.ksi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ksi-brand {
    margin-top: 22px;
    font-size: 15px;
    color: #a7a9ac;
}
.ksi-title {
    font-size: 16px;
}
.ksi-price {
    font-size: 16px;
}
.ksi-price span {
    position: relative;
}
.ksi-price span::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #a7a9ac;
}

@media (max-width: 850px) {
    .k-look {
        width: 100%;
    }
    .k-title {
        font-size: 22px;
    }
    .k-subtitle {
        font-size: 14px;
    }
    .k-heading {
        padding-left: 2%;
    }
    .ksi-brand {
        margin-top: 17px;
        font-size: 13px;
    }
    .ksi-title,
    .ksi-price {
        font-size: 14px;
    }
}

.calendar-event {
    margin-bottom: 50px;
}
.calendar-event-image-container {
    width: 100%;
}
.calendar-event-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}
.calendar-event-image img {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s ease;
}
.calendar-event-image:hover img {
    transform: scale(1.04);
    transition: 0.5s ease;
}
.calendar-event-button-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.5s ease;
}
.calendar-event-button {
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 15px;
}
.calendar-event-image:hover .calendar-event-button-container {
    opacity: 1;
    transition: 0.5s ease;
}
.calendar-event-meta-container {
    width: 100%;
}
.calendar-event-meta {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: #000;
    font-weight: bold;
    line-height: 1;
}
.calendar-event-meta.white {
    color: #fff;
}
.calendar-date-container {
    min-width: 81px;
    margin-right: 15px;
    text-align: left;
}
.calendar-event-shortdate {
    margin-bottom: 10px;
    font-size: 18px;
}
.calendar-event-dayname {
    font-size: 12px;
}
.calendar-event-name {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}
.calendar-event-price {
    color: #9d9d9d;
    font-size: 16px;
}

.news table tbody tr:nth-child(even) {
    background-color: unset !important;
}

