@import url("normalize.css");
@import url("base.css?v=1.1");
/* main styles */
@media (max-width: 992px) {
    :root {
        --section-padding-md: 64px 0;
    }
}
@media (max-width: 700px) {
    :root {
        --section-padding-md: 48px 0;
    }
}
body {
    position: relative;
    background: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-neutral);
}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--gap-big);
}
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}
@media (max-width: 700px) {
    .container {
        padding: 0 16px;
    }
}
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    z-index: 999;
}
header.fixed {
    /*position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.65s ease-out;
    z-index: 999;*/
}
.header-top {
    padding: 12px 0;
}
@media (max-width: 700px) {
    .header-top {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
}
.burger-menu {
    display: none;
}
@media (max-width: 1200px) {
    .burger-menu {
        display: block;
    }
}
.header-left {
    gap: var(--gap-mid);
}
.header-logo {
    width: 154px;
}
@media (max-width: 768px) {
    .header-logo {
        width: 106px;
    }
}
.header-row {
    gap: var(--gap-big);
}
@media (max-width: 1600px) {
    .header-row {
        gap: var(--gap-mid);
    }
}
@media (max-width: 768px) {
    .header-row {
        gap: 8px;
    }
}
@media (max-width: 700px) {
    .header-row {
        gap: 0;
        justify-content: flex-end;
    }
}
.header-row > * {
    flex-shrink: 0;
}
.search-toggler {
    display: none;
}
@media (max-width: 1200px) {
    .search-toggler {
        display: block;
        color: var(--text-neutral);
    }
}
@media (max-width: 768px) {
    .search-toggler {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.header-search {
    flex-basis: 336px;
    flex-shrink: 0;
}
@media (max-width: 1600px) {
    .header-search {
        flex-basis: 250px;
    }
}
@media (max-width: 1360px) {
    .header-search {
        flex-basis: 220px;
    }
}
@media (max-width: 1200px) {
    .header-search {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--white);    
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transform: translateY(-300px);    
        transition: 0.35s all ease;
    }
    .header-search.shown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
        z-index: 3;
    }
    .header-search-row {
        padding: var(--gap-mid);
        border-top: 1px solid var(--surface-bold);
    }
}
.header-search-field {
    width: 100%;
    height: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--grey-light);
    background: var(--white);
    padding: 8px 36px 8px 12px;
}
.header-search-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    top: 12px;
    right: 12px;
    color: var(--grey-light);
}
@media (max-width: 1200px) {
    .header-search-btn {
        top: 36px;
        right: 40px;
    }
}
.header-search-btn:hover {
    color: var(--blue-dark);
}
.header-social img {
    width: 30px;
    height: 30px;
}
@media (max-width: 992px) {
    .header-social img {
        width: 24px;
        height: 24px;
    }
}
.mobile-phone {
    display: none;
}
@media (max-width: 1200px) {
    .mobile-phone {
        display: block;
        color: var(--text-neutral);
    }
}
@media (max-width: 768px) {
    .mobile-phone {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.header-socials {
    gap: var(--gap-sm);
}
@media (max-width: 1200px) {
    .header-socials {
        display: none;
    }
}
.header-social:hover {
    transform: rotate(360deg);
}
@media (max-width: 1200px) {
    .header-contacts {
        display: none;
    }
    .header-row > .modal-toggler {
        display: none;
    }
}
.header-phone {
    text-decoration: none;
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}
.header-phone:hover {
    color: var(--theme-color);
}
.header-status {
    color: var(--text-neutral);
    font-size: 14px;
    font-weight: 500;
    gap: var(--gap-sm);
}
.header-status:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: online-pulse 1.5s ease-out infinite;
}
.header-icons {
    gap: 8px;
}
@media (max-width: 1200px) {
    .header-icons {
        display: none;
    }
}
.header-icon {
    width: 40px;
    height: 40px;
    color: var(--text-neutral);
}
.header-icon:hover {
    color: var(--theme-color);
}
.header-icon-count {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    top: 0;
    right: 0;
}
.header-icon-empty .header-icon-count {
    display: none;
}
.header-menu-wrap {
    border-top: 1px solid var(--grey-light2);
}
@media (max-width: 1200px) {
    .header-menu-wrap {
        display: none;
    }
}
.header-menu > li > a {
    color: var(--text-neutral);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    padding: 16px 40px;
}
@media (max-width: 1400px) {
    .header-menu > li > a {
        padding: 12px;
    }
}
.header-menu > li:first-child > a {
    gap: 8px;
}
.catalog-parent:hover > .megamenu {
    display: block;
}
.header-left .catalog-parent {
    position: relative;
}
.header-left .catalog-parent:after {
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 100%;
    left: 0;
}
.header-menu > li > a:hover {
    color: var(--theme-color);
}
.main-slide {
    aspect-ratio: 12 / 5;
    background-size: cover;
    background-position: center;
}
@media (max-width: 820px) {
    .main-slide {
        aspect-ratio: 3 / 2;
    }
}
@media (max-width: 700px) {
    .main-slide {
        position: relative;
        aspect-ratio: unset;
        height: auto;
        padding: 48px 0;
    }
    .main-slide:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%);
        z-index: -1;
    }
}
.main-slide-container {
    padding: 0 var(--gap-big);
    height: 100%;
}
@media (max-width: 1200px) {
    .main-slide-container {
        padding: 0 32px;
    }
    .main-slide-container h1 {
        font-size: 38px;
    }
}
@media (max-width: 700px) {
    .main-slide-container {
        position: relative;
    }
    .main-slide-container .text-white {
        color: var(--text-neutral) !important;
    }
    .main-slide-container h1 {
        font-size: 28px;
    }
}
.main-slide-content {
    height: 100%;
    max-width: 100%;
    width: 660px;
}
.main-slide-subtitle {
    margin-top: var(--gap-mid);
    margin-bottom: var(--gap-big);
} 
.main-slide-actions {
    gap: 14px;
}
@media (max-width: 992px) {
    .main-slide-actions {
        flex-direction: column;
    }
}
.swiper-pagination {
    bottom: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--surface-bold);
    opacity: 1 !important;
    transition: 0.35s all ease;
}
.swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    width: 16px;
    height: 16px;
}
.about-wrap {
    gap: 10%;
}
@media (max-width: 992px) {
    .about-wrap {
        flex-direction: column;
        gap: var(--gap-big);
    }
}
.about-image {
    width: 48%;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .about-image {
        width: 100%;
    }
}
.about-content {
    flex-grow: 1;
    gap: var(--gap-big);
}
.about-pros {
    gap: var(--gap-big);
}
.about-pro-top {
    gap: 16px;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 700px) {
    .about-pro-top {
        font-size: 18px;
    }
}
.about-pro-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--grey-light2);
}
.about-pro-desc {
    line-height: 1.5;
    margin-top: 16px;
}
.about-pro-desc p {
    margin-top: 0;
    margin-bottom: 16px;
}
.about-pro-desc p:last-child {
    margin-bottom: 0;
}
.catalog-row {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-mid);
}
@media (max-width: 1200px) {
    .catalog-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .catalog-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .catalog-row {
        grid-template-columns: repeat(1, 1fr);
    }
}
.catalog-item {
    background: var(--white);
    border: 1px solid var(--surface-bold);
    border-radius: 24px;
    box-shadow: 0 3px 12px 0 rgba(16, 24, 40, 0.20);
    overflow: hidden;
}
.catalog-item-images {
    height: 318px;
    width: 100%;
}
.catalog-item-images-view {
    display: none;
    bottom: 16px;
    right: 16px;
    cursor: pointer;
    color: var(--theme-dark);
    z-index: 11;
}
.catalog-item-images-view:hover {
    color: var(--theme-color);
}
.catalog-item-image {
    width: 100%;
    height: auto !important;
    padding: 20px;
}
.catalog-item-image img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.swiper-pagination.catalog-item-pagination {
    bottom: 0 !important;
    left: 16px;
    right: 16px;
    width: auto !important;
    gap: var(--gap-sm);
    flex-wrap: nowrap;
}
.swiper-pagination.catalog-item-pagination .swiper-pagination-bullet {
    flex-grow: 1;
    width: auto !important;
    height: 1px !important;
    border-radius: 4px;
    background: var(--surface-bold);
}
.swiper-pagination.catalog-item-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.catalog-item-images-btn {
    height: 100% !important;
    margin: 0 !important;
    top: 0 !important;
    width: 45px !important;
    opacity: 0 !important;
}
.catalog-item-images-btn.swiper-button-prev {
    left: 0 !important;
} 
.catalog-item-images-btn.swiper-button-next {
    right: 0 !important;
} 
.catalog-item-badges {
    top: 16px;
    left: 16px;
    gap: 6px;
    z-index: 2;
}
.product-badge {
    background: var(--blue-light);
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-color);
    padding: var(--gap-sm) 8px;
    border-radius: 20px;
}
.catalog-item-info {
    flex-grow: 1;
    padding: 16px;
    gap: 16px;
}
.catalog-item-info-top {
    width: 100%;
    gap: 12px;
}
.catalog-item-title {
    font-size: 18px;
    width: 100%;
    max-width: 100%;    
    min-height: 50px;
}
.catalog-item-title > a {
    text-decoration: none;
    color: inherit;
    transition: 0.35s all ease;
}
.catalog-item-title:hover > a {
    color: var(--theme-color);
}
.catalog-item-actions {
    width: 100%;
    gap: 8px;
}
.catalog-item-actions > .btn {
    flex-grow: 1;
}
.catalog-item-actions form .btn {
    width: 48px !important;
    height: 48px !important;
    padding: 0;
}
.catalog-item-prices {
    gap: 16px;
}
.catalog-item-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--danger);
}
.catalog-item-price.catalog-item-price-single {
    color: var(--text-neutral);
}
@media (max-width: 700px) {
    .catalog-item-price {
        font-size: 20px;
    }
}
.catalog-item-discount {
    gap: var(--gap-sm);
}
.catalog-item-oldprice {
    font-size: 14px;
}
.catalog-item-benefit {
    font-size: 12px;
    background: var(--warning-light);
    padding-right: var(--gap-sm);
    border: 1px solid var(--warning);
}
.catalog-item-benefit span {
    background: var(--warning);
    display: inline-block;
    padding: 0 var(--gap-sm);
    margin-right: var(--gap-sm);
}
.btn-more {
    width: auto !important;
    margin: var(--gap-big) auto 0 auto;
}
.pros-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-mid);
}
@media (max-width: 820px) {
    .pros-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .pros-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
}
.pro-item {
    padding: var(--gap-mid) 0;
}
.pro-item-icon img {
    width: 96px;
}
.pro-item-info {
    margin-top: var(--gap-mid);
    gap: 16px;
    text-align: center;
}
.pro-item-title {
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 700px) {
    .pro-item-title {
        font-size: 18px;
    }
}
.pro-item-desc {
    line-height: 1.5;
}
.crumbs-section {
    padding-top: 50px;
}
.crumbs {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}
.crumb-item {
    gap: 8px;
}
.crumb-item:not(:last-child):after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url(../images/icons/chevron-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.crumb-item a {
    color: var(--grey-accent);
    text-decoration: none;
}
.crumb-item a:hover {
    color: var(--theme-color);
}
.category-wrap {
    gap: 32px;
}
.category-row {
    margin-top: 64px;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px var(--gap-mid);
}
@media (max-width: 1600px) {
    .category-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1360px) {
    .category-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .category-row {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}
.category-item-info {
    gap: 8px;
}
.catalog-item-article {
    font-size: 12px;
    color: var(--grey-mid);
}
.catalog-item-params {
    width: 100%;
    gap: 8px;
}
.catalog-item-param {
    gap: 8px;
    font-size: 12px;
}
.catalog-item-param:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 5.5px;
    background-image: url(../images/icons/dots.svg);
    background-position: center;
    background-size: 139px;
    background-repeat: repeat-x;
}
.catalog-item-param > div {
    background: var(--white);
}
.catalog-item-param > div:first-child {
    color: var(--grey-mid);
    padding-right: 8px;
}
.catalog-item-param > div:last-child {
    color: var(--blue-accent);
    padding-left: 8px;
}
.category-item-info .catalog-item-prices {
    margin-top: 8px;
}
.category-item-actions {
    width: 100%;
    margin-top: 8px;
    gap: 8px;
}
.compare-btn {
    width: 48px !important;
    height: 48px !important;
    padding: 0;
    flex-grow: 0 !important;
}
.compare-btn.compare-active {
    background: var(--theme-dark);
    border-color: var(--theme-dark);
    color: var(--white);
}
.category-filters-wrap {
    width: 290px;
    flex-shrink: 0;
}
.category-filters {
    gap: 15px;    
    padding: 25px;    
    border-radius: 32px;
    border: 1px solid var(--surface-bold);
}
@media (max-width: 1200px) {
    .category-filters-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(-100%);
        transition: 0.15s all ease;        
        z-index: 999;
    }
    .category-filters-wrap.shown {
        transform: translateX(0);
    }
    .category-filters-overlay {
        position: absolute;
        background: rgba(18, 18, 18, 0.60);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition-delay: 0.2s;
        transition: 0.35s all ease;
    }
    .category-filters-wrap.shown .category-filters-overlay {
        transition-delay: 0.2s;
        opacity: 1;
    }
    .category-filters {
        position: relative;
        width: 300px;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y: auto;
        overflow-x: hidden;
        background: var(--white);
        transform: translateX(-100%);
        transition-delay: 0s;
        transition: 0.6s all ease;
    }
    .category-filters-wrap.shown .category-filters {
        transform: translateX(0);
        transition-delay: 0.35s;
    }
}
.filters-top {
    gap: 16px;
}
.filters-top h3 {
    font-size: 18px;
    line-height: 1.5;
}
.filters-reset {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--grey-mid);
    cursor: pointer;
}
.filters-reset:hover {
    text-decoration: underline;    
}
.filter-item {
    padding: 20px 0;
    border-top: 1px solid var(--surface-bold);
}
.filter-item-title {
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}
.filter-item-header .filter-item-title {
    margin-bottom: 0;
}
.price-filter__inputs {
    gap: 8px;
    margin-bottom: 10px;
}
.price-filter__field {
    flex: 1;
}
.price-filter__placeholder {    
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--grey-mid);
    pointer-events: none;
}
.price-filter__input {
    width: 100%;
    height: 52px;
    padding: 7px 8px 7px 20px;
    border: 1px solid var(--surface-bold);
    border-radius: 16px;
    background: var(--white);
    text-align: right;
    font-size: 16px;
    outline: none;
}
.price-filter__input:focus {
    border-color: var(--grey-accent2);
}
.range-slider {    
    height: 16px;
}
.range-slider__track,
.range-slider__progress {
    top: 0;
    height: 16px;
    border-radius: 30px;
}
.range-slider__track {
    left: 0;
    right: 0;
    background: var(--surface-bold);
}
.range-slider__progress {
    background: var(--theme-color);
}
.range-slider__input {
    left: 0;
    top: 0;
    width: 100%;
    height: 16px;
    margin: 0;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    background: none;
}
.range-slider__input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--theme-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}
.range-slider__input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--theme-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
}
.range-slider__input::-webkit-slider-runnable-track {
    background: transparent;
}
.range-slider__input::-moz-range-track {
    background: transparent;
}
.filter-values {
    margin-top: 16px;
    gap: 8px;
}
.filter-value > input {
    display: none;
}
.radio-inner {
    gap: 8px;
}
.filter-count {
    font-size: 12px;
    color: var(--grey-accent2);
}
.radio-value,
.checkbox-value {
    gap: 8px;
}
.radio-custom {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: 0.35s all ease;
}
.radio-custom:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    background: var(--theme-color);
    transition: 0.35s all ease;
}
.filter-value > input:checked + .filter-inner .radio-custom {
    border-color: var(--theme-color);
}
.filter-value > input:checked + .filter-inner .radio-custom:before {
    opacity: 1;
}
.filter-item-header {
    gap: 8px;
}
.filter-info-toggler {
    color: var(--grey-accent2);
    cursor: pointer;
}
.filter-info-toggler:hover {
    color: var(--grey-mid);
}
.filter-info-content {
    display: none;
    background: var(--white);
    font-size: 12px;
    z-index: 13;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 0 16px -8px rgba(8, 25, 41, 0.80);
    width: 250px;
    top: 100%;
}
@media (max-width: 768px) {
    .filter-info-content {
        width: auto;
    }
}
.filter-info-toggler:hover + .filter-info-content {
    display: block;
}
.filters-double > .filter-value {
    flex-basis: 0;
    flex-grow: 1;
}
.double-radio {
    border: 1px solid var(--surface-bold);
    background: var(--white);
    line-height: 1.5;
    padding: 11px 12px;
    width: 100%;
    text-align: center;
    transition: 0.25s all ease;
    cursor: pointer;
}
.filter-value:first-child .double-radio {
    border-radius: var(--border-radius-large) 0 0 var(--border-radius-large);
}
.filter-value:last-child .double-radio {
    border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0;
}
.filter-value > input:checked + .double-radio {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}
.checkbox-custom {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: 0.35s all ease;
}
.checkbox-custom:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    opacity: 0;
    background-image: url(../images/icons/check-icon.svg);
    background-repeat: no-repeat;    
    background-size: contain;
    background-position: center;
    transition: 0.35s all ease;
}
.filter-value > input:checked + .filter-inner .checkbox-custom:before {
    opacity: 1;
}
.filter-extra {
    margin-top: 16px;
}
.filter-extra-title {
    border-radius: var(--border-radius-large);
    border: 1px solid var(--surface-bold);
    padding: 10px 12px;
    gap: 8px;
    line-height: 1.5;
    cursor: pointer;
}
.filter-extra-title:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;    
    background-size: contain;
    background-position: center;
    transition: 0.35s all ease;
}
.filter-extra-title.active:after {
    transform: rotate(180deg);
}
.filter-extra-values {
    display: none;
    margin-top: 4px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--surface-bold);
    padding: 12px;
    background: var(--white);
}
.filter-extra-label {
    display: block;
    margin-bottom: 5px;
    line-height: 1.5;
    cursor: pointer;
}
.filter-extra-label:last-child {
    margin-bottom: 0;
}
.filter-extra-label > input {
    display: none;
}
.filter-extra-label > input:checked + span {
    color: var(--theme-color);
}
.filter-values-toggle {
    display: none;
    width: fit-content;
    margin: 15px auto 0 auto;
    color: var(--theme-color);
    cursor: pointer;
}
.filter-values-toggle:hover {
    color: var(--theme-dark);
}
.filter-btn {
    display: block;
    padding: 12px;
    border: none;
    line-height: 1.5;
}
@media (max-width: 1200px) {
    .filter-btn {
        padding: 15px 12px;
        font-size: 14px;
    }
}
.category-intro {
    margin-top: 20px;
    font-size: 14px;
    color: var(--grey-accent2);
}
.category-top {
    margin-top: 20px;
    padding: 16px 0;
    gap: 16px;
    border-bottom: 1px solid var(--surface-bold);
}
@media (max-width: 1200px) {
    .category-top {
        padding: 8px 0;
    }
}
@media (max-width: 1200px) {
    .category-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
.category-total {
    font-size: 14px;
    color: var(--grey-accent2);
}
.category-total span {
    color: var(--text-neutral);
}
.category-sort-wrap {
    gap: 16px;
}
.sort-select-header {
    gap: var(--gap-mid);
    border-radius: 8px;
    border: 1px solid #D4D4D4;
    background: #F3F3F5;
    padding: 5px 12px;
    cursor: pointer;
}
.sort-select-header:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: 0.35s all ease;
}
.sort-select.opened .sort-select-header:after {
    transform: rotate(180deg);
}
.sort-select-current {
    color: var(--grey-accent2);
    line-height: 1.5;
}
.sort-select-list {
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #D4D4D4;
    background: #F3F3F5;
    padding: 5px 12px;
    z-index: 12;
}
.sort-option {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.35s all ease;
}
.sort-option:not(:last-child) {
    margin-bottom: 8px;
}
.sort-option.active {
    color: var(--theme-color) !important;
}
.sort-option:hover {
    color: var(--grey-accent2);
}
.category-action {
    display: none;
}
@media (max-width: 1200px) {
    .category-action {
        display: block;
        margin-top: 20px;
    }
    .filter-toggle {
        color: var(--theme-color);
        font-size: 12px;
        font-weight: 500;
        gap: 4px;
    }
}
.pagination {
    flex-wrap: wrap;
    gap: 8px;
}
.pagination > li > a, 
.pagination > li > span {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    color: var(--grey-accent2);
    border-radius: var(--border-radius-large);
    border: 1px solid #E5E7EB;
    text-decoration: none;
    transition: 0.35s all ease;
}
.pagination > li.active > span {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}
.pagination > li > a:hover {
    background: var(--blue-light2);
}
.ct-section {
    margin-top: 64px;
    padding: 32px;
    border-radius: var(--border-radius-large);
}
@media (max-width: 600px) {
    .ct-section {
        padding: 16px 24px;
        border-radius: 32px;
    }
}
.ct-section > h3 {
    margin-bottom: 32px;
}
.category-desc p {
    margin-top: 0;
    margin-bottom: 12px;
}
.category-desc p:last-child {
    margin-bottom: 0;
}
.category-desc p,
.category-desc ul,
.category-desc ol {
    color: var(--grey-accent2);
}
.category-desc ul,
.category-desc ol {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.category-desc ol li::marker {
    color: var(--theme-color);
}
.category-desc ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}
.category-desc ul li:not(:last-child) {
    margin-bottom: 8px;
}
.category-desc ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.category-desc ol {
    counter-reset: item;
}
.category-desc ol li {
    counter-increment: item;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}
