@import url("normalize.css");
@import url("base.css");

body {
    position: relative;
    background: var(--bg-color);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-color);
}
body.locked {
    overflow-y: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--bg-color);    
    transition: 0.3s ease;
    z-index: 9;
}
header.sticky {
    position: fixed; 
    top: 0;
    left: 0;    
    animation: 1s forwards stickyReveal;
    transition: 0.5s all ease;
    box-shadow: 0px 1px 20px 0 rgba(0,0,0,0.22);    
    z-index: 99;
}
.header-top {
    background: var(--red);
    font-weight: 600;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 0 0 55px 55px;
    overflow: hidden;
    transition: 0.4s all ease;
}
header.sticky .header-top {
    padding: 0;
    height: 0;
}
.header-mid {
    gap: 25px;
    padding: 25px 0;
    transition: 0.4s all ease;
}
header.sticky .header-mid {
    padding: 10px 0;
}
.header-mid-left {
    gap: 25px;
}
.header-logo img {
    width: 100px;
    transition: 0.4s all ease;
}
header.sticky .header-logo img {
    width: 70px;
}
.header-slogan {
    font-size: 14px;
    font-weight: 300;
}
ul.header-mid-menu {
    gap: 25px;
    font-size: 13px;
    margin-left: auto;
    margin-right: 40px;
}
.header-mid-menu a {
    color: inherit;
}
.header-mid-menu a:hover {
    color: var(--theme-color);
}
.header-mid-right {
    gap: 30px;
    width: 25%;
    flex-shrink: 0;
}
.header-search-wrap {
    flex-grow: 1;
}
.header-search-form input {
    width: 100%;
    background: var(--bg-grey);
    border-radius: 100px;
    padding: 13px 16px;
    letter-spacing: .2px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    min-height: 44px;
    color: var(--text-color);
    border: 1px solid transparent;
    transition: 0.35s all ease;
}
.header-search-form input:focus {
    border-color: var(--text-color);
}
.header-search-form button {
    right: 0;
    top: 0;
    background: var(--text-color);
    border: none;
    height: 44px;
    width: 44px;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.35s all ease;
}
.header-search-form button:hover {
    background: var(--theme-color);
}
.header-actions {
    gap: 30px;
}
.header-action {
    font-size: 10px;
    text-decoration: none;
    gap: 10px;
    color: inherit;
}
.header-action span,
.header-action svg path {
    transition: 0.35s all ease;
}
.header-action:hover span {
    color: var(--theme-color);
}
.header-action:hover svg path {
    fill: var(--theme-color);
}
.header-menu li {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.header-menu li a {    
    display: block;
    padding: 15px 10px;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    transition: 0.35s all ease;
}
.header-menu li.active a,
.header-menu li a:hover {
    background: var(--theme-color);
    color: var(--white);
}
.hero {
    padding: 20px 0;
}
.hero-slider-wrap {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
}
.hero-slide {
    height: 620px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-big);
    color: var(--text-color);
    text-decoration: none;
    overflow: hidden;
}
.hero-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.hero-slide-info {    
    position: relative;
    width: 770px;
    max-width: 100%;
    padding: 25px 25px 25px 90px;
    color: var(--white);
    z-index: 2;
}
.hero-slide-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero-slide-text {
    line-height: 1.5;
}
.hero-slide-info .btn {
    margin-top: 30px;
    width: fit-content;
}
.hero-slider-btn {
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    z-index: 2;
}
.hero-slider-btn:after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.main-catalog-tabs-wrap {
    gap: 50px;
}
.main-catalog-tabs {
    flex-grow: 1;
    border-bottom: 1px solid var(--bg-grey);
}
.main-catalog-tab {
    flex-basis: 0;
    flex-grow: 1;
    padding: 10px 15px;
    border-bottom: 4px solid transparent;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: 0.35s all ease;
}
.main-catalog-tab.active {
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.main-catalog-wrap {
    gap: 50px;
    margin-top: 60px;
}
.main-catalog-banner-wrap {
    flex-shrink: 0;
}
.main-catalog-items {
    flex-grow: 1;
    gap: 25px;
    flex-wrap: wrap;
}
.product-item {
    width: calc((100% - 75px) / 4);
    border-radius: var(--border-radius-small);
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: 0.35s all ease;
}
.product-item-image {
    height: 325px;
    background: var(--white);
    border-radius: var(--border-radius-small);    
    overflow: hidden;
}
.product-item-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-text {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 15px;
    text-align: center;
}
.product-badges {
    left: 10px;
    top: 10px;
    flex-wrap: wrap;
    max-width: 50%;
    font-size: 10px;
    gap: 3px;
    z-index: 2;
}
.product-badge {
    padding: 3px 6px;
    border-radius: var(--border-radius-small);
    color: var(--white);
}
.product-badge.badge-sale {
    background: var(--red);
}
.product-badge.badge-new {
    background: var(--green);
}
.product-badge.badge-hit {
    background: var(--theme-color);
}
.product-fav {
    top: 5px;
    right: 5px;
    z-index: 2;
}
.product-fav .default {
    fill: var(--text-color);
}
.product-fav .filled {
    display: none;
    fill: var(--red);
}
.product-fav.fav-active .filled {
    display: block;
}
.product-fav.fav-active .default {
    display: none;
}
.product-item-info {
    flex-grow: 1;
    padding: 15px 10px;
}
.product-item-category {
    font-size: 13px;
    color: var(--text-light);
}
.product-item-title {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}
.product-item-more {
    margin-top: auto;
}
.product-item-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 25px;
}
.product-item-rating {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    gap: 5px;
    color: var(--text-light);
}
.product-item-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--orange);    
}
.product-item-prices {
    gap: 10px;
    margin: 15px 0 25px 0;
}
.product-item-price {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.product-item-old-price {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.product-item-old-price:before {
    content: '';
    background: var(--text-light);
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: rotate(-3deg);
    width: 100%;
}
.product-item-form {
    margin-top: auto;
}
.product-buy-btn {
    width: 100%;
}
.banner-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.partner-slide {
    width: 150px;
    padding: 0 15px;
    height: auto !important;
}
.partner-slide img {
    width: 100%;
    height: auto;
}
.partners-btn-prev,
.partners-btn-next {
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.partners-btn-prev:after,
.partners-btn-next:after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.main-packets {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}
.main-packet {
    width: calc((100% - 60px) / 3);
    padding: 30px;
    color: var(--white);
    background: var(--swiper-theme-color);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    text-decoration: none;
    transition: 0.35s all ease;
}
.main-packet:hover {
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.28);
}
.main-packet:after {
    content: '';
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    right: -30%;
    transform: translateY(-50%);
    background-image: url(../images/docs.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.1;
}
.main-packet:first-child:after {
    background-image: url(../images/docs2.png);
    opacity: 0.2;
}
.main-packet:nth-child(2):after {
    background-image: url(../images/docs3.png);
    opacity: 0.2;
}
.main-packet:nth-child(3):after {
    background-image: url(../images/docs4.png);
    opacity: 0.2;
}
.main-packet:nth-child(4):after {
    background-image: url(../images/docs5.png);
    opacity: 0.2;
}
.main-packet:nth-child(5):after {
    background-image: url(../images/docs6.png);
    opacity: 0.2;
}
.main-packet-info {
    max-width: 80%;
    z-index: 2;
}
.main-packet-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-decoration: none;
}
.main-packet-intro {
    font-size: 14px;
    margin-top: auto;
}
.main-news {
    gap: 30px;
}
.news-item {
    flex-basis: 0;
    flex-grow: 1;
    color: var(--text-color);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    transition: 0.35s all ease;
}
.news-item:hover {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.18);
}
.news-item-img {
    height: 250px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s all ease-in-out;
}
.news-item-info {
    flex-grow: 1;
    padding: 15px 10px;
}
.news-item-date {
    font-size: 13px;
    color: var(--text-light);
}
.news-item-tags {
    margin: 5px 0;
    font-size: 12px;
    gap: 5px;
    flex-wrap: wrap;
}
.news-item-tag {
    background: var(--text-light);
    border-radius: var(--border-radius-big);
    padding: 2px 5px;
    color: var(--white);
}
.news-item-title {
    font-weight: 500;
    margin-top: 5px;
    transition: 0.35s all ease;
}
.news-item:hover .news-item-title {
    color: var(--theme-color);
}
.news-item-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0 25px 0;
    overflow: hidden;
}
.news-item-desc > p:first-child {
    margin-top: 0;
}
.news-item-desc > p:last-child {
    margin-bottom: 0;
}
.news-item-read {
    margin-top: auto;
    color: var(--theme-color);
    gap: 10px;
    font-weight: 500;
}
.news-item-read svg path {
    fill: var(--theme-color);
}
.section-subscribe {
    padding: 50px 0;
}
.subscribe-wrap {
    gap: 40px;
}
.subscribe-text {
    width: 40%;
    flex-shrink: 0;
    color: var(--white);
}
.subscribe-text .section-title {
    margin-bottom: 15px;
    font-size: 30px;
}
.subscribe-text .section-subtitle {
    font-size: 18px;
    font-weight: 300;
}
.subscribe-form {
    flex-grow: 1;
}
.subscribe-form-fields input {
    width: 100%;
    background: var(--bg-grey);
    border-radius: 100px;
    padding: 13px 16px;
    letter-spacing: .2px;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    height: 50px;
    color: var(--text-color);
    border: 1px solid transparent;
    transition: 0.35s all ease;
}
.subscribe-form-fields button {
    right: 0;
    top: 0;
    background: var(--text-color);
    color: var(--white);
    border: none;
    width: auto;
    height: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.35s all ease;
}
.subscribe-form-fields input:focus {
    border-color: var(--text-color);
}
.form-footer {
    margin-top: 10px;
    font-size: 12px;
}
.form-footer a {
    color: inherit;
}
.subscribe-form .form-footer {
    color: var(--white);
}
.main-text {
    padding-bottom: 40px;
}
.main-text-wrap {
    line-height: 1.6;
}
footer {
    background: var(--text-color);
    padding: 80px 0 0 0;
    color: var(--white);
}
.footer-row {
    gap: 25px;
}
.footer-item {
    flex-basis: 0;
    flex-grow: 1;
}
.footer-item-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-menu {
    gap: 12px;
}
.footer-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}
.footer-menu li a:hover {
    text-decoration: underline;
}
.footer-contacts {
    gap: 12px;
    font-size: 14px;
}
.footer-contacts-item a {
    color: var(--white);
    font-weight: 500;
}
.footer-bottom-wrap {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #282828;    
    font-size: 12px;
}
.footer-bottom-row {
    gap: 20px;
}
.footer-bottom-link {
    color: var(--white);
    text-decoration: none;
}
.footer-bottom {
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
    padding-bottom: 15px;
}
.inner-page-content {
    padding-top: 30px;
    /*padding-bottom: 50px;*/
}
.crumbs-wrap {
    margin: 30px 0;
}
.breadcrumb {
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 14px;
}
.breadcrumb-item a {
    text-decoration: none;
    color: inherit;
}
.breadcrumb-item a:hover {
    color: var(--theme-color);
}
.breadcrumb li.active span {
    color: var(--text-light);
}
.inner-page-text {
    line-height: 1.5;
}
.catalog-wrapper {
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
}
.catalog-filters-wrap {
    width: 320px;
    flex-shrink: 0;
}
.catalog-filters-wrap > form {
    width: 100%;
    overflow: hidden;
}
.catalog-filters-wrap-header {
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
}
.catalog-filters-wrap-header h3 {
    font-size: 20px;
    font-weight: 500;
}
.catalog-filters-wrap-header .filter-toggle {
    display: none;
    padding: 0;
    background: transparent;
    border: none;
    line-height: 0;
    transform: rotate(45deg);
    cursor: pointer;
}
.catalog-filters {
    padding: 10px 0;
}
.filter-item {
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--bg-grey);
    border-left: none;
    border-right: none;
    padding: 0;
    margin: 0;
}
.filter-item-title {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 15px 0;
}
.filter_title {
    font-size: 16px;
    font-weight: 600;
}
.filter-item-title svg {
    display: none;
    transition: 0.4s ease;
}
.filter-values-row {
    padding-bottom: 10px;
}
.filter-values-item:not(:last-child) {
    margin-bottom: 12px;
}
.filter-values-item > input {
    display: none;
}
.filter-values-item > label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.chk {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: var(--bg-grey);
    flex-shrink: 0;
    transition: 0.3s ease;
}
.chk:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icons/icon-check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-color: transparent;
    opacity: 0;
    transition: 0.3s ease;
}
.filter-values-item > label > span {
    text-transform: initial;
}
.filter-values-item > input:checked + label .chk {
    background: var(--text-color);
}
.filter-values-item > input:checked + label .chk:before {
    opacity: 1;
}
.mobile-show-results {
    display: none;
}
.mobile-show-results.shown {
    display: block;
}
.catalog-content {
    flex-grow: 1;
}
.catalog-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 30px;
    background: var(--bg-grey);
    padding: 10px;
    border-radius: 5px;
}
.catalog-actions .filter-toggle {
    display: none;
}
.catalog-actions .filter-toggle, .catalog-actions .sort-toggle {
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.sort-wrap {
    position: relative;
}
.sort-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-color);
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(22, 22, 22, 0.15);
    z-index: 3;
}
.sort-list a {
    display: block;
    padding: 8px;
    font-size: 13px;
    white-space: nowrap;
    color: var(--text-color);
    text-decoration: none;
}
.catalog-products {
    flex-wrap: wrap;
    gap: 20px;
}
.section-cta {
    padding: 50px 0 !important;
}
.cta-wrap {
    gap: 100px;
}
.cta-img {
    flex-shrink: 0;
    width: 25%;
}
.cta-content {
    flex-grow: 1;
}
.cta-content .section-title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 20px;
    color: var(--text-light);
}
.cta-form {
    gap: 25px;
    margin-top: 50px;
}
.cta-form .form-field {
    flex-grow: 1;
}
.form-field > input,
.form-field > textarea {
    width: 100%;
    height: 50px;
    padding: 5px 25px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--text-light);
    outline: none;
    box-shadow: -3px 3px 12px 2px rgba(22, 22, 22, 0.25);
    transition: 0.35s all ease;
}
.form-field > textarea {
    height: 90px;
    padding: 10px 25px;
}
#mse2_filters .mse2_number_slider {
    margin-bottom: 0 !important;
    border-radius: 0;
    height: 4px;
    border: none;
    background: var(--bg-grey);
}
#mse2_filters .mse2_number_slider.ui-slider .ui-slider-range {
    background: var(--text-color);
}
#mse2_filters .mse2_number_slider.ui-slider .ui-slider-handle {
    top: -8px;
    margin-left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--text-color);
}
#mse2_filters .mse2_number_slider.ui-slider .ui-slider-handle:last-child {
    margin-left: -20px;
}
.filter-inputs {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}
.filter-inputs-item {
    border: none;
    font-size: 12px;
    padding: 8px 5px;
}
#mse2_filters .mse2_number_inputs label {
    display: inline-block;
}
.filter-inputs-item input {
    border: none;
    outline: none;
    padding: 4px;
    font-size: 14px;
    max-width: 100%;
    min-width: 0;
}
ul.pagination {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding: 0;
    margin: 35px 0 0 !important;
}
ul.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    background: var(--text-color);
    transition: 0.35s all ease;
}
ul.pagination .page-link:hover {
    opacity: 0.85;
}
ul.pagination .page-item.active .page-link {
    background: var(--theme-color);
}
ul.pagination .page-item.disabled .page-link {
    background: var(--text-light);
    cursor: default;
    pointer-events: none;
}
.packages-list {
    gap: 30px;
    flex-wrap: wrap;
}
.package-item {
    width: calc((100% - 60px) / 3);
    padding: 30px;
    color: var(--white);
    background: var(--swiper-theme-color);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    overflow: hidden;
    transition: 0.35s all ease;
}
.package-item:after {
    content: '';
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    right: -30%;
    transform: translateY(-50%);
    background: url(../images/docs.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.1;
}
.package-item .main-packet-info {
    max-width: 100%;
}
section.inner-page {
    min-height: 300px;
    padding-bottom: 50px;
}
.incart-container {
    flex-grow: 1;
}
.incart-wrap {
    gap: 5px;
    width: 100%;
}
.incart-wrap .btn {
    width: 50px;
    font-size: 20px;
    font-weight: 500;
}
.incart-wrap a {
    flex-grow: 1;
    background: var(--text-color);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-small);
}
.pay-deliver-row {
    gap: 40px;
    margin-top: 30px;
}
.pay-deliver-item {
    background: var(--bg-color);
    padding: 35px 20px;
    box-shadow: 0px 0px 16px 5px hsl(236deg, 6%, 49%, 15%);
    border-radius: var(--border-radius-small);
    max-width: 400px;
}
.pay-deliver-item > div {
    gap: 50px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.pay-deliver-item > span {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-light);
}
.pay-deliver-item img {
    width: 30px;
}
.payment-item-block {
    margin-top: 50px;
}
.payment-item-block-title {
    color: var(--theme-color);
}
.news-page {
    gap: 50px;
    margin-top: 50px;
}
.news-list-wrap {
    flex-grow: 1;
}
.news-list {
    flex-wrap: wrap;
    gap: 30px;
}
.news-list .news-item {
    flex-grow: 0;
    flex-basis: calc((100% - 60px) / 3);
}
.news-list .news-item-img {
    height: 200px;
}
.news-page-right {
    width: 320px;
    flex-shrink: 0;
}
.news-right-title {
    background: var(--theme-color);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 5px;
    border-radius: var(--border-radius-small);
}
.news-filters {
    margin: 25px 0 50px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.news-tag-filter {
    background: var(--text-light);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: var(--border-radius-big);
    transition: 0.35s all ease;
}
.news-tag-filter:hover,
.news-tag-filter.active {
    background: var(--theme-color);
}
.news-page-subs {
    border-radius: var(--border-radius-small);
    padding: 25px;
}
.subs-aside-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
}
.subs-aside {
    gap: 15px;
}
.subs-aside .form-footer {
    color: var(--white);
    text-align: center;
}
.article-page {
    padding: 30px 0 50px 0;
    clear: both;
}
.article-page-image {
    width: 500px;
    height: 350px;
    float: left;
    margin: 0 25px 25px 0;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
.article-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-page-text {
    line-height: 1.5;
}
.article-page-top {
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
}
.article-page-right {
    gap: 25px;
}
.article-page-views {
    gap: 5px;
}
.article-page-views:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icons/eye.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.article-page-tags {
    gap: 10px;
}
.article-page-tags a {
    text-decoration: none;
    background: var(--text-color);
    color: var(--white);
    padding: 1px 10px;
    border-radius: var(--border-radius-small);
}
.contacts-page {
    max-width: 100%;
    gap: 100px;
    margin: 0 auto;
}
.contacts-page-content {
    width: 40%;
    flex-shrink: 0;
}
.contacts-page-item {
    margin-bottom: 30px;
    gap: 5px;
}
.contacts-page-item:last-child {
    margin-bottom: 0;
}
.contacts-page-item > span {
    font-weight: 700;
}
.contacts-page-item > p {
    margin: 0;
}
.contacts-page-item a {
    font-size: 18px;
    color: var(--theme-color);
    text-decoration: none;
}
.callback-form {
    width: 100%;    
    gap: 15px;
}
.callback-form .form-footer {
    text-align: center;
}
.callback-form .form-footer a {
    font-size: inherit;
}
.contacts-page-map {
    border-radius: var(--border-radius-small);
    overflow: hidden;
    flex-grow: 1;
}
.contacts-page-map iframe {
    width: 100%;
    height: 100%;
}
.service-tab-toggler {
    padding: 15px 30px;
    background: var(--bg-grey);
    cursor: pointer;
    transition: 0.35s all ease;
}
.service-tab-toggler:not(.active):hover {
    background: var(--text-light);
    color: var(--white);
}
.service-tab-toggler.active {
    background: var(--theme-color);
    color: var(--white);
}
.service-tabs-contents {
    margin-top: 25px;
}
.service-tab-content {
    display: none;
}
.service-tab-content.active {
    display: block;
}
.services-page {
    line-height: 1.5;
}
.services-page ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.services-page ul li {
    position: relative;
    padding-left: 18px;
}
.services-page ul li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}
.service-tab-content ul li p {
    margin: 0;
}
.service-tab-content ul li p:nth-child(2) {
    margin-top: 5px;
}
.service-tab-content h3 {
    margin-top: 35px;
    color: var(--theme-color);
}
.services-list-wrap {
    margin-top: 30px;
}
.services-list {
    display: block;
    columns: 2;
}
.services-list-item {
    position: relative;
    padding-left: 18px;
    margin-bottom: 15px;
}
.services-list-item:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}
.services-list-more {
    gap: 10px;
    margin: 25px auto 0 auto;
    width: fit-content;
    color: var(--theme-color);
    font-weight: 700;
    border-bottom: 1px dashed var(--theme-color);
    cursor: pointer;
}
.services-list-more svg {
    width: 10px;
    height: 18px;
    transform: rotate(90deg);
}
.services-list-more svg path {
    fill: var(--theme-color);
}
.service-cta {
    margin-top: 30px;
    gap: 20px;
}
.form-fields {
    width: 100%;
    gap: 15px;
}
.form-fields .form-field {
    flex-basis: 0;
    flex-grow: 1;
}
.pros-row {
    flex-wrap: wrap;
    gap: 60px 40px;
    padding: 0 25px 0 0;
    margin-top: 60px;
    margin-bottom: 40px;
}
.pros-item {
    width: calc((100% - 40px) / 2);
    padding: 20px;
    border: 1.5px solid var(--theme-color);
    border-radius: 10px;
    box-shadow: 0px 6px 6px 2px rgba(0, 0, 0, 0.25);
}
.pros-item-num {    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    right: -25px;
    top: -25px;
    background: var(--theme-color);
    color: var(--white);
    padding-bottom: 5px;
}
.pros-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-color);
}
.pros-item-desc {
    font-size: 14px;
    margin-top: 10px;
}
.product-wrap {
    gap: 60px;
}
.product-gallery {
    position: relative;
    width: 40%;
    height: auto;
    flex-shrink: 0;
}
.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
    flex-grow: 1;
}
.product-info h1 {
    margin-bottom: 25px;
}
.product-chars {
    background: var(--bg-grey);
    padding: 10px;
    border-radius: var(--border-radius-small);
    margin-bottom: 25px;
    line-height: 1.5;
}
.product-chars:first-child {
    margin-top: 0;
}
.product-chars:last-child {
    margin-bottom: 0;
}
.product-prices {
    align-items: flex-end;
    gap: 20px;
    font-size: 24px;
    margin-bottom: 30px;
}
.product-prices .product-price {
    font-weight: 700;
}
.product-prices .old-price {
    text-decoration: line-through;
    font-size: 28px;
    color: var(--orange);
    font-weight: 700;
}
.product-info-actions {
    gap: 10px;
    margin-top: auto;
}
.ch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border: 2px solid var(--text-light);
    transition: 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}
