@viewport {
    user-zoom: fixed
}

* {
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    appearance: none
}

body,
html {
    position: relative;
    overflow-x: hidden !important
}

body {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #000000;
    font: 16px "Nunito Sans", sans-serif;
    line-height: normal;
    font-weight: normal;
    background: #FFFFFF;
}

:root {
    --motion: 1;
    --animation-duration-primary: 0.65s;
    --animation-duration-primary-fast: 0.5s;
    --animation-fast: 0.35s cubic-bezier(0.62, 0.05, 0.01, 0.99);
    --animation-primary: calc(var(--animation-duration-primary) * var(--motion)) cubic-bezier(0.62, 0.05, 0.01, 0.99);
    --animation-primary-fast: calc(var(--animation-duration-primary-fast) * var(--motion)) cubic-bezier(0.62, 0.05, 0.01, 0.99);
    --animation-bezier: cubic-bezier(0.62, 0.05, 0.01, 0.99);
    --animation-smooth: 1.47s cubic-bezier(0.62, 0.05, 0.01, 0.99);
    --stagger-primary: 0.07s;
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    transition: background-color 5000000s ease-in-out 0s !important
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    display: none
}

input[type=number] {
    -moz-appearance: textfield
}

:focus-visible {
    outline: 0
}

.container {
    max-width: 1920px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto
}

main {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    z-index: 0;
    flex: 1 0 auto
}

section {
    position: relative;
    padding: 45px 0;
    z-index: 0;
}

main > section:first-child:has(.breadcrumps) {
    padding-top: 21px;
}

a {
    color: #000000;
    text-decoration: none
}

img {
    user-select: none
}

button,
input {
    background-color: unset;
    border: 0
}

button {
    cursor: pointer
}

textarea {
    resize: none
}

.flex-col {
    flex-direction: column;
    align-items: center;
    height: 100%
}

.flex-col,
.flex-row,
.flex-wrap {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}

.h1,
h1,
.h2,
h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
}

.h3,
h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}

.h4,
h4 {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.h5,
h5 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
}

.h6,
h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}


.items {
    width: calc(100% + 25px);
    margin: 0 -12.5px -25px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.pagination {
    padding: 0 12.5px 25px;
    position: relative
}

.col-1 > *,
.col-2 > *,
.col-3 > *,
.col-4 > *,
.col-5 > *,
.col-6 > * {
    width: 100%;
    height: 100%
}

.col-1 {
    width: 100%
}

.col-2 {
    width: 50%
}

.col-3 {
    width: 33.3%
}

.col-4 {
    width: 25%
}

.col-5 {
    width: 20%
}

.col-6 {
    width: 16.6%
}

/* Default */
.btn {
    background: #EC6726;
    padding: 15px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    line-height: 160%;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 15px;
    background: url(../img/btn-arrow.svg) center center / 100% 100% no-repeat;
}

.btn:hover,
input[type=submit]:hover + .btn {
    background: rgba(238, 81, 5, 1);
    transition: all .4s ease;
}

.form {
    text-align: left;
}

.form p {
    display: flex;
    flex-direction: column;
}

.form span,
.form input,
.form textarea,
.form label {
    width: 100%;
}

.form label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    height: fit-content;
}

.form input:not([type="submit"]),
.form textarea {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: auto;
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 14px 0;
    background: transparent;
    transition: all .4s ease;
}

.form input:not([type="submit"])::placeholder,
.form textarea::placeholder {
    color: #00000060;
    transition: all .4s ease;
}

.form input:not([type="submit"]):hover::placeholder,
.form textarea:hover::placeholder {
    color: #000;
    transition: all .4s ease;
}

.form textarea {
    height: 101px;
}

.form input[type="submit"] {
    cursor: pointer;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.wpcf7-spinner {
    max-width: 23px;
    min-width: 23px;
    height: 23px;
    position: absolute;
    right: 0;
    top: 40%;
    transform: translate(0, -50%);
}

.wpcf7-form-control-wrap.delete {
    opacity: 1 !important;
    z-index: 2 !important;
}

.wpcf7-form-control-wrap.delete::before,
.wpcf7-form-control-wrap.delete::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    background: red;
    width: 14px;
    height: 2px;
    z-index: 22;
}

.wpcf7-form-control-wrap.delete::after {
    transform: translate(0, -50%) rotate(-45deg);
}

.form .btn {
    min-height: 52px;
    width: fit-content;
    margin-left: auto;
}

.form p:has(.btn) {
    width: 40%;
}

.textCheck {
    width: 60%;
    justify-content: center;
}

.textCheck span {
    font-size: 14px;
    line-height: 1.6;
    height: fit-content;
}

.textCheck span a {
    color: #EC6726;
    text-decoration: underline;
}

p > span:has(.kv-file-error) {
    padding-bottom: 30px;
}

.kv-file-error {
    position: absolute;
    left: 0;
    bottom: -30px;
    font-size: 14px;
    color: red;
}

.wpcf7 form .wpcf7-response-output {
    border: none;
    margin: 0px 0 0 !important;
    padding: 0 !important;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #007C37;
}

.invalid .wpcf7-response-output {
    color: red !important;
}

.wpcf7-not-valid-tip {
    display: inline-block;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    margin-top: 5px;
}

.wpcf7-form-control-wrap > *:nth-child(n+3) {
    display: none !important;
}

.check input {
    max-width: 16px;
    min-width: 16px;
    height: 16px;
    width: 100%;
    border-radius: 4px !important;
    border: 1px solid #D4DFDF !important;
    padding: 0 !important;
    background: #fff;
}

.check input:checked {
    border: 1px solid #39B34C !important;
    background: url(../img/check.svg) center center / 10px 7px no-repeat, #39B34C;
}

.check .wpcf7-form-control-wrap {
    margin-bottom: -4px;
}

.check > span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    line-height: 150%;
}

.check a {
    color: #007C37;
    transition: all .4s ease;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.file {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 14px;
    cursor: pointer;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.file input,
.file .wpcf7-form-control-wrap {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100% !important;
    height: 100%;
    cursor: pointer;
}

.file .wpcf7-form-control-wrap {
    opacity: 1 !important;
}

.file input {
    width: calc(100% - 15px) !important;
}

.file b {
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 0.4);
}

.check a:hover {
    color: #39B34C;
    transition: all .4s ease;
}

.check .wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-list-item,
.wpcf7-form-control-wrap {
    width: fit-content !important;
    margin: 0;
}

.social {
    gap: 9px;
    align-items: center;
}

.social a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EC6726;
    transition: all .4s ease;
}

.social a:hover {
    background: #000;
    transition: all .4s ease;
}

.gprev,
.gnext {
    top: 48% !important;
}

.gprev {
    left: 10px !important;
}

.gnext {
    right: 10px !important;
}

.swiper-btns {
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 0px;
    right: 0;
    z-index: 10;
}

.swiper-btn {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 0;
    background: #000;
}

.swiper-btn::after {
    content: '';
    z-index: 1;
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url(../img/swiper-arrow.svg) center center / 14px 14px no-repeat;
}

.swiper-btn.swiper-prev::after {
    transform: rotate(180deg);
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 39px auto 0 !important;
    overflow: unset;
    position: relative !important;
    bottom: 0 !important;
    gap: 10px;
    width: fit-content !important;
}

.paginationn {
    position: relative;
    width: fit-content !important;
    margin: 0 auto;
}

.pagination-indicator {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 12;
    width: 14px;
    height: 14px;
    background: #EC6726;
    pointer-events: none;
    transition: transform 0.35s ease;
}