.category-desc ol li:not(:last-child) {
    margin-bottom: 8px;
}
.category-desc ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color);
}
@media (max-width: 768px) {
    .faq-section {
        padding: 16px 12px !important;
    }
}
.faq-item {
    padding-bottom: 16px;    
}
.faq-item:not(:last-child) {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--surface-bold);
}
.faq-item-header {
    gap: 8px;
    padding: 8px 24px 8px 0;
    font-size: 24px;
    line-height: 1.5;
    cursor: pointer;
}
@media (max-width: 768px) {
    .faq-item-header {
        font-size: 16px;
        padding: 8px 8px 8px 0;
    }
    .faq-item-header > span {
        min-width: 0;
        overflow: hidden;
        white-space: break-spaces;
        word-wrap: break-word;
    }
}
.faq-item-header:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icons/ei-plus.svg);
    background-repeat: no-repeat;    
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
    transition: 0.35s all ease;
}
.faq-item.active .faq-item-header:after {
    transform: rotate(360deg);
    background-image: url(../images/icons/ei-minus.svg);
}
.faq-item-content {
    display: none;
    padding-top: 8px;
    color: var(--grey-accent2);
}
@media (max-width: 768px) {
    .faq-item-content {
        font-size: 14px;
    }
}
.scheme-list {
    gap: 16px;
}
.scheme-list > .scheme-item {
    padding: 24px 0;
}
.scheme-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-big) var(--gap-mid);
}
@media (max-width: 1200px) {
    .scheme-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .scheme-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
}
.scheme-item-num {
    width: 80px;
    font-size: 45px;
    color: var(--theme-color);
    padding-right: var(--gap-mid);
    margin-right: var(--gap-mid);
    border-right: 1px solid var(--theme-color);
}
.scheme-item-title {
    font-size: 24px;
}
@media (max-width: 700px) {
    .scheme-item-title {
        font-size: 20px;
    }
}
.scheme-item-desc {
    margin-top: var(--gap-mid);
    color: var(--grey-accent);
    line-height: 1.5;
}
.btn-row {
    flex-wrap: wrap;
    gap: 16px;
}
.btn-light.mixitup-control-active {
    color: var(--white);
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.projects-row {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-mid);
}
@media (max-width: 1200px) {
    .projects-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 820px) {
    .projects-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .projects-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
}
.project-item {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--surface-bold);
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    text-decoration: none;
    color: inherit;
    transition: 0.35s all ease;
}
.project-item:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}
.project-item-media,
.video-item {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.project-item-media img, 
.project-item-media video,
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-item-info {
    font-weight: 700;
    padding: 12px 16px 16px;    
}
.video-item-play {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    width: 64px;
    height: 64px;
    cursor: pointer;
    transition: 0.35s all ease;
    z-index: 1;
}
.video-item-play:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/play.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.video-item-play:hover {
    background: rgba(255, 255, 255, 0.85);
}
.video-item-timeline {
    border-radius: 20px;
    background: rgba(18, 18, 18, 0.60);
    bottom: 8px;
    right: 8px;
    z-index: 1;
    color: var(--white);
    font-size: 14px;
    line-height: 22px;
    padding: 0 8px;
    z-index: 1;
}
.video-item.playing .video-item-play {
    opacity: 0;
}
.video-item.playing .video-item-play:before {
    background-image: url(../images/icons/pause.svg);
}
.video-item.playing:hover .video-item-play {
    opacity: 1;
}
.reviews-section-titles .section-subtitle {
    color: var(--grey-accent);
    margin-top: 8px;
}
.review-toggle {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
    gap: 10px;
    transition: 0.35s all ease;
}
.review-toggle:hover {
    color: var(--theme-dark);
}
.video-review {
    border-radius: 24px;
    border: 1px solid var(--surface-bold);
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    overflow: hidden;
}
.video-review.main-video-review {
    aspect-ratio:  16 / 9;
}
.videos-slider-pagination,
.products-slider-pagination,
.gallery-slider-pagination {
    position: static !important;
}
.cta-section {
    padding: 80px 0 !important;
}
.cta-wrap {
    max-width: 100%;
    width: 1116px;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 32px;
    box-shadow: 0 4px 24px -8px rgba(17, 50, 82, 0.30);
    padding: 32px 48px;
}
@media (max-width: 700px) {
    .cta-wrap {
        padding: 24px 32px;
    }
}
.cta-img {
    width: 434px;
    right: 0;
    bottom: 0;
}
.cta-mini .cta-img {
    width: 20%;
    right: 48px;
}
@media (max-width: 1200px) {
    .cta-img {
        width: 40%;
    }
}
@media (max-width: 1000px) {
    .cta-mini .cta-img {
        width: 28%;
    }
}
@media (max-width: 820px) {
    .cta-img {
        display: none;
    }
}
.cta-content {
    width: 65%;
    text-align: center;
    color: var(--white);
}
@media (max-width: 820px) {
    .cta-content {
        width: 100%;
    }
}
.cta-content .section-title {
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-mini .section-title {
    margin-bottom: 32px;
}
.cta-content .section-subtitle {
    line-height: 1.5;
}
.zamer-form {
    margin-top: var(--gap-mid);
}
.form-row {
    flex-wrap: wrap;
    gap: 16px 24px;
}
@media (max-width: 700px) {
    .form-row {
        gap: 16px;
    }
}
.form-group {
    width: calc((100% - 24px) / 2);
    flex-grow: 1;
    text-align: left;
}
@media (max-width: 700px) {
    .form-group {
        width: 100%;
    }
}
.form-field-label {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
}
input.form-field, 
textarea.form-field {
    width: 100%;
    height: 48px;
    font-size: inherit;
    padding: 3px 12px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--surface-bold);
    background: var(--grey-light2);
    transition: 0.35s all ease;
}
input.form-field:focus, 
textarea.form-field:focus {
    border-color: var(--grey-mid);
}
.form-agreement-wrap {
    margin: 24px 0;
    text-align: left;
}
.form-agreement-wrap input {
    opacity: 0;
    left: 0;
    top: 2px;
    z-index: -1;
    pointer-events: none;
}
.switch-item {
    gap: 16px;
    font-size: 14px;
}
.switch-item a {
    color: inherit;
}
.switch-item a:hover {
    color: var(--blue-light);
}
.switch-toggler {
    width: 33px;
    height: 18px;
    border-radius: 10px;
    background: var(--surface-bold);
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.35s all ease;
}
.switch-toggler:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.30);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.35s all ease;
}
.form-agreement-wrap input:checked + .switch-item .switch-toggler {
    background: var(--theme-color);
}
.form-agreement-wrap input:checked + .switch-item .switch-toggler:before {
    left: 17px;
}
footer {
    background: var(--blue-dark);
    border-top: 1px solid var(--blue-dark2);
    color: var(--white);
    padding: 48px 0 16px 0;
}
.footer-row {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-mid);
}
@media (max-width: 820px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    .footer-block:first-child,
    .footer-block:last-child {
        order: -1;
    }
}
@media (max-width: 700px) {
    .footer-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
    .footer-block:first-child,
    .footer-block:last-child {
        order: unset;
    }
}
.footer-logo + div {
    font-size: 14px;
    color: var(--grey-light);
    margin-top: 8px;
}
.footer-block h5 {
    font-size: 20px;
    margin-bottom: 16px;
}
@media (max-width: 700px) {
    .footer-block h5 {
        font-size: 18px;
    }
}
.footer-menu > li {
    padding: 8px 0;
}
.footer-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
}
.footer-menu > li > a:hover {
    color: var(--grey-light);
}
.footer-contacts {
    gap: 8px;
}
.footer-contacts a,
.footer-contacts span {
    font-size: 14px;
    line-height: 1.4;
    color: var(--grey-light);
    text-decoration: none;
}
.footer-email {
    text-decoration: underline;
}
.footer-schedule {
    font-size: 12px;
}
.footer-bottom {
    font-size: 14px;
    gap: 8px;
    padding: 8px 0;
    margin-top: var(--gap-big);
}
@media (max-width: 700px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
.footer-policies {
    gap: var(--gap-mid);
}
@media (max-width: 700px) {
    .footer-policies {
        gap: 8px;
        flex-direction: column;
    }
}
.footer-policies a {
    color: var(--white);
}
.footer-policies a:hover {
    color: var(--grey-light);
}
.mobile-menu-wrap {
    display: none;
}
@media (max-width: 1200px) {
    .mobile-menu-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(-100%);
        transition: 0.15s all ease;        
        z-index: 99;
    }
    .mobile-menu-wrap.shown {
        transform: translateX(0);
    }
    .mobile-menu-overlay {
        background: rgba(18, 18, 18, 0.60);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition-delay: 0.2s;
        transition: 0.35s all ease;
    }
    .mobile-menu-wrap.shown .mobile-menu-overlay {
        transition-delay: 0.2s;
        opacity: 1;
    }
    .mobile-menu-body {
        width: 300px;
        max-width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        background: var(--white);
        transform: translateX(-100%);
        transition-delay: 0s;
        transition: 0.6s all ease;
    }
    .mobile-menu-wrap.shown .mobile-menu-body {
        transform: translateX(0);
        transition-delay: 0.35s;
    }
    .mobile-menu > li {
        padding: 8px 16px;
        border-bottom: 1px solid var(--surface-bold);
    }
    .mobile-menu > li:last-child {
        border-bottom: none;
    }
    .mobile-menu > li.parent-item {
        color: var(--grey-mid);
        gap: 10px;
    }
    .mobile-menu > li.parent-item > a {
        flex-grow: 1;
    }
    .mobile-menu > li > a {
        font-size: 14px;
        line-height: 20px;
        color: var(--text-neutral);
        text-decoration: none;
        padding: 4px 0;
    }
    .mobile-menu-icon {
        padding: 10px 16px;
        gap: 10px;
        text-decoration: none;
        color: var(--theme-color);
    }
    .mobile-menu-icon-title {
        gap: 10px;
        font-size: 14px;
    }
    .mobile-menu-icon-title > svg {
        flex-shrink: 0;
    }
    .mobile-menu-icon-count {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        font-size: 10px;
        font-weight: 500;
        line-height: 1;
        flex-shrink: 0;
    }
    .mobile-menu-phone {
        color: var(--text-neutral);
        text-decoration: none;
        padding: 12px 16px;
        gap: 10px;
        font-weight: 500;
    }
    .mobile-menu-phone svg {
        flex-shrink: 0;
    }
    .mobile-menu-schedule {
        font-size: 14px;
        padding: 12px 16px;
        border-top: 1px solid var(--surface-bold);
        border-bottom: 1px solid var(--surface-bold);
    }
    .mobile-menu-schedule > p {
        font-size: 12px;
        color: var(--grey-accent2);
        margin: 0;
    }
    .mobile-menu-socials {
        margin-top: 8px;
        gap: 16px;
        padding: 8px 16px;
    }
    .mobile-submenu-wrap {
        left: 0;
        top: 0;
        width: 100%;
        background: var(--white);
        transform: translateX(-100%);
        display: none;
        z-index: 2;
    }
    .mobile-submenu-wrap.shown {
        transform: translateX(0);
    }
    .mobile-submenu-wrap .mobile-submenu-toggler {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        color: var(--grey-accent2);
    }
    .mobile-submenu-wrap .mobile-submenu-toggler svg {
        transform: scale(-1, 1);
    }
    .mobile-submenu {
        font-size: 14px;
    }
    .mobile-submenu-item-title {
        gap: 10px;
        color: var(--theme-color);
        padding: 8px 16px;
        background: var(--blue-light2);
    }
    .mobile-submenu-item-title > svg {
        width: 16px;
        height: 16px;
    }
    .mobile-submenu-item-list > a {
        display: block;
        text-decoration: none;
        color: var(--text-neutral);
        font-size: 12px;
        padding: 8px 16px;
        border-bottom: 1px solid var(--surface-bold);
    }
    .mobile-submenu-item-list > a:last-child {
        border-bottom: none;
    }
}
.megamenu {
    display: none;
    position: fixed;
    left: 0;
    top: 135px;    
    width: 100%;    
    padding: 0 48px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99;
}
.megamenu.shown {
    display: block;
}
.megamenu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.60);
}
.megamenu-body {
    position: relative;
    background: var(--white);
    padding: 40px;
    max-height: 100%;
}
.megamenu-items {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-mid);
}
.megamenu-item {
    gap: 4px;
}
.megamenu-item-icon {
    width: 56px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    background: var(--blue-light2);
    padding: 8px 12px;
    color: var(--theme-color);
    transition: 0.35s all ease;
}
.megamenu-item:hover .megamenu-item-icon,
.megamenu-item.active .megamenu-item-icon {
    background: var(--theme-color);
    color: var(--white);
}
.megamenu-item-icon svg {
    margin: 0 auto;
}
.megamenu-item-items {
    flex-grow: 1;
}
.megamenu-item-title {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    padding: 4px 12px;
}
.megamenu-item:hover .megamenu-item-title,
.megamenu-item.active .megamenu-item-title {
    color: var(--theme-color);
}
.megamenu-item-list {
    margin-top: 8px !important;
}
.megamenu-item-list > li > a {
    display: block;
    padding: 6px 12px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    transition: 0.35s all ease;
}
.megamenu-item-list > li > a:hover {
    color: var(--theme-color);
}
.catalog-item-fav {
    top: 20px;
    right: 20px;
    z-index: 11;
    cursor: pointer;
    color: var(--theme-color);
}
.catalog-item-fav:hover {
    color: var(--theme-color);
}
.catalog-item-view {
    opacity: 0;
    border-radius: 12px;
    background: var(--white);
    color: var(--theme-color);
    font-weight: 500;
    padding: 8px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    white-space: nowrap;
    box-shadow: 0 1.25px 4px 0 rgba(16, 24, 40, 0.25);
    cursor: pointer;
    visibility: hidden;
}
.catalog-item-view:hover {
    background: var(--grey-light3);
}
.catalog-item:hover .catalog-item-view {
    opacity: 1;
    visibility: visible;
}
.product-top {
    gap: 32px;
}
@media (max-width: 1200px) {
    .product-top {
        flex-direction: column;
    }
}
.product-gallery-wrap {
    width: 36%;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .product-gallery-wrap {
        width: 100%;
    }
}
.product-card-slider {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 24px;
    background: var(--white);
}
.product-brand {
    top: 16px;
    right: 16px;    
    padding: 3px 7px;
    border-radius: 8px;
    border: 1px solid #92C4F3;
    background: rgba(146, 196, 243, 0.70);
    z-index: 3;
}
.product-main-slider {
    position: relative;
    height: 425px;
    margin-bottom: 18px;
    border: 1px solid #d0d0d0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
}
.product-main-slider.product-no-image {
    margin-bottom: 0;
}
.product-no-image > div {
    height: 100%;
    background: #e2e2e2;
}
.product-main-slider.product-no-image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.product-main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-slide-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.product-main-prev,
.product-main-next {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border-radius: 40px;
    color: var(--grey-accent);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    cursor: pointer;
}
.product-main-prev:hover,
.product-main-next:hover {
    color: var(--text-neutral);
}
.product-main-prev {
    left: 16px;
}
.product-main-next {
    right: 16px;
}
.product-main-prev::before,
.product-main-next::before {
    display: none;
}
.product-thumbs-slider {
    overflow: hidden;
}
.product-thumbs-slider .swiper-slide {
    width: 106px;
    height: 80px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color .35s ease;
}
.product-thumbs-slider .swiper-slide-thumb-active {
    border-color: var(--theme-color);
}
.product-thumb-image {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.product-thumb-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-info {
    flex-grow: 1;
}
.product-info-top {
    gap: 16px;
}
.product-article-wrap {
    font-size: 14px;
    color: #636363;
    gap: 8px;
}
.product-rating-wrap {
    gap: 8px;
}
.product-actions {
    gap: 8px;
}
.product-action {
    width: 48px;
    height: 45px;
    color: var(--theme-color);
    cursor: pointer;
}
.btn-fav.fav-active svg {
    fill: var(--theme-color);
}
@media (max-width: 560px) {
    .product-action {
        width: 32px;
        height: 32px;
    }
}
.product-action:hover {
    color: var(--theme-dark);
}
.product-title {
    font-size: 36px;
    margin-top: 25px;
}
@media (max-width: 560px) {
    .product-title {
        font-size: 32px;
    }
}
.product-prices-wrap {
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--surface-bold);
}
@media (max-width: 560px) {
    .product-prices-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
.product-prices-wrap > span {
    font-size: 36px;
    color: #636363;
}
.product-prices {
    gap: 16px;   
}
.product-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--danger);
}
.product-discount {
    gap: var(--gap-sm);
}
.product-oldprice {
    font-size: 16px;
}
.product-benefit {
    font-size: 14px;
    background: var(--warning-light);
    padding-right: var(--gap-sm);
    border: 1px solid var(--warning);
}
.product-benefit span {
    background: var(--warning);
    display: inline-block;
    padding: 0 var(--gap-sm);
    margin-right: var(--gap-sm);
}
.product-btns {
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
    .product-btns .btn {
        font-size: 14px;
    }
}
@media (max-width: 700px) {
    .product-btns {
        grid-template-columns: auto;
    }
}
.product-btns form .btn {
    width: 100%;
}
.product-extra {
    gap: 12px;
    margin-top: auto;
}
.product-extra-row {
    gap: 8px;
    color: var(--grey-accent);
}
.product-extra-row_icon {
    width: 24px;
    flex-shrink: 0;
}
.product-extra-row > .modal-toggler {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-underline-position: from-font;
}
.product-extra-row > .modal-toggler:hover {
    color: var(--theme-color);
    text-decoration-color: var(--theme-color);
}
.product-data {
    margin-top: 64px;
}
.tab-togglers {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tab-toggler {
    white-space: nowrap;
    cursor: pointer;
}
.product-tab-toggler {
    gap: 8px;
    padding: 12px 16px;
    line-height: 1.5;
    color: var(--grey-accent2);
    border-bottom: 2px solid #D0D5DD;
    transition: 0.35s all ease;
}
.product-tab-toggler.active {
    color: var(--text-neutral);
    border-color: var(--theme-color);
}
.product-tab-toggler .count {
    padding: 2px 6px;
    border-radius: 20px;
    border: 1px solid var(--theme-color);
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-color);
    flex-shrink: 0;
}
.product-tab-contents {
    margin-top: 24px;
}
.tab-content:not(.active) {
    display: none;
}
.product-textblock {
    border-radius: 32px;
    padding: 32px;
    background: #F9F9FB;
    color: var(--grey-accent);
}
@media (max-width: 768px) {
    .product-textblock {
        padding: 24px;
    }
}
@media (max-width: 560px) {
    .product-textblock {
        padding: 16px 24px;
    }
}
.product-textblock:not(:last-child) {
    margin-bottom: 32px;
}
.product-textblock-title,
.product-textblock h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-neutral);
}
.product-textblock h3 {
    font-size: 20px;
}
.product-textblock ul,
.product-textblock ol {
    padding-left: 20px;
}
.product-textblock a:not(.btn) {
    color: var(--theme-color);
    text-decoration-line: underline;
}
.product-textblock a:hover {
    color: var(--theme-color);
}
.product-textblock .btn {
    width: fit-content;
}
.opts-row-item {
    position: relative;
}
@media (max-width: 560px) {
    .opts-row-item {
        font-size: 14px;
    }
}
.opts-row-item:not(:last-child) {
    margin-bottom: 16px;
}
.opts-row-item > div:first-child {
    position: relative;
    flex: 1;
}
.opts-row-item > div:first-child:after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted #b9b9b9;
    margin: 0 16px;
    min-width: 22px;
    transform: translateY(1px);
}
.opts-row-item > div:last-child {
    text-align: right;
    max-width: 50%;
}
.product-textblock-row {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .product-textblock-row {
        grid-template-columns: repeat(1, 1fr);
    }
}
.product-tab-table {
    border-radius: 16px;
    border: 1px solid var(--surface-bold);
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 32px;
}
.product-tab-table table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}
.product-tab-table table th {
    font-size: 20px;
    font-weight: 700;
    padding: 26px 8px;
    text-align: left;
    white-space: nowrap;
}
.product-tab-table table td {
    color: var(--grey-accent);
    padding: 12px 8px;
    white-space: nowrap;
}
.product-tab-table table tr > *:first-child {
    padding-left: 24px;
}
.product-tab-table table tr > *:last-child {
    padding-right: 24px;
}
.product-tab-table table tr:nth-child(odd) td {
    background-color: var(--surface-bold);
}
.empty-cart {
    gap: 16px;
    margin-top: 24px;
}
.order-wrap {
    gap: 32px;
    margin-top: 24px;
}
@media (max-width: 1200px) {
    .order-wrap {
        flex-direction: column;
        align-items: stretch;
    }    
}
.order-block {
    padding: 32px 48px;
    border-radius: 32px;
    border: 1px solid #F8F8F8;
    background: var(--white);
    box-shadow: 0 4px 40px -8px rgba(17, 50, 82, 0.15);
}
@media (max-width: 600px) {
    .order-block {
        padding: 16px 24px;
    }  
}
.order-block-title {
    font-size: 24px;
    margin-bottom: 32px;
}
#msOrder {
    margin-top: 0 !important;
}
.order-hidden-block,
#checkout-submit {
    display: none;
}
.checkout-block {
    width: 42%;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .checkout-block {
        width: 100%;
    }  
}
.cart-block {
    flex-grow: 1;
}
.order-fields {
    gap: 19px;
}
.order-fields .form-group {
    width: 100%;
}
.order-fields input.form-field, 
.order-fields textarea.form-field {
    border: 1px solid #eee;
    background: #FAFAFA;
    line-height: 1.5;
}
.order-fields .form-field-label {
    color: var(--grey-mid);
}
.order-fields textarea.form-field {
    height: 96px;
    resize: none;
}
.order-block .switch-item a {
    color: var(--theme-color);
}
.order-block .switch-item a:hover {
    color: var(--theme-dark);
}
.order-upload-wrap {
    margin-top: 19px;
    margin-bottom: 36px;
}
.order-upload-wrap input {
    display: none;
}
.order-upload-btn {
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--theme-color);
    cursor: pointer;
    transition: 0.35s all ease;
}
.order-upload-btn:hover {
    color: var(--theme-dark);
}
.cart-row {
    gap: 24px;
}
.cart-product {
    border-radius: 16px;
    border: 1px solid #E4E4E4;
    background: var(--white);
    padding: 16px;
    gap: 16px;
}
@media (max-width: 600px) {
    .cart-product {
        flex-direction: column;
        align-items: stretch;
    }  
}
.cart-product-image {
    width: 112px;
    height: 112px;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .cart-product-image {
        width: 64px;
        height: 64px;
    }  
}
.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-product-info {
    flex-grow: 1;
}
.cart-product-title {
    color: var(--text-neutral);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
}
.cart-product-title:hover {
    color: var(--theme-color);
}
.cart-product-article {
    color: var(--grey-accent);
    line-height: 1.5;
}
.cart-product-footer {
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}
.qty-wrap {
    border-radius: 16px;
    border: 1px solid #E4E4E4;
    background: #F9FAFB;
    padding: 4px 12px;
    overflow: hidden;
    gap: 8px;
}
.qty-field {
    border: none;
    background: transparent;
    text-align: center;
    width: 24px;
    padding: 0;
}
.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-btn {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--text-neutral);
}
.qty-btn:hover {
    color: var(--theme-color);
}
.cart-product-price {
    font-weight: 700;
    line-height: 1.5;
}
.order-totals {
    margin-top: 56px;
    margin-bottom: 32px;
    gap: 8px;
}
.order-total {
    position: relative;
}
.order-total > div:first-child {
    position: relative;
    flex: 1;
    color: var(--grey-mid);
    font-size: 18px;
}
.order-total > div:first-child:after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted #D0D0D0;
    margin: 0 8px;
    min-width: 22px;
    transform: translateY(4px);
}
.order-total > div:last-child {
    font-weight: 700;
    white-space: nowrap;
}
.order-total-info {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    gap: 16px;
}
.order-success {
    gap: 16px;
}
.page-btns {
    gap: 16px;
}
@media (max-width: 600px) {
    .page-btns {
        flex-direction: column;
    }
}
.service-hero {
    aspect-ratio: 12 / 5;
    background-size: cover;
    background-position: center;
}
@media (max-width: 820px) {
    .service-hero {
        aspect-ratio: 3 / 2;
    }
}
@media (max-width: 700px) {
    .service-hero {
        position: relative;
        aspect-ratio: unset;
        height: auto;
        padding: 48px 0;
        background-position: right center;
    }
}
.service-hero:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 23, 45, 0.00) 0%, rgba(0, 23, 45, 0.50) 42.4%, #00172D 78.41%);
}
.service-hero .container {
    z-index: 2;
}
.service-hero-content {
    height: 100%;
    max-width: 100%;
    width: 50%;
    color: var(--white);
}
@media (max-width: 1200px) {
    .service-hero-content h1 {
        font-size: 38px;
    }
}
@media (max-width: 700px) {
    .service-hero-content {
        width: 100%;
    }
    .service-hero-content h1 {
        font-size: 32px;
    }
}
.service-hero-subtitle {
    margin-top: var(--gap-mid);
    margin-bottom: var(--gap-big);
}
.service-hero-actions {
    gap: 14px;
}
@media (max-width: 992px) {
    .service-hero-actions {
        flex-direction: column;
    }
}
.pros-row.pros-row2 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
    .pros-row.pros-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .pros-row.pros-row2 {
        grid-template-columns: repeat(1, 1fr);
    }
}
.process-wrap {
    gap: 24px;
}
@media (max-width: 992px) {
    .process-wrap {
        flex-direction: column;
    }
}
.process-image {
    width: calc((100% - 24px) / 2);
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .process-image {
        width: 100%;
    }
}
.process-content {
    flex-grow: 1;
    padding-left: 24px;
}
@media (max-width: 700px) {
    .process-content {
        padding-left: 0;
    }
}
.step-item {
    gap: 8px;
}
@media (max-width: 700px) {
    .step-item:not(:last-child) {
        margin-bottom: 8px;
    }
}
.step-header {
    gap: 8px;
}
.step-item:not(:last-child) .step-header:after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    background: var(--theme-color);
    margin-bottom: 8px;
}
.step-num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--white);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
.step-content {
    padding-top: 2px;
    line-height: 1.5;
    font-weight: 500;
}
.geo-wrap {
    max-width: 100%;
    width: 1116px;
    margin: 0 auto;
    padding: 32px 48px;
    border-radius: 24px;
    gap: var(--gap-mid);
}
@media (max-width: 992px) {
    .geo-wrap {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 700px) {
    .geo-wrap {
        padding: 16px 0;
    }
    .geo-wrap.geo-delivery {
        padding: 16px;
    }
    .geo-section > .container {
        background: var(--blue-light2);
    }
}
.geo-image {
    width: 45%;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .geo-image {
        width: 100%;
    }
}
.geo-body {
    flex-grow: 1;
}
.geo-row {
    gap: 32px;
}
.geo-item {
    padding: 16px 24px;
    gap: 16px;
    border-radius: 12px;
}
@media (max-width: 700px) {
    .geo-item {
        padding: 12px 16px;
        gap: 8px;
    }
}
.geo-item > div:first-child {
    font-weight: 500;
}
.geo-item > div:last-child {
    font-weight: 700;
}
.geo-item-wrap:first-child .geo-item > div:last-child {
    color: var(--theme-color);
}
.geo-delivery .geo-item-wrap:first-child .geo-item > div:last-child {
    color: inherit;
}
.geo-item-wrap:first-child .geo-item {
    background: #D8E9F9;
}
.geo-item-wrap:nth-child(2) .geo-item {
    background: #FCF0DB;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}
.geo-item-desc {
    color: var(--grey-accent);
    font-size: 14px;
    margin-top: 8px;
}
.service-infotext {
    width: 1116px;
    max-width: 100%;
    margin: 30px auto 0 auto;
}
.service-infotext:first-child {
    margin-top: 0 !important;
}
.service-infotext .section-title {
    margin-bottom: 24px !important;
}
.service-infotext p,
.service-infotext ul {
    color: var(--grey-accent);
    margin-top: 0;
    margin-bottom: 16px;
}
.service-infotext p a,
.service-infotext ul a {
    color: var(--theme-color);
    text-decoration-style: dotted;
    text-underline-position: from-font;
}
.service-infotext p a:hover,
.service-infotext ul a:hover {
    color: var(--theme-dark);
}
.service-infotext ul {
    padding: 0;
    list-style: none;
}
.service-infotext ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}
.service-infotext ul li:not(:last-child) {
    margin-bottom: 8px;
}
.service-infotext ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.steps-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 992px) {
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .steps-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .steps-item {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .steps-item {
        flex-direction: column;
        gap: 16px;
    }
}
.steps-item-img {
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .steps-item-img {
        width: 340px;
        flex-shrink: 0;
    }
}
@media (max-width: 600px) {
    .steps-item-img {
        width: 100%;
    }
}
.steps-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.steps-item-info {
    margin-top: 16px;
}
@media (max-width: 768px) {
    .steps-item-info {
        margin-top: 0;
    }
}
.steps-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.steps-item-desc {
    color: #525252;
}
.zamer-msg:before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background-image: url(../images/icons/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.zamer-msg {
    margin-top: 48px;
    border-radius: 12px;
    border: 1px solid #FFC78F;
    background: #FFF9F4;
    gap: 16px;
    padding: 24px;
    color: #7C2D12;
}
.zamer-msg b {
    font-size: 18px;
}
.videos-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .videos-row {
        grid-template-columns: repeat(1, 1fr);
    }
}
.cta-wrap.cta-zamer {
    width: 100%;
}
.cta-zamer .cta-content {
    position: relative;
    z-index: 2;
}
.cta-wrap.cta-zamer .cta-img {
    width: 456px;
}
.media-upload-group {
    margin-top: 24px;
}
.media-upload {
    background: #FCFCFD;
    padding: 24px;
    border-radius: 12px;
    border: 2px dashed #ABB1BA;
    color: var(--text-neutral);
    text-align: center;
}
.media-upload-icon {
    width: 40px;
    margin-bottom: 20px;
}
.media-upload-info {
    font-weight: 700;
}
.media-upload-desc {
    color: var(--grey-accent2);
    margin-top: 5px;
    margin-bottom: 20px;
}
.media-upload.uploaded .media-upload-desc,
.media-upload.uploaded .media-upload-choice.btn {
    display: none;
}
.dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}
.dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}
.dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}
.dz-preview .dz-image img {
    display: block;
}
.dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}
.dz-progress {
    display: none !important;
}
.dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, .9);
    line-height: 150%;
}
.dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}
.dz-remove {
    margin-top: 3px;
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}
.service-infotext table td:last-child,
.service-infotext table th:last-child {
    text-align: right;
}
.service-tab-toggler {
    padding: 12px 16px;
    line-height: 1.5;
    color: var(--grey-accent2);
    border-bottom: 2px solid #D0D5DD;
    transition: 0.35s all ease;
}
.service-tab-toggler.active {
    color: var(--text-neutral);
    border-color: var(--theme-color);
}
.geo-item-wrap:nth-child(3) .geo-item {
    background: #FEF3F2;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}
.pickup-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 992px) {
    .pickup-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .pickup-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.pickup-item {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}
.pickup-item-badge {
    color: #4A5565;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    background: #F3F4F6;
    width: fit-content;
    padding: 4px 12px;
}
.pickup-item:first-child .pickup-item-badge {
    background: #E0F2FE;
    color: var(--theme-color);
}
.pickup-item-title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 14px;
    margin-bottom: 24px;
}
.pickup-item-body {
    gap: 16px;
    flex-grow: 1;
}
.pickup-item-body .btn {
    margin-top: auto;
}
.pickup-item-info {
    gap: 12px;
}
.pickup-item-info_icon {
    flex-shrink: 0;
}
.pickup-item-info_text {
    flex-grow: 1;
    gap: 4px;
}
.pickup-item-info_text > div {
    font-weight: 500;
}
.pickup-item-info_text > span {
    font-size: 14px;
    color: #8a8a8a;
}
.section-header.pickup-header {
    align-items: flex-start;
    gap: 8px;
}
.pickup-header .section-subtitle {
    color: #525252;;
}
.theme-hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding-bottom: 100px;
}
.theme-hero-content {
    width: 660px;
    max-width: 100%;
    gap: 24px;
    text-align: center;
    margin: 0 auto;
}
.blog-section {
    overflow: visible;
}
.blog-wrap {
    gap: 32px;
}
@media (max-width: 1200px) {
    .blog-wrap {
        flex-direction: column;
        gap: 48px;
    }
}
.blog-content {
    flex-grow: 1;
    margin-top: -120px;
}
.blog-categories {
    flex-wrap: wrap;
    border-radius: 16px;
    border: 1px solid #F2F4F7;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    padding: 24px;
    gap: 12px;    
}
label.project-tag {
    display: flex;
}
.blog-category {
    color: var(--grey-accent2);
    text-decoration: none;
    transition: 0.35s all ease;
    padding: 12px 16px;
    border-radius: 50px;
    border: 2px solid #D0D5DD;
}
.blog-category:hover {
    background: var(--blue-light2);
}
.blog-category.active {
    color: var(--theme-color);
    border-color: #92C4F3;
    background: var(--blue-light2);
}
.blog-row {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}
@media (max-width: 700px) {
    .blog-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}
