/* Header */

.header {
    position: fixed;
    width: 100%;
    z-index: 500;
    transition: var(--em-03-seconds);
}
.header.hide {
    transform: translateY(-60px);
}
.headerMobileBtn {
    display: none;
}
.headerBackdrop {
    display: none;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 30;
}
.headerBackdrop.active {
    display: block;
}
.headerContent {
    position: relative;
    display: flex;
    width: 100%;
    height: 130px;
}
.headerMask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 70%, transparent);
    mask: linear-gradient(180deg, #FFF 80%, transparent);
}
.headerLogotype {
    display: flex;
    height: 40px;
    margin: 0 auto 0 0;
}
.headerMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 501;
}
.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 1214px;
    margin: 0 auto;
}
.headerBottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    padding: 0;
}
.headerBottomArea {
    position: relative;
    width: 1214px;
    margin: 0 auto;
    padding: 0 10px 0 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--em-color-white);
    border-radius: 30px;
    border: 1px solid var(--em-color-lgray);
}
.headerBotBtnShop {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 14px;
    background: var(--em-color-silver);
    margin: 0 0 0 10px;
}
.headerBotBtnShop:hover {
    background: var(--em-color-lgray);
}
.headerBotBtnShop svg {
    stroke: var(--em-color-extra-accent);
    width: 22px;
    height: 22px;
}
.headerBotBtnShop:hover svg {
    stroke: var(--em-color-accent);
}
.headerBotBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    height: 50px;
    padding: 0px;
    color: var(--em-color-darkgray);
}
.headerCatalogIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    background: var(--em-color-darkgray);
}
.headerBotBtn.hover-active {
    color: var(--em-color-accent);
}
.headerBotBtn.hover-active .headerCatalogIcon {
    background: var(--em-color-accent);
}
.headerBotBtn:hover {
    color: var(--em-color-accent);
}
.headerCatalogIcon svg {
    stroke: var(--em-color-white);
    width: 18px;
    height: 18px;
}
.headerFormBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    min-width: 125px;
    height: 50px;
    transition: var(--em-02-seconds);
}
.headerFormBtn:hover {
    background: var(--em-color-accent-hover);
}
.headerProfile {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: 14px;
    color: var(--em-color-extra-accent);
    background: var(--em-color-silver);
    height: 40px;
    padding: 0 20px;
    border-radius: 14px;
    margin: 0 0 0 10px;
}
.headerProfile svg {
    margin: 0 10px 0 0;
    width: 24px;
    height: 24px;
    stroke: var(--em-color-accent);
}
.headerProfile:hover {
    background: var(--em-color-lgray);
    color: var(--em-color-darkgray);
}
.headerExit {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--em-color-silver);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 14px;
    margin: 0 0 0 10px;
    cursor: pointer;
}
.headerExit svg {
    width: 22px;
    height: 22px;
    stroke: var(--em-color-darkgray);
}
.headerExit:hover svg {
    stroke: #d41218;
}
.headerExit:hover {
    background: var(--em-color-lgray);
}
.headerPhone {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: 14px;
    color: var(--em-color-extra-accent);
    background: var(--em-color-silver);
    height: 40px;
    padding: 0 25px;
    border-radius: 20px;
    margin: 0 0 0 50px;
}
.headerPhone:hover {
    background: var(--em-color-lgray);
    color: var(--em-color-darkgray);
}
.headerPhone svg {
    margin: 0 10px 0 0;
    width: 22px;
    height: 22px;
    stroke: var(--em-color-accent);
}
.headerTopBtn {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: 14px;
    color: var(--em-color-extra-accent);
    margin: 0 0 0 50px;
}
.headerTopBtn:hover {
    color: var(--em-color-darkgray);
}
.headerTopBtn svg {
    margin: 0 10px 0 0;
    width: 24px;
    height: 24px;
    stroke: var(--em-color-accent);
}
.headerSocialLinks {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 145px;
    height: 50px;
    padding: 0 20px 0 0
}
.headerSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.headerSocialLink svg {
    fill: var(--em-color-darkgray);
}
.headerSocialLink:hover svg {
    fill: var(--em-color-accent);
}
.svg_zen_one {
    fill: var(--em-color-white);
}
.svg_zen_two {
    fill: var(--em-color-black);
}
.headerSocialLink:hover .svg_zen_two {
    fill: var(--em-color-accent);
}
.headerBotContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.headerBotBurger {
    display: none;
    flex-direction: column;
    position: absolute;
    background: var(--em-color-white);
    width: auto;
    height: auto;
    top: 69px;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid var(--em-color-lgray);
}
.headerBotBurgerCatalog {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    background: var(--em-color-white);
    width: 1214px;
    left: -1px;
    padding: 10px;
    top: 69px;
    border-radius: 24px;
    border: 1px solid var(--em-color-lgray);
}
.headMenuCatalogArea {
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
    padding-top: 100%;
}
.headMenuCatalog {
    display: flex;
    flex-direction: column;
    width: 20%;
    font-family: var(--em-font);
    border-radius: 14px;
}
.headMenuCatalog:hover {
    background: var(--em-color-silver);
}
.headMenuCatalog img {
    position: absolute;
    width: 150px;
    top: 35px;
    scale: 1.2;
}
.headMenuCatalog p {
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-weight: 500;
    color: var(--em-color-extra-accent);
}
.headMenuCatalog:hover p {
    color: var(--em-color-accent);
}
.headerBotBurger .headerBotBtn {
    font-weight: 500;
    justify-content: center;
    white-space: nowrap;
    padding: 0px 27px;
    height: 40px;
}
.headerBotBurger .headerBotBtn:hover {
    background: var(--em-color-silver);
    border-radius: 14px;
}
.headerBotBurger.active {
    display: flex;
}
.headerBotBurgerCatalog.active {
    display: flex;
}
.headerBtnForm {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    background: var(--em-color-accent);
    padding: 0 20px;
    color: var(--em-color-white);
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 20px;
    cursor: pointer;
    margin: 0 0 0 10px;
}
.headerBtnForm:hover {
    background: var(--em-color-accent-hover);
}
.headerBurgerMenu {
    display: none;
}