.swiper-pagination-bullet {
    border-radius: 0;
    opacity: 1 !important;
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 1;
    background: #fff;
    margin: 0 !important;
    overflow: unset;
    transition: all .4s ease;
}

.swiper-pagination-bullet::before,
.swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 16px;
    background: #DDDDDD;
    z-index: -2;
    transition: all .4s ease;
}

.swiper-pagination-bullet-prev::before {
    height: 26px !important;
    transition: all .4s ease;
}

.swiper-pagination-bullet-next::before {
    height: 22px !important;
    transition: all .4s ease;
}

.swiper-pagination-bullet-active::before {
    height: 30px !important;
    transition: all .4s ease;
}

/* Nav */
header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all .4s ease;
    background: #2A2C2F;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff36;
}

body:has(.section__hero) header {
    background: transparent;
}

header.fixed {
    transition: all .4s ease;
    background: #2A2C2F !important;
}

main:has(.section__hero) {
    margin-top: 0;
}

.nav {
    align-items: center;
    color: #fff;
}

.logo,
.logo img {
    width: 158px;
    height: 50px;
    position: relative;
    transition: all .4s ease;
}

.logo img:nth-child(2) {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all .4s ease;
}

.nav .logo {
    margin-right: 41px;
}

.lang {
    margin-left: 36px;
    position: relative;
    z-index: 0;
}

.lang span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}

.lang span::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 6px;
    transition: all .4s ease;
    background: url(../img/arrow-down.svg) center center / 100% 100% no-repeat;
}

.lang.active span::after {
    transform: rotate(180deg);
    transition: all .4s ease;
}

.lang ul {
    background: #fff;
    border-radius: 5px;
    padding: 6px 8px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    list-style: none;
    position: absolute;
    top: calc(100% + 11px);
    left: -6px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.lang.active ul {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.tel {
    margin-left: auto;
    font-size: 18px;
    margin-right: 35px;
    color: #fff;
    font-weight: 500;
    transition: all .4s ease;
}

.tel:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.nav__menu > *:not(.nav__list) {
    display: none;
}

.lang__item {
    color: #6B6B6B;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    text-transform: uppercase;
}

.nav__list {
    align-items: center;
    gap: 2px;
}

.nav__list ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__list ul li {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.nav .btn {
    padding: 9px 15px;
    font-size: 16px;
}

.nav__list a,
.nav__list span {
    font-size: 17px;
    padding: 8px 14px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.nav__list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.nav__list span::after,
.nav__list span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url(../img/+.svg) center center / 100% 100% no-repeat;
    transition: all .4s ease;
}

.dropdown ul li {
    width: 100%;
}

.dropdown ul:nth-child(2) li {
    width: 50%;
}

.dropdown ul:nth-child(3) li {
    width: 33.3%;
}

.dropdown ul:nth-child(4) li {
    width: 25%;
}

.dropdown ul li a {
    width: 100%;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #000000;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    padding: 24px;
    position: relative;
    z-index: 0;
    background: #fff;
    transition: all .4s ease;
}

.dropdown ul li a::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 24px;
    width: 30px;
    height: 30px;
    transition: all .4s ease;
    background: url(../img/btn-arrow.svg) center center / 14px 14px no-repeat, #000000;
}

.dropdown ul li a:hover {
    color: #fff;
    transition: all .4s ease;
}

.dropdown ul li a:hover::after {
    filter: invert(1);
    transition: all .4s ease;
}

.burger {
    max-width: 29px;
    min-width: 29px;
    width: 100%;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    display: none;
    margin-right: 25px;
}

.burger::after,
.burger::before,
.burger span {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #fff;
    transition: all .4s ease;
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
    width: 50%;
}

.burger span {
    top: 50%;
    transform: translate(0, -50%)
}

.menu-active .burger::after,
.menu-active .burger::before,
.menu-active .burger span {
    transition: all .4s ease;
    top: 50%;
    left: 50%;
    width: 100%;
    bottom: auto;
    right: auto;
    bottom: auto;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #00000099;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.menu-active::before {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.menu-active .burger::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-active .burger::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-active .burger span {
    transform: translate(-50%, -50%) scaleX(0);
}

/* Footer */
footer {
    padding: 30px;
    background: #2A2C2F;
}

.footer {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.footer {
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
    background: #fff;
}

.footer__contact {
    max-width: 770px;
    width: 100%;
}

.footer__contact > div {
    width: 100%;
}

.footer__title {
    font-weight: 700;
    font-family: "Inter", sans-serif;
    margin-bottom: 25px;
}

.footer__contact-items {
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 30px;
    margin-bottom: 30px;
}

.footer__contact-items p {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    width: calc(25% - 15px);
}

.footer__contact-items p a {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    display: inline-block;
    max-width: 170px;
    line-height: normal;
    transition: all .4s ease;
}

.footer__contact-items p a:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.footer__contact .btn {
    margin-right: 9px;
    margin-bottom: 9px;
    padding: 9px 15px;
    font-size: 16px;
    height: 40px;
}

.footer__contact .btn::after {
    content: none;
}

.footer__contact .footer__social {
    display: none;
}

.footer__menu {
    max-width: 386px;
    width: 100%;
    justify-content: space-between;
    padding-right: 40px;
}

.footer__menu > div {
    width: 134px;
}

.footer__menu > div:has(.footer__pol) {
    display: none;
}

.footer__menu ul li {
    margin-bottom: 8px;
}

.footer__social {
    width: 100% !important;
    margin-top: 25px;
}

.footer .logo {
    width: 100%;
    margin: 67px 0 24px;
}

.footer__pol {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: auto;
}

.footer__pol a {
    font-size: 14px;
    transition: all .4s ease;
}

.footer__pol a:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.footer ul {
    list-style: none;
}

.med {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #000000;
    opacity: 0.4;
    transition: all .4s ease;
    margin-right: 55px;
}

.med:hover {
    opacity: 1;
    transition: all .4s ease;
}

.footer > p {
    font-size: 14px;
    color: #000000;
    opacity: 0.4;
}

/* Modal */
.modal__container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #000000c4;
    overflow: auto;
    display: flex;
    padding: 50px 95px;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    margin: auto;
}

.close {
    width: 55px;
    height: 55px !important;
    top: 0px;
    right: -85px;
    position: absolute;
    z-index: 10;
    background: url(../img/close.svg) center center / 14px 14px no-repeat, transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    transition: all .4s ease;
}

.close:hover {
    filter: invert(1);
    border: 1px solid #000;
    background: url(../img/close.svg) center center / 14px 14px no-repeat, #000;
    transition: all .4s ease;
}

.modal {
    max-width: 1333px;
    width: 100%;
    gap: 30px;
    margin: auto;
    position: relative;
}

.modal:not(.flex-wrap) {
    max-width: 674px;
}

.modal:not(.flex-wrap) .modal__content {
    width: 100%;
}

.modal__info {
    max-width: 616px;
    width: 100%;
    background-color: #EC6726;
    position: relative;
    z-index: 0;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 40px;
    color: #fff;
    height: 100%;
}

.modal__info > img,
.modal__info-img {
    position: absolute;
    bottom: -1px;
    right: -1px;
    height: 103%;
    width: 200px;
    transform: none !important;
    z-index: -1;
}

.modal__info-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    position: absolute;
    right: 0;
    top: 0;
}

.modal__info a {
    color: #fff;
}

.modal__info p {
    max-width: 418px;
    width: 100%;
}

.modal__content {
    background: #fff;
    width: calc(100% - 646px);
    padding: 29px 40px;
}

.modal__content .h2 {
    margin-bottom: 46px;
    text-transform: uppercase;
}

/* Hero */
.section__hero {
    padding: 0 0 55px;
    border-bottom: 5px solid #EC6726;
    margin-bottom: 45px;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.glightbox-open {
    margin-right: 0 !important;
    overflow: auto !important;
}

.section__hero > video,
.section__hero > img,
.section__hero::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    object-fit: cover;
}

.section__hero > img {
    z-index: -4;
}

.section__hero > video {
    z-index: -1;
}

.section__hero::before {
    content: '';
    background: rgba(37, 37, 37, 0.6);
    z-index: -2;
}

.hero {
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.hero::before {
    content: '';
    width: calc(100% - 900px);
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: -1;
    animation: her 2s linear 0s both;
    transform: scaleX(0);
    transform-origin: right center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .1) 100%);
}

