@charset "UTF-8";

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri-bold-italic.woff) format("woff"), url(../fonts/calibri-bold-italic.woff2) format("woff2");
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri-bold.woff) format("woff"), url(../fonts/calibri-bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri-italic.woff) format("woff"), url(../fonts/calibri-italic.woff2) format("woff2");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri-light-italic.woff) format("woff"), url(../fonts/calibri-light-italic.woff2) format("woff2");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri-light.woff) format("woff"), url(../fonts/calibri-light.woff2) format("woff2");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: calibri;
    font-display: swap;
    src: url(../fonts/calibri.woff) format("woff"), url(../fonts/calibri.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

:root {
    --background: #f6f6f6;
    --onBackground_color: #231f20;
    --onBackground_color_hover: #212121;
    --bgHeader: #fff;
    --onHeader_color: #231f20;
    --onHeader_color_hover: #212121;
    --bgFooter: #212121;
    --onFooter_color: #fff;
    --onFooter_color_hover: #fff;
    --primary: #0d4564;
    --secondary: #c30d14;
    --labels_new: green;
    --labels_popular: blue;
    --labels_favorite: orange;
    --labels_sale: red
}

body {
    background-color: var(--background);
    color: var(--onBackground_color);
    font-size: 16px;
    line-height: 1.2;
    font-family: calibri, sans-serif
}

body.main-body {
    background-image: url(../img/bg/bg-main.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%
}

a {
    color: var(--onBackground_color);
    text-decoration: underline
}

a:hover {
    text-decoration: none;
    color: var(--onBackground_color_hover)
}

.page-link {
    color: var(--primary)
}

.page-item.active .page-link {
    border-color: var(--primary);
    background-color: var(--primary)
}

.accordion-header {
    display: block;
    position: relative;
    background-color: #fff;
    padding: 20px;
    padding-left: 45px;
    color: #212121;
    text-decoration: none
}

.accordion-header:hover {
    color: #000;
    text-decoration: none
}

.accordion-header::before {
    position: absolute;
    top: 30px;
    left: 15px;
    background-color: #000;
    width: 15px;
    height: 3px;
    content: ""
}

.accordion-header::after {
    position: absolute;
    top: 30px;
    left: 15px;
    background-color: #000;
    width: 15px;
    height: 3px;
    content: ""
}

.accordion-header.collapsed::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.accordion-header h2 {
    margin: 0;
    font-size: 20px
}

.my-btn {
    display: inline-block;
    border: 2px solid var(--primary);
    border-radius: 50px;
    background: 0 0;
    padding: 0 10px;
    min-width: 150px;
    max-width: 100%;
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase
}

.my-btn:focus,
.my-btn:hover {
    background-color: var(--primary);
    color: #fff;
    text-decoration: none
}

.my-btn--green:focus,
.my-btn--green:hover {
    border: 2px solid var(--secondary);
    background-color: var(--secondary);
    color: #fff
}

.my-btn--primary {
    background-color: var(--primary);
    color: #fff
}

.my-btn--primary:hover {
    opacity: .9
}

.load-more-btn {
    display: inline-block;
    margin-bottom: 30px;
    border: none;
    background-image: url(../img/icon/refresh.png);
    background-position: left 4px center;
    background-size: 16px;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 0 0 0 36px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px
}

.load-more-btn:hover {
    color: var(--primary);
    text-decoration: none
}

.section-title {
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 0
}

.section-title::before {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background-image: url(../img/decorations/title-decoration.svg);
    background-repeat: no-repeat;
    background-size: contain
}

.section-title::before {
    top: 0
}

.section-title::after {
    bottom: 0
}

.section-subtitle {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
    color: #666;
    font-weight: 600;
    font-size: 16px
}

.section-block {
    padding: 60px 0
}

.breadcrumb {
    background-color: transparent;
    font-size: 14px
}

.countdown {
    display: inline-block;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 10px 5px
}

.countdown__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.countdown__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 55px
}

.countdown__value {
    color: #333;
    font-weight: 600;
    font-size: 32px
}

.countdown__label {
    margin-top: 5px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase
}

.countdown__separator {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 0;
    color: #333;
    font-weight: 700;
    font-size: 32px
}

.bd-modal__close {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px;
    height: 34px;
    color: #eee !important
}

.login-modal {
    padding: 30px 40px 45px;
    font-size: 12px;
    line-height: 14px
}

.login-modal__title {
    margin-bottom: 44px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase
}

.login-modal__remember {
    display: inline-block;
    margin-bottom: 30px;
    padding-top: 3px
}

.login-modal__btn {
    margin-bottom: 18px;
    width: 100%
}

.login-modal__pd {
    margin-bottom: 50px
}

.login-modal a {
    color: #ff3836
}

.login-modal a:hover {
    color: #ff3836;
    text-decoration: none
}

.login-modal .form-group {
    margin-bottom: 16px
}

.header {
    position: relative;
    border-bottom: 1px solid #d9d8d8;
    background-color: var(--bgHeader);
    color: var(--onHeader_color)
}

.header a {
    text-decoration: none
}

.header__phone {
    display: block;
    color: var(--onHeader_color);
    font-weight: 500;
    font-size: 20px
}

.header__phone:hover {
    color: var(--secondary);
    text-decoration: none
}

.header__address {
    display: none;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3
}

.header .callback-btn {
    display: block;
    color: var(--onHeader_color);
    font-size: 12px;
    line-height: 14px;
    text-decoration: underline;
    text-transform: uppercase
}

.header-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px
}

.header-phone span {
    margin-left: 15px;
    font-weight: 700;
    font-size: 50px
}

.header-contacts {
    text-align: right
}

.header-contacts__worktime {
    font-size: 22px;
    text-transform: uppercase
}

.header-contacts__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 4px
}

.header-contacts__icons-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.header-contacts__search {
    margin-right: 8px;
    padding: 4px;
    width: 38px;
    color: transparent;
    font-size: 0
}

.header-contacts__cart {
    margin-right: 16px
}

.header-contacts__cart-link {
    display: block;
    position: relative;
    background-image: url(../img/icon/cart.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px
}

.header-contacts__cart-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: -4px;
    background: #c30d14;
    color: #fff;
    font-size: 11px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header-contacts__phone {
    background-color: #c30d14;
    padding: 8px 16px
}

.header-contacts__phone-link {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    white-space: nowrap
}

.header-contacts__phone-link:hover {
    color: #fff
}

.header-social {
    display: none
}

.header-social__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header-social__item {
    opacity: .9;
    -webkit-transition: .2s;
    transition: .2s;
    margin-right: 16px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    text-decoration: none
}

.header-social__item:hover {
    opacity: 1
}

.header-social__item:last-child {
    margin-right: 0
}

.header-social__item--whatsapp {
    background-image: url(../img/icon/whatsapp.png)
}

.header-social__item--telegram {
    background-image: url(../img/icon/telegram.png)
}

.header__menu-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0;
    width: 32px;
    height: 32px;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001
}

.header__menu-toggle:focus {
    outline: 0
}

.header__menu-toggle::after {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: background-image .3s ease, -webkit-transform .3s ease;
    transition: background-image .3s ease, -webkit-transform .3s ease;
    transition: background-image .3s ease, transform .3s ease;
    transition: background-image .3s ease, transform .3s ease, -webkit-transform .3s ease;
    background-image: url(../img/icon/menu.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: ""
}

.header__menu-content {
    background-color: #005482;
    height: 52px
}

.header__menu-content-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 16px;
    width: 1280px;
    max-width: 100%;
    height: 100%
}

.header__main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    height: 100%;
    font-weight: 400;
    font-size: 17px;
    list-style: none
}

.header__main-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-transition: background-color .1s;
    transition: background-color .1s;
    margin: 0 1px 0 0;
    padding: 0;
    height: 100%;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.header__main-nav-item--mobile {
    display: none
}