/* Main */

main {
    width: 100%;
    padding: 130px 0 50px 0;
}
.main {
    width: 1234px;
    margin: 0 auto;
}
.mainHead {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 10px 20px 10px;
}
.mainHead.catalogPage {
    padding: 10px;
}
.mainHeadCatalog {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.mainHead.catalogPage .mainHeadTree {
    padding: 10px 0 15px 0;
}
.mainHeadTree {
    display: flex;
    align-items: center;
    padding: 10px 0 0 0;
    width: 100%;
    font-family: var(--em-font);
}
.mainHeadTree a {
    font-size: 14px !important;
}
.mainHeadTree p {
    font-size: 14px !important;
    color: #888 !important;
    font-weight: 500 !important;
}
.mainHeadTree svg {
    width: 12px;
    margin: 0 5px;
    stroke: #888;
}
.mainHead p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    color: var(--em-color-darkgray);
}
.mainHead a {
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    color: var(--em-color-accent);
}
.mainHead a:hover {
    color: var(--em-color-accent-hover);
}

/* Main Slider */

.sliderBlock {
    position: relative;
    width: 100%;
    margin: 10px 0 0 0;
}
.sliderSize {
    width: 100%;
    height: 100%;
    padding: 10px;
    opacity: 0;
    display: flex;
}
.sliderArea {
    display: none;
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px;
    transition: all 0.6s ease;
    transform: translateX(200%);
}
.sliderArea.left {
    display: flex;
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    cursor: default;
}
.sliderArea.center {
    display: flex;
    transform: translateX(0%);
    opacity: 1;
    z-index: 2;
}
.sliderArea.right {
    display: flex;
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
    cursor: pointer !important;
}
.slider {
    font-family: var(--bz-font);
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
}
.sliderArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sliderOriginal {
    display: flex;
}
.sliderMobile {
    display: none;
}
.slide-left {
    animation: slideToLeft 0.6s ease forwards;
}
.slide-center {
    animation: slideToCenter 0.6s ease forwards;
}
.slide-right {
    animation: slideToRight 0.6s ease forwards;
}
.slide-out-left {
    animation: slideOutLeft 0.6s ease forwards;
}
.slide-out-right {
    animation: slideOutRight 0.6s ease forwards;
}
.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}
.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}
@keyframes slideToLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}
@keyframes slideToCenter {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideToRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
@keyframes slideOutLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(-200%); opacity: 0; }
}
@keyframes slideOutRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(200%); opacity: 0; }
}
@keyframes slideInRight {
    from { transform: translateX(200%); opacity: 0; }
    to { transform: translateX(100%); opacity: 0; }
}
@keyframes slideInLeft {
    from { transform: translateX(-200%); opacity: 0; }
    to { transform: translateX(-100%); opacity: 0; }
}
.slider-inactive {
    pointer-events: none;
    cursor: default;
}

/* Catalog */