@keyframes her {
    to {
        transform: scaleX(1);
    }
}

.hero h1 {
    max-width: 874px;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
}

.hero h1 b {
    color: #EC6726;
}

.hero .btn {
    margin-right: 40px;
}

/* Kat */
.header .h2 {
    margin-bottom: 15px;
}

.header p {
    display: inline-flex;
    gap: 13px;
}

.header p::before {
    content: '';
    display: inline-block;
    min-width: 10px;
    max-width: 10px;
    height: 10px;
    width: 100%;
    background: #000;
    margin-top: 5px;
}

.kat {
    position: relative;
    z-index: 0;
}

.kat__items {
    margin-top: 65px !important;
}

.kat__item {
    background: #F2F2F2;
    padding: 30px;
    height: 508px;
    position: relative;
    z-index: 0;
    align-items: flex-end;
    justify-content: space-between;
}

.kat__item-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 540px;
    width: 100%;
    height: 105%;
    z-index: -1;
}

.kat__item:hover .kat__item-img img {
    transform: scale(1.05);
    transition: all .4s ease;
}

.kat__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform-origin: bottom;
    transition: all .4s ease;
}

.kat__item .btn {
    padding: 10px 20px;
}

.kat__item .h4 {
    text-transform: uppercase;
    height: 46px;
    display: inline-flex;
    align-items: center;
}

/* Kat */
.product_categories .kat__item {
    height: 441px;
    padding: 24px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    overflow: hidden;
}

.product_categories .kat__item .h4 {
    font-size: 28px !important;
    height: fit-content;
    margin-bottom: auto;
}

.product_categories .kat__item-img {
    height: 80%;
}

.product_categories .kat__item-img img {
    object-position: center bottom;
    transform: unset !important;
}

.product_categories .kat__item:hover .kat__item-img img {
    transform: scale(1.05) !important;
}

.product_categories .kat__item .btn {
    width: 100%;
}

.product_categories .kat__items {
    margin-top: 35px !important;
}

/* Contact */
.contact {
    max-width: 1920px;
    margin-bottom: 45px;
    position: relative;
    z-index: 0;
}

.contact .modal__content {
    background: #2A2C2F;
    color: #fff;
}

.contact .modal__content input,
.contact .modal__content textarea {
    color: #fff;
    border-bottom: 1px solid #A4A4A4;
}

.contact .modal__content input:not([type="submit"]):hover::placeholder,
.contact .modal__content textarea:hover::placeholder {
    color: #fff;
    transition: all .4s ease;
}

.contact .modal__content label {
    color: #fff;
}

.contact .modal__content input::placeholder,
.contact .modal__content textarea::placeholder {
    color: #ffffff5f;
}

.modal__info::before,
.modal__info::after {
    content: unset;
    width: 14px;
    height: 14px;
    background: url(../img/+.svg) center center / 100% 100% no-repeat;
    position: absolute;
    top: 54px;
    z-index: -2;
    transition: all 1s ease;
}

.modal__info:hover::before,
.modal__info:hover::after {
    transform: rotate(360deg);
    transition: all 1s ease;
}

.modal__info::before {
    left: 40px;
}

.modal__info::after {
    right: 40px;
}

/* Brig */
.section__feat,
.section__about {
    z-index: 1;
}

.brig {
    position: relative;
    z-index: 0;
}

.slider__track {
    display: flex;
    width: max-content;
    gap: 25px;
}

.brig__swiper {
    overflow: unset;
    margin-top: 44px;
}

.brig__swiper.swiper {
    display: none;
}

.brig__swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.brig__swiper .swiper-slide {
    width: 185px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
}

.brig__swiper .swiper-slide img {
    width: 100px;
    height: 120px;
    object-fit: contain;
}

main:has(.section__gal) .section__brig {
    background: #2A2C2F;
    color: #fff;
    padding: 90px 0;
    margin: 0 0 45px;
}

main:has(.section__brig) .section__prod {
    padding-bottom: 90px;
}

main:has(.section__gal) .section__brig .header p::before {
    background: #fff;
}

main:has(.section__gal) .section__brig .swiper-slide {
    background: #444547;
}

/* Seo */
.section__seo {
    padding: 90px 0;
    background: #2A2C2F;
}

.seo {
    position: relative;
    z-index: 0;
    color: #fff;
}

.seo::before,
.seo::after,
.seo .showMoreContent::before,
.seo .showMoreContent::after,
.section__about::before,
.section__about::after,
.section__about > div:last-child::before,
.section__about > div:last-child::after,
main:has(.section__gal) .section__brig::before,
main:has(.section__gal) .section__brig::after,
main:has(.section__gal) .section__brig .brig::before,
main:has(.section__gal) .section__brig .brig::after {
    content: '';
    width: 14px;
    height: 14px;
    z-index: -2;
    background: url(../img/dec+.svg) center center / 100% 100% no-repeat;
    position: absolute;
    top: -49px;
}

.section__about::before,
.section__about::after,
main:has(.section__gal) .section__brig::before,
main:has(.section__gal) .section__brig::after {
    top: 30px;
}

.section__about > div:last-child::before,
.section__about > div:last-child::after,
main:has(.section__gal) .section__brig .brig::before,
main:has(.section__gal) .section__brig .brig::after {
    bottom: 30px;
    top: auto;
}

.seo .showMoreContent::before,
.seo .showMoreContent::after {
    top: auto;
    bottom: -49px;
}

.seo::after,
.seo .showMoreContent::after,
.section__about::after,
.section__about > div:last-child::after,
main:has(.section__gal) .section__brig .brig::after,
main:has(.section__gal) .section__brig::after {
    right: 30px;
}

.seo::before,
.seo .showMoreContent::before,
.section__about::before,
.section__about > div:last-child::before,
main:has(.section__gal) .section__brig .brig::before,
main:has(.section__gal) .section__brig::before {
    left: 30px;
}

.showMoreContent {
    color: #8B8C8E;
}

.showMoreContent p {
    margin-bottom: 20px;
}

.showMoreContent p:last-child {
    margin-bottom: 0;
}

.showMore {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin-top: 15px;
}

.showMore b {
    font-weight: 600 !important;
}

.showMore b:nth-child(3) {
    display: none;
}

.active .showMore b:nth-child(3) {
    display: block;
}

.active .showMore b:nth-child(2) {
    display: none;
}

.showMore img {
    transition: all .4s ease;
}

.active .showMore img {
    transform: rotate(90deg);
    transition: all .4s ease;
}

/* Blog */
.blog {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.blog .tab__header {
    border: none;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 44px 0 35px;
}

.blog .tab__items {
    margin-top: 0 !important;
}

.blog .tab__items.active {
    display: flex;
}

.blog .tab__header span,
.blog .tab__header a {
    padding: 8px 10px;
    width: fit-content !important;
    background: #fff;
    color: #000;
    transition: all .4s ease;
}

.blog .tab__header span.active,
.blog .tab__header span:hover,
.blog .tab__header a:hover,
.blog .tab__header a.is-active {
    background: #000;
    color: #fff;
    transition: all .4s ease;
}

.blog__items {
    margin-top: 38px !important;
}

.blog__item-img {
    width: 100%;
    height: 335px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .4s ease;
    margin-bottom: 18px;
}

.blog__item-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all .4s ease;
}