.header__mobile-slider {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin-right: -15px;
    margin-bottom: -4px;
    margin-left: -15px;
    padding: 0 15px 12px 15px;
    width: calc(100% + 30px);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.header__mobile-slider::-webkit-scrollbar {
    display: none
}

.header__mobile-slider-item {
    -webkit-transition: color .1s linear, background-color .1s linear;
    transition: color .1s linear, background-color .1s linear;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 12px;
    border-radius: 4px;
    background: #245f79;
    padding: 4px 16px;
    color: #fff;
    font-size: 17px;
    text-decoration: none
}

.header__mobile-slider-item:first-child {
    margin-left: 0
}

.header__mobile-slider-item:hover {
    background: #2e738d;
    color: #fff
}

.header__mobile-slider-space {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 6px;
    padding: 0 3px
}

.header__main-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    height: 100%;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none
}

.header__main-nav-link:hover {
    text-decoration: none;
    color: #fff
}

.header__main-nav-link::after {
    display: block;
    position: absolute;
    top: 50%;
    right: -1px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    width: 1px;
    height: 18px;
    content: ""
}

.header__main-nav-icon-wrapper {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
    width: 32px;
    height: 32px
}

.header__main-nav-icon {
    vertical-align: top;
    max-width: 100%
}

.header__main-nav-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 8px;
    width: 100%;
    color: inherit;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase
}

.header__submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 52px;
    visibility: hidden;
    opacity: 0;
    z-index: 20;
    -webkit-transition: opacity .2s .2s, visibility .2s .2s;
    transition: opacity .2s .2s, visibility .2s .2s;
    margin: 0;
    border-top: 2px solid #1c6992;
    background: #005482;
    padding: 0;
    max-width: 100%;
    font-weight: 300;
    font-size: 15px;
    list-style: none;
    text-transform: uppercase
}

.header__submenu-group {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 32px 12px 40px;
    width: 272px;
    list-style: none
}

.header__submenu-group::after {
    display: block;
    position: absolute;
    top: 12px;
    right: 2px;
    background: #1c6992;
    width: 2px;
    height: calc(100% - 24px);
    content: ""
}

.header__submenu-group:last-child::after {
    display: none
}

.header__submenu-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.header__submenu-item {
    margin: 2px 0;
    padding: 0;
    line-height: 1.15;
    list-style: none;
    text-align: left
}

.header__submenu-link {
    display: inline-block;
    -webkit-transition: border-color .2s, color .2s;
    transition: border-color .2s, color .2s;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    padding: 4px 0;
    width: 100%;
    color: #fff;
    text-decoration: none
}

.header__submenu-link:hover {
    border-color: #fff;
    color: #4cb3e2
}

.header--menu-open .header__menu-toggle::after {
    background-image: url(../img/icon/close.svg)
}

.header-search {
    position: relative
}

.header-search button {
    position: absolute;
    top: 0;
    right: 0;
    outline: 0;
    border: none;
    background-color: transparent;
    width: 48px;
    height: 48px;
    color: var(--onBackground_color)
}

.header-search button:hover {
    color: var(--onBackground_color_hover)
}

.header-search input {
    outline: 0;
    border: 1px solid #cfd0d5;
    border-radius: 50px;
    background: #cfd0d5;
    padding: 15px 45px 15px 23px;
    width: 100%;
    height: 48px;
    color: var(--onBackground_color);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px
}

.header-search input::-moz-placeholder,
.header-search input::-ms-input-placeholder,
.header-search input::-webkit-input-placeholder {
    color: var(--onBackground_color_hover);
    font-weight: 500
}

.mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: #fff;
    background-color: #005482
}

.mobile-header::after {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, .2)));
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .2) 100%);
    width: 100%;
    height: 4px;
    pointer-events: none;
    content: ""
}

.mobile-header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    color: #fff
}

.mobile-header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    padding: 5px 0;
    height: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1
}

.mobile-header__logo:hover {
    color: #fff
}

.mobile-header__logo span {
    margin-left: 10px
}

.mobile-header__logo img {
    max-width: 100%;
    max-height: 100%
}

.page-bottom-fix {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    padding: 0 15px;
    width: 100%;
    height: 50px
}

.page-bottom-fix::after {
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, .2)));
    background: linear-gradient(rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .2) 100%);
    width: 100%;
    height: 4px;
    pointer-events: none;
    content: ""
}

.page-bottom-fix--screen-mode {
    position: relative !important
}

.page-bottom-fix__bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 6px;
    height: 100%
}

.page-bottom-fix__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-right: 7px;
    background: #005482;
    padding: 6px;
    width: 38px;
    height: 38px
}

.page-bottom-fix__search img {
    width: 100%
}

.page-bottom-fix__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #c30d14;
    padding: 0 8px;
    height: 38px
}

.page-bottom-fix__phone-link {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap
}

.page-bottom-cart {
    z-index: 20;
    display: none
}

.page-bottom-cart__icon {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../img/icon/cart.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative
}

.page-bottom-cart--on-screen {
    position: relative !important
}

.page-bottom-socials {
    z-index: 20;
    display: block;
    background-color: #efefef;
    border-radius: 100%;
    position: fixed;
    bottom: 55px;
    right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s;
    transition: .2s
}

.page-bottom-socials__icon {
    display: block;
    width: 65px;
    height: 65px;
    background-image: url(../img/max-message-logo.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative
}

.page-bottom-socials__icon {
    display: block;
    margin: 8px
}

.page-bottom-socials--on-page-end {
    opacity: .1
}

.board {
    position: relative;
    background-color: #102a43;
    padding: 60px 0;
    overflow: hidden;
    color: #fff;
    min-height: 620px
}

.board::after,
.board::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    z-index: 2
}

.board::before {
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#005482), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, #005482 0, rgba(0, 0, 0, 0) 100%)
}

.board::after {
    bottom: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#005482), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #005482 0, rgba(0, 0, 0, 0) 100%)
}

.board__bg-image-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url(https://placehold.co/1920x600/1c3b57/e0e0e0?text=Board+Background);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%
}

.board__bg-image-container::after {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 20, 40, .65);
    width: 100%;
    height: 100%;
    content: ""
}

.board__bg-video-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.board__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover
}

.board__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
    padding: 20px 5%;
    min-height: 480px
}

.board__top-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    height: 100%
}

.board__left-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.board__right-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.board__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 84, 130, .8);
    padding: 15px 20px;
    min-height: 55px;
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border-radius: 10px
}

.board__button:hover {
    background-color: #0993d1;
    color: #fff;
    text-decoration: none
}

.board__button--panel {
    font-weight: 500;
    line-height: 1.45
}

.board__button--large-panel {
    width: 100%;
    max-width: 320px;
    min-height: 195px
}

.board__bottom-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 30px
}

.board__bottom-nav .board__button--nav {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    padding: 12px 18px;
    min-width: 160px;
    max-width: 200px;
    min-height: 50px;
    font-weight: 500
}

.promo-text-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #333
}

.promo-text-section hr {
    border-top: 1px solid #000
}

.promo-text-section__content {
    font-style: italic;
    font-size: 18px
}

.promo-text-section__title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin: 0 auto 20px;
    font-weight: 500;
    width: 100%;
    max-width: 750px;
    height: 120px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ddd;
    border: 3px solid var(--primary)
}

.promo-text-section__subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600
}

.promo-text-section__text {
    font-size: 18px;
    line-height: 1.4
}

.promo-text-section__text p {
    margin-bottom: 1.5em
}

.promo-text-section__text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: inherit;
    font-weight: inherit
}

.promo-text-section__text ul {
    padding-left: 20px;
    margin-bottom: 20px
}

.promo-contact-form {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    max-width: 750px;
    margin: 0 auto 20px
}

.promo-contact-form label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500;
    color: #343a40
}

.promo-contact-form .form-group {
    margin-bottom: 1.25rem
}