.ch:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/icons/icon-check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-color: transparent;
    opacity: 0;
    transition: 0.3s ease;
}
.order-chk-item label > input:checked + .ch:before {
    opacity: 1;
}
.order-chk-item label > input:checked + .ch {
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.order-chk-item label > div {
    font-size: 17px;
}
.login-form .order-chk-item label > div {
    font-size: 14px;
}
.order-chk-item label > div > span a {
    color: var(--text-color);
}
.lk-nav-toggle {
    display: none;
}
.lk-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}
.lk-nav a {
    color: var(--text-color);
}
.lk-nav a.active {
    font-weight: 700;
}
.profile-form {
    flex-direction: column;
    gap: 10px;
    width: 600px;
    max-width: 100%;
}
.reg-field {
    text-align: left;
}
.reg-field > label {
    display: block;
    margin-bottom: 5px;
}
.profile-passwords {
    display: none;
}
.cart-wrap {
    align-items: flex-start;
    gap: 40px;
}
.cart-products {
    flex-grow: 1;
}
.cart-product {
    position: relative;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--placeholder-color);
}
.cart-product:last-child {
    margin-bottom: 0;
}
.cart-product-left {
    flex-grow: 1;
    align-items: flex-start;
    gap: 20px;
}
.cart-product-image {
    width: 120px;
    height: 170px;
    flex-shrink: 0;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.cart-product-body {
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-grow: 1;
}
.cart-product-info {
    flex-direction: column;
    gap: 7px;
}
.cart-product-info > a {
    font-size: 20px;
    text-decoration: none;
    color: var(--text-color);
}
.qty-wrap {
    background: var(--bg-grey);
}
.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.qty-field {
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    width: 60px;
    padding: 0;
    margin: 0;
}
.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-field {
  -moz-appearance: textfield;
}
.cart-product-right {
    flex-basis: 20%;
    flex-shrink: 0;
    gap: 20px;
    justify-content: space-between;
}
.cart-product-cost {
    font-size: 20px;
}
.cart-product-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cart-product-actions .product-fav {
    position: static;
    cursor: pointer;
}
.cart-product-remove {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    display: block;
    cursor: pointer;
}
.cart-info {
    width: 350px;
    flex-shrink: 0;
    background: var(--bg-grey);
    padding-top: 10px;
    border-radius: var(--border-radius-small);
}
.cart-info-inner {
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 16px;
}
.cart-info-inner:first-child {
    border-bottom: 1px solid var(--text-light);
}
.cart-total-cost {
    font-size: 26px;
}
.cart-info > .btn {
    margin: 10px 15px;
    font-size: 16px;
}
.order-wrap {
    gap: 20px;
}
.order-fields, .order-cart {
    flex-basis: 0;
    flex-grow: 1;
}
.order-fields-row:not(:last-child) {
    margin-bottom: 15px;
}
.order-field-block:not(:last-child) {
    margin-bottom: 15px;
}
.order-field-block label {
    display: block;
    margin-bottom: 5px;
}
.order-fields-row__title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
#msOrder .order-field-block .required-star {
    display: inline;
}
.radio-label {
    position: relative;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    /* border: 1px solid #fff; */
    cursor: pointer;
    transition: 0.3s ease;
}
.radio-label > input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.radio-wrap {
    align-items: center;
    gap: 10px;
}
.rd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--bg-grey);
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.rd:before {
    content: '';
    display: block;    
    width: 6px;
    height: 6px;
    background: var(--bg-grey);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s ease;
}
.radio-label > input:checked + .radio-wrap .rd {
    background: var(--theme-color);
}
.radio-label > input:checked + .radio-wrap .rd:before {
    opacity: 1;
}
.delivery-info {
    font-size: 18px;
}
.delivery-info .delivery-desc {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}
.delivery-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    margin-left: auto;
}
.order-chk-item label > div > span {
    font-size: 13px;
    color: var(--text-light);
}
.order-cart-toggle {
    display: none;
}
.order-cart {
    border-left: 1px solid var(--text-light);
    padding: 0 20px;
}
.order-product {
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}
.order-product:last-child {
    margin-bottom: 0;
}
.order-product-image {
    width: 80px;
    height: 100px;
    overflow: hidden;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--text-light);
    flex-shrink: 0;
}
.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.order-product-total {
    flex-shrink: 0;
    margin-left: auto;
}
.order-product-total b {
    font-size: 18px;
}
.order-total-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--text-light);
    border-bottom: 1px solid var(--text-light);
    margin: 30px 0 15px 0;
    padding: 15px 0;
}
.order-total-item {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.order-total-item b {
    font-size: 16px;
}
.order-total-item.item-last {
    font-size: 18px;
}
.order-total-item.item-last b {
    font-size: 24px;
}
.order-fields-row.hidden {
    display: none;
}
.search-results {
    flex-wrap: wrap;
    gap: 25px;
}
.auth-toggler {
    font-size: 15px;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 20px;
    cursor: pointer;
}
.auth-modal {
    position: relative;
    width: 400px;
    max-width: 100%;
    margin: 30px auto;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-small);
}
.auth-modal h3 {
    font-weight: 400;
    text-align: center;
}
.modal-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.auth-modal a {
    color: var(--text-color);
    text-align: center;
    display: block;
}
.contacts-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: 0.4s all ease-in-out;
    z-index: 9;
}
.contacts-fixed.opened {
    bottom: 70px;
}
.contacts-fixed-toggler {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(250, 85, 63, 0);
    cursor: pointer;
    animation: 2s infinite pulse;
    z-index: 3;
}
.contacts-fixed-toggler svg {
    width: 28px;
}
.contacts-fixed-toggler svg:last-child {
    display: none;
}
.contacts-fixed-toggler svg path {
    stroke: var(--white);
}
.contacts-fixed.opened .contacts-fixed-toggler {
    background: var(--red);
}
.contacts-fixed.opened .contacts-fixed-toggler svg:first-child {
    display: none;
}
.contacts-fixed.opened .contacts-fixed-toggler svg:last-child {
    display: block;
}
.contacts-fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(250, 85, 63, 0);
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s all ease-in-out;
    animation: 2s infinite pulse;
}
.contacts-fixed-btn svg {
    width: 28px;
    fill: var(--white);
}
.contacts-fixed.opened .contacts-fixed-btn {
    opacity: 1;
}
.contacts-fixed.opened .contacts-fixed-call {
    top: -60px;
    right: 0;
}
.contacts-fixed.opened .contacts-fixed-max {
    top: -30px;
    left: -60px;
}
.contacts-fixed.opened .contacts-fixed-tg {
    top: 30px;
    left: -60px;
}
.contacts-fixed.opened .contacts-fixed-vk {
    top: 60px;
    right: 0;
}
.callback-modal {
    position: relative;
    width: 600px;
    max-width: 100%;
    margin: 30px auto;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-small);
}
.callback-modal h3 {
    text-align: center;
}
.callback-modal .callback-form > p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}
.cart-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.burger-btn {
    display: none;
}
.mobnav-wrap {
    display: none;
}
.not-found {
    gap: 10px;
}
.not-found > img {
    width: 250px;
    max-width: 100%;
}
.not-found h3 {
    color: var(--theme-color);
    text-align: center;
    font-size: 24px;
}
.lk-title {
    text-align: center;
}
.grecaptcha-badge {
    display: none !important;
}
.single-service-image {
    width: 500px;
    max-width: 100%;
    height: auto;
    float: none;
    margin: 0 0 25px 0;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
.single-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.single-service-page ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.single-service-page ul li {
    position: relative;
    padding-left: 18px;
}
.single-service-page ul li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}
.single-service-page ul li p {
    margin: 0;
}
.single-service-page ul li p:nth-child(2) {
    margin-top: 5px;
}
.single-service-page h3 {
    margin-top: 35px;
    color: var(--theme-color);
}
.service-page-content {
    padding-bottom: 0 !important;
}
.services-row {
    gap: 25px;
    flex-wrap: wrap;
}
.service-item {
    width: calc((100% - 50px) / 3);
    height: 350px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: 0.35s all ease;
}
.service-item:hover {
    box-shadow: none;
}
.service-item-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s all ease;
}
.service-item:hover .service-item-image {
    transform: scale(1.2);
}
.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}
.service-item-image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}
.service-item-info {
    padding: 25px;
    z-index: 2;
    color: var(--white);
}
.service-item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-item-more {
    border-bottom: 1px dashed var(--white);
    display: inline-block;
}
.ajax_form .error {
    color: brown;
    font-size: 12px;
}
.reviews-empty {
    background: var(--bg-grey);
    padding: 10px;
    display: inline-block;
    border-radius: var(--border-radius-small);
}
.product-reviews-form {
    width: 550px;
    max-width: 100%;
    margin-top: 30px;
    background: var(--bg-grey);
    padding: 20px;
    border-radius: var(--border-radius-small);
}
.review-form {
    gap: 15px;
}
.review-form .form-footer {
    text-align: center;
}
.review-form-stars {
    flex-direction: row-reverse;
    margin: 0 -2px 24px;
    width: fit-content;
}
.review-form-stars > li {
    width: 16px;
    height: 16px;
    margin: 0 2px;
}
.review-form-stars > li a, 
.review-form-stars > li > span {
    display: block;
    line-height: 0;
}
.review-form-stars > li.scored a svg path,
.review-form-stars > li:hover a svg path,
.review-form-stars > li:hover ~ li a svg path {
    fill: var(--orange);
}
.rating-total-bg {
    position: absolute;
    margin: 0 !important;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    background: url(../images/icons/star.svg) left center repeat-x;
}
.review-item {
    background: var(--bg-grey);
    padding: 15px;
    border-radius: var(--border-radius-small);
}
.review-item:not(:last-child) {
    margin-bottom: 15px;
}
.review-item-text {
    margin: 15px 0;
    line-height: 1.5;
}
.review-item-text p:first-child,
.product-description p:first-child {
    margin-top: 0;
}
.review-item-text p:last-child,
.product-description p:last-child {
    margin-bottom: 0;
}
.review-item-bottom {
    gap: 25px;
    font-size: 14px;
}
.review-item-date {
    font-weight: 300;
}
.main-rows {
    flex-wrap: wrap;
    gap: 15px;
}
.dir-item {
    flex-basis: 0;
    flex-grow: 1;
    height: 350px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}