.blog__item-img:hover > img {
    transform: scale(1.1);
    transition: all .4s ease;
}

.blog__item-img span {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.blog__item-img::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 30px;
    background: url(../img/btn-arrow.svg) center center / 14px 14px no-repeat, #EC6726;
}

.blog__item-img::before {
    z-index: 2;
}

.blog__item-img::before,
.katalog__item::before,
.feat__item::after,
.prod__item::before,
.col-4 .soc__item::before,
.sfera__item::before {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #fff 50%, transparent 50%);
    position: absolute;
    bottom: -25px;
    right: -30px;
    transform: rotate(45deg);
    transition: all .4s ease;
}

.prod__item::before {
    background: #F1F1F1;
}

.katalog__item::before,
.prod__item::before,
.col-4 .soc__item::before,
.sfera__item::before {
    bottom: auto;
    top: -25px;
}

.blog__item:hover .blog__item-img::before,
.katalog__item:hover::before,
.feat__item:hover::after,
.sfera__item:hover::before {
    bottom: -60px;
    transition: all .4s ease;
}

.katalog__item:hover::before,
.prod__item:hover::before,
.col-4 .soc__item:hover::before,
.sfera__item:hover::before {
    bottom: auto;
    top: -60px;
    transition: all .4s ease;
}

.blog__item .h5 {
    margin-bottom: 12px;
    transition: all .4s ease;
}

.blog__item:hover .h5 {
    color: #EC6726;
    transition: all .4s ease;
}

.blog__item p {
    max-height: 44px;
    overflow: hidden;
    height: 100%;
}

/* Top */
main:has(.section__card) .section__top {
    padding-top: 0;
}

.section__top {
    z-index: 2;
    position: relative;
}

.top.flex-wrap {
    align-items: center;
    justify-content: space-between;
}

.top.flex-wrap .top__swiper {
    width: calc(100% + 25px);
}

.top__swiper,
.feat__swiper,
.gal__swiper {
    margin-top: 34px !important;
    padding-bottom: 12px;
}

.katalog__item,
.feat__item {
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 24px;
}

.katalog__item {
    /*display: grid;
    grid-template-rows: 1fr;*/
    display: flex;
    flex-direction: column;
}

.feat__item:hover {
    background: #E6E6E6;
    transition: all .4s ease;
}

.katalog__item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: auto 0 56px;
    transition: all .4s ease;
}

.katalog__item > span,
.card__swiper > span {
    padding: 5px 10px;
    background: #2A2C2F;
    color: #fff;
    font-size: 14px;
    width: fit-content;
    font-weight: 500;
    overflow: hidden;
    display: inline-block;
    height: fit-content;
    top: 0;
    left: 0;
    margin-bottom: 19px;
    z-index: 99;
}

.katalog__item > span.discount,
.card__swiper > span.discount {
    background: rgba(255, 49, 48, 1);
    position: absolute;
    width: fit-content;
    padding: 5px 20px 5px 10px;
    font-weight: 600;
}

.katalog__item > span.discount::before,
.card__swiper > span.discount::before {
    content: '';
    position: absolute;
    right: -13px;
    top: -13px;
    width: 28px;
    height: 25px;
    background: rgba(245, 245, 245, 1);
    transform: rotate(40deg);
    transition: all .4s ease;
}

.katalog__item:hover > span.discount::before {
    background: #E6E6E6;
    transition: all .4s ease;
}

.katalog__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.katalog__item:hover .katalog__item-img {
    transform: scale(1.05);
    transition: all .4s ease;
}

.katalog__item .h5 {
    margin-bottom: 12px;
}

.katalog__item p,
.katalog__item .price {
    margin-bottom: 25px;
}

.katalog__item .price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.katalog__item .price bdi {
    font-size: 16px;
}

.t-popup__close-icon {
    display: none;
}

.katalog__item .price ins {
    text-decoration: none;
}

.price:has(del) ins bdi {
    font-weight: 500;
    color: rgba(107, 107, 107, 1);
}

.price ins bdi {
    color: rgba(107, 107, 107, 1);
}

.price__sale bdi,
.low-stock bdi,
.katalog__item .price:has(del) del bdi,
.katalog__item .price:has(del) del {
    font-weight: 700;
    color: rgba(255, 49, 48, 1) !important;
}

.katalog__item .btn {
    width: 100%;
    margin-top: auto;
    padding: 10px 20px;
}

/* About */
.section__about {
    background: #2A2C2F;
    padding: 100px 0;
}

.about {
    justify-content: space-between;
    color: #fff;
    position: relative;
}

.about__content {
    padding: 173px 40px 40px;
    background: linear-gradient(0deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .15) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
    max-width: 700px;
    width: 100%;
}

.about__content .h2 {
    font-weight: 700;
}

.about__content .h2,
.about__content p {
    margin-bottom: 20px;
    display: inline-block;
}

.about__content .btn {
    margin-top: 10px;
}

.about__content .h4 {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 30px;
}

.about__num {
    align-items: center;
    max-width: 230px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    row-gap: 44px;
    column-gap: 25px;
    height: fit-content;
}

.about__num p {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.about__num p b {
    font-size: 70px;
    line-height: 1;
    font-weight: 800;
}

.about__text {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 410px;
    width: 100%;
    align-items: flex-start;
    height: fit-content;
}

.about__text::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background: #fff;
    margin-bottom: 12px;
}

.link {
    font-weight: 700;
    color: #EC6726;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.link::after,
.link::before {
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/btn-arrow.svg) center center / 100% 100% no-repeat;
    filter: brightness(0) saturate(100%) invert(50%) sepia(85%) saturate(2597%) hue-rotate(346deg) brightness(96%) contrast(92%);
}

.footer li a,
.footer__contact-items p a,
.modal__info a,
.pol a {
    position: relative;
    z-index: 0;
}

.footer__contact-items p a {
    width: fit-content;
}

.link::before,
.footer li a::before,
.footer__contact-items p a::before,
.modal__info a::before,
.pol a::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #EC6726;
    bottom: 0;
    left: 0;
    filter: unset;
    transition: background-color var(--animation-primary), transform var(--animation-primary);
    transform: scaleX(0) rotate(0.001deg);
    transform-origin: top right;
}

.pol a:hover::before {
    transform: scaleX(1) rotate(0.001deg);
}

.pol a {
    transition: all .4s ease .4s;
    text-decoration: none !important;
}

.link::before {
    width: calc(100% - 24px);
}

.modal__info a::before {
    background: #fff;
    bottom: 5px;
    height: 2px;
}

.link:hover::before,
.footer li a:hover::before,
.footer__contact-items p a:hover::before,
.modal__info a:hover::before,
.pol a:hover::before {
    transition: background-color var(--animation-primary), transform var(--animation-primary);
    transform: scaleX(1) rotate(0.001deg);
    transform-origin: bottom left;
}

.about__img {
    position: absolute;
    bottom: -100px;
    left: 55%;
    transform: translate(-50%, 0);
    width: 800px;
    height: 155%;
    z-index: -1;
}

.glightbox-clean .gslide-media {
    background: #fff;
}

.about__img::before,
.about__img::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%) scale(1);
    z-index: -1;
    width: 512px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: cir 2s linear infinite;
}

.about__img::after {
    width: 640px;
    animation-delay: 1.5s;
}