.catalog {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
.catalogBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33.3333%;
    padding: 10px;
    cursor: pointer;
    transition: var(--em-03-seconds);
}
.catalogBlock:hover {
    scale: 1.02;
}
.catalogBlock.services {
    width: 20%;
}
.catalogBlock.services p {
    font-size: 18px;
    top: 0;
    bottom: unset;
    width: 100%;
    padding: 35px 50px 35px 30px;
}
.catalogBlock.services img {
    top: 0;
    right: 0;
    scale: unset;
    width: 100%;
    height: 100%;
}
.catalogBlock.services .catalogArea {
    padding-bottom: 100%;
    background: transparent;
    border: 1px solid var(--em-color-silver);
}
.catalogBlock.services:hover .catalogArea {
    background: transparent;
}
.catalogBlock img {
    position: absolute;
    top: 20px;
    height: 250px;
    right: -30px;
    scale: 1.2;
}
.catalogBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    padding: 35px 30px;
    bottom: 0;
    z-index: 1;
}
.catalogArea {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: var(--em-color-silver);
    border-radius: 30px;
    overflow: hidden;
}
.catalogBlock:hover p {
    color: var(--em-color-accent);
}
.catalogBlock:hover .catalogArea {
    background: var(--em-color-lgray);
}
.catalogDescription {
    font-family: var(--em-font);
    color: var(--em-color-extra-accent);
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.catalogDescription h1 {
    padding: 30px 0 40px 0;
    font-weight: 700;
}
.catalogDescription h2 {
    padding: 0 0 30px 0;
    font-weight: 700;
}
.catalogDescription p {
    padding: 0 0 30px 0;
}
.catalogList {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33%;
    max-width: 33.3333%;
    flex: auto;
    padding: 10px;
}
.catalogListArea {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    background: var(--em-color-white);
    cursor: pointer;
    border: 1px solid var(--em-color-silver);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--em-03-seconds);
}
.catalogListArea img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}
.catalogListInfo {
    width: 100%;
    padding: 18px 20px;
}
.catalogListInfo p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    transition: var(--em-02-seconds);
}
.catalogListInfo p:nth-child(1) {
    margin: 0 0 5px 0;
    font-weight: 500;
}
.catalogListInfo span {
    font-weight: 500;
    font-size: 16px;
    text-decoration: line-through;
    color: var(--em-color-extra-accent);
}
.catalogListValue {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-family: var(--em-font);
    color: var(--em-color-extra-accent);
    width: 50%;
    padding: 0 0 20px 20px;
}
.catalogListValue p {
    width: 100%;
}
.catalogListChar {
    display: flex;
    flex-wrap: wrap;
    text-align: right;
    font-family: var(--em-font);
    color: var(--em-color-footer);
    width: 50%;
    padding: 0 20px 20px 0;
}
.catalogListChar p {
    width: 100%;
}
.catalogListFooter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
}
.catalogListComplect {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--em-color-extra-accent);
    text-decoration: underline dotted;
    width: 50%;
    order: 2;
}
.catalogListPrice {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    color: #32CB41;
    width: 50%;
    order: 1;
}
.catalogListPrice svg {
    stroke: #32CB41;
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
}
.catalogListPrice.toOrder {
    color: #FD9824;
}
.catalogListPrice.toOrder svg {
    stroke: #FD9824;
}
.catalogListPrice.notAvailable {
    color: #CC0B0B;
}
.catalogListPrice.notAvailable svg {
    stroke: #CC0B0B;
}
.catalogListBtn {
    order: 1;
    width: 50%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 16px;
    border-radius: 14px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
}
.catalogListArea:hover {
    scale: 1.02;
}
.catalogListArea:hover .catalogListInfo p:nth-child(2) {
    color: var(--em-color-accent);
}
.catalogListBtn:hover {
    background: var(--em-color-accent-hover);
}
.catalogParams {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.catalogParamsArea {
    flex: auto;
    min-width: 33%;
    padding: 10px;
}
.catalogParamsContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background: var(--em-color-silver);
    overflow: hidden;
}
.catalogParamsContent:hover {
    background: var(--em-color-lgray);
}
.catalogParamsContent:hover p {
    color: var(--em-color-accent);
}
.catalogParamsContent p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-extra-accent);
    padding: 0 25px;
    white-space: nowrap;
}
.catalogParamsContent img {
    height: 90px;
    transform: translateX(10px);
}
.catalogStatusAvailable {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    color: rgb(11, 204, 27);
}
.catalogStatusAvailable svg {
    width: 18px;
    margin: 0 5px 0 0;
}
.catalogStatusToOrder {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    color: rgb(253, 152, 36);
}
.catalogStatusToOrder svg {
    width: 18px;
    margin: 0 5px 0 0;
}
.catalogStatusNotAvailable {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 14px;
    color: rgb(204, 11, 11);
}
.catalogStatusNotAvailable svg {
    width: 18px;
    margin: 0 5px 0 0;
}