.dir-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
}
.dir-item-img {
    width: 100%;
    height: 100%;
}
.dir-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s all ease-in-out;
}
.dir-item:hover .dir-item-img img {
    transform: scale(1.2);
}
.dir-item-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}
.cases-btn-prev,
.cases-btn-next {
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.cases-btn-prev:after,
.cases-btn-next:after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.cases-slider {
    margin-top: 60px;
}
.case-item {
    width: 400px;
    color: inherit;
    text-decoration: none;
}
.case-item-img {
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius-small);
}
.case-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-item-info {
    padding-top: 15px;
    flex-grow: 1;
}
.case-item-title {
    font-weight: 700;
    color: var(--theme-color);
}
.case-item-desc {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin-bottom: 15px;
}
.case-btn {
    margin-top: auto;
    border-bottom: 1px dashed;
    font-size: 14px;
    cursor: pointer;
}
.case-btn:hover {
    color: var(--theme-lighter);
    border-color: var(--theme-lighter);
}
.section-cta2 {
    overflow: visible;
    padding-top: 150px !important;
}
.section-cta2 .cta-content {
    max-width: 60%;
}
.section-cta2 .cta-img {
    width: 550px;
    right: 8%;
    bottom: 10px;
    max-width: 30%;
}
h1.page-title {
    font-size: 60px;
}
.page-desc {
    padding-left: 80px;
    font-size: 18px;
    line-height: 1.5;
    padding-right: 20%;
}
.cats-wrap {
    margin-top: 70px;
    flex-wrap: wrap;
    gap: 30px;
}
.cat-item {
    width: calc((100% - 30px) / 2);
}
.cat-item-img {
    display: block;
    height: 550px;
    border-radius: var(--border-radius-big);
    overflow: hidden;
}
.cat-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all ease-in-out;
}
.cat-item-img:hover img {
    transform: scale(1.2);
}
.cat-item-title {
    font-size: 18px;
    text-align: center;
    display: block;
    padding-top: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}