@keyframes cir {
    0% {
        transform: translate(-50%, -30%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -30%) scale(1.25);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -30%) scale(1.5);
        opacity: 0;
    }
}

.about__img > div {
    width: 100%;
    height: 100%;
}

.about__img img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    object-fit: contain;
}

.about__img img:nth-child(2) {
    display: none;
}

main:has(.section__sfera) .section__about {
    overflow: hidden !important;
}

main:has(.section__gal) .section__about .about__img {
    transform: translate(0);
    left: auto;
    right: 0;
    height: 200%;
}

main:has(.section__gal) .section__about .about__img img:nth-child(2) {
    display: block;
}

main:has(.section__gal) .section__about .about__img img:nth-child(1) {
    display: none;
}

/* Feat */
.section__feat {
    padding-top: 90px;
}

.gsapWork {
    will-change: transform;
}

.feat__items {
    gap: 20px;
    margin-top: 35px;
    width: calc(100vw - 80px);
    position: relative;
}

.feat__item {
    background: #F2F2F2;
    padding: 24px;
    position: relative;
    z-index: 0;
    height: fit-content;
    align-items: flex-start;
    min-width: 356px;
    max-width: 356px;
}

.feat__item img {
    content: '';
    width: 39px;
    object-fit: contain;
    height: 39px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.feat__item div {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 51px;
}

.feat__item div:nth-child(2) {
    margin-bottom: 0;
}

.feat__item p {
    margin-top: 4px;
    line-height: 1.4;
}

.feat__swiper {
    margin-top: 35px;
    display: none;
    position: relative;
    width: 100%;
}

/* Katalog */
section:has(.breadcrumps) {
    padding: 20px 0 92px;
}

.breadcrumps {
    width: 100%;
    margin-bottom: 62px;
}

.breadcrumps > span {
    width: 100%;
}

.breadcrumps > span,
.breadcrumps a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 15px;
    transition: all .4s ease;
}

.breadcrumps a:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.breadcrumps a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #000;
}

.breadcrumps span {
    cursor: default;
}

.breadcrumps span span:last-child {
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}

.katalog__btn {
    width: calc(50% - 5px);
    display: none;
}

.katalog__btn-search {
    background: #000;
    color: #fff;
}

.katalog__btn-search img {
    filter: invert(1);
}

.katalog__btn::after {
    content: unset;
}

.katalog {
    justify-content: space-between;
    align-items: center;
}

.katalog h1 {
    width: calc(100% - 363px);
}

.katalog__search {
    max-width: 363px;
    width: 100%;
    border-bottom: 1px solid #000;
    align-items: flex-start;
}

.katalog__search input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #000;
    padding-bottom: 11px;
}

.katalog__search input::placeholder {
    color: #00000090;
}

.katalog__aside,
.katalog__items {
    margin-top: 45px !important;
    margin-bottom: auto !important;
}

.katalog__aside {
    width: 300px;
}

.woocommerce-no-products-found,
.pagination,
.search__empty {
    order: 4;
    width: 100%;
}

.search__empty {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.woocommerce-no-products-found > div {
    background: transparent;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.katalog__aside .katalog__search {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 31px;
}

.katalog__aside .h3 {
    font-size: 22px !important;
    display: none;
    margin-bottom: 29px;
}

.katalog__aside-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 20px;
    cursor: pointer;
    background: url(../img/close.svg) center center / 100% 100% no-repeat;
    filter: invert(1);
    width: 22px;
    height: 22px;
}

.katalog__items {
    width: calc(100% - 330px);
}

.katalog__aside-item {
    margin-bottom: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid #f1f1f1;
}

.wpc-filter-selected-values,
.wpc-open-icon {
    display: none !important;
}

.katalog__aside-item .h5,
.wpc-wrap-icons {
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: all .4s ease;
}

.wpc-filter-title {
    margin-bottom: 0 !important;
}

.katalog__aside-item.active .h5,
.wpc-opened .wpc-filter-title {
    margin-bottom: 22px !important;
    transition: all .4s ease;
}

.katalog__aside-item .h5::before,
.katalog__aside-item .h5::after,
.wpc-wrap-icons::before,
.wpc-wrap-icons::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    background: #000;
}

.katalog__aside-item .h5::before,
.wpc-wrap-icons::before {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
}

.katalog__aside-item.active .h5::before,
.wpc-opened .wpc-wrap-icons::before {
    transform: translate(0, -50%) rotate(0deg);
}

.katalog__aside-block {
    align-items: flex-start;
    gap: 25px;
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.checkbox,
.wpc-checkbox-item .wpc-term-item-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    position: relative;
}

.checkbox input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.wpc-filters-main-wrap input[type=checkbox]:after {
    content: unset !important;
}

.wpc-filters-section:not(.wpc-filter-more-less):not(.wpc-filter-post_meta_num):not(.wpc-filter-tax_numeric):not(.wpc-filter-layout-dropdown):not(.wpc-filter-terms-count-0) .wpc-filter-content:not(.wpc-filter-has-hierarchy) ul.wpc-filters-ul-list {
    max-height: fit-content !important;
    padding: 0 !important;
    display: flex;
    gap: 25px;
    flex-direction: column;
}

body .wpc-filters-main-wrap li.wpc-term-item,
.wpc-filter-header .wpc-filter-title button {
    margin: 0 !important;
}

.checkbox::before,
.wpc-checkbox-item .wpc-term-item-content-wrapper input {
    content: '';
    display: inline-block;
    border-radius: 0 !important;
    min-width: 25px !important;
    max-width: 25px !important;
    width: 100% !important;
    height: 25px !important;
    border: 2px solid #000000 !important;
    background: url(../img/check.svg) center center / 12px 9px no-repeat, #fff !important;
    transition: all .4s ease;
    margin: 0 !important;
}

.checkbox:has(input:checked)::before,
.wpc-checkbox-item .wpc-term-item-content-wrapper input:checked {
    background: url(../img/check.svg) center center / 12px 9px no-repeat, #EC6726 !important;
    border: 2px solid #EC6726 !important;
}

.pagination {
    width: 100%;
    margin-top: 25px;
}

.wpc-filters-section {
    margin-bottom: 34px !important;
    padding-bottom: 34px !important;
    border-bottom: 1px solid rgba(241, 241, 241, 1);
}

.wpc-edit-filter-set {
    display: none;
}

.pagination ul,
.pagination nav,
.pagination > div {
    width: 100%;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 39px;
    list-style: none;
}

.pagination span,
.pagination a {
    font-size: 21px;
    font-weight: 600;
    color: #00000060;
    transition: all .4s ease;
}

.pagination .prev img {
    transform: rotate(180deg);
}

.pagination span,
.pagination a:hover {
    color: #000;
    transition: all .4s ease;
}

.katalog h1,
.katalog__search {
    order: 1;
}

body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
    color: #2A2C2F !important;
    border-color: #2A2C2F !important;
    padding: 6px 10px !important;
    border-radius: 0 !important;
    transition: all .4s ease;
}

body .wpc-filter-chips-list li.wpc-chip-reset-all a,
body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a:hover {
    padding: 6px 10px !important;
    border-radius: 0 !important;
    color: #EC6726 !important;
    border-color: #EC6726 !important;
    transition: all .4s ease;
}

body .wpc-filter-chips-list li.wpc-chip-reset-all a:hover {
    color: rgba(238, 81, 5, 1) !important;
    border-color: rgba(238, 81, 5, 1) !important;
    transition: all .4s ease;
}

body .wpc-filter-chips-list li a:hover .wpc-chip-remove-icon {
    color: rgba(238, 81, 5, 1) !important;
}

