html,body,div,span,iframe,h1,h2,h3,h4,h5,h6,p,a,img,small,strike,strong,sub,sup,b,u,i,center,form,label,table,tbody,thead,tr,th,td,article,figure,footer,header,nav {
    margin:0;
    padding:0;
    border:0;
    vertical-align:baseline;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th,td {
    padding:2px;
}
article,nav,section {
    display:block
}
* {
    box-sizing:border-box
}
a {
    transition: .3s;
    color: #333;
}
header a {
    text-decoration: none;
}
#menu-top-menu a {
    text-decoration: none;
}
body {
    font-size: 16px;
    font-weight: 400;
    font-family: "OpenSans-Regular","Open Sans", Arial, sans-serif;
    line-height: 1.2;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100vh;
    --height-minus: 150px;
}
textarea {
    font-family: "OpenSans-Regular","Open Sans", Arial, sans-serif;
}
::placeholder {
    font-family: "OpenSans-Regular","Open Sans", Arial, sans-serif;
    line-height: 1.2;
    color: #333;
    font-size: 16px;
    font-weight: 400;
}
button {
    background-color: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}
button, input, textarea {
    outline: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}
h1 {
    display: block;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 400;
}
article {
    font-size: 16px;
}
footer p {
    margin-bottom: 5px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
#svg-sprite {
    display: none;
}
.page-header {
    position: sticky;
    top: var(--admin-top, 0);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(136, 136, 136, 0.1);
}
.page-main {
    flex-grow: 1;
    padding-bottom: 20px;
}
.container {
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}
.page-header-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 30px;
    height: 150px;
}
.page-header-middle__left {
    display: flex;
    height: 100%;
}
.page-header-middle__center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    height: 100%;
}
.page-header-middle__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    gap: 10px;
    height: 100%;
}
.page-header-middle__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.page-header-middle__title {
    color: var(--site-color);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
}
.page-header-middle__call {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-phones-top {
    font-weight: 600;
    text-align: right;
    font-size: 18px;
}
.header-phones-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
}
.header-phones-title svg {
    color: var(--site-color);
}
.page-header-middle__center .menu > ul {
    display: flex;
    gap: 20px;
}
.page-header-middle__center .menu > ul .page_item {
    font-size: 20px;
}
.logo-widget {
    display: flex;
    align-items: center;
}
.logo-widget  img {
    width: 130px;
    min-width: 130px;
    height: auto;
}
.phone-widget {
    display: flex;
    flex-direction: column;
}
.phone-widget a {
    margin-right: 5px;
    white-space: nowrap;
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], select, textarea {
    height: 45px;
    font-size: 16px;
    display: block;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #898989;
    border-radius: 10px;
    padding-left: 10px;
    outline: none;
}
textarea {
    padding-top: 12px;
    height: 120px;
    resize: none;
}
input[type="text"].error-field, input[type="email"].error-field, input[type="tel"].error-field, input[type="password"].error-field, select.error-field, textarea.error-field
{
    border-color: red;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-line {
    position: relative;
}
.error-text {
    font-size: 12px;
    color: red;
    transition: .1s;
    max-height: 0;
    overflow: hidden;
}
.error-text.show {
    max-height: 12px;
}
.form-error-text {
    font-size: 14px;
    color: red;
    transition: .1s;
    max-height: 0;
    overflow: hidden;
}
.form-error-text.show {
    max-height: 14px;
}
input[type="submit"], .button-style {
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--site-color);
    border: 1px solid var(--site-color);
    height: 40px;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
    gap: 10px;
    width: max-content;
}
input[type="submit"]:disabled {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}
.toggle-button-style {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .3s;
}
.toggle-hamburger {
    display: inline-block;
    line-height: 50px;
    min-width: 40px;
    min-height: 50px;
}
.toggle-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #212126;
    position: relative;
    margin: auto;
}
.toggle-hamburger span:after, .toggle-hamburger span:before {
    content: '';
    position: absolute;
    left: 0;
    top: -6px;
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: #212126;
}
.toggle-hamburger span:after, .toggle-hamburger span:before {
    transition: .3s all ease;
}
.toggle-hamburger span:after {
    top: 6px;
}
.toggle-hamburger.active span {
    background-color: transparent!important;
}
.toggle-hamburger.active span:after {
    top: 0;
    transform: rotate(-45deg);
}
.toggle-hamburger.active span:before {
    top: 0;
    transform: rotate(45deg);
}
.fixed-top {
    top: 71px;
}
.page-footer {
    background-color: #f7f7f9;
    padding: 15px 0;
    flex-shrink: 0;
    border-top: 1px solid #ddd;
}
.page-footer a {
    text-decoration: underline;
}
#copyright {
    text-align: center;
}
.page-footer-top {
    display: flex;
    padding-bottom: 10px;
    height: 200px;
    flex-wrap: wrap;
    background-image: url(images/footer.webp);
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.page-footer-bottom {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
ul.page-numbers li > .page-numbers {
    width: 30px;
    height: 30px;
    margin-right: 3px;
    font-size: 16px;
}
ul.page-numbers li > .page-numbers.current {
    background-color: #CC2A1D;
    color: #fff;
}
.modal-window {
    position: fixed;
    left: 0;
    top: var(--admin-top, 0);
    width: 100%;
    height: calc(100% - var(--admin-top, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
    padding: 10px;
    overflow-y: auto;
}
.modal-background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}
.modal-content {
    margin: auto;
    display: block;
    position: relative;
    z-index: 9100;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 0.3s ease;
}
.modal-content.image-gallery {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 0;
}
.modal-window.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}
.wp-block-lazyblock-image-gallery {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.gallery-item {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    padding: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s;
}
.no-touch .gallery-item:hover {
    opacity: .7;
}
.modal-content h2 {
    margin-bottom: 20px;
    text-align: center;
}
.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px;
    cursor: pointer;
    z-index: 2;
}
.modal-content.image-gallery .modal-close {
    color: #fff;
}
.modal-title {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
}
.modal-product-image {
    margin-bottom: 15px;
}
.modal-success {
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 0 20px 20px;
}
.modal-buttons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.modal-buttons > button {
    margin-bottom: 5px;
    margin-right: 5px;
}
.mobile-top-menu > li > a {
    display: flex;
    align-items: center;
    height: 35px;
    padding: 0 10px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: .3s;
    max-height: 35px;
    font-weight: 500;
    text-transform: uppercase;
}
.tabs_content > div {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    transition: opacity .3s ease, visibility .3s ease, height .3s ease;
    margin-bottom: 10px;
}
.tabs_content > div.active {
    opacity: 1;
    visibility: visible;
    max-height: none;
}
.tabs_block .tabs_panel {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.tabs_block .tabs_panel > div {
    padding: 10px 0;
    margin: 0 20px;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    cursor: pointer;
}
.tabs_block .tabs_panel > div.active {
    border-bottom: 3px solid #CC2A1D;
    font-weight: 600;
}
ul.page-numbers li > .page-numbers.next, ul.page-numbers li > .page-numbers.prev {
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 5px;
}
#gdpr-cookie-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    font-size: 18px;
    color: #fff;
    background: rgba(52, 52, 54, .6);
    padding: 20px;
    gap: 10px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
#gdpr-cookie-message.show {
    opacity: 1;
    visibility: visible;
}
#gdpr-cookie-message a {
    color: #CC2A1D;
}
.gdpr-cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.gdpr-cookie-buttons button {
    width: max-content;
}
.home-slider {
    height: 100%;
}
.home-slider .swiper {
    border-radius: 5px;
    height: 100%;
}
.home-partners img {
    display: block;
    margin: 0 auto;
}
.swiper {
    user-select: none;
}
.swiper-slide-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination {
    --swiper-pagination-bullet-inactive-color: #F6F6F6;
    --swiper-pagination-bullet-inactive-opacity: 1;
}
.swiper-button-prev, .swiper-button-next {
    border-radius: 50%;
    background-color: #F6F6F6;
    --swiper-navigation-color: var(--site-color);
    opacity: .7;
}
.swiper-button-next:after, .swiper-button-prev:after {
    content: none;
}
.swiper-button-prev svg, .swiper-button-next svg {
    width: 6px !important;
    height: 12px !important;
}
.swiper-slide-title {
    position: absolute;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, .7);
    top: 0;
    padding: 5px;
}
#menu-top-menu, #menu-top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#menu-top-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
}
#menu-top-menu > li {
    padding: 0 8px;
    position: relative;
    white-space: nowrap;
}
#menu-top-menu > li:last-child {
    padding-right: 0;
}
#menu-top-menu > li:first-child {
    padding-left: 0;
}
#menu-top-menu > li > a {
    position: relative;
    font-size: 18px;
}
#menu-top-menu > li > a:after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: -4px;
    background-color: var(--site-color);
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
#menu-top-menu > li.menu-item-has-children div.sub-menu {
    display: flex;
    padding: 20px 30px;
}
#menu-top-menu > li.menu-item-has-children.active-drop:after {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    top: 100%;
    left: 0;
}
#menu-top-menu > li.active-drop > a:after {
    width: calc(100% + 10px);
    opacity: 1;
}
ul.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
ul.dropdown-menu > li.menu-item-has-children > .dropdown-content {
    position: absolute;
    z-index: 10;
    background-color: #fff;
    transition: .5s;
    max-height: 0;
    overflow: hidden;
    left: 0;
    top: calc(100% + 5px);
    width: max-content;
    box-shadow: 7px 8px 20px rgba(51, 51, 51, .15);
    border-radius: 3px;
}
.word-break {
    word-break: break-word;
}
.form-check:last-of-type{
    margin-bottom:0;
}
.form-check input:checked + label:after{
    opacity: 1;
}
.form-check input + label:before{
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    border: 1px solid #B3B3B4;
    border-radius: 3px;
}
.form-check input + label:after{
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 4.92683L3.74576 8L10 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    width: 11px;
    height: 9px;
}
.form-check input + label{
    position: relative;
    padding-left: 24px;
    display: inline-block;
}
.form-check input{
    opacity: 0;
    position: absolute;
}
.form-button-block {
    display: flex;
    justify-content: center;
}
.no-touch #menu-top-menu > li > a:hover:after,
#menu-top-menu > li.current-menu-item > a:after,
.no-touch .tab:hover:after {
    width: calc(100% + 10px);
    opacity: 1;
}
.no-touch input[type="submit"]:hover,
.no-touch .button-style:hover {
    background-color: #999;
    border-color: #999;
    color: #fff;
}
.no-touch input[type="submit"]:disabled:hover {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}
.no-touch a:hover {
    color: #999;
}
.no-touch ul.page-numbers li > .page-numbers:hover {
    background-color: #CC2A1D;
    color: #fff;
}
@media (max-width: 1559px) {
    #menu-top-menu > li {
        padding: 0 4px;
    }
    #menu-top-menu > li > a {
        font-size: 16px;
    }
    .header-phones-title {
        font-size: 16px;
    }
    .header-phones-title svg {
        width: 20px;
    }
}
@media (max-width: 1359px) {
    #menu-top-menu > li > a {
        font-size: 14px;
    }
    .header-phones-title {
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    body {
        --height-minus: 124px;
    }
    .logo-widget  img {
        width: 100px;
        min-width: 100px;
    }
    .page-header-middle {
        gap: 10px;
        height: 124px;
    }
    #menu-top-menu {
        justify-content: flex-start;
    }
    .page-footer-top {
        width: 100%;
        height: auto;
        aspect-ratio: 9/2;
    }
}
@media (min-width: 767px) {
    .toggle-hamburger, .mobile-top-menu {
        display: none;
    }
    .page-header-middle__bottom .call-me-button, .page-header-middle__bottom .header-phones-title {
        display: none;
    }
}
@media (max-width: 766px) {
    body {
        --height-minus: 70px;
    }
    .page-header-middle {
        height: 70px;
        padding: 5px 0;
    }
    .logo-widget img {
        width: 60px;
        min-width: 60px;
    }
    .page-footer-item {
        padding-right: 0;
    }
    .toggle-window {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: 0.32s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
        background-color: #fff;
        box-shadow: 7px 8px 20px rgba(51,51,51,.15);
        z-index: 999;
    }
    .toggle-background {
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 998;
    }
    .phone-widget a {
        line-height: 20px;
    }
    #gdpr-cookie-message {
        flex-direction: column;
    }
    .page-header-middle__top {
        gap: 10px;
    }
    #header-top-menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 300px;
        height: calc(100% - var(--height-minus));
        top: var(--height-minus);
        padding: 10px;
    }
    #header-top-menu.active {
        transform: translateX(0);
    }
    #menu-top-menu {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    #menu-top-menu > li {
        width: 100%;
        white-space: normal;
        padding: 0;
    }
    #menu-top-menu > li > a {
        font-size: 16px;
        width: 100%;
    }
    ul.dropdown-menu > li.menu-item-has-children > .dropdown-content {
        position: relative;
        width: 100%;
        top: 5px;
    }
    #menu-top-menu > li.menu-item-has-children div.sub-menu {
        padding: 10px 15px;
    }
    ul.sub-menu {
        gap: 10px;
    }
    .page-header-middle__top .call-me-button {
        display: none;
    }
    .page-header-middle__title {
        font-size: 14px;
    }
}
@media (max-width: 349px) {
    .page-header-middle__title {
        display: none;
    }
    .page-header-middle__top {
        justify-content: flex-end;
    }
}