.promo-contact-form .form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 50px;
    padding: .375rem .75rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

.promo-contact-form .form-control:focus {
    border-color: var(--primary);
    -webkit-box-shadow: 0 0 0 .2rem rgba(13, 69, 100, .25);
    box-shadow: 0 0 0 .2rem rgba(13, 69, 100, .25)
}

.promo-contact-form .form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.promo-contact-form .form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.promo-contact-form .form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.promo-contact-form .form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.promo-contact-form .form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.promo-contact-form textarea.form-control {
    height: auto;
    resize: vertical
}

.promo-contact-form__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.promo-contact-form .form-check {
    padding-left: 1.25rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

.promo-contact-form .form-check .form-check-input {
    margin-top: .3rem;
    margin-left: -1.25rem
}

.promo-contact-form .form-check .form-check-label {
    font-size: 13px;
    color: #495057
}

.promo-contact-form .form-check .form-check-label a {
    color: var(--primary);
    text-decoration: underline
}

.promo-contact-form .form-check .form-check-label a:hover {
    text-decoration: none
}

.promo-contact-form .btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 180px
}

.ritual-services-section .ritual-services__tabs {
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ritual-services-section .ritual-services__tabs .nav-item {
    margin: 0 8px
}

.ritual-services-section .ritual-services__tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 8px 15px;
    color: var(--primary);
    background-color: #fff;
    font-weight: 500;
    line-height: 1
}

.ritual-services-section .ritual-services__tabs .nav-link.active {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    border-color: var(--primary)
}

.ritual-service-card {
    border-radius: 8px;
    padding: 30px 10px 30px;
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    margin-bottom: 40px;
    position: relative
}

.ritual-service-card__title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600
}

.ritual-service-card__list {
    padding-left: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    list-style-position: inside
}

.ritual-service-card__list li {
    margin-bottom: 5px
}

.ritual-service-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px
}

.ritual-service-card__popular-note {
    font-size: 14px;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #212121;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    width: 100%;
    padding-top: 5px
}

.ritual-service-card--main {
    background-color: var(--primary);
    color: #fff
}

.ritual-service-card--main .ritual-service-card__title {
    color: #fff
}

.ritual-service-card--main .ritual-service-card__list {
    color: #f0f0f0
}

.ritual-service-card--main .ritual-service-card__list li::before {
    color: #fff
}

.ritual-service-card--main .ritual-service-card__price {
    color: #fff
}

.ritual-service-card__btn {
    border: 1px solid #212121;
    color: #fff;
    background-color: #212121
}

.ritual-service-card__btn:hover {
    background-color: #000;
    text-decoration: none;
    color: #fff
}

.ritual-service-card--main .ritual-service-card__btn {
    background-color: #fff;
    border-color: #fff;
    color: #212121
}

.farewell-hall-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 30px
}

.farewell-hall-card__image {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover
}

.farewell-hall-card__content {
    padding: 20px
}

.farewell-hall-card__title {
    font-size: 20px;
    color: #212121;
    margin-bottom: 15px;
    font-weight: 600
}

.farewell-hall-card__details {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px
}

.farewell-hall-card__details span {
    display: block;
    margin-bottom: 5px
}

.farewell-hall-card__details span strong {
    display: block;
    color: #333
}

.farewell-hall-card__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

.farewell-hall-card__buttons .my-btn {
    padding: 0 15px;
    line-height: 30px;
    min-width: auto
}

.farewell-halls-slider .slick-slide {
    padding: 0 10px
}

.inner-page {
    padding: 20px 0
}

.inner-page__title {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary)
}

.inner-page__menu {
    font-size: 24px
}

.inner-page__menu li {
    margin-bottom: 10px
}

.inner-page__content {
    min-height: 500px
}

.inner-page__content img {
    max-width: 100%;
    height: auto
}

.inner-page__content table {
    width: 100% !important;
    margin-bottom: 1rem !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
    border-collapse: collapse !important
}

.inner-page__content table caption {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    color: #6c757d !important;
    text-align: left !important;
    caption-side: bottom !important
}

.inner-page__content table td,
.inner-page__content table th {
    padding: .5rem !important;
    vertical-align: top !important;
    border-top: 1px solid #dee2e6 !important;
    border: 1px solid #dee2e6 !important;
    white-space: normal;
    width: auto !important
}

.inner-page__content table thead th {
    vertical-align: bottom !important;
    border-bottom: 2px solid #dee2e6 !important;
    background-color: #f8f9fa !important;
    font-weight: 700 !important
}

.inner-page__content table p {
    margin: 0 !important
}

.logotype {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
    text-align: center
}

.logotype img {
    width: 110px
}

.logotype .logo-text p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase
}

.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none
}

.social-list li {
    margin-right: 10px
}

.social-list li:last-child {
    margin-right: 0
}

.social-list a {
    color: var(--onBackground_color)
}

.social-list a:hover {
    color: var(--onBackground_color_hover)
}

.social-list img {
    width: 24px
}

.social-list--white a {
    color: #fff
}

.social-list--white a:hover {
    color: #ededed
}

.social-list--white .fa-inverse {
    color: #212121
}

.advantages {
    margin-bottom: 20px
}

.advantages-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 20px 5px 100px;
    height: 100%;
    min-height: 80px;
    color: var(--primary)
}

.advantages-item__image {
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    content: ""
}

.advantages-item__title {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase
}

.about__content {
    margin-bottom: 30px;
    font-size: 18px
}

.about__img {
    display: inline-block;
    position: relative;
    max-width: 80%
}

.main-purposes {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat
}

.timeline {
    padding-top: 200px
}

.timeline-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    border-top: 2px solid var(--secondary)
}

.timeline-item {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    z-index: 2;
    min-width: 0
}

.timeline-item__text {
    padding-top: 30px;
    font-size: 24px;
    text-align: center
}

.timeline-item__num {
    position: absolute;
    top: -130px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 28px
}

.timeline-item::after {
    position: absolute;
    top: -1px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--secondary);
    width: 20px;
    height: 20px;
    content: ""
}

.timeline-item::before {
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-mask: url(../img/icon/mark-svg.svg) no-repeat center/contain;
    mask: url(../img/icon/mark-svg.svg) no-repeat center/contain;
    background-color: var(--secondary);
    width: 100%;
    height: 150px;
    content: ""
}

.timeline-item--primary::after {
    background-color: var(--primary)
}

.timeline-item--primary::before {
    background-color: var(--primary)
}

.timeline-item--small::before {
    height: 120px
}

.timeline-item--small .timeline-item__num {
    top: -110px
}

.timeline-item--big::before {
    height: 180px
}

.timeline-item--big .timeline-item__num {
    top: -150px
}

.slick-slider a,
.slick-slider button {
    outline: 0
}

.slick-dots {
    bottom: 20px
}

.slick-dots li {
    margin: 0 4px;
    width: auto;
    height: auto
}

.slick-dots li button {
    opacity: .2;
    border: 2px solid #fff;
    border-radius: 100%;
    background-color: transparent;
    padding: 0;
    width: 8px;
    height: 8px
}

.slick-dots li button:before {
    content: none
}

.slick-dots li.slick-active button {
    opacity: 1;
    border: 2px solid #fff;
    background-color: #fff
}

.slick-arrows-type1 .slick-next,
.slick-arrows-type1 .slick-prev {
    border-radius: 100%;
    width: 40px;
    height: 40px
}

.slick-arrows-type1 .slick-next:before,
.slick-arrows-type1 .slick-prev:before {
    display: block;
    opacity: .9;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    border-radius: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    width: 100%;
    height: 100%;
    content: ""
}

.slick-arrows-type1 .slick-prev {
    left: -60px;
    z-index: 1
}

.slick-arrows-type1 .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.slick-arrows-type1 .slick-next {
    right: -60px
}

.slick-arrows-type1 .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.main-slider {
    margin-top: 22px;
    margin-bottom: 30px
}