.wpc-filters-main-wrap .wpc-filters-widget-controls-container a,
.wpc-filters-main-wrap a.wpc-filters-reset-button,
.wpc-filters-main-wrap a.wpc-filters-submit-button {
    color: rgba(238, 81, 5, 1) !important;
    border-color: rgba(238, 81, 5, 1) !important;
}

body .wpc-filters-main-wrap .wpc-filters-widget-controls-container a.wpc-filters-apply-button,
body .wpc-filters-main-wrap a.wpc-filters-submit-button {
    color: #fff !important;
    background: rgba(238, 81, 5, 1) !important;
}

.wpc-custom-selected-terms {
    order: 2;
    margin-top: 24px;
}

.katalog__aside,
.katalog__items {
    order: 3;
}

/* Obsl */
.section__obsl {
    padding: 90px 0;
    background: #F1F1F1;
}

.obsl {
    align-items: center;
    justify-content: space-between;
}

.obsl .btn {
    padding: 15px 20px;
}

.obsl__items {
    margin-top: 35px !important;
}

.obsl__item {
    padding: 34px 24px;
    background: #2A2C2F;
    color: #fff;
    align-items: flex-start;
    position: relative;
    z-index: 0;
    height: 231px;
}

.obsl__item::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #EC6726;
}

.obsl__item .h6 {
    text-transform: uppercase;
    margin-bottom: auto;
}

.obsl__item a {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: "Inter", sans-serif;
    margin-bottom: 9px;
    transition: all .4s ease;
}

.obsl__item a:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.tab-wrapper {
    width: 100%;
}

/* Card */
.card {
    justify-content: space-between;
    align-items: flex-start;
}

.card__swiper {
    width: calc(100% - 700px);
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
    height: calc(100vh - 230px);
}

.card__swiper > div {
    height: 100%;
    display: block;
}

.mySwiper {
    width: 50px;
}

.card__swiper .swiper-slide,
.card__img {
    background: #F1F1F1;
    border: 1px solid #F1F1F1;
    transition: all .4s ease;
}

.card__img {
    width: 100%;
    height: auto;
}

.mySwiper .swiper-slide-thumb-active {
    border: 1px solid #000;
    transition: all .4s ease;
}

.mySwiper2 {
    width: calc(100% - 70px);
    height: 826px;
}

.card__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .4s ease;
}

.mySwiper .swiper-slide {
    aspect-ratio: 1 / 1;
    cursor: pointer;
    height: 46px;
    padding: 1px;
}

.mySwiper .swiper-slide:hover img {
    transform: scale(1.05);
    transition: all .4s ease;
}

.card__content {
    width: 645px;
}

.card__content h1 {
    margin-bottom: 7px;
}

.card__btns {
    margin: 32px 0 35px;
    width: 100%;
    gap: 11px;
}

.card__btns .btn {
    width: 100%;
}

/*.card__btns .btn {
    width: calc(50% - 5.5px);
}

.card__btns .btn:last-child {
    background: #000;
}*/

.tab__header {
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 21px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.card .tab__header {
    gap: 20px;
    justify-content: flex-start;
}

.card .tab__header:has(span:nth-child(n+4)) {
    justify-content: space-between;
    gap: 10px;
}

.tab__header span {
    font-size: 18px;
    font-weight: 600;
    color: #828282;
    transition: all .4s ease;
    cursor: pointer;
}

.tab__header span.active,
.tab__header span:hover {
    color: #000;
    transition: all .4s ease;
}

.tab__items {
    display: none;
    transition: all .4s ease;
}

.tab__items.active {
    display: block;
}

.card__content table {
    border-collapse: none;
    border-spacing: 0;
    width: 100%;
}

.card__content table th,
.card__content table td {
    border: 1px solid #F1F1F1;
    padding: 14px 15px;
    text-align: left;
}

.card__content table th {
    color: #fff;
    background: #2A2C2F;
}

.card__content table th:last-child,
.card__content table td:last-child {
    width: 276px;
}

@media (max-width: 992px) {

    .card__content table th:last-child,
    .card__content table td:last-child {
        width: 151px;
    }
}

@media (max-width: 480px) {

    .card__content table th:last-child,
    .card__content table td:last-child {
        width: 151px;
    }
}

.card__content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.card__content p b {
    line-height: 2;
    font-weight: 600 !important;
}

.card__content ul {
    margin-left: 20px;
    margin-top: -20px;
    margin-bottom: 20px;
}

/* Prod */
.section__prod {
    padding: 95px 0;
    margin-top: 45px;
    background: #F1F1F1;
}

.prod .h2 {
    margin-bottom: 30px;
}

.prod__item {
    position: relative;
    z-index: 0;
    background: #fff;
    padding: 24px;
    overflow: hidden;
    align-items: flex-start;
}

.prod__item > span {
    width: 121px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: #2A2C2F;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 50px;
}

.prod__item .h4 {
    margin-bottom: 11px;
}

.prod__item p {
    color: #6B6B6B;
    line-height: 1.4;
    margin-bottom: 34px;
}

.prod__item .btn {
    width: 100%;
    margin-top: auto;
}

/* Gal */
.gal__swiper .swiper-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.gal.flex-wrap {
    justify-content: space-between;
    align-items: flex-start;
}

.gal.flex-wrap .gal__swiper {
    width: 100%;
    margin-top: 0 !important;
}

.gal__content {
    max-width: 836px;
    width: 100%;
    margin-top: 5px;
}

.section__gal:has(.gal__content) {
    padding-bottom: 0 !important;
}

.gal__content h1 {
    margin-bottom: 24px;
}

.gal .about__num {
    margin-right: -30px;
    max-width: 650px;
    width: 100%;
    padding: 53px 30px 53px 60px;
    color: #fff;
    background: #2A2C2F;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    row-gap: 45px;
    position: relative;
    z-index: 0;
}

.gal .about__num p {
    width: fit-content !important;
}

.gal .about__num::before {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #2A2C2F;
    top: 0;
    left: 0;
    z-index: -1;
}

.gal__content p {
    font-size: 18px;
    color: #6B6B6B;
    margin-bottom: 14px;
}

.section__gal {
    padding-top: 0;
}

/* Service */
.service {
    position: relative;
    z-index: 0;
    align-items: flex-start;
    justify-content: space-between;
}

.service__block {
    width: calc(50% - 12.5px);
}

.service__content {
    padding: 24px;
    position: relative;
    height: calc(100vh - 190px);
    min-height: 772px;
    align-items: flex-start;
    justify-content: center;
    background: #F1F1F1;
}

.service__content.notstyled {
    min-height: fit-content;
    height: fit-content;
    padding: 7px 0 0;
    background: transparent;
}

.service__content.notstyled::before {
    content: unset;
}

.service__content > span {
    position: absolute;
    top: 24px;
    right: 24px;
}

.service__content.notstyled > span {
    top: 0;
    right: 0;
}

.service__content .btn {
    margin-top: 0;
    width: fit-content;
}

.service__content h1 {
    margin-bottom: 21px;
}

.service__content.notstyled h1 {
    min-height: 112px;
    width: calc(100% - 130px);
}

.service__content .soc__item {
    padding: 24px !important;
}

.service__content .soc__item p {
    font-size: 16px;
    margin-bottom: 5px !important;
}

.service__content .soc__item a {
    font-size: 30px;
    margin-top: 0 !important;
}

.service__block > img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 10px;
}

.service__content p {
    font-size: 18px;
    max-width: 717px;
    width: 100%;
}

.service:has(.service__item) .service__content p {
    max-width: 100%;
}

.service__img {
    max-width: calc(50% - 12.5px);
    width: calc(50% - 12.5px);
    height: auto;
    min-height: calc(100vh - 120px);
}