.catalogContainer {
    display: flex;
}
.catalogInfo {
    width: 100%;
    padding: 10px;
}
.catalogValuesBlock {
    width: 50%;
}
.catalogInfoBlock {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--em-color-lgray);
}
.catalogInfoValue {
    display: flex;
    font-family: var(--em-font);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.catalogInfoValue p:nth-child(2) {
    color: var(--em-color-extra-accent);
    text-decoration: line-through;
    margin: 0 0 0 15px;
}
.catalogInfoBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    font-size: 16px;
    height: 50px;
    width: 40%;
    font-weight: 500;
    flex: auto;
    border-radius: 20px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    cursor: pointer;
    transition: var(--em-02-seconds);
}
.catalogInfoBtn:hover {
    background: var(--em-color-accent-hover);
}
.catalogContent {
    display: flex;
    flex-wrap: wrap;
    flex: auto;
    padding: 10px
}
.catalogContentArea {
    display: flex;
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
}
.catalogContentImages {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.catalogContentImage:first-child {
    width: 100%;
    padding: 10px;
}
.catalogContentImage {
    width: 20%;
    padding: 10px;
    cursor: pointer;
}
.catalogContentImageArea {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--em-color-silver);
    border-radius: 14px;
    overflow: hidden;
}
.catalogContentImageArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}
.catalogContentInformation {
    position: relative;
    width: 50%;
    padding: 10px 10px 80px;
}
.cartListTags {
    display: flex;
    margin: 0 0 10px 0;
}
.cartListTags.catalog {
    position: absolute;
    top: 20px;
    margin: 0;
    left: 20px;
}
.cartListTags.catalog:empty {
    margin: 0;
}
.tagsHit {
    font-family: var(--em-font);
    font-size: 12px;
    color: var(--em-color-white);
    background: #FF7455;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 5px 0 0;
}
.tagsNew {
    font-family: var(--em-font);
    font-size: 12px;
    color: var(--em-color-white);
    background: #32CB41;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 5px 0 0;
}
.tagsSub {
    font-family: var(--em-font);
    font-size: 12px;
    color: var(--em-color-white);
    background: #FF2D34;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 5px 0 0;
}
.tagsRec {
    font-family: var(--em-font);
    font-size: 12px;
    color: var(--em-color-white);
    background: #A56FFD;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 5px 0 0;
}
.tagsSale {
    font-family: var(--em-font);
    font-size: 12px;
    color: var(--em-color-white);
    background: #0CBC3B;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 0 5px 0 0;
}
.catalogContentArticle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--em-font);
    color: var(--em-color-extra-accent);
    font-size: 14px;
    margin: 0 0 15px 0;
}
.catalogContentName {
    font-family: var(--em-font);
    font-weight: 700;
    font-size: 24px;
    color: var(--em-color-extra-accent);
    margin: 0 0 10px 0;
    width: 100%;
}
.catalogContentSpace {
    width: 100%;
    height: 1px;
    background: var(--em-color-silver);
}
.catalogContentButtons {
    position: absolute;
    bottom: 10px;
    display: flex;
    width: 100%;
    padding: 0 20px 0 0;
}
.catalogContentButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    flex: auto;
    height: 50px;
    border-radius: 20px;
    border: 1px solid var(--em-color-accent);
    margin: 0 20px 0 0;
    cursor: pointer;
    transition: var(--em-02-seconds);
}
.catalogContentButton.active {
    background: var(--em-color-accent);
}
.catalogContentButton.active p {
    color: var(--em-color-white);
}
.catalogContentButton.active svg {
    stroke: var(--em-color-white);
}
.catalogContentButton.active:hover {
    background: var(--em-color-accent-hover);
}
.catalogContentButton.active:hover p {
    color: var(--em-color-white);
}
.catalogContentButton.active:hover svg {
    stroke: var(--em-color-white);
}
.catalogContentButton p {
    font-family: var(--em-font);
    font-weight: 500;
    color: var(--em-color-darkgray);
    transition: var(--em-02-seconds);
}
.catalogContentButton:hover p {
    color: var(--em-color-white);
}
.catalogContentButton:hover {
    background: var(--em-color-accent-hover);
    border: 1px solid var(--em-color-accent-hover);
}
.catalogContentButton svg {
    stroke: var(--em-color-extra-accent);
    transition: var(--em-02-seconds);
}
.catalogContentButton:hover svg {
    stroke: var(--em-color-accent);
}
.catalogContentTech {
    padding: 15px 0 20px 0;
    font-family: var(--em-font);
}
.catalogContentTechSelect {
    display: flex;
    flex-wrap: wrap;
}
.catalogContentTechPrices {
    border-radius: 20px;
    background: #f4faff;
    padding: 20px 25px 22px 25px;
    width: 100%;
}
.catalogPricesContent {
    width: 100%;
}
.catalogPriceValues {
    width: 100%;
    display: flex;
    margin: 0 0 2px 0px;
}
.catalogPriceValues p {
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
    font-weight: 500;
}
.catalogPriceValues p:first-child {
    padding: 0 10px 0 0;
    white-space: nowrap;
}
.catalogPriceValues p:last-child {
    padding: 0 0 0 10px;
    white-space: nowrap;
}
.catalogPriceSpace {
    flex: auto;
    width: 10%;
    height: 16px;
    border-bottom: 1px dashed var(--em-color-extra-accent);
}
.catalogPricesHead {
    font-family: var(--em-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-darkgray);
    margin: 0 0 13px 0;
}
.catalogTechComplect {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-size: 14px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    border: 1px solid var(--em-color-lgray);
    color: var(--em-color-darkgray);
    cursor: pointer;
    margin: 0 10px 10px 0;
}
.catalogTechComplect:hover {
    border: 1px solid #AFAFAF;
}
.catalogContactBlock {
    font-family: var(--em-font);
    padding: 50px 10px 10px;
    width: 100%;
}
.catalogTechHead {
    font-weight: 600;
    font-size: 36px;
    line-height: 30px;
    color: var(--em-color-black);
    margin: 0px 0px 30px;
}
.catalogContactInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 35px;
}
.catalogContactInfo p {
    display: flex;
    align-items: center;
}
.catalogContactInfo svg {
    stroke: var(--em-color-accent);
    height: 24px;
    margin: 0px 10px 0px 0px;
}
.catalogSelectColors {
    width: 40px;
    height: 40px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    margin: 0 10px 0 0;
    overflow: hidden;
    transition: var(--em-02-seconds);
    cursor: pointer;
}
.catalogSelectColors.active {
    border: 1px solid var(--em-color-darkgray);
}
.catalogSelectColor {
    width: 38px;
    height: 38px;
    border-radius: 20px;
    border: 2px solid var(--em-color-white);
}
.catalogSelectColors:hover {
    opacity: 0.5;
}
.catalogTechComplect.active {
    border: 1px solid var(--em-color-darkgray);
}
.catalogContentTech p {
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-darkgray);
    margin: 0 0 13px 0;
}
.catalogContentTech p:nth-child(3) {
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-darkgray);
    margin: 3px 0 13px 0;
}
.catalogTechBlock {
    width: 100%;
    font-family: var(--em-font);
    padding: 50px 10px 0 10px;
}
.catalogTechHead {
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    width: 100%;
    color: var(--em-color-darkgray);
    margin: 0 0 35px 0;
}
.catalogTechParams {
    display: flex;
    flex-wrap: wrap;
}
.catalogTechParams p {
    width: 50%;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: var(--em-color-darkgray);
}
.catalogTechParams span {
    color: var(--em-color-extra-accent);
}
.catalogTechDescription {
    font-family: var(--em-font);
    font-weight: 500;
    color: var(--em-color-darkgray);
}
.catalogTechDescription p {
    margin: 0 0 20px 0;
}
.catalogTechDescription p:last-child {
    margin: 0;
}
.catalogContactInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
}
.catalogContactInfo p {
    display: flex;
    align-items: center;
}
.catalogContactInfo svg {
    stroke: var(--em-color-accent);
    height: 28px;
    margin: 0 10px 0 0;
}
.catalogContactBlock iframe {
    border-radius: 24px;
}
.catalogTechBlock iframe {
    border-radius: 24px;
}

/* Parts */