.main-slider.slick-dotted {
    margin-bottom: 20px
}

.main-slider .slick-next,
.main-slider .slick-prev {
    width: 24px;
    height: 24px
}

.main-slider .slick-next:before,
.main-slider .slick-prev:before {
    display: block;
    background-position: center;
    background-size: cover;
    width: 24px;
    height: 24px;
    content: ""
}

.main-slider .slick-prev {
    left: 30px;
    z-index: 1
}

.main-slider .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.main-slider .slick-next {
    right: 30px
}

.main-slider .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.main-slide {
    position: relative
}

.main-slide__content {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0 60px 50px;
    font-size: 18px
}

.main-slide__content p {
    margin-bottom: 10px
}

.reviews-slider .slick-next,
.reviews-slider .slick-prev {
    border-radius: 100%;
    width: 40px;
    height: 40px
}

.reviews-slider .slick-next:before,
.reviews-slider .slick-prev:before {
    display: block;
    border-radius: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    content: ""
}

.reviews-slider .slick-prev {
    left: -60px;
    z-index: 1
}

.reviews-slider .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.reviews-slider .slick-next {
    right: -60px
}

.reviews-slider .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.sertifikats-slider {
    margin: 0 auto;
    max-width: 450px
}

.sertifikats-slider .slick-next,
.sertifikats-slider .slick-prev {
    border-radius: 100%;
    width: 40px;
    height: 40px
}

.sertifikats-slider .slick-next:before,
.sertifikats-slider .slick-prev:before {
    display: block;
    border-radius: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    content: ""
}

.sertifikats-slider .slick-prev {
    left: -60px;
    z-index: 1
}

.sertifikats-slider .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.sertifikats-slider .slick-next {
    right: -60px
}

.sertifikats-slider .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.reviews-slider-wrap {
    padding: 0 190px
}

.slider-cards-section {
    background-size: cover;
    background-repeat: no-repeat
}

.slider-cards__item {
    margin: 0 10px;
    max-width: 320px;
    text-align: center
}

.slider-cards__image {
    margin-bottom: 15px;
    border-radius: 100%;
    overflow: hidden
}

.slider-cards__image img {
    width: 100%
}

.slider-cards__title {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase
}

.slider-cards__desc {
    font-size: 16px
}

.preview-cube {
    position: relative;
    background-color: #f2f2f2;
    width: 230px;
    height: 230px
}

.preview-cube__image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 125px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.product-offer {
    margin-bottom: 40px
}

.product-offer__gallery {
    position: relative;
    margin-bottom: 30px
}

.product-offer__labels {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    text-align: left
}

.product-offer__labels span {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #458f6e;
    padding: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 1
}

.product-offer__labels span.new {
    background-color: var(--labels_new)
}

.product-offer__labels span.popular {
    background-color: var(--labels_popular)
}

.product-offer__labels span.favorite {
    background-color: var(--labels_favorite)
}

.product-offer__labels span.sale {
    background-color: var(--labels_sale)
}

.product-offer__heading {
    margin-bottom: 10px;
    font-size: 20px
}

.product-offer__description {
    margin-bottom: 30px
}

.product-offer__cost {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px
}

.product-offer__cost dl {
    margin: 0
}

.product-offer__cost dl dd,
.product-offer__cost dl dt {
    display: inline-block;
    margin: 0 5px 5px 0
}

.product-offer__count {
    margin-bottom: 20px
}

.product-offer__social {
    margin-bottom: 30px
}

.related-products__title {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary);
    color: var(--primary)
}

.product-options-radio {
    display: inline-block;
    margin-right: 8px
}

.product-options-radio input[type=radio] {
    display: none
}

.product-options-radio label {
    display: block;
    position: relative;
    -webkit-transition: border-color .3s ease;
    transition: border-color .3s ease;
    cursor: pointer;
    margin: 0;
    border: 1px solid rgba(13, 13, 13, .15);
    padding: 2px;
    width: 32px;
    height: 32px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.product-options-radio label:before {
    position: absolute;
    top: -6px;
    right: -6px;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #b88b58;
    background-image: url(../img/cube/check.svg);
    background-position: top 3px center;
    background-size: 8px 6px;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    pointer-events: none;
    content: ""
}

.product-options-radio label img {
    width: 100%;
    height: 100%
}

.product-options-radio input[type=radio]:checked+label {
    border-color: #b88b58
}

.product-options-radio input[type=radio]:checked+label:before {
    opacity: 1
}

.product-options-radio input[type=radio]:disabled+label {
    border-color: #efefef;
    background: #efefef;
    color: #666
}

.product-options {
    margin: 0 0 10px
}

.product-options__title {
    font-weight: 700;
    font-size: 16px
}

.aside-menu {
    margin-bottom: 25px;
    border: 1px solid #eaedf5;
    border-radius: 1px;
    background: var(--primary);
    padding: 23px 0 0;
    overflow: hidden
}

.aside-menu button:focus {
    outline: 0
}

.aside-menu h3 {
    position: relative;
    margin-bottom: 18px;
    padding-left: 55px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase
}

.aside-menu h3:before {
    position: absolute;
    top: 2px;
    left: 20px;
    background-image: url(../img/icon/burger-menu.png);
    background-size: contain;
    width: 16px;
    height: 11px;
    content: ""
}

.aside-menu ul.navbar-nav {
    background-color: #fff;
    padding: 0 20px
}

.aside-menu ul.navbar-nav li {
    position: relative;
    margin: 0;
    border-top: 1px solid #f2f3f8;
    padding: 20px 0;
    list-style: none
}

.aside-menu ul.navbar-nav li:first-child {
    border-top: none
}

.aside-menu ul.navbar-nav li a {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px
}

.aside-menu ul.navbar-nav li a:hover {
    color: var(--primary);
    text-decoration: none
}

.aside-menu ul.navbar-nav li.active>a {
    color: var(--primary)
}

.aside-menu ul.navbar-nav li .icons-dropdown {
    position: absolute;
    top: 17px;
    right: 0;
    border: none;
    border-radius: 100%;
    background: url(../img/icon/arrow-drop.png) center/10px 5px no-repeat;
    background-position: center;
    padding: 0;
    width: 24px;
    height: 24px
}

.aside-menu ul.navbar-nav li.show .icons-dropdown {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.aside-menu ul.navbar-nav li ul {
    margin-top: 12px;
    border: none;
    padding: 0;
    padding-left: 0
}

.aside-menu ul.navbar-nav li ul li {
    position: relative;
    padding-left: 12px
}

.aside-menu ul.navbar-nav li ul li:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
    content: "-";
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px
}

.news {
    background-color: #f2f7f1;
    padding: 70px 0 75px
}

.news-list {
    margin-bottom: 30px
}

.news-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 1px;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    color: #fff
}

.news-item:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(34, 38, 58, .6);
    content: ""
}

.news-item__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    padding-top: 35px;
    width: 100%;
    max-width: 460px;
    text-align: center
}

.news-item__title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 32px;
    line-height: 34px
}

.news-item__desc {
    margin: auto;
    margin-bottom: 25px;
    max-width: 280px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px
}

.news-item__btn {
    display: block;
    margin: auto;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase
}

.news-item__btn:hover {
    color: #fff
}

.left-catalog {
    margin-bottom: 30px;
    border: 1px solid #eaedf5;
    border-top: none;
    padding: 0
}

.left-catalog .icons-dropdown {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 100;
    border: none;
    border-radius: 4px;
    background-color: transparent;
    padding: 0;
    width: 34px;
    height: 34px
}