.service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service__text h2,
.service__text h3 {
    margin-top: 80px;
    font-weight: 800;
    margin-bottom: 28px;
    font-size: 40px !important;
}

.service__text p,
.service__text ul,
.service__text ol {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #6B6B6B;
    display: inline-block;
    width: 100%;
}

.service__text ul,
.service__text ol {
    margin-left: 20px;
}

.service__text p b {
    font-weight: 600;
    color: #000;
}

.service__text .btn {
    margin-top: 15px;
}

.service__item {
    background: #2A2C2F;
    color: #fff;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 40px;
    margin-top: 25px;
}

.service__item h2,
.service__item h3 {
    width: fit-content;
    margin: 0 !important;
}

.service__item-link {
    max-width: 312px;
    width: 100%;
    padding: 24px;
    align-items: flex-start;
    gap: 12px;
    background: #EC6726;
}

.service__item-link a {
    color: #fff;
    font-size: 28px;
    transition: all .4s ease;
}

.service__item-link a:hover {
    color: #2A2C2F;
    transition: all .4s ease;
}

.service__item p {
    color: #fff;
    margin-top: 90px;
    margin-bottom: 0 !important;
}

/* Soc */
.soc__items {
    margin-top: 35px;
}

.soc__item {
    overflow: hidden;
}

.soc__item {
    background: #F1F1F1;
    position: relative;
    z-index: 0;
    padding: 24px 29px;
    height: 208px;
    align-items: flex-start;
}

.soc__item p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: auto;
}

.service .soc__items {
    margin: 0 -5px -10px;
}

.service .soc__items > div {
    padding: 0 5px 10px;
}

.page-template-page-contact .soc__items > div:first-child .soc__item {
    background: #EC6726;
    color: #fff !important;
}

.page-template-page-contact .soc__items > div:first-child .soc__item a {
    color: #fff !important;
}

.soc__item a {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    transition: all .4s ease;
}

.soc__item a:hover {
    color: #EC6726;
    transition: all .4s ease;
}

.col-2 .soc__item {
    background: #2A2C2F;
    color: #fff;
    align-items: flex-start;
    padding: 40px;
    height: fit-content;
}

.col-1 .soc__item {
    height: fit-content;
}

.col-2 .soc__item .h3 {
    margin-top: auto;
    margin-bottom: 29px;
    font-size: 30px;
    text-transform: uppercase;
}

.col-2 .soc__item-social {
    gap: 11px;
}

.col-2 .soc__item-social a {
    width: 119px;
    height: 121px;
    background: #444547;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 17px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transition: all .4s ease;
}

.col-2 .soc__item-social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.6;
    transition: all .4s ease;
}

.col-2 .soc__item-social a:hover {
    background: #EC6726;
    color: #fff;
    transition: all .4s ease;
}

.col-2 .soc__item-social a:hover img {
    opacity: 1;
    transition: all .4s ease;
}

.col-2 .soc__item {
    padding-top: 128px;
}

.col-2 .soc__item::before {
    content: '';
    top: 24px;
    right: 24px;
    width: 30px;
    height: 30px;
    background: #EC6726;
    position: absolute;
}

/* Pol */
.pol {
    max-width: 938px;
    width: 100%;
    margin: 0 auto;
}

.pol h1 {
    margin-bottom: 38px;
    text-transform: none;
}

.pol h2,
.pol h3,
.pol h4,
.pol h5,
.pol h6 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    margin-top: 50px;
    margin-bottom: 42px;
}

.pol p {
    margin-bottom: 20px;
}

.pol p,
.pol li {
    font-size: 18px;
    line-height: 1.6;
    color: #6B6B6B;
}

.pol ul,
.pol ol {
    margin-left: 20px;
    margin-top: -20px;
}

.pol a {
    color: #EC6726;
    text-decoration: underline;
}

.section__pol .soc__items {
    margin-top: 70px;
}

.section__pol .soc__item::before {
    content: none;
}

/* Sfera */
.section__sfera {
    padding: 90px 0;
}

.sfera__items {
    margin-top: 35px !important;
}

.sfera__item {
    background: #2A2C2F;
    position: relative;
    padding: 24px;
    z-index: 0;
    height: 446px;
    align-items: flex-start;
    justify-content: flex-end;
    color: #fff;
    z-index: 2;
}

.sfera__items > div:nth-child(2n+2) .sfera__item {
    background: #F1F1F1;
    color: #000;
    z-index: 1;
}

.sfera__item::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 20px;
    height: 20px;
    background: #EC6726;
}

.sfera__item .h3 {
    font-size: 28px;
    margin-top: auto;
    font-weight: 700;
    max-width: 370px;
    width: 100%;
}

.sfera__item-img {
    position: absolute;
    bottom: 0;
    object-fit: contain;
    right: -30px;
    height: 105%;
    width: fit-content;
    z-index: -1;
}

 .sfera__items > div:nth-child(2) .sfera__item-img {
    right: 0px;
} 

.sfera__item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Vacancy */
.vacancy {
    align-items: center;
    justify-content: space-between;
}

.vacancy > .btn {
    display: none;
    margin-bottom: 26px;
}


.vacancy__item {
    width: 100%;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    padding: 53px 40px;
    background: #F1F1F1;
    gap: 20px;
}

.vacancy__item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #000;
}

.vacancy__item > div {
    width: 557px;
}

.vacancy__item .h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.vacancy__item > div p {
    font-size: 19px;
}

.vacancy__item > p {
    width: calc(100% - 950px);
    font-size: 18px;
    line-height: 1.6;
    color: #6B6B6B;
}

.vacancy__item .btn {
    padding: 15px 20px;
}

.vacancy .link {
    margin-top: 35px;
}

/* Job */
.job {
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 0;
}

.job__content {
    width: 990px;
    background: #F1F1F1;
    height: calc(100vh - 120px);
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    position: relative;
    will-change: transform;
}

.job__content h1 {
    margin-bottom: 21px;
    position: relative;
}

.job__content h1 span {
    left: calc(100% + 26px);
    position: absolute;
    top: -20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 8px 10px;
    background: #2A2C2F;
}

.job__content p {
    max-width: 826px;
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    color: #6B6B6B;
    margin-bottom: 20px;
    display: inline-block;
}

.job__content .btn {
    margin-top: 20px;
    padding: 15px 20px;
}

.job__text {
    width: calc(100% - 1050px);
    margin-top: -40px;
    margin-left: auto;
}

.job__text h2,
.job__text h3,
.job__text h4,
.job__text h5,
.job__text h6 {
    font-size: 24px !important;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 12px;
    margin-top: 40px;
}

.job__text p,
.job__text ul,
.job__text ol {
    margin-bottom: 20px;
    font-size: 18px;
    color: #6B6B6B;
    line-height: 1.6;
}

.job__text ul,
.job__text ol {
    margin-left: 20px;
}

.job__text > *:last-child {
    margin-bottom: 0;
}

/* Error */
@keyframes scroll-x {
    0% {
        transform: translateX(var(--scroll-start))
    }

    to {
        transform: translateX(var(--scroll-end))
    }
}

@keyframes scroll-xx {
    0% {
        transform: translateX(var(--scroll-end))
    }

    to {
        transform: translateX(var(--scroll-start))
    }
}

.anim-logo-wrap {
    display: block;
    width: 110%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    margin: 0-1%
}

.anim-logo-wrap_f {
    bottom: 97px;
    color: #E2E2E2;
    position: absolute;
    z-index: -1
}

:root {
    --gap: 60px;
    --duration: 30s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap))
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll-xx var(--duration) linear infinite
}