.article-item {
    border-radius: 16px;
    border: 1px solid #F2F4F7;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: 0.35s all ease;
}
.article-item:hover {
    border-color: var(--text-neutral);
}
.article-item-image {
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
.article-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all linear;
}
.article-item:hover .article-item-image img {
    transform: scale(1.1);
}
.article-item-category {
    z-index: 2;
    padding: 4px 8px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    top: 16px;
    left: 16px;
}
.article-item-info {
    flex-grow: 1;
    padding: 24px;
    gap: 12px;
}
.article-item-top {
    gap: 16px;
    font-size: 12px;
    color: var(--grey-accent2);
}
@media (max-width: 700px) {
    .article-item-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
.article-item-date {
    gap: 4px;
}
.article-item-date:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.article-item-tag {
    gap: 4px;
}
.article-item-tag:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/tag.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.article-item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 700px) {
    .article-item-title {
        font-size: 18px;
        line-height: 1.2;
    }
}
.article-item-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--grey-accent);
    font-size: 14px;
    line-height: 1.4;
}
.article-item-read {
    margin-top: auto;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: var(--theme-color);
    transition: 0.35s all ease;
}
.article-item-read svg {
    margin-left: 8px;
    transition: 0.35s all ease;
}
.article-item-read:hover,
.article-item:hover .article-item-read {
    color: var(--theme-dark);
}
.article-item-read:hover svg,
.article-item:hover .article-item-read svg {
    margin-left: 12px;
}
.blog-sidebar {
    width: 328px;
    flex-shrink: 0;
    margin-top: -120px;
}
@media (max-width: 1200px) {
    .blog-sidebar {
        width: 100%;
        display: flex;
        gap: 32px;
        margin-top: 0;
    }
}
@media (max-width: 700px) {
    .blog-sidebar {
        flex-direction: column;
    }
}
.blog-tags-wrap {    
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--surface-bold);
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);    
}
.blog-tags-wrap h3 {
    font-size: 20px;
}
.blog-tags {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.blog-tags fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.blog-tag-filter {
    padding: 6px 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--grey-accent2);
    border-radius: 8px;
    background: #F2F4F7;
    cursor: pointer;
    text-decoration: none;
    transition: 0.35s all ease;
}
.blog-tag-filter-wrap > input {
    display: none;
}
.blog-tag-filter:hover {
    background: var(--blue-light);
}
.blog-tag-filter.active,
.blog-tag-filter-wrap > input:checked + .blog-tag-filter {
    color: var(--theme-color);
    border-color: #92C4F3;
    background: #D8E9F9;
}
.blog-tag-reset {
    display: none;
    width: fit-content;
    margin-top: 16px;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    text-decoration-line: underline;
    cursor: pointer;
    transition: 0.35s all ease;
}
.blog-tag-reset:hover {
    color: var(--grey-accent2);
}
.blog-tag-reset.active {
    display: block;
}
.blog-subs-wrap {
    margin-top: 32px;
    padding: 32px;
    border-radius: 16px;
}
@media (max-width: 1200px) {
    .blog-subs-wrap {
        margin-top: 0;
    }
}
.blog-subs-wrap h3 {
    font-size: 20px;
}
.blog-subs-desc {
    margin: 19px 0;
    font-size: 14px;
    line-height: 1.4;
}
.subs-form {
    gap: 19px;
}
.subs-form input.form-field {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.20);
    color: var(--white);
}
.subs-form input.form-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.subs-form .btn {
    font-weight: 700;
    width: 100%;
    border-radius: 12px;
    line-height: 1.5;
}
.blog-pagination > .pagination:not(:empty) {
    margin-top: 48px;
}
.article-hero-content {
    gap: 48px;
}
.article-hero-top {
    font-size: 14px;
    gap: 16px;
}
@media (max-width: 600px) {
    .article-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
.article-hero-top svg {
    color: var(--theme-color);
    margin-right: 4px;
}
.article-body {
    gap: 48px;
}
@media (max-width: 1200px) {
    .article-body {
        flex-direction: column;
    }
}
.article-sidebar {
    width: 440px;
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .article-sidebar {
        width: 100%;
    }
}
.article-content {
    flex-grow: 1;
    min-width: 0;
}
@media (max-width: 1200px) {
    .article-content {
        width: 100%;
    }
}
.article-back {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
    text-decoration: none;
    transition: 0.35s all ease;
}
.article-back svg {
    margin-right: 8px;
    transition: 0.35s all ease;
}
.article-back:hover {
    color: var(--theme-dark);
}
.article-back:hover svg {
    margin-right: 12px;
}
.article-text {
    margin-top: 48px;
    color: #3C3C3C;
    line-height: 1.8;
}
.article-text h2 {
    font-size: 30px;
    margin-bottom: 32px;
}
.article-text h3 {
    font-size: 24px;
    margin-bottom: 32px;
}
.article-intro {
    font-size: 18px;
    color: var(--text-neutral);
    margin-bottom: 32px;
}
.article-text p:not(:last-child),
.article-text ul:not(:last-child),
.article-text ol:not(:last-child),
.article-text blockquote:not(:last-child) {
    margin-top: 0;
    margin-bottom: 32px;
}
.article-text blockquote {
    border-radius: 16px;
    border-left: 4px solid var(--theme-color);
    background: var(--blue-light2);
    padding: 32px 48px;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 768px) {
    .article-text blockquote {
        padding: 24px;
    }
}
.article-text blockquote p:not(:last-child) {
    font-size: 18px;
    line-height: 1.3;
    color: var(--text-neutral);
    margin-bottom: 16px !important;
}
.article-text blockquote p:last-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0 !important;
}
.article-text ul {
    padding: 0;
    list-style: none;
}
.article-text ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}
.article-text ul li:not(:last-child) {
    margin-bottom: 8px;
}
.article-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.article-text ol li::marker {
    color: var(--theme-color);
}
.article-text ol {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: item;
}
.article-text ol li {
    counter-increment: item;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}