.parts {
    display: flex;
    padding: 40px 0 0 0;
}
.partsInfo {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 66%;
    flex: auto;
    padding: 10px;
    cursor: default;
}
.partsInfo p:first-child {
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 50px 0;
}
.partsInfo p:last-child {
    margin: 0;
}
.partsInfo p {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 20px 0;
    width: 100%;
    color: var(--em-color-extra-accent);
}
.partsInfo ul {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--em-color-extra-accent);
    padding: 0 0 0 25px;
    margin: 0 0 20px 0;
}
.partsInfo a {
    color: var(--em-color-accent);
}
.partsBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33%;
    flex: auto;
    padding: 10px;
}
.partsArea img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partsArea {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    background: var(--em-color-white);
    overflow: hidden;
    border-radius: 24px;
}
.partsBanner {
    width: 100%;
    padding: 10px;
}
.partsBanner img {
    display: flex;
    width: 100%;
}
.partsDescription {
    font-family: var(--em-font);
    font-size: 18px;
    padding: 30px 10px;
}
.partsDescription p {
    margin: 0 0 30px 0;
}
.partsDescription p:last-child {
    margin: 0;
}
.partsDescription ul {
    padding: 0 0 0 25px;
    margin: 0 0 30px 0;
    line-height: 26px;
}
.partsDescription b {
    font-weight: 600;
}

/* Sales */

.sales {
    display: flex;
    flex-wrap: wrap;
}
.salesBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    padding: 10px;
    cursor: pointer;
    transition: var(--em-03-seconds);
}
.salesImage {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 62px;
}
.salesImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
}
.salesBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    padding: 30px 0px;
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    bottom: 0;
    z-index: 1;
}
.salesUnvisible {
    position: absolute;
    bottom: 22px;
    right: 40px;
    height: 40px;
    width: 100px;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}
.salesBlock svg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    padding: 18px 0px;
    stroke: var(--em-color-darkgray);
}
.salesArea {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: var(--em-color-white);
}
.salesBlock:hover p {
    color: var(--em-color-accent);
}
.salesBlock:hover svg {
    stroke: var(--em-color-accent);
}
.salesBlock:hover {
    scale: 1.02;
}

/* News */

.news {
    display: flex;
    flex-wrap: wrap;
}
.newsBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33.3333%;
    padding: 10px;
    cursor: pointer;
    transition: var(--em-03-seconds);
}
.newsImage {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 96px;
    overflow: hidden;
}
.newsImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsBlock p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    padding: 18px 0px;
    width: 80%;
    bottom: 48px;
    left: 30px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}
.newsDesc {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80%;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
}
.newsUnvisible {
    position: absolute;
    bottom: 10px;
    right: 40px;
    height: 90px;
    width: 100px;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}
.newsBlock svg {
    position: absolute;
    bottom: 38px;
    right: 20px;
    width: 26px;
    padding: 18px 0px;
    z-index: 3;
    stroke: var(--em-color-darkgray);
}
.newsArea {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 24px;
    border: 1px solid var(--em-color-silver);
    overflow: hidden;
}
.newsBlock:hover p {
    color: var(--em-color-accent);
}
.newsBlock:hover svg {
    stroke: var(--em-color-accent);
}
.newsBlock:hover {
    scale: 1.02;
}
.newsPagePreview {
    width: 100%;
    height: 500px;
    padding: 10px 10px 25px 10px;
}
.newsPagePreview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.newsPageDescription {
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.newsPageDescription h2 {
    padding: 0 0 30px 0;
    font-weight: 600;
}
.newsPageDescription ul {
    padding: 0 0 0 25px;
    line-height: 28px;
    margin: 0 0 30px 0;
    font-size: 18px;
}
.newsPageDescription p {
    padding: 0 0 30px 0;
    font-size: 18px;
}
.newsPageDescription a {
    color: var(--em-color-accent);
}
.newsPageDescription img {
    width: 100%;
    margin: 0 0 30px 0;
    border-radius: 24px;
}
.newsPageDescription iframe {
    border-radius: 24px;
    margin: 0 0 30px 0;
    width: 100%;
}
.newsPageDescriptionBlock {
    display: flex;
    flex-direction: row;
    margin: 0 0 30px;
}
.newsPageDescriptionBlock p:first-child {
    font-family: var(--em-font);
    color: var(--em-color-accent);
    font-size: 24px;
    font-weight: 700;
    min-width: 90px;
    max-width: 90px;
    padding: 0;
}
.newsPageDescriptionBlock p {
    display: flex;
    flex: auto;
    font-family: var(--em-font);
    font-size: 18px;
    padding: 0;
}

/* Video */

.videoPlayer {
    display: flex;
    width: 100%;
    padding: 10px;
}
.videoPlayer iframe {
    width: 100%;
    height: 684px;
    border-radius: 24px;
}
.videoDescription {
    font-family: var(--kmz-font);
    color: var(--kmz-color-black);
    font-size: 18px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/* Form */

.form {
    display: flex;
    flex-wrap: wrap;
}
.formInput {
    padding: 10px;
    width: 33%;
    flex: auto;
}
.formInput p {
    padding: 0 0 10px 0 !important;
}
.formInput select {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    -webkit-appearance: none;
    padding: 0 20px;
}
.formInput input {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    padding: 0 20px;
}
.formTextArea {
    width: 100%;
    padding: 10px;
}
.formTextArea p {
    padding: 0 0 10px 0 !important;
    color: var(--em-color-darkgray);
}
.formTextArea textarea {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 200px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    padding: 20px;
    resize: none;
}
.formButton {
    padding: 10px;
    width: 100%;
}
.formButton button {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
}
.formButton button:hover {
    background: var(--em-color-accent-hover);
}
.form p {
    font-family: var(--em-font);
    color: var(--em-color-darkgray);
    padding: 10px;
}
.form a {
    color: var(--em-color-accent);
}
.form a:hover {
    color: var(--em-color-accent-hover);
}

/* Footer */

.footer {
    width: 100%;
    border-top: 1px solid var(--em-color-lgray);
    border-radius: 40px 40px 0 0;
}
.footerArea {
    display: flex;
    flex-wrap: wrap;
    width: 1214px;
    margin: 0 auto;
    padding: 50px 0;
}
.footerBlock {
    display: flex;
    flex-direction: column;
    width: 25%;
    margin: 0 0 45px 0;
}
.footerBlock p {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    margin: 0 0 8px 0;
}
.footerBlock a {
    display: flex;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 400;
    font-size: 14px;
    color: var(--em-color-gray);
    margin: 0 0 6px 0;
}
.footerBlock svg {
    width: 20px;
    height: 20px;
    stroke: var(--em-color-accent);
    margin: 0 8px 0 0;
}
.footerBlock a:hover {
    color: var(--em-color-accent);
}
.footerLine {
    background: var(--em-color-lgray);
    width: 100%;
    height: 1px;
}
.footerCopyright {
    padding: 50px 0 0 0;
    width: 50%;
    font-family: var(--em-font);
    font-size: 14px;
    color: var(--em-color-gray);
}
.footerCopyright a {
    margin: 0 0 20px 0;
    color: var(--em-color-gray);
}
.footerCopyright a:hover {
    color: var(--em-color-accent);
}
.footerCopyright p:nth-child(1) {
    margin: 0 0 10px 0;
    width: 100%;
}
.footerCopyright p:nth-child(3) {
    margin: 20px 0 0 0;
}
.footerInfo {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 50px 0 0 0;
    width: 50%;
    font-family: var(--em-font);
    font-size: 14px;
    color: var(--em-color-gray);
}
.footerInfo img {
    width: 180px;
}
.footerSocialLinks {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
}
.footerSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--em-color-silver);
    border-radius: 22px;
    margin: 0 10px 0 0 !important;
}
.footerSocialLink svg {
    fill: var(--em-color-darkgray) !important;
    stroke: none;
    margin: 0 !important;
}
.footerSocialLink:hover {
    background: var(--em-color-lgray);
}
.footerSocialLink .svg_zen_one {
    fill: var(--em-color-silver);
}
.footerSocialLink:hover .svg_zen_one {
    fill: var(--em-color-lgray);
}