.left-catalog .icons-dropdown::after {
    position: absolute;
    top: 5px;
    left: 5px;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    background-image: url(../img/icon/aside-catalog-drop-blue.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    content: ""
}

.left-catalog .icons-dropdown.collapsed::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.left-catalog .icons-dropdown:focus {
    outline: 0
}

.left-catalog ul {
    margin: 0;
    background-color: #fff;
    padding: 0;
    list-style: none
}

.left-catalog ul li {
    position: relative
}

.left-catalog ul li a {
    display: block;
    border-top: 1px solid #f2f3f8;
    border-radius: 4px;
    padding: 15px 15px;
    color: #212527;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px
}

.left-catalog ul li a:hover {
    color: #000;
    text-decoration: none
}

.left-catalog ul li ul li .icons-dropdown {
    top: 9px;
    right: 4px;
    background-color: #f0f2f7;
    width: 30px;
    height: 30px
}

.left-catalog ul li ul li .icons-dropdown::after {
    position: absolute;
    top: 4px;
    left: 4px;
    background-image: url(../img/icon/aside-catalog-drop.png);
    content: ""
}

.left-catalog ul li ul li a:before {
    content: "- "
}

.left-catalog ul li ul li a:hover {
    background: #f0f2f7;
    text-decoration: none
}

.left-catalog ul li ul li a.active {
    background-color: var(--primary);
    color: #fff
}

.left-catalog ul li ul li a.has-children {
    margin-right: 34px
}

.left-catalog ul li ul ul {
    padding-left: 10px
}

.left-catalog ul li ul ul a {
    padding: 10px 10px
}

.left-catalog>ul {
    padding: 0 5px
}

.left-catalog>ul>li>a {
    font-size: 16px;
    line-height: 20px
}

.filter-section .cards-templates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filter-section .cards-templates__title {
    padding-right: 5px;
    font-size: 14px;
    line-height: 20px
}

.filter-section .cards-templates__item {
    display: block;
    margin-left: 10px;
    border-radius: 3px;
    background-color: #ddd;
    padding: 5px;
    width: 34px;
    height: 34px;
    font-size: 20px;
    text-align: center
}

.filter-section .cards-templates__item.active,
.filter-section .cards-templates__item:hover {
    color: var(--primary)
}

.filter-section .filter-block__title {
    margin-bottom: 15px;
    font-size: 14px
}

.filter-section .ui-slider-handle {
    margin-top: -2px !important;
    border-radius: 50% !important;
    width: 15px !important;
    height: 15px !important
}

.filter-section .ui-state-default {
    border: none !important;
    background: var(--primary) !important
}

.category-item a {
    color: var(--onBackground_color)
}

.category-item a:hover {
    color: var(--onBackground_color_hover);
    text-decoration: none
}

.category-item__image {
    display: block;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-color: #eee;
    padding-top: 100%;
    width: 100%
}

.category-item__title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
    text-align: center
}

.product-cart {
    position: relative;
    margin-bottom: 30px;
    padding: 0 0 20px;
    text-align: center
}

.product-cart__img {
    display: block;
    position: relative;
    margin-bottom: 20px;
    max-width: 100%
}

.product-cart__img img {
    width: 100%
}

.product-cart__title {
    margin-bottom: 10px;
    height: 55px;
    overflow: hidden;
    color: #212527;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px
}

.product-cart__title a {
    outline: 0;
    color: inherit
}

.product-cart__title a:hover {
    color: inherit;
    text-decoration: none
}

.product-cart__price {
    margin-bottom: 15px;
    color: #212527;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase
}

.product-cart__price .old_price {
    margin-left: 10px;
    color: brown;
    text-decoration: line-through
}

.product-cart__btn {
    display: inline-block;
    border: 1px solid var(--secondary);
    border-radius: 50px;
    background-color: #fff;
    padding: 0 10px;
    width: 100%;
    max-width: 160px;
    height: 40px;
    color: var(--primary);
    font-weight: 600;
    font-size: 11px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase
}

.product-cart__btn span {
    display: none;
    color: rgba(255, 255, 255, .5019607843)
}

.product-cart__btn:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #fff
}

.product-cart__btn:hover span {
    display: inline
}

.product-cart__btn:focus {
    outline: 0
}

.product-cart__labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    text-align: left
}

.product-cart__labels span {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #458f6e;
    padding: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 1
}

.product-cart__labels span.new {
    background-color: var(--labels_new)
}

.product-cart__labels span.popular {
    background-color: var(--labels_popular)
}

.product-cart__labels span.favorite {
    background-color: var(--labels_favorite)
}

.product-cart__labels span.sale {
    position: absolute;
    bottom: 20px;
    left: 0;
    background-color: var(--labels_sale)
}

.product-card-type2 {
    margin-bottom: 0;
    border-top: 0
}

.product-card-type2 td {
    border: 1px solid #e6e6e6;
    border-top: none;
    height: 68px;
    text-align: center
}

.product-card-type2:first-child td {
    border-top: 1px solid #e6e6e6
}

.product-card-type2 .td2 {
    width: 10%
}

.product-card-type2 .td3 {
    padding-left: 10px;
    width: 40%;
    text-align: left
}

.product-card-type2 .td5 {
    width: 10%
}

.product-card-type2 .td6 {
    width: 10%
}

.product-card-type2 .td7 {
    width: 10%
}

.product-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    text-align: center;
    white-space: nowrap
}

.product-count__input {
    border: none;
    border-top: 1px solid #492b23;
    border-bottom: 1px solid #492b23;
    border-radius: 0;
    background-color: #fff;
    width: 3rem;
    min-width: 30px;
    height: 30px;
    font-size: 1rem;
    text-align: center
}

.product-count__input:focus {
    outline: 0
}

.product-count__input::-webkit-inner-spin-button,
.product-count__input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.product-count__minus,
.product-count__plus {
    display: inline-block;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
    outline: 0;
    border: 1px solid #492b23;
    background-color: transparent;
    padding: 2px;
    width: 30px;
    height: 30px;
    color: #492b23;
    font-size: 16px;
    line-height: 28px
}

.product-count__minus {
    border-radius: 50px 0 0 50px
}

.product-count__plus {
    border-radius: 0 50px 50px 0
}

.product-count__measure {
    margin-left: 5px;
    font-size: 16px;
    line-height: 30px
}

.ec-rating {
    margin-bottom: 35px
}

.comments {
    margin-bottom: 50px
}

.comments .ec-message__date {
    padding-left: 0;
    color: #737373;
    font-weight: 400;
    font-size: 14px
}

.comments .ec-message__date {
    padding-left: 0;
    color: #737373;
    font-weight: 400;
    font-size: 14px
}

.comments .user_name {
    color: #262626;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px
}

.comments .ec-stars {
    margin-bottom: 25px
}

.comment textarea {
    border: 1px solid #d6d6d6;
    background-color: #fff;
    padding-top: 20px;
    padding-left: 20px;
    width: 100% !important;
    height: 180px;
    font-size: 14px
}

.comment input[type=text] {
    background-color: #fff;
    padding-top: 0;
    padding-left: 20px;
    width: 100%;
    height: 50px;
    font-size: 14px
}

.ec-stars {
    display: inline-block
}

.ec-stars span {
    display: inline-block !important
}

.percent-num {
    margin-left: 5px;
    color: #f90;
    font-weight: 700;
    font-size: 16px
}

.rantings-num {
    color: #999;
    font-size: 14px
}

.radio-btns {
    margin-bottom: 15px;
    font-size: 0;
    text-align: center
}

.radio-btn {
    display: inline-block
}

.radio-btn input[type=radio] {
    display: none
}

.radio-btn input[type=radio]:checked+label {
    color: #fff
}

.radio-btn input[type=radio]:checked+label::before {
    opacity: 1;
    background-color: var(--secondary)
}

.radio-btn label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 15px;
    margin-left: 8px;
    border-radius: 16px;
    padding: 0 12px;
    color: var(--background);
    font-size: 14px;
    line-height: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.radio-btn label::before {
    position: absolute;
    opacity: .35;
    z-index: -1;
    inset: 0;
    border-radius: 16px;
    background-color: var(--onBackground_color);
    content: ""
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #edf2ec
}