.anim-logo__item {
    font-size: 120px;
    font-weight: 300;
    padding-right: 60px;
}

.section__error {
    padding: 0 0 200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    position: relative;
    z-index: 0;
}

.error h1 {
    margin-bottom: 25px;
}

.error p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 41px;
    max-width: 584px;
    width: 100%;
}

/* Article */
.section__article {
    padding-bottom: 45px !important;
}

.article > img {
    width: 100%;
    aspect-ratio: 2.5 / 1;
    height: auto;
    position: relative;
    object-fit: cover;
    z-index: -2;
}

.blog_none_img {
    aspect-ratio: 3.2 / 1 !important;
    max-width: 800px !important;
    margin: 0 auto;
}

.article__container {
    margin-top: -224px;
    background: #fff;
    max-width: 950px;
    width: 100%;
    margin-right: 100px;
    margin-left: auto;
    position: relative;
    z-index: 0;
    padding: 30px 0 0;
}

section:has(.blog_none_img) .article__container {
    margin-top: 0 !important;
}

.article__container::before {
    content: '';
    position: absolute;
    width: 1500px;
    height: 226px;
    right: -39px;
    top: 0;
    background: #fff;
    z-index: -1;
}

#smooth-content {
    padding-bottom: 80px;
}

#smooth-content:has(.section__hero) {
    padding-bottom: 0px;
}

.article__container > .flex-row {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;
}

.article__container > .flex-row span {
    padding: 8px 10px;
    font-weight: 700;
    color: #fff;
    background: #2A2C2F;
    display: inline-block;
}

.article__container h1 {
    margin-bottom: 38px;
    text-transform: none;
}

.article__content {
    position: relative;
    padding-left: 110px;
}

.article__social {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    gap: 20px;
}

.social-item {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 70px;
    min-width: 70px;
    height: 70px;
    width: 100%;
    border: 1px solid #F1F1F1;
    text-align: center;
    position: relative;
    width: 70px;
    height: 70px;
}

div.heateor_sss_follow_ul a,
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
    margin: 0 !important;
}

.border-square {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.heateor_sss_sharing_ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heateor_sss_sharing_ul svg {
    transform: scale(.9);
}

.social-content {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
}

.article__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #2A2C2F;
    transition: all .4s ease;
}

.article__social a img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.article__social a:hover {
    background: #EC6726;
    transition: all .4s ease;
}

.article__text p,
.article__text li {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 34px;
}

.article__text li {
    margin-bottom: 25px;
}

.article__text ul,
.article__text ol {
    margin-left: 20px;
}

.article__text h2,
.article__text h3,
.article__text h4,
.article__text h5,
.article__text h6 {
    font-size: 30px !important;
    font-weight: 600;
    text-transform: none;
    margin: 64px 0 41px;
}

.article__text img {
    width: 100%;
    height: auto;
    margin: 60px 0;
}

.article__text > .flex-row {
    width: 100%;
    margin-top: 54px;
    align-items: center;
    justify-content: space-between;
}

.article__text > .flex-row p {
    color: #000;
    font-size: 16px;
}

.article__aside {
    width: 348px;
    height: fit-content;
}

.article__aside .h6 {
    font-weight: 800;
    margin-bottom: 28px;
    text-transform: uppercase;
    margin-top: 50px;
}

.article__aside a.flex-row {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.article__aside a.flex-row img {
    max-width: 60px;
    min-width: 60px;
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.article__aside a.flex-row:hover p {
    color: #EC6726;
    transition: all .4s ease;
}

.article__aside a.flex-row p {
    font-weight: 700;
    margin-bottom: 13px;
    transition: all .4s ease;
}

.article__aside a.flex-row span {
    font-size: 14px;
    color: #6B6B6B;
}

.article__aside .link {
    color: #000;
    width: 100%;
    margin-bottom: 15px;
}

.article__aside .link::after {
    filter: brightness(0) saturate(100%) invert(45%) sepia(0%) saturate(0%) hue-rotate(245deg) brightness(92%) contrast(95%);
}

/* Line */
.line {
    display: none;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 45px;
    overflow: unset;
}

.dot {
    fill: #EC6726;
    filter: drop-shadow(0 0 10px rgba(236, 103, 38, 1));
}

main:has(.section__hero) .line.home {
    top: calc(100vh + 45px);
    display: block;
}

main:has(.section__gal) .line.about {
    top: 850px;
    right: calc(100% - (1920px / 2) - 50%);
    display: block;
}

main:has(.section__soc) .line.cont {
    top: 45px;
    right: 0;
    display: block;
}

.card:has(.outofstock) .card-info {
    position: relative;
    bottom: 0;
}

/*
.card .tab__items table{
   width: 100%;
  border-spacing: unset;
}
.card .tab__items table td{
    color: #00423E;
}
.card .tab__items table tr:has(td:nth-child(2)) td{
    text-align: left;
}
.card .tab__items table tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}
.card .tab__items table tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
}
*/
.accordion {
    margin-top: 35px;
    justify-content: space-between;
    gap: 12px;
}

.accordion > div {
    width: calc(50% - 6px);
}

.accordion__item {
    background: #F1F1F1;
    overflow: hidden;
    transition: all .4s ease;
    margin-bottom: 12px;
}

.accordion__header {
    padding: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    gap: 20px;
    transition: all .4s ease;
}

.accordion__header span {
    display: inline-block;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    width: 100%;
    transition: all .4s ease;
    position: relative;
    background: #EC6726;
}

.accordion__header span::before,
.accordion__header span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    transition: all .4s ease;
}

.accordion__header span::before {
    width: 16px;
    height: 2px;
}

.accordion__header span::after {
    height: 16px;
    width: 2px;
}

.accordion__item.active .accordion__header span {
    transform: rotate(0) !important;
}

.accordion__item.active .accordion__header span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all .4s ease;
}

.accordion__content {
    padding: 0 30px;
    max-height: 0;
    transition: all .4s ease;
}

.accordion__item.active .accordion__content {
    padding: 0 30px 30px;
    margin-top: -15px;
    transition: all .4s ease;
}

.lwptoc {
    margin: 0 !important;
}

.lwptoc_toggle:after {
    content: unset !important;
}

.lwptoc_header {
    pointer-events: none;
}

.lwptoc_i {
    padding: 0 !important;
    width: 100%;
    background: transparent !important;
    color: #080808 !important;
}

.lwptoc_toggle:before {
    content: unset !important;
}

.lwptoc_toggle {
    width: fit-content !important;
    margin: 0 !important;
}

.lwptoc_header {
    position: relative;
    z-index: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px !important;
}

.lwptoc_toggle a {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.lwptoc_header {
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px;
}

.lwptoc_itemWrap,
LI.lwptoc_item {
    display: flex;
    flex-direction: column;
}

.lwptoc_item span::after {
    content: unset !important;
}

.lwptoc_item {
    line-height: normal;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 8px;
}

.lwptoc_item a {
    text-decoration: none;
    font-weight: 400;
    color: #080808 !important;
    font-size: 14px;
}

.lwptoc-notInherit .lwptoc_i DIV A {
    margin-bottom: 5px !important;
}

.lwptoc_itemWrap .lwptoc_itemWrap {
    margin: 0 !important;
    padding: 2px 0 0 12px;
    border-left: 1px solid #DDDDDD;
}

.lwptoc_itemWrap .lwptoc_item {
    margin-bottom: 0 !important;
}

.lwptoc_item a {
    text-decoration: none !important;
    border: none !important;
}

.lwptoc_itemWrap > .lwptoc_item {
    margin-bottom: 5px !important;
}

.lwptoc_itemWrap > .lwptoc_item:last-child {
    margin-bottom: 0 !important;
}