/* FAQ */

.faq {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.faqHead {
    font-family: var(--em-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--em-color-extra-accent);
    margin: 0 0 20px 0;
}
.question {
    width: 100%;
    font-family: var(--em-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-extra-accent);
    background: var(--em-color-lgray);
    padding: 15px 20px;
    margin: 0 0 25px 0;
}
.answer {
    width: 100%;
    font-family: var(--em-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--em-color-extra-accent);
    padding: 0 20px;
    margin: 0 0 25px 0;
}
.answer a {
    color: var(--em-color-accent);
}
.faq ul {
    padding: 0 45px;
    margin: 0 0 25px 0;
    line-height: 26px;
}

/* Contacts */

.contacts {
    display: flex;
    flex-wrap: wrap;
}
.contactsBlock {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-family: var(--em-font);
    width: 50%;
    padding: 10px;
}
.contactsMap {
    font-family: var(--em-font);
    width: 50%;
    padding: 10px;
}
.contactsMap iframe {
    border-radius: 24px;
    overflow: hidden;
}
.contactsStuff {
    width: 100%;
    padding: 10px;
}
.contactsH1 {
    font-size: 24px !important;
    font-weight: 600;
    color: var(--em-color-accent);
}
.contactsH2 {
    font-size: 18px !important;
    color: var(--em-color-gray) !important;
}
.contactsBlock p {
    margin: 8px 0;
    font-size: 20px;
    padding: 0 20px 0 0;
    color: var(--em-color-darkgray);
    width: 100%;
}
.contactsPhone {
    color: var(--em-color-accent);
    font-size: 28px;
    font-weight: 600;
    margin: 8px 0;
}
.contactsSchedule {
    font-size: 18px;
}
.contactsEmail {
    color: var(--em-color-accent);
    padding: 0 0 20px;
    margin: 8px 0;
}
.contactsSocialLinks {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}
.contactsSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--em-color-silver);
    margin: 0 10px 0 0 !important;
    border-radius: 30px;
}
.contactsSocialLink svg {
    fill: var(--em-color-black) !important;
    margin: 0 !important;
}
.contactsSocialLink:hover {
    background: var(--em-color-lgray);
}
.contactsSocialLink .svg_zen_one {
    fill: var(--em-color-silver);
}
.contactsSocialLink:hover .svg_zen_one {
    fill: var(--em-color-lgray);
}
.contactsStuffHeader {
    display: flex;
    width: 100%;
    font-family: var(--em-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-darkgray);
    background: var(--em-color-lgray);
    padding: 15px 0px;
}
.contactsStuffHeader p {
    width: 50%;
    padding: 0 20px;
}
.contactsStuffFace {
    display: flex;
    width: 100%;
    font-family: var(--em-font);
    font-size: 16px;
    color: var(--em-color-extra-accent);
    padding: 15px 0px;
    border-bottom: 1px solid var(--em-color-lgray);
}
.contactsStuffFace p {
    width: 50%;
    padding: 0 20px;
}

/* Vacancy */