.cat-item-title:hover {
    color: var(--theme-color);
}
.product-gallery > a {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-big);
    overflow: hidden;
}
.product-page {
    margin-top: 50px;
}
.products-slider-prev,
.products-slider-next {
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.products-slider-prev:after,
.products-slider-next:after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.faq-item {
    background: var(--bg-color);
    border-radius: var(--border-radius-small);
    transition: 0.35s all ease-in-out;
}
.faq-item:not(:last-child) {
    margin-bottom: 15px;
}
.faq-item.active {
    background: var(--white);
}
.faq-item-header {
    gap: 15px;
    padding: 15px;
    font-weight: 500;
    cursor: pointer;
}
.faq-item-header:after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background-image: url(../images/icons/plus.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--text-color);
    border-radius: 50%;
    transition: 0.35s all ease-in-out;
}
.faq-item.active .faq-item-header:after {
    background-image: url(../images/icons/minus.svg);
    transform: rotate(180deg);
}
.faq-item-body {
    display: none;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 1.5;
}
.patent-content {
    gap: 50px;
}
.patent-content .inner-page-text {
    flex-grow: 1;
}
.patent-content .inner-page-image {
    width: 350px;
    flex-shrink: 0;
}
.patent-slider-prev,
.patent-slider-next {
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}
.patent-slider-prev:after,
.patent-slider-next:after {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.case-info:not(:last-child) {
    margin-bottom: 20px;
}
.case-info-title {
    font-weight: 700;
    color: var(--theme-color);
    font-size: 20px;
}
.case-info-text {
    line-height: 1.5;
}
.case-actions-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    margin-top: 25px;
}
.case-actions-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}
.case-actions .btn {
    width: fit-content;
}
.pr-desc {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-small);
}
.solution-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-big);
    overflow: hidden;
    margin-bottom: 50px;
}
.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-text a {
    color: var(--theme-color);
}
.gallery-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px;
    gap: 5px;
    margin-top: 30px;
}
.gallery-item {
    border: 1px solid var(--placeholder-color);
    transition: 0.35s all ease;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s all ease;
}
.gallery-item:hover {
    border-color: var(--theme-lighter);
}
.gallery-item:hover img {
    transform: scale(1.15);
}
@media (max-width: 1360px) {
    .product-item {
        width: calc((100% - 50px) / 3);
    }
    .package-item {
        width: calc((100% - 30px) / 2);
    }
    .header-menu li {
        flex-basis: unset;
    }
    .section-cta2 {
        padding-top: 50px !important;
    }
}
@media (max-width: 1200px) {
    .hero-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
    .hero-slide-info {
        max-width: 70%;
    }
    .subscribe-wrap {
        gap: 30px;
        flex-direction: column;
        align-items: stretch;
    }
    .subscribe-text {
        width: 100%;
    }
    .main-packet-info {
        max-width: 100%;
    }
    .news-page {
        flex-wrap: wrap;
    }
    .news-page-right {
        width: 100%;
    }
    .news-right-title {
        width: 260px;
    }
    .service-item-title {
        font-size: 18px;
    }
    .dir-item {
        flex-basis: calc((100% - 15px) / 2);
    }
    .service-item {
        width: calc((100% - 25px) / 2);
    }
}
@media (max-width: 992px) {
    .header-mid-right {
        width: auto;
        margin-left: auto;
    }
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        font-size: 10px;
        gap: 10px;
        flex-shrink: 0;
    }
    .burger-btn svg {
        fill: var(--text-color);
    }
    .header-search-wrap {
        display: none;
    }
    .header-bottom {
        display: none;
    }
    .mobnav-wrap {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: var(--bg-color);
        padding: 15px;
        transform: translateX(-150%);
        transition: 0.5s ease-in-out;
        overflow-y: auto;
        z-index: 99;
    }
    .mobnav-wrap.shown {
        transform: translateX(0);
    }
    .mobnav-top {
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }
    .mobnav-top > .burger-btn {
        transform: rotate(45deg);
        line-height: 0;
    }
    .mobnav-search {
        margin: 10px 0;
    }
    .mobnav-search .header-search-form {
        padding: 0;
    }
    .mobnav-menu {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
    }
    .mobnav-menu > li:not(:last-child) {
        margin-bottom: 15px;
    }
    .mobnav-menu a {
        text-decoration: none;
        color: var(--text-color);
    }
    .mobnav-actions {
        margin-top: 15px;
        border-top: 1px solid var(--text-light);
        padding-top: 15px;
        gap: 30px;
    }
    .mobnav-contacts {
        margin-top: 15px;
        border-top: 1px solid var(--text-light);
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .mobnav-contacts a {
        color: var(--theme-color);
    }
    .footer-row {
        flex-wrap: wrap;
    }
    .footer-item {
        flex-basis: calc((100% - 30px) / 2);
        flex-grow: 1;
    }
    .catalog-wrapper {
        flex-wrap: wrap;
    }
    .catalog-filters-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 20px;
        background: var(--bg-color);
        overflow-y: auto;
        z-index: 1111;
        display: none;
    }
    .catalog-filters-wrap.shown {
        display: block;        
    }
    .catalog-filters-wrap-header .filter-toggle {
        display: block;
    }
    .catalog-actions {
        display: flex;
        justify-content: space-between;
    }
    .catalog-actions .filter-toggle {
        display: flex;
    }
    .cta-img {
        display: none;
    }
    .product-thumbs {
        display: none;
    }
    .product-images {
        margin-left: 0;
    }
    .swiper-pagination-bullet-active {
        background: var(--white) !important;
        box-shadow: 0 0 0 1px rgba(22,22,22,0.5);
    }    
    .cat-item-img {
        height: 350px;
    }
    .product-wrap {
        align-items: center;
        flex-direction: column;
    }
    .product-gallery {
        width: 100%;
        max-width: 550px;
        height: auto;
    }
    .product-discount {
        left: 5px;
    }
    .product-info {
        min-width: 100%;
    }
    .cart-wrap {
        align-items: stretch;
        flex-direction: column;
    }
    .cart-info {
        width: 100%;
    }
    .order-wrap {
        flex-direction: column;
    }
    .order-fields {
        order: 2;
    }
    .order-cart {
        display: none;
        border-left: none;
        padding: 0;
    }
    .order-cart-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 10px;
        background: var(--bg-color);
    }
    .order-cart-toggle > .flex {
        align-items: center;
        gap: 5px;
    }
    .mobile-order-total {
        font-weight: 700;
        font-size: 1.2em;
    }
    .order-cart-toggle .arr-icon {
        transition: 0.3s ease;
    }
    .order-cart-toggle.active .arr-icon {
        transform: rotate(180deg);
    }
    .main-packet-title {
        font-size: 20px;
    }    
    .section {
        padding: 50px 0;
    }
    .contacts-page {
        gap: 30px;
        flex-wrap: wrap;
    }
    .contacts-page-content {
        width: 100%;
    }
    .contacts-page-map {
        height: 350px;
    }
    .news-list .news-item {
        flex-basis: calc((100% - 30px) / 2);
    }
    .service-item {
        height: 270px;
    }
    .service-item-info {
        padding: 15px 10px;
    }
    .service-item-title {
        font-size: 14px;
    }
    .service-item-more {
        font-size: 12px;
    }
    .catalog-filters {
        padding-bottom: 60px;
    }
    .mobile-show-results {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-show-results span:empty {
        
    }
    .main-packets {
        gap: 15px;
    }
    .main-packet {
        width: calc((100% - 15px) / 2);
    }
    .section-cta2 .cta-content {
        max-width: 100%;
    }
    .hero-slide-info {
        max-width: 100%;
        padding: 25px 60px;
    }
    ul.header-mid-menu {
        display: none;
    }
    h1.page-title {
        font-size: 40px;
    }
    .patent-content {
        gap: 25px;
        flex-direction: column;
    }
    .patent-content .inner-page-image {
        width: 350px;
        max-width: 100%;
        order: -1;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .header-logo img {
        width: 80px;
    }
    header.sticky .header-logo img {
        width: 50px;
    }
    .header-slogan {
        font-size: 12px;
    }
    .hero-slide {
        position: relative;
        height: 460px;
    }
    .hero-slide-info {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 25px 50px;
    }
    .product-item {
        width: calc((100% - 25px) / 2);
    }
    .section-header {
        flex-direction: column;
    }
    .main-packets {
        flex-wrap: wrap;
    }
    .main-packets .main-packet {
        flex-basis: 100%;
    }
    .main-news {
        flex-wrap: wrap;
    }
    .main-news .news-item {
        flex-basis: 100%;
    }
    .subscribe-wrap {
        align-items: center;
        text-align: center;
    }
    .subscribe-text .section-title {
        font-size: 20px;
    }
    .subscribe-text .section-subtitle {
        font-size: inherit;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
    .lk-wrap {
        align-items: stretch;
        gap: 0;
        flex-direction: column;
    }
    .lk-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        background: var(--bg-grey);
    }
    .lk-nav-toggle svg {
        transition: 0.35s ease;
    }
    .lk-nav {
        display: none;
        background: var(--bg-grey);
        font-size: 14px;
        padding: 10px;
    }
    .lk-nav a {
        display: block;
        margin-bottom: 10px;
        text-decoration: none;
    }
    .lk-content {
        margin-top: 25px;
    }
    .header-actions .header-action:not(.burger-btn) {
        display: none;
    }
    .header-top {
        font-size: 12px;
    }
    .header-mid-left {
        gap: 10px;
    }
    .hero-slide-title {
        font-size: 20px;    
    }
    .product-item-prices {
        gap: 5px;
        flex-direction: column;
    }
    .article-page-image {
        width: 100%;
        height: 350px;
        float: none;
        margin: 0 0 25px 0;
    }
    .service-tab-toggler {
        font-size: 14px;
        padding: 10px;
        text-align: center;
    }
    .cta-content .section-title {
        font-size: 16px;
    }
    .cta-subtitle {
        font-size: 14px;
    }
    .package-item {
        width: 100%;
    }
    .cart-product {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 30px;
    }
    .cart-product-left {
        align-items: stretch;
    }
    .cart-product-image {
        width: 80px;
        height: 100%;
        max-height: 120px;
    }
    .cart-product-body {
        flex-direction: column;
    }
    .cart-product-info {
        gap: 2px;
        font-size: 12px;
        padding-right: 30px;
    }
    .cart-product-info > a, .cart-product-cost {
        font-size: 14px;
    }
    .cart-product-right {
        flex-basis: 100%;
        gap: 10px;
        align-items: center;
    }
    .cart-product-actions {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .order-product {
        gap: 20px;
        margin-bottom: 20px;
    }
    .order-product-total {
        white-space: nowrap;
    }
    .service-item {
        width: 100%;
    }
    .service-item-info {
        padding: 20px;
    }
    .service-item-title {
        font-size: inherit;
    }
    .product-reviews-form {
        width: 100%;
    }
    .login-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    .contacts-fixed {
        bottom: 100px;
    }
    .contacts-fixed.opened {
        bottom: 160px;
    }
    .hero-slide-text {
        font-size: 12px;
    }
}   
@media (max-width: 568px) {
    .dir-item {
        flex-basis: 100%;
    }
    .section-title {
        font-size: 20px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .news-list .news-item {
        flex-basis: 100%;
    }
    .pay-deliver-row {
        gap: 20px;
        flex-direction: column;
    }
    .pay-deliver-item {
        max-width: 100%;
    }
    .form-fields {
        flex-direction: column;
    }
    .pros-item {
        width: 100%;
    }
    .product-item {
        width: 100%;
    }
    .delivery-price {
        font-size: inherit;
        flex-shrink: 0;
    }
    .order-wrap button[type="submit"] {
        width: 100%;
        margin-top: 30px;
    }
    .article-page-top {
        flex-direction: column;
    }
    .not-found h3 {
        font-size: 18px;
    }
    .footer-item-title {
        margin-bottom: 10px;
    }
    .footer-menu {
        gap: 10px;
    }
    .footer-menu li {
        line-height: 1;
    }
    .footer-menu li a {
        font-size: 12px;
    }
    .footer-contacts {
        font-size: 12px;
    }
    .review-item-text,
    .product-description {
        font-size: 14px;
    }
}
@media (max-width: 400px) {
    .order-product-image {
        display: none;
    }

}