#msCart {
    min-height: 260px
}

#msCart h3 {
    margin: 20px 0 26px 0;
    font-weight: 700;
    font-size: 24px
}

#msCart h6 {
    margin: 30px 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    text-align: center
}

#msCart .btn-link {
    color: #000;
    font-weight: 700;
    font-size: 14px
}

#msOrder .well {
    margin-bottom: 20px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 19px;
    min-height: 20px
}

.footer {
    background-color: var(--bgFooter);
    padding: 22px 0 30px;
    color: var(--onFooter_color)
}

.footer__pd {
    color: var(--onFooter_color);
    font-size: 12px;
    line-height: 14px
}

.footer__pd:hover {
    color: var(--onFooter_color_hover)
}

.footer a {
    text-decoration: none
}

.footer-navbar {
    margin-bottom: 30px
}

.footer-navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding-right: 0;
    padding-left: 0;
    color: var(--onFooter_color);
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase
}

.footer-copyright {
    opacity: .5;
    color: var(--onFooter_color);
    font-size: 12px;
    line-height: 15px
}

.service-promo {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #212527;
    padding: 70px 0;
    min-height: 560px
}

.service-promo__title {
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.35
}

.service-promo__desc {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 20px
}

.service-callback {
    background-color: #fff;
    padding: 40px 30px
}

.service-callback__title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase
}

.service-callback__desc {
    margin-bottom: 30px;
    margin: 0 auto 20px;
    max-width: 340px;
    font-size: 14px;
    text-align: center
}

.service-callback__btn {
    display: inline-block;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    margin-top: 20px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 0 10px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase
}

.service-callback__btn:focus,
.service-callback__btn:hover {
    opacity: .8;
    color: #fff;
    text-decoration: none
}

.service-work {
    margin-bottom: 30px
}

.service-work__image {
    width: 100%
}

.service-work__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    background-color: #2e3136;
    padding: 23px 40px;
    min-height: 94px;
    color: #fcfcfc;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase
}

.service-portfolio {
    margin-bottom: 40px
}

.service-portfolio__slider .slick-next,
.service-portfolio__slider .slick-prev {
    border-radius: 100%;
    width: 30px;
    height: 30px
}

.service-portfolio__slider .slick-next:before,
.service-portfolio__slider .slick-prev:before {
    display: block;
    border-radius: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    width: 30px;
    height: 30px;
    content: ""
}

.service-portfolio__slider .slick-prev {
    left: 15px;
    z-index: 1
}

.service-portfolio__slider .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.service-portfolio__slider .slick-next {
    right: 15px;
    z-index: 1
}

.service-portfolio__slider .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.service-portfolio__slide {
    max-width: 100%
}

.service-portfolio__content {
    padding: 30px
}

.service-portfolio__title {
    margin-bottom: 40px;
    color: #2e3136;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25
}

.service-portfolio__desc {
    margin-bottom: 50px;
    color: #2e3136;
    font-weight: 400;
    font-size: 18px
}

.service-portfolio__btn {
    display: inline-block;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    margin-top: 20px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 0 40px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase
}

.service-portfolio__btn:focus,
.service-portfolio__btn:hover {
    opacity: .8;
    color: #fff;
    text-decoration: none
}

.service-qwiz {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    background-color: #fff
}

.service-qwiz__slider {
    position: relative;
    width: 100%
}

.service-qwiz__prev.disabled {
    visibility: hidden
}

.service-qwiz__slide {
    padding: 35px 40px
}

.service-qwiz__slide .form-check {
    margin-bottom: 15px;
    padding-left: 30px
}

.service-qwiz__slide input[type=radio] {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin-left: -25px;
    accent-color: var(--primary)
}

.service-qwiz__label,
.service-qwiz__question {
    margin-bottom: 12px;
    font-size: 28px
}

.service-qwiz__header {
    position: relative;
    padding: 30px 80px 30px 30px;
    font-weight: 500;
    font-size: 30px
}

.service-qwiz__title {
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit
}

.service-qwiz__counter {
    position: absolute;
    top: 30px;
    right: 30px
}

.service-qwiz__progress-bar {
    position: relative;
    background: #f3f3f3;
    height: 5px
}

.service-qwiz__progress-bar-fill {
    -webkit-transition: width .3s;
    transition: width .3s;
    background: var(--primary);
    width: 0%;
    height: 100%
}

.service-qwiz__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 30px 30px
}

.service-qwiz__buttons .btn {
    cursor: pointer;
    border: none;
    background: var(--primary);
    padding: 10px 20px;
    color: #fff
}

.checkbox-image {
    display: block
}

.checkbox-image__input {
    position: fixed;
    opacity: 0;
    z-index: -1
}

.checkbox-image__image {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 66%;
    width: 100%
}

.checkbox-image__image::after {
    position: absolute;
    top: -7px;
    left: -7px;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    border-radius: 100%;
    background-image: url(../img/icon/check.png);
    background-position: 50%;
    background-size: 50%;
    background-repeat: no-repeat;
    background-color: #212121;
    width: 28px;
    height: 28px;
    content: " ";
    color: #fff
}

.checkbox-image__input:checked~.checkbox-image__image::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.cls-slider .slick-next,
.cls-slider .slick-prev {
    border-radius: 100%;
    width: 40px;
    height: 40px
}

.cls-slider .slick-next:before,
.cls-slider .slick-prev:before {
    display: block;
    border-radius: 100%;
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    content: ""
}

.cls-slider .slick-prev {
    left: -40px;
    z-index: 1
}

.cls-slider .slick-prev:before {
    background-image: url(../img/slider/ar-prev.png)
}

.cls-slider .slick-next {
    right: -40px
}

.cls-slider .slick-next:before {
    background-image: url(../img/slider/ar-next.png)
}

.cls-item {
    padding: 0 10px;
    text-align: center
}

.cls-item__title {
    margin-bottom: 15px;
    min-height: 40px;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px
}

.cls-item__img {
    width: 100%
}

.features-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: left
}

.features-item__img {
    display: table-cell;
    vertical-align: middle
}

.features-item__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    background: rgba(226, 231, 237, .3);
    width: 84px;
    height: 84px;
    overflow: hidden
}

.features-item__icon img {
    margin: auto;
    max-width: 60px
}

.features-item__title {
    display: block;
    margin: 0 0 10px;
    padding-left: 20px;
    overflow: hidden;
    color: #282828;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px
}

.big-card {
    border-radius: 22px;
    background-position: center bottom;
    background-size: cover;
    background-color: #ebebeb;
    padding: 30px 50px;
    min-height: 560px;
    text-align: center
}

.big-card__title {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2
}

.big-card__desc {
    color: #9e9e9e;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.45
}

.parallax-text-block {
    padding: 0 20px;
    color: #fff
}

.parallax-text-block__mobile-img {
    margin-bottom: 30px;
    border-radius: 20px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 66%
}

.parallax-text-block__wrap {
    border-radius: 20px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    height: 800px
}

.parallax-text-block__title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 55px;
    line-height: 1.17
}

.parallax-text-block__subtitle {
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.55
}

.parallax-text-block__text {
    font-size: 16px;
    line-height: 1.55
}

.modal-button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 2;
    border-radius: 22px;
    background-color: var(--primary);
    padding: 10px;
    height: 40px;
    color: #fff;
    text-decoration: none
}

.modal-button:hover {
    color: #fff;
    text-decoration: none
}

#modal_form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 5px solid #cfd0d5;
    background-color: #fff;
    background: #fff;
    padding: 19px 20px;
    width: 100%;
    min-width: 250px;
    max-width: 450px
}

#modal_form input[type=text] {
    display: block;
    float: left;
    margin-bottom: 17px;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    background-color: #fff;
    padding: 5px;
    width: 95%;
    height: 35px;
    color: #555;
    font-size: 1em
}