.vacancy {
    width: 100%;
    padding: 10px;
}
.vacancyContainer {
    padding: 30px 20px;
    background: var(--em-color-silver);
}
.vacancyIntro {
    display: flex;
    flex-wrap: wrap;
    font-family: var(--em-font);
    color: var(--em-color-gray);
}
.vacancyIntro p {
    width: 50%;
}
.vacancyIntro p:first-child {
    color: var(--em-color-extra-accent);
    font-weight: 600;
    font-size: 20px;
    padding: 0 0 5px 0;
}
.vacancyIntro p:nth-child(2) {
    color: var(--em-color-accent);
    font-weight: 600;
    font-size: 20px;
    padding: 0 0 5px 0;
    text-align: right;
}
.vacancyDescription {
    height: 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: var(--em-03-seconds);
}
.vacancyDescription.active {
    padding: 30px 0 0 0;
    height: auto;
}
.vacancyDescription p {
    font-size: 16px !important;
    color: var(--em-color-extra-accent) !important;
    margin: 0 0 20px 0;
}
.vacancyDescription p:last-child {
    margin: 0;
}
.vacancyDescription b {
    font-weight: 600;
}
.vacancyDescription ul {
    line-height: 26px;
    margin: 0 0 20px 0;
    padding: 0 0 0 25px;
    color: var(--em-color-extra-accent) !important;
}

/* Modal */

.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(4px);
    z-index: 799;
    top: 0;
    left: 0;
}
.modal.active {
    display: flex;
}
.modalBackClose {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 800;
    cursor: pointer;
}
.modalContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 30px;
    width: 380px;
    background: var(--em-color-white);
    z-index: 801;
}
.modalContainer h2 {
    font-family: var(--em-font);
    font-size: 24px;
    color: var(--em-color-darkgray);
    margin: 0 0 25px 0;
}
.modalContainer a {
    color: var(--em-color-accent);
}
.modalContainer a:hover {
    text-decoration: underline;
}
.modalContainer p {
    font-family: var(--em-font);
    font-size: 16px;
    color: var(--em-color-extra-accent);
    margin: 0 0 10px 0;
}
.modalContainer input {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid var(--em-color-lgray);
    outline: none;
    padding: 0 20px;
    margin: 0 0 10px 0;
}
.modalContainer select {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 20px;
    outline: none;
    -webkit-appearance: none;
    padding: 0 20px;
    margin: 0 0 10px 0;
}
.modalContainer button {
    font-family: var(--em-font);
    font-size: 16px;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
}
.modalClose {
    position: absolute;
    right: 30px;
    cursor: pointer;
}
.modalClose svg {
    fill: var(--em-color-gray);
}
.modalClose svg:hover {
    fill: var(--em-color-accent);
}

/* Page Buttons */

.pageButtonContainer {
    padding: 10px;
}
.pageButtonArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--em-color-lgray);
    height: 90px;
    padding: 20px;
}
.pageButtonArea p {
    font-family: var(--em-font);
    font-size: 16px;
    padding: 0 10px;
}
.pageButtonArea span {
    font-size: 18px;
    font-weight: 600;
    color: var(--em-color-accent);
}
.pageButton {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--em-font);
    font-weight: 500;
    font-size: 16px;
    padding: 0 30px;
    background: var(--em-color-accent);
    color: var(--em-color-white);
    transition: var(--em-02-seconds);
    cursor: pointer;
}
.pageButton:hover {
    background: var(--em-color-accent-hover);
}

/* Auth */

.authBlock {
    width: 360px;
    margin: 150px auto;
    padding: 30px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 24px;
}
.authBlock.success {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.authBlock.success svg {
    width: 80px;
    stroke: #32CB41;
}
.authBlock.success p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    padding: 20px 0 10px 0;
}
.authBlock.error {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.authBlock.error svg {
    width: 80px;
    stroke: #FF7455;
}
.authBlock.error p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    padding: 20px 0 10px 0;
}
.authHeader {
    font-family: var(--em-font);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: var(--em-color-extra-accent);
}
.authForm {
    display: flex;
    flex-direction: column;
    font-family: var(--em-font);
}
.authPolicy {
    font-size: 14px;
    color: var(--em-color-black);
}
.authForgot {
    font-size: 14px;
}
.authForgot:hover {
    color: var(--em-color-accent-hover);
}
.authForm a {
    color: var(--em-color-accent);
    margin: 5px 0;
}
.authInput {
    position: relative;
}
.authLabel {
    position: absolute;
    font-size: 12px;
    background: var(--em-color-white);
    color: var(--em-color-gray);
    padding: 0 5px;
    top: -8px;
    left: 10px;
}
.authInput input {
    font-family: var(--em-font);
    height: 40px;
    width: 100%;
    border: 1px solid var(--em-color-lgray);
    border-radius: 14px;
    padding: 0 15px;
    margin: 0 0 10px 0;
    outline: none;
}
.authForm button {
    font-family: var(--em-font);
    font-size: 14px;
    height: 40px;
    border: 1px solid var(--em-color-lgray);
    border-radius: 14px;
    background: var(--em-color-accent);
    border: 1px solid var(--em-color-accent);
    color: var(--em-color-white);
    margin: 10px 0 5px;
    cursor: pointer;
    transition: var(--em-02-seconds);
}
.authForm button:hover {
    background: var(--em-color-accent-hover);
    border: 1px solid var(--em-color-accent-hover);
}
.authNonProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    border-radius: 14px;
    border: 1px solid var(--em-color-accent);
    color: var(--em-color-darkgray) !important;
    margin: 5px 0;
    transition: var(--em-02-seconds);
}
.authNonProfile:hover {
    background: var(--em-color-accent);
    color: var(--em-color-white) !important;
}

/* Service */

.service {
    display: flex;
    flex-wrap: wrap;
}
.serviceTypeBtn {
    display: flex;
    width: 25%;
    padding: 10px;
}
.serviceTypeContent {
    width: 100%;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-extra-accent);
    padding: 20px 30px;
    border: 1px solid var(--em-color-silver);
    border-radius: 24px;
    transition: var(--em-03-seconds);
}
.serviceTypeContent:hover {
    scale: 1.02;
    color: var(--em-color-accent);
}