.article-text ol li:not(:last-child) {
    margin-bottom: 8px;
}
.article-text ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color);
}
.article-footer {
    border-top: 1px solid #F0F0F0;
    padding-top: 32px;
    margin-top: 32px;
    gap: 16px;
}
@media (max-width: 600px) {
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
.article-tags {
    gap: 8px 16px;
    flex-wrap: wrap;
}
.article-share-wrap {
    font-size: 14px;
    gap: 16px;
}
.article-share {
    gap: 12px;
}
.article-share > a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F5F7FA;
    color: #8A8A8A;
    transition: 0.35s all ease;
}
.article-share > a:hover {
    background: var(--blue-light2);
    color: var(--theme-color);
}
.article-other-wrap {
    padding: 32px;
    border-radius: 24px;
    background: #F2F4F7;
}
.article-other-wrap h3 {
    font-size: 20px;
}
.article-others {
    margin-top: 24px;
    gap: 24px;
}
.article-other {
    gap: 16px;
}
.article-other-img {
    border-radius: 10px;
    overflow: hidden;
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}
.article-other-img img {
    width: 100%;
    height: 100%;
}
.article-other-body {
    flex-grow: 1;
    gap: 4px;
}
.article-other-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    color: var(--text-neutral);
    text-decoration: none;
    line-height: 1.2;
}
.article-other-title:hover {
    color: var(--theme-color);
}
.article-other-date {
    font-size: 14px;
    color: var(--grey-accent2);
}
.article-cta {
    padding: 32px;
    border-radius: 24px;
    background: #00172D;
    color: var(--white);
    margin-top: 32px;
}
.article-cta h3 {
    font-size: 20px;
}
.article-cta > div {
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0 17px 0;
    opacity: 0.8;
}
.article-cta .btn {
    font-weight: 700;
    line-height: 1.5;
}
.about-infotext {
    max-width: 100%;
    width: 660px;
}
.about-infotext ul {
    margin-bottom: 40px;
}
.advs-item:not(:last-child) {
    margin-bottom: 24px;
}
.advs-item {
    padding: 24px 16px;
    border-radius: 16px;
    background: var(--white);
}
.advs-item > div {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.advs-item span {
    color: var(--grey-accent2);
}
.achive-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 992px) {
    .achive-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .achive-row {
        grid-template-columns: repeat(1, 1fr);
    }
}
.achive-item-num {
    font-size: 48px;
    font-weight: 500;
    color: var(--theme-color);
    margin-bottom: 24px;
}
.achive-item-desc {
    font-size: 24px;
}
.about-hero-timeline {
    display: none;
}
@media (max-width: 700px) {
    .about-hero {
        aspect-ratio: 16 / 9;
    }
}
.customer-tab-contents {
    margin-top: 48px;
}
.customer-tab-contents .product-textblock h3, 
.customer-tab-contents .product-textblock h4{
    color: var(--text-neutral);
}
.customer-tab-contents .product-textblock ul {
    padding: 0;
    list-style: none;
}
.customer-tab-contents .product-textblock ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}
.customer-tab-contents .product-textblock ul li:not(:last-child) {
    margin-bottom: 8px;
}
.customer-tab-contents .product-textblock ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.contacts-section {
    padding-top: 0;
    margin-top: -50px;
}
.contacts-wrap {
    gap: 32px;
}
@media (max-width: 1200px) {
    .contacts-wrap {
        flex-direction: column;
    }
}
.contacts-body {
    flex-grow: 1;    
}
.contacts-row {
    flex-wrap: wrap;
    gap: 24px;
}
.contacts-item {
    width: calc((100% - 24px) / 2);
    flex-grow: 1;
    border-radius: 24px;
    border: 1px solid #E4E7EC;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    padding: 24px;
    gap: 16px;
}
@media (max-width: 700px) {
    .contacts-item {
        width: 100%;
    }
}
.contacts-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #F0F7FF;
    flex-shrink: 0;
}
.contacts-item-data {
    flex-grow: 1;
}
.contacts-item-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 6px;
}
@media (max-width: 700px) {
    .contacts-item-title {
        font-size: 18px;
    }
}
.contacts-list {
    gap: 8px;
}
.contacts-list > a,
.contacts-list > span {
    gap: 8px;
    font-size: 16px;
    color: #40444D;
    text-decoration: none;
    transition: 0.35s all ease;
}
.contacts-list > a:hover {
    color: var(--theme-color);
}
.contacts-list > a svg,
.contacts-list > span svg {
    flex-shrink: 0;
}
.contacts-list > a:first-child {
    font-weight: 500;
}
.contacts-list > span {
    font-size: 14px;
    color: #7A7F89;
}
.rekv-top {
    gap: 24px;
}
@media (max-width: 700px) {
    .rekv-top {
        flex-direction: column;
        align-items: stretch;
    }
}
.rekv-top-left {
    gap: 12px;
}
.rekv-download {
    gap: 12px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 12px;
}
.rekv-download:hover {
    background: var(--theme-color);   
}
.rekv-table {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}
.rekv-item {
    width: calc((100% - 24px) / 2);
    flex-grow: 1;
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    gap: 8px;
}
@media (max-width: 700px) {
    .rekv-item {
        width: 100%;
    }
}
.rekv-item > div:first-child {
    color: #7A7F89;
    white-space: nowrap;
}
.rekv-item > div:last-child {
    font-weight: 500;
    text-align: right;
}
.contact-tabs,
.contacts-tab-contents {
    margin-top: 32px;
}
.map-wrap {
    border-radius: 24px;
    border: 1px solid #F0F0F0;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    overflow: hidden;
}
.map-wrap iframe {
    display: block;
}
.contacts-form-wrap {
    width: 448px;
    flex-shrink: 0;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #E4E7EC;
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
}
@media (max-width: 1200px) {
    .contacts-form-wrap {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .contacts-form-wrap {
        padding: 24px;
    }
}
.contacts-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.contacts-form-desc {
    font-size: 14px;
    color: #6B7280;
}
.contacts-form {
    margin-top: 8px;
}
.contacts-form .form-group {
    width: 100%;
}
.contacts-form input.form-field, 
.contacts-form textarea.form-field {
    background: var(--white);
    line-height: 1.5;
}
.contacts-form textarea.form-field {
    height: 100px;
}
.contacts-form .btn {
    width: 100%;
    font-weight: 500;
}
.policy-hero-content {
    width: 888px;
    text-align: left;
}
.policy-body {
    width: 888px;
    max-width: 100%;
    margin: -50px auto 0 auto;
    padding-bottom: 80px;
}
.policy-wrap {
    padding: 32px 48px;
    border-radius: 24px;
    border: 1px solid #E4E7EC;
    background: var(--white);
    box-shadow: 0 10px 35px 0 rgba(16, 24, 40, 0.15);
}
@media (max-width: 700px) {
    .policy-wrap {
        padding: 16px 24px;
    }
}
.policy-block {
    margin-bottom: 40px;
}
.policy-block-title {
    gap: 12px;
    margin-bottom: 16px;
}
.policy-block-title svg {
    flex-shrink: 0;
}
.policy-block-title h2 {
    font-size: 24px;
}
@media (max-width: 700px) {
    .policy-block-title h2 {
        font-size: 20px;
    }
}
.policy-block-text {
    color: #40444D;
    line-height: 1.5;
}
.policy-block-text p,
.policy-block-text ul {
    margin-top: 0;
    margin-bottom: 16px;
}
.policy-block-text p:last-child,
.policy-block-text ul:last-child {
    margin-bottom: 0;
}
.policy-block-text ul {
    padding: 0;
    list-style: none;
}
.policy-block-text ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}
.policy-block-text ul li:not(:last-child) {
    margin-bottom: 8px;
}
.policy-block-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.policy-footer {
    padding-top: 32px;
    border-top: 1px solid #F3F4F6;
    font-size: 14px;
    color: #7A7F89;
}
.policy-footer a {
    text-decoration: none;
    color: var(--theme-color);
}
.policy-footer a:hover {
    color: var(--theme-dark);
}
.notfound-wrap {
    width: 660px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.notfound-wrap img {
    max-width: 100%;
    width: 350px;
}
.notfound-wrap h1 {
    margin-top: 48px;
}
.notfound-desc {
    color: #40444D;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 40px;
}
.notfound-links-wrap {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-neutral-subtle_200, #E4E7EC);
}
@media (max-width: 700px) {
    .notfound-links-wrap {
        margin-top: 48px;
    }
}
.notfound-links-wrap h4 {
    color: #7A7F89;
    font-weight: 500;
}
.notfound-links {
    margin-top: 16px;
    gap: 24px;
}
.notfound-links a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    color: var(--theme-color);
}
.notfound-links a:hover {
    color: var(--theme-dark);
}
.modal {
    display: none;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-3xl, 24px);
    background: url(../images/hero-bg.webp) lightgray 50% / cover no-repeat;
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    padding: 32px;
    width: 638px;
    max-width: 100%;
}
.modal .fancybox-button {
    color: var(--white);
}
.modal-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--white);
    text-align: center;
}
.modal-form {
    gap: 24px;
}
.modal-form .form-group {
    width: 100%;
}
.modal-form input.form-field, 
.modal-form textarea.form-field {
    padding: 8px 12px;
    line-height: 1.5;
}
.modal-form .form-field-label {
    color: var(--white);
}
.modal-form .form-agreement-wrap {
    margin: 0;
    color: var(--white);
}
.modal-form .btn[type="submit"] {
    width: 100%;
    font-weight: 500;
}
.modal-upload-wrap {
    margin: 0;
}
.modal-upload-wrap .btn {
    width: fit-content;
}
.modal-form textarea {
    height: 100px;
}
.project-tag span {
    color: var(--grey-accent2);
    text-decoration: none;
    transition: 0.35s all ease;
    padding: 12px 16px;
    border-radius: 50px;
    border: 2px solid #D0D5DD;
    cursor: pointer;
}
.project-tag input {
    display: none;
}
.project-tag:hover span {
    background: var(--blue-light2);
}
.project-tag.active span,
.project-tag input:checked + span {
    color: var(--theme-color);
    border-color: #92C4F3;
    background: var(--blue-light2);
}
.project-hero-play {
    z-index: 3;
}
.service-hero.video-appended .project-hero-play {
    visibility: hidden;
}
.service-hero iframe {
    z-index: 9;
    object-fit: cover;
}
.projects-gallery {
    margin-top: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 820px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
.project-img {
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--surface-bold);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    transition: 0.35s all ease;
}
@media (max-width: 768px) {
    .project-img {
        border-radius: 12px;
        aspect-ratio: 3 / 2;
    }
}
.project-img:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services-content {
    flex-grow: 1;
}
.reviews-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .reviews-row {
        grid-template-columns: repeat(1, 1fr);
    }
}
.reviews-sidebar,
.reviews-sidebar .article-cta {
    margin-top: 0 !important;
}
.modal-form .form-group.ec-form__row {
    margin-bottom: 0 !important;
}
.review-item {
    border-radius: 12px;
    background: var(--grey-light2);
    padding: 20px;
}
.review-item-top {
    gap: 12px;
}
.review-item-author {
    font-weight: 700;
}
.review-item-date {
    color: var(--grey-accent);
    font-size: 12px;
}
.review-item-text {
    line-height: 1.5;
    color: var(--grey-accent);
    margin: 15px 0;
}
.review-item .ec-message__files {
    margin-top: auto;
}
.review-item-img {
    width: 120px;
    height: 120px;
    border: 1px solid var(--blue-light);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.35s all ease;
}
.review-item-img:hover {
    border-color: var(--theme-color);
}
.review-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-item-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--blue-light);
    height: 120px;
    aspect-ratio: 16 / 9;
    text-decoration: none;
    border-radius: 12px;
    color: var(--theme-color);
    background-size: cover;
    background-position: center;
    transition: 0.35s all ease;
}
.ec-error {
    color: var(--danger);
    font-size: 14px;
}
.btn-compare path.st0 {
    fill: var(--white);
}
.btn-compare.compare-active .st0 {
    fill: var(--theme-color);
}
.rating-stars {
    flex-direction: row-reverse;
    margin: 0;
    width: fit-content;
}
.rating-total-bg {
    margin: 0 !important;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background: url(../images/icons/star.svg) left center repeat-x;
}
.rating-stars > li {
    width: 16px;
    height: 16px;
    margin: 0;
}
.rating-stars > li a,
.rating-stars > li > span {
    display: block;
    line-height: 1;
}
.no-reviews {
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--surface-bold);
    border-radius: 12px;
    width: fit-content;
}
.no-reviews > h3 {
    font-size: 20px;
}
.no-reviews > span {
    font-size: 14px;
}
.product-reviews-section {
    gap: 24px;
}
@media (max-width: 768px) {
    .product-reviews-section {
        gap: 0;
        flex-direction: column;
    }
}
.product-review-cta {
    width: 320px;
    flex-shrink: 0;
    padding: 24px;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .product-review-cta {
        width: 100%;
    }
}
.product-review-cta h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.product-review-cta > div:not(.btn) {
    font-size: 14px;
    margin-bottom: 10px;
}
.modal-form .ec-rating {
    display: flex;
    align-items: center;
}
.modal-form .ec-rating-description {
    color: var(--white);
    font-size: 14px;
}
.blog-search {
    margin-top: 20px;
}
.search-empty {
    background: var(--surface-bold);
    padding: 10px;
    text-align: center;
}
.search-wrap {
    gap: 50px;
}
.search-results {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 25px;
}
@media (max-width: 992px) {
    .search-results {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .search-results {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .search-results {
        grid-template-columns: repeat(1, 1fr);
    }
}
.sr-item-image {
    background: var(--white);
    aspect-ratio: 1 / 1;    
    border: 1px solid var(--surface-bold);
    transition: 0.35s all ease;
    overflow: hidden;    
}
.sr-item-product .sr-item-image {
    padding: 15px;
}
.sr-item-image:hover {
    border-color: var(--theme-color);
}
.sr-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s all ease;
}
.sr-item-product .sr-item-image img {
    object-fit: contain;
}
.sr-item-image:hover img {
    transform: scale(1.12);
}
.sr-item-info {
    flex-grow: 1;
    padding: 12px;
    text-align: center;
}
.sr-item-title {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}
.sr-item-title:hover {
    color: var(--theme-color);
}
.compare-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--surface-bold);
    border-radius: 12px;
    background: var(--white);
}
@media (max-width: 768px) {
    .compare-wrapper {
        border-radius: 10px;
    }
}
.compare-table {
    min-width: max-content;
    background: transparent;
}
.compare-row {
    display: flex;
    align-items: stretch;
    min-width: 100%;
    border-bottom: 1px solid var(--surface-bold);
}
.compare-row:last-child {
    border-bottom: 0;
}
.compare-label,
.compare-item {
    min-height: 56px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}