#modal_form input[type=text].error {
    border: 1px solid red
}

#modal_form h3 {
    margin: 0;
    color: #000;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase
}

#modal_form .comment {
    padding-top: 10px;
    padding-bottom: 15px;
    color: #272727;
    font-size: 14px;
    text-align: center
}

#modal_form .button {
    display: block;
    -webkit-transition: all .12s ease-in;
    transition: all .12s ease-in;
    cursor: pointer;
    margin: 10px 0;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #ffd400;
    padding: 2px 16px;
    width: 210px;
    height: 40px;
    color: #000;
    font-weight: 700;
    font-size: 17px
}

#modal_form .button:hover {
    border: 1px solid #44c8f5;
    background-color: #44c8f5;
    color: #fff
}

#modal_form .error {
    border: 1px solid red
}

#overlay_cb {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    opacity: .8;
    -moz-opacity: .8;
    z-index: 3;
    cursor: pointer;
    background-color: #000;
    width: 100%;
    height: 100%
}

.exit {
    display: block !important;
    position: absolute;
    top: -20px;
    right: -30px;
    opacity: 1;
    -webkit-transition: background .2s linear;
    transition: background .2s linear;
    border: 2px solid #3e5368;
    border-radius: 50%;
    background: #d0d0d0;
    width: 33px;
    height: 33px;
    font-size: 36px;
    line-height: 30px
}

.exit:after {
    display: block;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    cursor: pointer;
    padding-left: 9px;
    content: "x";
    color: #000;
    font-weight: 700;
    font-size: 23px;
    line-height: 24px;
    text-decoration: none
}

.exit:hover {
    background: #eaeaea;
    text-decoration: none
}

.main-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%
}

.main-form__inputs-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.main-form__input-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px
}

.main-form__label {
    font-weight: 500;
    font-size: 24px;
    text-align: center
}

.main-form__input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: .25rem;
    padding: 10px;
    width: 100%;
    min-width: 200px;
    max-width: 280px;
    height: 50px;
    font-size: 24px
}

.main-form__button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: .25rem;
    background-color: var(--primary);
    height: 50px;
    color: #fff;
    font-size: 24px
}

.vehicle-list {
    margin-top: 30px;
    margin-bottom: 50px
}

.vehicle-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0
}

.vehicle-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.vehicle-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding-top: 15px
}

.vehicle-item__title {
    color: var(--primary);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px
}

.vehicle-item__text {
    font-size: 16px;
    margin-bottom: 20px
}

.vehicle-slider {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0 !important
}

.vehicle-slider .slick-next,
.vehicle-slider .slick-prev {
    border-radius: 100%;
    width: 30px;
    height: 30px
}

.vehicle-slider .slick-prev {
    left: 15px
}

.vehicle-slider .slick-next {
    right: 15px
}

.vehicle-slider .slick-dots {
    bottom: 10px
}

.vehicle-slider .slick-dots li button {
    background-color: #fff;
    opacity: .5
}

.vehicle-slider .slick-dots li.slick-active button {
    opacity: 1
}

.vehicle-slider img {
    width: 100%
}

@media (min-width:576px) {
    .bd-modal .modal-dialog {
        max-width: 540px
    }

    .bd-modal--small .modal-dialog {
        max-width: 445px
    }
}

@media (min-width:768px) {
    .promo-contact-form .form-check {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .features-item {
        display: block;
        margin-bottom: 0;
        text-align: center
    }

    .features-item__img {
        display: inline-block;
        margin-bottom: 20px
    }

    .features-item__title {
        padding-left: 0;
        font-size: 16px
    }
}

@media (min-width:992px) {
    .header-contacts--page-scroll {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .header-contacts--page-scroll .header-contacts__worktime {
        margin-right: 16px
    }

    .header-contacts--page-scroll .header-contacts__actions {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .header-contacts--page-scroll .header-contacts__icons-wrapper {
        margin-left: 8px
    }

    .header-contacts--page-scroll .header-contacts__cart {
        margin-right: 0
    }

    .board__button {
        max-width: 300px
    }

    .footer-navbar {
        border-bottom: 2px solid rgba(255, 255, 255, .36);
        padding: 16px 0
    }

    .parallax-text-block__mobile-img {
        display: none
    }

    .vehicle-item__content {
        padding-top: 0
    }
}

@media screen and (min-width:1001px) {
    .header__main-nav-item:hover {
        background: rgba(13, 69, 100, .5)
    }

    .header__main-nav-item:last-child .header__main-nav-link::after {
        display: none
    }

    .header__main-nav-item:hover .header__submenu {
        visibility: visible;
        opacity: 1
    }

    .header__submenu {
        max-height: calc(100vh - 172px);
        overflow-y: auto
    }
}

@media (min-width:1440px) {
    .cls-slider .slick-prev {
        left: -50px
    }

    .cls-slider .slick-next {
        right: -50px
    }
}

@media screen and (max-width:1200px) {
    .header-contacts__worktime {
        font-size: 18px
    }
}

@media (max-width:1200px) {
    .main-form__button {
        margin-top: 20px
    }
}

@media (max-width:1199px) {
    .board__bottom-nav .board__button--nav {
        gap: 12px;
        min-width: 140px
    }
}

@media (max-width:1199.98px) {
    .slick-arrows-type1 .slick-prev {
        left: -30px
    }

    .slick-arrows-type1 .slick-next {
        right: -30px
    }

    .reviews-slider-wrap {
        padding: 0 100px
    }

    .cls-slider-wrap {
        padding: 0 20px
    }

    .big-card {
        min-height: 540px
    }

    .parallax-text-block__wrap {
        background-attachment: scroll;
        height: 650px
    }

    .vehicle-slider .slick-prev {
        left: 10px
    }

    .vehicle-slider .slick-next {
        right: 10px
    }
}

@media (max-width:992px) {
    .main-form__inputs-container {
        padding-right: 5px;
        padding-left: 5px
    }

    .main-form__input-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 5px 0;
        margin-right: 0;
        width: 100%;
        min-width: 280px;
        max-width: 700px
    }
}

@media (max-width:991.98px) {
    body.main-body {
        padding-bottom: 40px
    }

    .header {
        height: 60px
    }

    .header__address {
        display: block;
        margin-top: 16px
    }

    .header-contacts {
        display: none
    }

    .header-social {
        display: block;
        margin-top: 16px;
        padding-bottom: 32px
    }

    .header__menu-toggle {
        display: block
    }

    .header__menu-content {
        display: none;
        position: fixed;
        top: 60px;
        left: 100%;
        z-index: 40;
        -webkit-transition: left .3s ease-in-out;
        transition: left .3s ease-in-out;
        will-change: left;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #0d4564;
        padding: 20px 0;
        width: 100%;
        height: calc(100% - 100px);
        overflow-x: hidden;
        overflow-y: scroll
    }

    .header__menu-content-container {
        padding: 0 15px;
        width: 100%;
        height: auto
    }

    .header__main-nav {
        display: block;
        margin-bottom: 8px;
        padding: 0;
        height: auto
    }

    .header__main-nav-item--mobile {
        display: block;
        border-bottom: none
    }

    .header__main-nav-item--multi {
        display: block;
        position: relative
    }

    .header__main-nav-item--multi .header__main-nav-item--open .header__main-nav-link::after {
        -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg)
    }

    .header__main-nav-item--open .header__submenu {
        display: block;
        visibility: visible;
        opacity: 1
    }

    .header__main-nav-item {
        position: relative;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        border-bottom: 1px solid #81d0f5;
        padding: 8px 0 7px;
        height: auto
    }

    .header__main-nav-item:hover {
        background: 0 0
    }

    .header__main-nav-item::after {
        display: none
    }

    .header__main-nav-item:last-child {
        border-bottom: none
    }

    .header__main-nav-link::after {
        display: none
    }

    .header__main-nav-link {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 8px 0;
        width: 100%;
        height: auto
    }

    .header__main-nav-item--multi .header__main-nav-link::after {
        display: block;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%) rotate(0);
        -ms-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0);
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
        background-image: url(../img/icon/right1.svg);
        background-repeat: no-repeat;
        background-color: transparent;
        width: 24px;
        height: 24px;
        pointer-events: none
    }

    .header__main-nav-icon-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 15px
    }

    .header__main-nav-text {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 8px;
        padding-left: 0;
        font-size: 14px
    }

    .header__submenu {
        display: none;
        position: relative;
        top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        z-index: 20;
        -webkit-transition: none;
        transition: none;
        border-top: none;
        background: 0 0;
        padding: 0 16px 0 48px
    }

    .header__submenu-group {
        padding: 0;
        width: 100%
    }

    .header__submenu-group::after {
        display: none
    }

    .header__submenu-item {
        margin: 0
    }

    .header__submenu-link {
        border: 0;
        padding: 8px 0;
        font-size: 13px;
        line-height: 1.4
    }

    .header__submenu-link:hover {
        background-color: rgba(255, 255, 255, .05);
        color: #64c8f0
    }

    .header--menu-open .header__menu-content {
        display: block;
        left: 0
    }

    .page-bottom-fix {
        display: block
    }

    .page-bottom-cart {
        display: block;
        background-color: #efefef;
        border-radius: 100%;
        position: fixed;
        bottom: 115px;
        right: 15px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: .2s;
        transition: .2s
    }

    .page-bottom-cart__icon {
        display: block;
        margin: 8px
    }

    .page-bottom-cart__count {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 0;
        right: -4px;
        background: #c30d14;
        color: #fff;
        font-size: 11px;
        width: 16px;
        height: 16px;
        border-radius: 16px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .page-bottom-cart--on-page-end {
        opacity: .1
    }

    .advantages-item {
        height: auto
    }

    .about__img {
        margin-bottom: 30px
    }

    .timeline-item {
        padding: 0 10px
    }

    .timeline-item__text {
        font-size: 18px
    }

    .reviews-slider-wrap {
        padding: 0 50px
    }

    .slider-cards__title {
        font-size: 20px
    }

    .slider-cards__desc {
        font-size: 14px
    }

    .footer__pd {
        display: block;
        margin-bottom: 30px
    }

    .footer-copyright {
        margin-bottom: 30px;
        text-align: center
    }

    .cls-slider-wrap {
        padding: 0 10px
    }

    .big-card {
        min-height: 430px
    }

    .parallax-text-block {
        color: var(--onBackground_color)
    }

    .parallax-text-block__wrap {
        background-image: none !important;
        padding: 0;
        height: auto
    }
}