/* Profile */

.profile {
    display: flex;
}
.profileBlock {
    padding: 10px;
    width: 33.3333%;
}
.profileArea {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 100%;
    background: var(--em-color-silver);
    border-radius: 24px;
    transition: var(--em-03-seconds);
}
.profileArea:hover {
    background: var(--em-color-lgray);
    scale: 1.02;
}
.profileAreaContent {
    top: 0;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}
.profileAreaContent svg {
    stroke: var(--em-color-darkgray);
    width: 60px;
    height: 60px;
    margin: 0 0 10px 0;
}
.profileAreaContent p {
    font-family: var(--em-font);
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* Brands */

.brands {
    display: flex;
    flex-wrap: wrap;
}
.brands.company .brandBlock {
    width: 33.3333%;
}
.brands.company .brandArea {
    padding-top: 100%;
}
.brands.company .brandImage {
    padding: 0 0 72px 0;
}
.brandBlock {
    width: 20%;
    padding: 10px;
}
.brandArea {
    position: relative;
    width: 100%;
    padding-top: 50%;
    overflow: hidden;
    border: 1px solid var(--em-color-silver);
    border-radius: 24px;
    transition: var(--em-03-seconds);
}
.brandArea:hover {
    scale: 1.02;
}
.brandArea p {
    position: absolute;
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-darkgray);
    padding: 25px 30px;
    bottom: 0;
    z-index: 1;
}
.brandImage {
    top: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}
.brandImage img {
    width: 70%;
}

/* Pagination */

.pagination {
    display: flex;
    width: 100%;
    padding: 10px;
}
.pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--em-color-white);
    background: var(--em-color-accent);
    margin: 0 10px 0 0;
}
.pagination .current:hover {
    background: var(--em-color-accent) !important;
}
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--em-color-darkgray);
    background: var(--em-color-silver);
    margin: 0 10px 0 0;
}
.pagination a:hover {
    background: var(--em-color-lgray);
}
.pagination .back {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--em-color-darkgray);
    background: var(--em-color-silver);
    margin: 0 10px 0 0;
    padding: 0 20px;
}
.pagination .next{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--em-color-darkgray);
    background: var(--em-color-silver);
    margin: 0 10px 0 0;
    padding: 0 20px;
}
.pagination .space {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--em-color-darkgray);
    background: var(--em-color-silver);
    margin: 0 10px 0 0;
}

/* Main About */

.about {
    padding: 50px 10px 10px 10px;
}
.aboutBackground {
    width: 5000px;
    height: 100%;
    background: #fbfbfb;
    background: linear-gradient(0deg, rgba(251, 251, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    top: 0;
    left: -1000px;
}
.aboutBlock {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 30px;
}
.aboutInfo {
    width: 50%;
    z-index: 1;
}
.aboutInfo p {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: 18px;
    color: var(--em-color-darkgray);
    margin: 0 0 25px 0;
}
.aboutInfo a {
    color: var(--em-color-accent);
}
.aboutInfo p:first-child {
    font-weight: 600;
    font-size: 36px;
    margin: 0 0 25px 0;
    color: var(--em-color-darkgray);
}
.aboutImage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 0 0 0 30px;
}
.aboutImage img {
    width: 100%;
}

/* Why Us */

.whyUs {
    display: flex;
    flex-wrap: wrap;
}
.whyUsBlock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    flex: auto;
    padding: 10px;
    cursor: default;
}
.whyUsArea {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 272px;
    background: var(--em-color-silver);
    border-radius: 24px;
}
.whyUsArea p:first-child {
    font-family: var(--em-font);
    font-weight: 600;
    font-size: 18px;
    color: var(--em-color-accent);
    padding: 30px 30px 25px;
    top: 0;
}
.whyUsArea p {
    font-family: var(--em-font);
    font-weight: 400;
    font-size: 16px;
    width: 90%;
    color: var(--em-color-black);
    padding: 0 30px 30px;
    top: 40px;
}
.whyUsBlock span {
    position: absolute;
    font-family: var(--em-font);
    font-size: 272px;
    font-weight: 600;
    right: 0;
    transform: translateX(25px);
    line-height: 1;
    color: var(--em-color-black);
    opacity: .04;
}

/* Photo Slider */

.sliderCar {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(4px);
}
.sliderCar.active {
    display: flex;
}
.sliderCarHeader {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 30px;
}
.sliderCarCountPhoto {
    font-family: var(--em-font);
    color: var(--em-color-gray);
}
.sliderCarCloseButton {
    cursor: pointer;
}
.sliderCarCloseButton:hover svg {
    fill: var(--em-color-white);
}
.sliderCarCloseButton svg {
    fill: var(--em-color-gray);
    height: 32px;
}
.sliderCarImages {
    height: 80%;
}
.sliderCarImages img {
    position: relative;
}
.sliderCarImages img.active {
    display: block;
}
.sliderCarImages img {
    display: none;
    height: 100%;
}
.sliderCarPrev {
    position: absolute;
    top: 50%;
    left: 30px;
    cursor: pointer;
}
.sliderCarNext {
    position: absolute;
    top: 50%;
    right: 30px;
    cursor: pointer;
}
.sliderCarPrev:hover svg {
    fill: var(--em-color-white);
}
.sliderCarNext:hover svg {
    fill: var(--em-color-white);
}
.sliderCarPrev svg {
    fill: var(--em-color-gray);
    rotate: 180deg;
}
.sliderCarNext svg {
    fill: var(--em-color-gray);
}