.compare-label {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    font-weight: 700;
    border-right: 1px solid var(--surface-bold);
    word-break: break-word;
}
@media (max-width: 992px) {
    .compare-label {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        padding: 12px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .compare-label {
        min-height: 52px;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.35;
        width: 120px;
        min-width: 120px;
        max-width: 120px;
    }
}
@media (max-width: 440px) {
    .compare-label {
        width: 110px;
        min-width: 110px;
        max-width: 110px;
        padding: 10px;
        font-size: 12px;
    }
}
.compare-item {
    min-width: 180px;
    flex-basis: 0;
    flex-grow: 1;
    border-right: 1px solid var(--surface-bold);
    word-break: break-word;
}
@media (max-width: 992px) {
    .compare-item {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        padding: 12px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .compare-item {
        min-height: 52px;
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.35;
    }
}
@media (max-width: 440px) {
    .compare-item {
        width: 130px;
        min-width: 130px;
        max-width: 130px;
        padding: 10px;
        font-size: 12px;
    }
}
.compare-item:last-child {
    border-right: 0;
}
.compare-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.compare-row:nth-child(even):not(.compare-row--head) .compare-label,
.compare-row:nth-child(even):not(.compare-row--head) .compare-item {
    background: var(--grey-light2);
}
.compare-row:hover .compare-item,
.compare-row:hover .compare-label {
    background: var(--blue-light) !important;
}
.service-tab-content .section {
    padding: 25px 0;
}
.distance-img {
    max-width: 100%;
    border-radius: 24px;
}
.more-filters {
    display: none;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: dotted;
    color: var(--theme-color);
    cursor: pointer;
    font-weight: 700;
    transition: 0.35s all ease;
}
.more-filters:hover {
    color: var(--theme-dark);
}
.qv-product {
    display: inline-flex;
    gap: var(--gap-mid);
    max-width: 100%;
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 992px) {
    .qv-product {
        display: inline-block;
    }
}
@media (max-width: 820px) {
    .qv-product {
        padding: 30px 15px 15px;
    }
}
.qv-product-gallery {
    width: 50%;
    flex-shrink: 0;
    min-width: 0;
}
@media (max-width: 992px) {
    .qv-product-gallery {
        width: 100%;
    }
}
.qv-item-images {
    position: relative;
    height: 500px;
    margin-bottom: 18px;
    border: 1px solid #d0d0d0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
}
@media (max-width: 992px) {
    .qv-item-images {
        height: auto;
        aspect-ratio: 1.5 / 1;
    }
}
.qv-item-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qv-item-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.qv-item-thumbs .swiper-slide {
    width: 106px;
    height: 80px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color .35s ease;
}
.qv-item-thumbs .swiper-slide-thumb-active {
    border-color: var(--theme-color);
}
.qv-thumb-image {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.qv-thumb-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.qv-item-images-btn {
    top: 50%;
    z-index: 6;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    border-radius: 40px;
    color: var(--grey-accent);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    outline: none !important;
}
.qv-item-images-btn:hover {
    color: var(--text-neutral);
}
.qv-item-images-btn:after {
    display: none;
}
.qv-item-images-prev {
    left: 16px;
}
.qv-item-images-next {
    right: 16px;
}
.qv-product-data {
    flex-grow: 1;
}
@media (max-width: 992px) {
    .qv-product-data {
        margin-top: 24px;
    }
}
.qv-product-tabs {
    margin-top: 30px;
}
.qv-tab-toggler {
    gap: 8px;
    padding: 12px 16px;
    line-height: 1.5;
    color: var(--grey-accent2);
    border-bottom: 2px solid #D0D5DD;
    transition: 0.35s all ease;
}
.qv-tab-toggler.active {
    color: var(--text-neutral);
    border-color: var(--theme-color);
}
.qv-tab-contents {
    margin-top: 24px;
}
.sale-blocks {
    margin-top: 50px;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 992px) {
    .sale-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .sale-blocks {
        grid-template-columns: repeat(1, 1fr);
    }
}
.sale-block-img {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}
.sale-block-img:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
.sale-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sale-block-title {
    bottom: 0;
    left: 0;
    padding: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}
@media (max-width: 540px) {
    .sale-block-title {
        padding: 12px;
    }
}
.sale-block-text {
    padding: 20px;
    font-size: 14px;
}
@media (max-width: 540px) {
    .sale-block-text {
        padding: 12px;
    }
}
.color-chk-bezh {
    background-color: #ede8d4;
}
.color-chk-black {
    background-color: #000;
}
.color-chk-grey {
    background-color: #787878;
}
.color-chk-yellow {
    background-color: #f7cd05;
}
.color-chk-green {
    background-color: #06482d;
}
.color-chk-blue {
    background-color: #0e2372;
}
.color-chk-red {
    background-color: #c70102;
}
.color-chk-silver {
    background-color: #c3c5c4;
}
.color-chk-brown {
    background-color: #3d1b12;
}
.color-chk-lbrown {
    background-color: #793720;
}
.color-chk-greyblack {
    background: linear-gradient(to right,#787878 0%,#787878 50%,#000000 50%,#000000 100%);
}
.color-chk-greylbrown {
    background: linear-gradient(to right,#787878 0%,#787878 50%,#793720 50%,#793720 100%);
}
.color-chk-brown:before,
.color-chk-black:before,
.color-chk-blue:before {
    filter: invert(1);
}
.article-blocks {
    gap: 50px;
}
.article-block .btn {
    display: inline-flex;
}
.article-block a {
    color: var(--theme-color);
    text-decoration: underline;
}
.article-block .zamer-msg {
    margin-top: 0 !important;
}
.article-table-block {
    border-radius: 16px;
    border: 1px solid var(--surface-bold);
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 32px;
}
.article-table-block table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}
.article-table-block table th {
    font-size: 20px;
    font-weight: 700;
    padding: 26px 8px;
    text-align: left;
    white-space: nowrap;
}
.article-table-block table td {
    color: var(--grey-accent);
    padding: 12px 8px;
    white-space: nowrap;
}
.article-table-block table tr > *:first-child {
    padding-left: 24px;
}
.article-table-block table tr > *:last-child {
    padding-right: 24px;
}
.article-table-block table tr:nth-child(odd) td {
    background-color: var(--surface-bold);
}
.article-steps .steps-item-img {
    aspect-ratio: 1 / 1;
}
.article-steps.article-steps-items-1 {
    grid-template-columns: repeat(1, 1fr);
}
.article-steps.article-steps-items-2 {
    grid-template-columns: repeat(2, 1fr);
}
.article-steps.article-steps-items-3 {
    grid-template-columns: repeat(3, 1fr);
}
.article-steps.article-steps-items-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
    .article-steps.article-steps-items-3,
    .article-steps.article-steps-items-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .article-steps.article-steps-items-2,
    .article-steps.article-steps-items-3,
    .article-steps.article-steps-items-4 {
        grid-template-columns: repeat(1, 1fr);
    }
}
.gallery-slide {
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    border: 1px solid var(--surface-bold);
    background: var(--white);
    overflow: hidden;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.calc-wrap {
    max-width: 100%;
    width: 888px;
    margin: 0 auto;
    gap: var(--gap-big);
}
.calc-progress-wrap {
    padding: 30px 48px;
    border-radius: 24px;
    border: 1px solid var(--grey-light2);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    overflow: hidden;
}
@media (max-width: 768px) {
    .calc-progress-wrap {
        padding: 24px;
        border-radius: 16px;
    }
}
.calc-progress-bar {
    height: 6px;
    background: linear-gradient(90deg, #92C4F3 0%, #025EB6 100%);
    top: 0;
    left: 0;
    transition: 0.35s all ease;
}
.calc-progress-inner {
    gap: 16px;
}
@media (max-width: 768px) {
    .calc-progress-inner {
        flex-direction: column;
        text-align: center;
    }
}
.calc-progress-header {
    min-width: 0;
    flex-grow: 1;
}
.calc-progress-header h2 {
    font-size: 32px;
}
@media (max-width: 768px) {
    .calc-progress-header h2 {
        font-size: 26px;
    }
}
@media (max-width: 560px) {
    .calc-progress-header h2 {
        font-size: 22px;
    }
}
.calc-progress-steps {
    margin-top: 8px;
}
@media (max-width: 768px) {
    .calc-progress-steps {
        width: 100%;
    }
}
.calc-progress-step:not(.active) {
    display: none;
}
.calc-progress-step {
    color: var(--grey-accent);
}
.calc-progress-status {
    background: var(--blue-light2);
    padding: 10px 16px 12px;
    border-radius: 14px;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--grey-accent);
    gap: 5px;
    border: 1px solid var(--blue-light);
}
.calc-progress-status b {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
}
.calc-step {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--grey-light2);
    box-shadow: 0 5px 15px 0 rgba(16, 24, 40, 0.12);
    overflow: hidden;
}
@media (max-width: 768px) {
    .calc-step {
        padding: 24px;
    }
}
.calc-step:not(.active) {
    display: none;
}
.calc-step-title {
    font-size: 20px;
    line-height: 28px;
    gap: 8px;
}
@media (max-width: 560px) {
    .calc-step-title {
        font-size: 18px;
        line-height: 22px;
    }
}
.calc-step-title svg {
    flex-shrink: 0;
}
.calc-step-body {
    margin: 32px 0;
    padding-bottom: 14px;
}
@media (max-width: 660px) {
    .calc-step-body {
        margin: 15px 0;
        padding-bottom: 10px;
    }
}
.calc-fields {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .calc-fields {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}
.calc-fields.calc-grid-1 {
    grid-template-columns: repeat(1, 1fr);
}
.calc-field label {
    margin-bottom: 4px;
}
.calc-field .select2-container--default .select2-selection--single {
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    height: 40px;
}
.calc-field .select2-container .select2-selection--single .select2-selection__rendered {
    color: inherit;
    line-height: 40px;
    padding-left: 12px;
    padding-right: 15px;
}
.calc-field .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/chevron-down.svg);
    background-repeat: no-repeat;    
    background-size: contain;
    background-position: center;
    top: 11px;
    right: 12px;
    transition: 0.25s transform ease-in-out;
}
.calc-field .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
}
.calc-field .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--theme-color) !important;
}
.calc-step-footer {
    padding: 18px 0;
    border-top: 1px solid var(--surface-bold);
}
@media (max-width: 660px) {
    .calc-step-footer {
        padding: 15px 0;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
}
.calc-step-prev {
    border-color: transparent;
    background: #f1f1f1;
}
.calc-step-prev:hover {
    background: #e3e3e3;
}
.calc-nalich-wrap {
    background: var(--blue-light2);
    border: 1px solid #C0DDF8;
    border-radius: 10px;
    padding: 12px 24px;
    margin-bottom: 32px;
    gap: 8px;
}
@media (max-width: 560px) {
    .calc-nalich-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 12px;
    }
}
.calc-nalich-item {
    gap: 8px;
}
.calc-nalich-label > input {
    display: none;
}
.calc-nalich-chk {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid var(--theme-color);
    overflow: hidden;
}
.calc-nalich-chk:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/check-white.svg);
    background-repeat: no-repeat;    
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}
.calc-nalich-label > input:checked + .calc-nalich-chk {
    background: var(--theme-color);
}
.calc-nalich-label > input:checked + .calc-nalich-chk:before {
    opacity: 1;
}
.calc-nalich-text > span {
    color: var(--grey-accent2);
    font-size: 14px;
}
.calc-radios {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .calc-radios {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}
.calc-radio > input {
    display: none;
}
.calc-radio-label {
    padding: 8px 12px;
    text-align: center;
    display: block;
    border: 1px solid var(--theme-color);
    border-radius: 12px;
    font-weight: 500;
    color: var(--theme-color);
    cursor: pointer;
    margin-bottom: 0 !important;
    transition: 0.35s all ease;
}
.calc-radio > input:checked + .calc-radio-label {
    background: var(--theme-color);
    color: var(--white);
}
.calc-chks {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}
@media (max-width: 768px) {
    .calc-chks {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}
.calc-chks-item > input {
    display: none;
}
.calc-chk-label {
    margin-bottom: 0 !important;
    gap: 8px;
    border: 1px solid #D0D5DD;
    padding: 14px 12px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 0 !important;
    transition: 0.35s all ease-in-out;
}
@media (max-width: 560px) {
    .calc-chk-label {
        font-size: 14px;
        padding: 8px 12px;
    }
}
.calc-chk {
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    transition: 0.35s all ease-in-out;
}
@media (max-width: 560px) {
    .calc-chk {
        width: 16px;
        height: 16px;
    }
}
.calc-chk-val {
    transition: 0.35s all ease-in-out;
}
.calc-chks-item > input:checked + .calc-chk-label {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}
.calc-chks-item > input:checked + .calc-chk-label .calc-chk {
    border-color: var(--white);
}
.calc-msg {
    background: var(--blue-light2);
    border: 1px solid #C0DDF8;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}
@media (max-width: 560px) {
    .calc-msg {
        font-size: 14px;
        padding: 14px;
        border-radius: 10px;
    }
}
.calc-msg p {
    color: #4B5563;
    margin-top: 12px;
    margin-bottom: 0;
}
.calc-step .form-field-label {
    font-size: 16px;
}
.required-star {
    color: var(--danger);
}
.calc-step input.form-field {
    padding: 8px 12px;
    height: 40px;
    background: transparent;
    border-radius: 12px;
    border-color: var(--grey-light);
}
.calc-step input.form-field:focus {
    border-color: var(--text-neutral);
}
.calc-step input.form-field.error {
    border-color: var(--danger);
}
.calc-step:last-child .calc-step-body {
    margin-bottom: 0;
}
.prod-real-name {
    background: var(--surface-bold);
    padding: 5px;
    border-radius: 8px;
    margin-top: 10px;
}
.calc-step .form-agreement-wrap {
    margin-bottom: 0 !important;
}
.compare-clear-wrap {
    margin-bottom: 30px;
}
.compare-item-remove {
    color: var(--theme-color);
    top: 8px;
    right: 8px;
    cursor: pointer;
}
@media (max-width: 1360px) {
    .calc-link {
        padding: 12px !important;
        flex-shrink: 0;
    }
    .calc-link > span {
        display: none;
    }
}
@media (max-width: 992px) {
    .calc-link {
        padding: 8px !important;
        border-radius: 6px;
    }
}
@media (max-width: 440px) {
    .calc-link {
        display: none;
    }
    .calc-link-mobile {
        display: flex;
        background: var(--theme-color);
    }
    .calc-link-mobile > a {
        color: var(--white) !important;
    }
}
.paid-opt-title::first-letter {
    text-transform: uppercase;
}
.grecaptcha-badge {
    display: none !important;
}