@media (max-width:991px) {
    .board__top-section {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 25px
    }

    .board__left-panel {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        margin: 0 auto;
        max-width: 450px
    }

    .board__right-panel {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin: 0 auto;
        max-width: 450px
    }

    .board__bottom-nav .board__button--nav {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 10px 15px;
        min-width: 150px;
        max-width: 180px
    }
}

@media screen and (max-width:768px) {
    .header-social__item {
        width: 32px;
        height: 32px
    }

    .header__menu-toggle {
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .header__menu-toggle::after {
        will-change: contents
    }

    .header__menu-toggle:focus {
        outline: 0 !important
    }
}

@media (max-width:767px) {
    .board__top-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .board__left-panel {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
        max-width: 400px
    }

    .board__right-panel {
        width: 100%;
        max-width: 400px
    }

    .board__button--large-panel {
        max-width: none;
        min-height: 120px
    }

    .board__bottom-nav .board__button--nav {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: calc(33.333% - 10px);
        flex-basis: calc(33.333% - 10px);
        min-width: 0;
        max-width: none
    }

    .promo-text-section__title {
        font-size: 32px
    }

    .promo-contact-form .btn {
        width: 100%
    }
}

@media (max-width:767.98px) {

    .slick-arrows-type1 .slick-next,
    .slick-arrows-type1 .slick-prev {
        width: 30px;
        height: 30px
    }

    .slick-arrows-type1 .slick-next:before,
    .slick-arrows-type1 .slick-prev:before {
        background-size: 15px
    }

    .slick-arrows-type1 .slick-prev {
        left: -10px
    }

    .slick-arrows-type1 .slick-next {
        right: -10px
    }

    .main-slide__content {
        padding: 0 20px 20px
    }

    .reviews-slider-wrap {
        padding: 0
    }

    .product-cart {
        padding: 10px 0 15px
    }

    .service-promo {
        padding: 50px 0
    }

    .service-promo__title {
        font-size: 30px
    }

    .service-callback {
        padding: 20px 20px
    }

    .service-portfolio__slider .slick-prev {
        left: 10px
    }

    .service-portfolio__slider .slick-next {
        right: 10px
    }

    .service-portfolio__content {
        padding: 0
    }

    .service-portfolio__title {
        margin-bottom: 20px
    }

    .service-portfolio__desc {
        margin-bottom: 30px
    }

    .service-qwiz__slide {
        padding: 15px
    }

    .service-qwiz__label,
    .service-qwiz__question {
        font-size: 20px
    }

    .service-qwiz__header {
        padding: 15px 50px 15px 15px;
        font-size: 22px
    }

    .service-qwiz__counter {
        top: 15px;
        right: 10px
    }

    .service-qwiz__buttons {
        padding: 0 15px 15px
    }

    .checkbox-image__image::after {
        top: -4px;
        left: -4px;
        width: 20px;
        height: 20px
    }

    .cls-slider-wrap {
        padding: 0
    }

    .big-card {
        margin-bottom: 30px;
        min-height: 450px
    }

    .parallax-text-block {
        padding: 0
    }

    .vehicle-slider .slick-next,
    .vehicle-slider .slick-prev {
        width: 20px;
        height: 20px
    }

    .vehicle-slider .slick-prev {
        left: 5px
    }

    .vehicle-slider .slick-next {
        right: 5px
    }
}

@media (max-width:575.98px) {
    .section-title {
        font-size: 28px
    }

    .countdown {
        padding: 5px
    }

    .countdown__container {
        gap: 5px
    }

    .countdown__section {
        min-width: 30px
    }

    .countdown__value {
        font-size: 24px
    }

    .countdown__label {
        margin-top: 0;
        font-size: 10px
    }

    .countdown__separator {
        font-size: 24px
    }

    .bd-modal .modal-dialog {
        margin: 0
    }

    .login-modal {
        padding: 30px 20px 25px;
        font-size: 12px;
        line-height: 14px
    }

    .header__phone {
        font-size: 18px
    }

    .logotype img {
        width: 200px
    }

    .advantages-item {
        min-height: 60px
    }

    .advantages-item__image {
        width: 30px;
        height: 30px
    }

    .advantages-item__title {
        font-size: 16px
    }

    .timeline-item__text {
        font-size: 14px
    }

    .slick-dots {
        bottom: 10px
    }

    .main-slide img {
        height: 180px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }

    .slider-cards__title {
        font-size: 18px
    }

    .service-promo {
        padding: 40px 0
    }

    .service-promo__title {
        font-size: 24px
    }

    .big-card {
        padding: 20px;
        min-height: 380px;
        text-align: left
    }

    .big-card__title {
        margin-bottom: 10px;
        font-size: 18px
    }

    .big-card__desc {
        font-size: 14px
    }

    #modal_form {
        width: 90%
    }

    .exit {
        top: -15px;
        right: -15px
    }
}

@media (max-width:575px) {
    .board__bottom-nav .board__button--nav {
        -ms-flex-preferred-size: calc(50% - 8px);
        flex-basis: calc(50% - 8px)
    }
}

@media (max-width:380px) {
    .board__bottom-nav .board__button--nav {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media (min-width:768px) and (max-width:991px) {
    .board__button--large-panel {
        max-width: none
    }
}

/*# sourceMappingURL=style.min.css.map */