:root {
    --color-back: #fff;
    --color-a: #2B2B2B;
    --color-a-hover: #383838;
    --color: #2B2B2B;
    --blue: #003F85;
    --border: 2px solid #bdcff2;
    --gray: #F7F7F7;
    --menuhover: #999999;
    --swiper-navigation-color: #FF6600;
    --swiper-pagination-color: #f0f0f0;
    --font: "Bebas Neue", sans-serif;
    --pad: 3vw;
    --red: #FF5A24;
}

body {
    color: var(--color);
    background: var(--color-back);
    overflow-x: hidden;
    font-size: 1.125vw;
    font-family: 'Inter';
    margin-top: 3em;
}

body.main-page {
    margin-top: 3em;
}

*::-webkit-scrollbar {
    width: .5em;
    background: #f3f3f3;
}

*::-webkit-scrollbar {
    width: 1em;
}

*::-webkit-scrollbar-thumb {
    background: var(--color-a);
}

*:hover::-webkit-scrollbar-thumb {
    background: var(--color-a);
}

.row {
    --bs-gutter-x: 1em;
}

.container {
    padding: 0px 4em;
    width: 100%;
    max-width: unset;
}

.flex-container {
    --bs-gutter-x: 2.5rem;
    padding-left: 6vw;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
    max-width: unset;
    /* margin: 0 -15px; */
    margin-right: auto;
    margin-left: auto;
}

h1,h2,h3 {
    margin-bottom: 0.5em;
    line-height: 1em;
    font-family: var(--font);
}

h1,.h1 {
    font-weight: 600;
    line-height: 1em;
    font-size: 4em;
    font-family: var(--font);
    text-transform: uppercase;
    margin-bottom: 0em;
}

.h1 span {
     font-size: 0.5em; 
     font-weight: normal; 
     opacity: 0.7; 
     padding-left: 1em; 
}

h2 {
    font-size: 2em;
    text-transform: uppercase;
    font-family: var(--font);
    font-weight: bold;
    margin-bottom: 0.3em;
}
.h2{
        font-size: 2em;
    text-transform: uppercase;
    font-family: var(--font);
    font-weight: bold;
    margin-bottom: 0.3em;
}
.main-page h1 {
    color: #fff;
}

.main-page h2 {
    font-size: 3em;
}

h3 {
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font);
    margin: 1em 0;
}

h4 {
    font-size: 1.25em;
    font-weight: bold;
}

h5 {
    font-size: 1.25em;
    text-transform: initial;
}

h1+p {
    font-size: 2em;
    margin-bottom: 1.5em;
    color: var(--red);
}

ol {
    border-left: 1px solid var(--menuhover);
}

ol p {
    margin: 0;
}

.main-page .main-page-h2 {
    display: block;
    font-size: 5em;
    font-weight: 600;
    text-align: right;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    font-style: italic;
}

p.subtitle-h2 {
    text-align: right;
    font-size: 1.25em;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

section.main-about {
    background: var(--color-white);
    color: var(--color-black);
    position: relative;
}

section.main-about img {
    max-width: 27em;
    /* padding: 5em; */
    position: absolute;
    top: 15em;
    left: 0;
    /* z-index: 0; */
}

a {
    transition-duration: 0.2s;
    color: var(--color);
    text-decoration: none;
}

a:hover {
    color: var(--blue);
}

img,svg {
    width: 100%;
}

.content-img {
    display: flex;
    align-items: center;
    max-width: 20em;
}

.menu-left,.submenu {
    list-style: none;
    padding: 0;
    counter-reset: section;
}

.menu-left>li {
    position: relative;
    padding: 0em 0em 0em 2em;
    list-style: none;
}

.menu-left>li:before {
    position: absolute;
    content: '0'counter(section);
    font-size: 1.5em;
    line-height: 1em;
    opacity: 0.25;
    font-weight: bold;
    padding: 0.5em 0;
    top: 0;
    display: block;
    left: 0;
    counter-increment: section;
}

.menu-left >li a {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.75;
    font-size: 1.25em;
    padding: 0.5em;
}

.menu-left>li.active>a {
    background: #ffffff1a;
    opacity: 1;
}

.menu-left>li+.submenu {
    display: none;
    padding-bottom: 0em;
    padding-left: 3em;
}

.menu-left>li.active+.submenu {
    display: block;
}

.menu-left>li.active+.submenu li {
    padding: 0.2em 0.5em;
}

button {
    border: none;
    padding: 0;
    background: transparent;
    margin: 0;
}

button.sort {
    border: 1px solid var(--red);
    border-radius: 50px;
    padding: 0 1em 0 1em;
    /* display:flex; */
}

button.sort:after {
    content: '';
    background: url(/assets/img/arrow-sort.svg) no-repeat center / contain;
    aspect-ratio: 1;
    width: 0.9em;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
}

button.sort.button-sort-desc:after {
    transform: rotate(180deg);
}

#filter {
    display: none;
}

.hidden {
    display: none;
}

.rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.fancybox img {
    width: 100%;
}

.fixed-top {
    background: #fff;
    padding: 0 20px;
    position: sticky;
    z-index: 1039;
    top: 0;
}

header {
    position: fixed;
    width: 100%;
    /* padding: 0.5em 0; */
    top: 0;
    left: 0;
    z-index: 10;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #dddddd;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    /* padding: 5px 0px; */
}

.header-tel {
    display: none;
}

.title-item {
    display: block;
    opacity: 0.5;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    margin: 0.5em 0 0 0;
}

/* End Top Header */
/* Header */
/* End Header */
.top_wrapper {
    position: relative;
    /* padding-top: 61px; */
}

#consultation {
    background: url(/assets/img/form.jpg) no-repeat left top / contain;
}

/* Footer */
footer {
    position: relative;
    background: var(--color-a);
    border-radius: 40px 40px 0 0;
    color: #fff;
    padding: 1em 3em 0em 3em;
    margin-top: 16em;
    /* overflow: hidden; */
}

footer:before {
    content: 'ИП РОМАНОВ';
    position: absolute;
    top: -0.65em;
    font-size: 20em;
    color: var(--blue);
    font-family: var(--font);
    font-weight: bold;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    z-index: -1;
    line-height: 1em;
    opacity: 0.12;
}

footer a {
    color: #fff;
}

/* Footer */
.review {
    background: var(--white);
    padding: 50px;
    position: relative;
}

.review .rating {
    position: absolute;
    top: 50px;
    right: 50px;
}

.review .rating img {
    float: right;
    width: 23px;
    margin-left: 8px
}

.review h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.review .review_date {
    font-size: 12px;
}

.review a {
    font-size: 14px;
    display: none;
}

/* ------------------------------------------------------------------------------------------ */
.contact_form {
    background: var(--gray);
    padding: 1em 1em;
    color: var(--color-a);
}

.widjet .contact_form {
    position: absolute;
    left: 0;
    width: 100%;
}

.widjet {
    position: fixed;
    bottom: 0;
    right: 4em;
    z-index: 10;
}

footer:after {
    /* content: 'ARTI-NN'; */
    position: absolute;
    top: 1em;
    font-size: 8em;
    color: #ffffff0a;
    font-family: var(--font);
    font-weight: bold;
    right: 1rem;
    /* width: 100%; */
    height: auto;
    text-align: center;
    /* z-index: -1; */
    line-height: 1em;
}

.widjet .contact_form {
    /* position: absolute; */
    bottom: 0;
    display: none;
    opacity: 0;
    transition: 0.5s;
}

.widjet .contact_form.show-form {
    /* transform: translateY(0); */
    z-index: 10;
    opacity: 1;
    bottom: 4.5em;
    display: block;
}

.btn-chat {
    background: var(--blue);
    border-radius: 25px 25px 0 0;
    font-size: 0.8em;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    position: relative;
    box-shadow: 0 0 5px 5px #00000024;
}

.btn-chat>div>img {
    width: 2em;
}

.btn-chat>div {
    padding: 0 1.5em;
    align-items: center;
    font-size: 0.8em;
}

.btn-chat>div:hover {
    cursor: pointer;
}

.btn-chat>div>img.img-chat {
    height: 100%;
    width: auto;
    /* border-radius:50%; */
    /* aspect-ratio:1; */
    /* border:1px solid white; */
}

.form_radio_btn {
    display: inline-block;
    /* margin-right: 10px; */
    width: 33%;
}

.form_radio_btn input[type=radio] {
    display: none;
}

.form_radio_btn label {
    display: block;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    user-select: none;
    height: 100px;
    border: 1px solid #555;
    border-radius: 5px;
    text-align: center;
    min-width: 90px;
    color: #000;
}

.form_radio_btn label img {
    height: 100%;
}

.form_radio_btn label span {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    /* padding-top: 10px; */
    font-size: 2.8em;
    line-height: 1em;
}

/* Checked */
.form_radio_btn input[type=radio]:checked + label {
    background: #fff;
}

/* Hover */
.form_radio_btn label:hover {
    color: var(--color-a-hover);
}

/* Disabled */
.form_radio_btn input[type=radio]:disabled + label {
    opacity: 0.5;
}

.form-bg-gray:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #0000008a;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-map {
    position: relative;
    /* height: 30em; */
    /* margin-right: -6vw; */
}

.contact-map [class*=ymaps-2][class*="-ground-pane"] {
    -webkit-filter: grayscale(100%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

.case-item {
    transition: 0.2s;
    position: relative;
}

.case-item:hover {
    opacity: 0.8;
}

.case-item a {
    display: block;
    font-weight: bold;
}

.case-item-img {
    margin-bottom: 0.5em;
}

.case-item-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    aspect-ratio: 0.75;
}

.close_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    right: 70px;
    top: 100px;
}

.close_icon i {
    color: #fff;
    margin-top: 2px;
    margin-left: 6px;
    font-size: 40px;
}

.jGrowl {
    font-size: 14px!important;
    z-index: 999999!important;
}

.promo {
    padding: 2em 1em;
    height: 100%;
    /* border: 2px solid #03030378; */
    background: var(--color-a);
    display: flex;
    gap: 1em;
    align-items: center;
}

.promo >* {
    /* box-shadow: 0 0 20px 20px #00000052; */
    /* background: #00000057; */
    /* border-radius: 50%; */
    padding: 2em;
}

.promo >img {
    /* box-shadow: 0 0 20px 20px #0001e94d; */
    /* background: var(--color-a); */
    /* border-radius:50%; */
    padding: 1em;
}

.ico_small {
    width: 2em;
    /* padding: 4px; */
    margin: 0 0.2em;
    /* border: 2px solid var(--color-a); */
    /* border-radius: 50%; */
}

.ico_small:hover {
    /* transition:background 0.3s; */
    /* background:var(--color-a); */
}

.ico_big {
    width: auto;
    height: 6em;
    color: #fff;
    /* filter: invert(1); */
    opacity: 0.7;
    /* background: aquamarine; */
}

.contact-item .ico_big {
    width: auto;
    height: 40px;
    /* padding: 8px; */
    /* border: 0px solid var(--color-a); */
    /* border-radius: 50%; */
    margin-bottom: 0px;
}

.promo p {
    font-size: 0.9em;
    /* line-height: 1.5em; */
    margin: 0;
}

.breadcrumbs {
    padding: 0em 0 2em;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumbs li {
    list-style-type: none;
    display: inline-block;
}

.breadcrumbs li:has(a) {
    padding-right: 1em;
}

h1.h1-product {
    font-size: 2em;
}

.black {
    background: var(--color-a);
    color: #fff;
    padding: calc(var(--pad) * 2);
}

.gray {
    background: var(--gray);
    border-radius: 25px;
}

footer .gray {
    /* overflow: hidden; */
    /* padding-bottom: 6em; */
}

.round40 {
    border-radius: 40px;
    overflow: hidden;
}

.round30 {
    border-radius: 30px;
    overflow: hidden;
}

.round20 {
    border-radius: 20px;
    overflow: hidden;
}

.round25 {
    border-radius: 25px 25px 0 0;
    /* overflow: hidden; */
}

.round15 {
    border-radius: 15px;
    /* overflow: hidden; */
}

table {
    width: 100%;
    table-layout: fixed;
    background: #363636;
    color: #fff;
}

thead {
    background: #444;
    color: var(--red);
    font-size: 1.1em;
}

table td, table th {
    padding: 0.5em;
    border: 1px solid #5B5B5B;
}

.price-table table td, .price-table table th {
    padding: 0.5em;
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-family: 'Circe';
}

.price-table table th {
    background-color: var(--color-a);
    text-align: center;
    word-wrap: break-word;
}

.price-table table td {
    background: var(--color-back);
    border: 1px solid #ffffff5c;
}

.service_content_text td {
    padding: 0.25em 0.5em;
    font-size: 0.8em;
}

.service_content_text td:first-child {
    color: #898989;
    padding-left: 0;
}

table.contacts-table p {
    margin-bottom: 0.2em;
}

.table-over-x {
    overflow-x: auto;
}

/* Side Nav */
.side-menu {
    border-right: 1px solid #CFCFCF;
}

.side-menu label {
    display: block;
    font-size: 1.2em;
    padding: 0.25em 0;
}

.side-menu label:has(input:checked) {
    color: var(--blue);
    font-weight: bold;
}

.side-menu label input {
    display: none;
}

.white {
    position: relative;
    background: #fff;
    padding: calc(var(--pad) * 1);
    color: var(--color-a);
}

.white a {
    color: var(--color-back);
}

.blue {
    position: relative;
    background: var(--blue);
    color: #fff;
    padding: calc(var(--pad) *2 );
}

.blue a {
    color: #fff;
}

.blue .btn {
    background: var(--red);
    color: #fff;
}

.blue .btn:hover {
    background: #fff;
    ; color: var(--red)
}

section.gray {
    background: var(--gray);
    color: var(--color-a);
    margin-top: 6em;
    padding: calc(var(--pad) * 2) 0 0;
}

.gray a {
    color: var(--color-back);
}

.product_title {
    /* text-align: center; */
    margin-bottom: 1em;
    color: var(--color-back);
    font-size: 0.85em;
    text-transform: uppercase;
}

.product_desc {
    background: #fff;
    color: var(--color-back);
    padding: 1em 1em 2em 1em;
    height: 100%;
}

.product_item {
    border: 1px solid #898989;
    border-radius: 5px;
    height: 100%;
    overflow: hidden;
}

.product_item img {
    width: 100%;
}

.product_title > *,.product_title > *:hover {
    color: var(--color-back);
    /* font-size: 0.85em; */
    /* text-transform: uppercase; */
}

.price {
    color: var(--red);
    /* padding: 1em 0; */
    font-size: 2em;
    font-family: var(--font);
    line-height: 1.2em;
}

.last-product-item {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2em;
}

.last-product-item p {
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--color-a);
    font-family: var(--font);
    font-weight: bold;
}

.contact_form p.desc {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact_form span.label {
    text-transform: uppercase;
    padding: 0;
    text-shadow: none;
    font-weight: normal;
    color: #999999;
    background: none;
    font-size: 10px;
    width: 100%;
}

.contact_info p:first-child {
    margin-top: 0;
}

.contact_info p {
    margin-bottom: 0px;
    margin-top: 5px;
}

.contact_info p.address {
    margin-bottom: 30px;
}

.social_icons {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.form-header {
    /* color: var(--color-back); */
    font-size: 2em;
    font-weight: bold;
    /* margin-bottom: 1em; */
    font-family: var(--font);
}

.contact_form input, .contact_form select, .contact_form textarea,.standard-form textarea {
    font-size: 0.85em;
    cursor: pointer;
    outline: none;
    padding: 1em;
    border: none;
    border-radius: 15px;
    width: 100%;
    /* margin-bottom: 1em; */
    transition: .3s;
    border: 1px solid #B6B6B6;
}

.contact_form label:has(input[type="checkbox"]) {
    font-size: 0.7em;
    line-height: 1.2em;
}

.contact_form input[type=file] {
    /* top: 0; */
    /* left: 0; */
    /* opacity: 0; */
    width: 100%;
    /* height: 100%; */
    cursor: pointer;
    /* position: absolute; */
    -webkit-appearance: none;
    /* width: 0; */
    background: #fff;
}

.close-form {
    width: 2em;
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 2;
    transform: rotate(45deg);
    transition: 0.2s;
}

.close-form:hover {
    cursor: pointer;
    transform: rotate(135deg);
}

.contact_form label {
    display: flex;
    gap: 1rem;
    justify-content: start;
    /* color: #9d9d9d; */
    align-items: center;
}

.contact_form label a {
    color: inherit;
    display: inline-block;
}

.contact_form label input {
    width: fit-content;
}

label.radio input {
    display: none;
}

label.radio {
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 0.5em;
    font-size: 0.8em;
    gap: 5px;
}

label.radio:has(input:checked) {
    border-color: #D2D2D2;
}

label.radio:nth-child(1):before {
    content: "";
    width: 2em;
    aspect-ratio: 1;
    background: url(/assets/img/link1.svg) no-repeat center / contain;
}

label.radio:nth-child(2):before {
    content: "";
    width: 2em;
    aspect-ratio: 1;
    background: url(/assets/img/link2.svg) no-repeat center / contain;
}

label.radio:nth-child(3):before {
    content: "";
    width: 2em;
    aspect-ratio: 1;
    background: url(/assets/img/link3.svg) no-repeat center / contain;
}

.contact_form .button-warp p {
    /* font-size: 0.6em; */
    line-height: 1.2em;
    /* max-width: 220px; */
    margin: 0;
}

.contact_me {
    padding: 15px;
    border: 1px solid var(--gray);
    /* outline: 2px solid #63c4f2; */
    border-radius: 5px;
    /* background: var(--gray); */
    text-align: center;
}

.contact_me img {
    width: 50px;
}

.contact_me h5 {
    font-weight: bold;
    margin: 10px 0;
}

.contact_me p {
    text-transform: uppercase;
    font-size: 0.8em;
}

.btn-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-center > * {
    margin: 15px;
}

span.wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-list-item > label {
    display: flex;
}

.wpcf7-acceptance {
    font-size: 16px;
}

.wpcf7-acceptance {
    font-size: 0.8em;
    color: #9c9c9c;
}

.wpcf7-acceptance a {
    color: #323232;
    text-decoration: underline;
}

.wpcf7-acceptance a:hover {
    color: #038c52;
    text-decoration: none;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border: 1px solid #323232;
    border-radius: 3px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    vertical-align: text-top;
    margin-right: 5px;
    flex: 0 0 auto;
}

.wpcf7-acceptance input[type="checkbox"]:checked:before {
    content: '';
    width: 1em;
    height: 1em;
    background: var(--color-a);
    position: absolute;
    top: calc(50%-0.25em);
    left: calc(50% - 0.5em);
}

form {
    counter-reset: numm;
}

label:hover {
    cursor: pointer;
}

.form-check-label {
    border: 1px solid #dddddd;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    position: relative;
    align-items: center;
    display: flex;
    color: var(--color-back);
    flex-direction: column;
    border-radius: 5px;
}

.form-check-label:has(input:checked) {
    border: 1px solid var(--color-a);
}

.quiz_category-item {
    height: 100%;
}

.form-check-label img {
    padding: 2em;
    width: auto;
    height: 11em;
}

.form-check-label p {
    padding: 1em 1em;
    margin: 0;
}

.form-check,.form-block {
    padding-left: 0;
    color: var(--color-back);
}

.slider_form input {
    width: 100%;
    max-width: 10em;
    color: var(--color);
    padding: 1em 1em;
    cursor: pointer;
    outline: none;
    background: #ffffff;
    border-radius: 5px;
}

ul.col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em 2em;
    list-style: none;
    padding: 0;
}

ul.col2 li {
    /* margin-bottom:0.5em; */
}

label.form-check-label.label-color {
    flex-direction: row;
    /* border: 1px solid var(--color-a); */
    border-radius: 5px;
    gap: 1em;
    justify-content: start;
    padding: 0.5em 1em;
    margin-bottom: 1em;
}

label.form-check-label.label-color p {
    margin: 0;
    padding: 0;
}

.label-color span {
    font-size: 0.8em;
    opacity: 0.5;
    line-height: 1em;
    display: block;
}

.color-check {
    width: 4em;
    height: 2em;
    background: #444;
}

.ral8017 {
    background: #45302B;
}

.ral3005 {
    background: #581E29;
}

.tab_container,.tab_container_mat {
    display: none;
}

.tab_container.active,.tab_container_mat.active {
    display: block;
}

.calc-input {
    position: relative;
    width: 15em;
    margin-bottom: 1em;
}

.calc-input label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1em;
    width: 100%;
    text-align: center;
    padding: 1em;
    opacity: 0.7;
    transition: 0.2s;
    /* pointer-events: none; */
}

.calc-input input {
    max-width: 100%;
    border: 1px solid #dddddd;
    color: var(--color-back);
    padding: 2em 1em 1em 1em;
}

.calc-input label.active {
    font-size: 0.65em;
    /* padding: 0.5em; */
    text-align: left;
    /* background: aqua; */
    z-index: 0;
    width: auto;
    border-color: var(--color-a);
}

.calc-input input:focus {
    background: #ebebeb;
    border-color: var(--color-a);
}

.calc-wrap {
    /* width: 50%; */
    background: #fff;
    padding: 2em;
    margin-top: 2em;
    line-height: 1.5em;
}

.calc-wrap>div {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .col-md-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.slider-header {
    text-transform: uppercase;
    margin-bottom: 2em;
}

.form-block>div,.form-check>div {
    margin: 1vw 0;
}

.form-check-input {
    opacity: 0;
    display: none;
}

.form-check .form-check-input:checked,.form-check-input:checked {
    opacity: 1;
    width: 2em;
    height: 2em;
    border: none;
    padding: 0;
    position: absolute;
    right: -1em;
    top: -1em;
    background: url(/assets/img/calc/check.svg) no-repeat center / contain;
    display: block;
}

.form-check-input[type=checkbox] {
    width: 2vw;
    height: 2vw;
    border-radius: 0;
    vertical-align: text-bottom;
}

#callme,#calc-tpl {
    width: 100%;
    max-width: 38em;
    background: var(--gray);
    /* color: var(--color-back); */
    position: relative;
    /* height: auto; */
    padding-top: 1em;
    padding-bottom: 0;
    /* border-radius: 20px; */
}

select {
    width: 100%;
    padding: 1em;
    border-radius: 5px;
}

#callme .ajax_form,,#calc-tpl .ajax_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    align-items: center;
    padding: 1em 0;
}

#callme .contact_form,#calc-tpl .contact_form {
    background: unset;
}

.contact_form a {
    text-decoration: underline;
}

#callme .contact_form input ,#calc-tpl .contact_form input {
    background: #F9F9F9;
    padding: 1em;
    font-size: 1em;
}

#callme p,#calc-tpl p {
    margin: 1em 0;
    padding: 0;
    line-height: 1.5em;
    /* text-align: center; */
    color: #0000007a;
    /* font-size: 0.8em; */
}

.contact {
    margin: 60px 0;
}

.contact-box {
    background: rgb(255 255 255 / 80%);
    padding: 20px 45px 0px 45px;
    max-width: 400px;
    margin-top: 60px;
    position: absolute;
    left: 45px;
    z-index: 1;
    /* color: var(--color-back); */
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.footer-logo {
    width: 9em;
    margin-bottom: var(--pad);
}

.footer_text {
    color: #A89999;
}

ul.footer_ul_contact {
    list-style: none;
    /* margin: 0; */
    padding: 0;
    display: flex;
    gap: 1em;
    justify-content: end;
}

ul.footer_ul_contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.7em;
    margin-top: 1em;
}

ul.footer_ul_contact ul li a {
    color: #A89999;
}

ul.footer_ul_contact a {
    white-space: nowrap;
    padding: 0 0em;
    /* font-size: 0.8em; */
    /* color: #7B7B7D; */
}

ul.footer_ul_contact li span {
    display: block;
    opacity: 0.5;
}

footer a {
    display: block;
    /* font-style: italic; */
    /* font-weight: bold; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
}

footer a:hover {
    color: var(--red);
}

a.unimark img {
    width: 7em;
}

a.phone {
    font-family: var(--font);
    font-size: 2em;
}

.contact-item {
    text-align: center;
}

a.underline {
    text-decoration: underline;
}

.social img {
    width: 2em;
}

.pagination ul {
    padding: 0
}

.pagination ul li {
    margin-right: 5px
}

.pagination ul li:last-child {
    margin-right: 0
}

.pagination ul li a {
    color: #444;
}

.pagination ul li a:hover {
    text-decoration: none;
}

.pagination ul li.active a, .pagination ul li a:hover {
    color: #444
}

.standard-form {
    padding: 15px 0px;
    /* width: 500px; */
}

.standard-form textarea {
    padding: 1em;
    font-size: 1em;
    height: 10em;
    display: none;
}

.standard-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.standard-form select::-ms-expand {
    display: none;
}

.slider-item {
    padding-top: 3vw;
}

.input-box {
    width: 100%;
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

#form-modal .input-box {
    margin-bottom: 1em;
}

.form-icon {
    left: 1em;
    /* right: auto; */
    top: 1em;
    /* z-index: 2; */
    /* font-size: 1.5em; */
    color: var(--gray);
    fill: var(--gray);
    position: absolute;
    height: 1.5em;
}

.post_page_cont iframe {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    /* Firefox */
    -webkit-border-radius: 6px;
}

/*popup*/
.popup {
    padding: 0;
    position: relative;
    background: var(--color-back);
    width: 80vw;
}

.popup h3 {
    font-size: 2em;
    font-family: var(--font);
    color: var(--color-a);
    margin-bottom: 0.5em;
}

.popup p {
    font-size: 1.2em;
}

.popup-wrapper > div:first-child {
    padding: 2em 0;
    background: #FBFBFB;
    width: 50%;
}

.popup-wrapper > div:last-child {
    padding: 4em 2em;
}

.popup-img {
    transform: scale(1.1);
}

/* Sections */
section {
    margin-top: var(--pad);
}

section:first-child {
    padding: calc(var(--pad) * 2) 0 0;
}

section:last-child {
    padding-bottom: var(--pad);
}

section.top {
    padding: 12em 0 2em;
    background: url(/assets/img/catalog/header-metalloch.jpg) no-repeat center / cover;
}

section.section-padding {
    padding: calc(var(--pad) *1) 0;
}

section.delivery {
    background: url(/assets/img/delivery.png) no-repeat right 140%/32%;
}

.page_title {
    font-family: var(--font);
    font-size: 2em;
    line-height: 1.2em;
    text-transform: uppercase;
}

.price-img {
    margin-top: 0em;
    position: relative;
}

section.thanks {
    padding: 10vw 0;
    background: url(/assets/img/back-thanks.jpg) no-repeat center / cover;
}

.thank-wrapper {
    width: 40em;
    /* background: #fff; */
    /* color: var(--color-back); */
    padding: 3em;
    text-align: center;
}

.thanks h1 {
    font-size: 4em;
}

.thanks .btn {
    /* background: var(--color-a); */
    /* color: #fff; */
    display: inline-block;
}

.about-more {
    border-top: 1px solid #ffffff8c;
    padding-top: 3em;
}

.page_content h2 {
    font-size: 2em;
    margin: 1em 0 0.5em;
}

.page_content h3 {
    font-size: 1.5em;
    margin: 1em 0 0.5em;
}

.slider .swiper-pagination-progressbar, .post_slider .swiper-pagination-progressbar {
    top: calc(100% - .2rem);
    height: .2rem;
    width: calc(100% - 3rem);
    background: rgba(217, 217, 217, 0.5);
}

.post_slider .swiper-pagination-progressbar {
    width: 100%;
}

.slider .swiper-pagination-progressbar-fill {
    background: #fff
}

.post_slider .swiper-pagination-progressbar-fill {
    background: var(--color-a)
}

section#slider {
    position: relative;
    z-index: 0;
    padding: 0;
    /* box-shadow: 0 1em 1em #00000024; */
}

.slider-home .swiper-wrapper div {
    width: 100vw;
    height: 49vw;
}

.slider-home {
    position: relative;
    overflow: hidden;
    /* opacity: 0.15; */
    /* background: linear-gradient(359deg, #003365, #00336663); */
}

#slider:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    right: 0%;
    z-index: 2;
    background: url(/img/slider-line.svg) no-repeat right / contain;
    background: linear-gradient(359deg, #003365f7, #003366ad), url(/img/slider-line.svg) no-repeat right / contain;
}

.img-base {
    float: left;
    width: 50%;
    padding: 0 1em 1em 0;
}

.also {
    background: linear-gradient(260deg, #002245, transparent);
}

.also h2 {
    text-align: right;
    margin: 0;
}

.console-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    font-size: 3em;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.0em;
    left: 00px;
}

section#main-2 {
}

section.pochemu {
    /* background: aliceblue; */
}

.vk-block {
    background: url(/img/home/vk.jpg);
    background-size: contain;
    border-radius: 40px;
    color: #fff;
    padding: 30px 0;
}

.vk-block h2 {
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 23%);
    /* clear: both; */
    gap: 1rem;
    margin-bottom: 3em;
    counter-reset: section;
}

.menu-grid .menu-item {
    position: relative;
    border: 1px solid #ffffff36;
    text-align: center;
    padding: 1em;
    /* clip-path: polygon(15% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 10%); */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-direction: column; */
}

.menu-grid .menu-item.menu-item-aspect1 {
    aspect-ratio: 1;
}

.menu-grid .menu-item-img {
    aspect-ratio: 1;
    padding: 1em;
}

.menu-grid .menu-item-img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.menu-grid .menu-item>a {
    /* position: absolute; */
    /* font-size: 1.2em; */
    /* text-transform: uppercase; */
    text-align: center;
    /* width: 100%; */
    /* height:100%; */
    /* z-index: 1; */
}

.menu-grid .menu-item:hover {
    box-shadow: 0 0 5px 5px #00000014;
    transition: 0.2s;
}

.menu-grid .menu-item:hover a {
    color: var(--color);
}

.menu-grid .menu-item .menu-item-text {
    position: absolute;
    bottom: 0;
    background: #dfdfdfe3;
    width: 100%;
    padding: 0.5em;
}

.menu-grid .menu-item .introtext {
    font-size: 0.8em;
    margin: 0;
}

.menu-grid .menu-item .tag {
    position: absolute;
    right: 0;
    top: 0;
}

.tag {
    padding: 0.4em 1em;
    background: var(--color-a-hover);
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    width: 100%;
    counter-reset: section;
}

.service-grid img {
    width: 3em;
}

.service-grid >div {
    /* padding: 1em; */
    /* display: flex; */
    /* margin-bottom: 4px; */
    align-items: center;
    background: #ffffff1a;
    position: relative;
}

.service-grid >div>a {
    /* overflow:hidden; */
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
    /* text-transform: uppercase; */
    /* font-weight: bold; */
}

.service-grid .menu-item .price {
    text-align: center;
    margin-bottom: 1em;
}

.kp-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.kp-grid .menu-item a {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1em;
    height: 100%;
}

.kp-grid .menu-item a img {
    width: 100%;
    /* aspect-ratio: 1; */
    /* width: 100%; */
    /* object-fit: contain; */
    /* height: 100%; */
}

.menu-item .custom_btn {
    white-space: break-spaces;
}

.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    /* min-width: 600px; */
    /* max-width: 900px; */
    width: 100%;
    height: 30em;
    gap: 1em;
}

.options .option {
    position: relative;
    overflow: hidden;
    width: 15em;
    /* margin: 0 1em; */
    /* background: var(--optionBackground, var(--defaultBackground, #E6E9ED)); */
    background-size: auto 120%;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    padding: 1em;
}

.options .option.active {
    flex-grow: 10000;
    max-width: 55em;
    margin: 0px;
    /* border-radius: 2em; */
    /* background-size: auto 100%; */
}

.options .option:not(.active) {
    flex-grow: 1;
    /* border-radius: 2em; */
}

.option img {
    width: 100%;
}

.options .option .label {
    position: absolute;
    /* left: -2em; */
    bottom: 0em;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options a {
    color: #fff;
}

.options a:hover {
    color: var(--color-a-hover);
}

.options ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.option .title {
    /* transform:rotate(-90deg); */
    margin-bottom: 1em;
    transition: 0.5s;
    text-transform: uppercase;
    /* letter-spacing: 4px; */
}

.option.active .title {
    transform: none;
    /* margin: 0; */
}

.option .title a {
    color: #fff;
    font-size: 1.5em;
}

.options .option.active .label {
    bottom: 2em;
    left: 2em;
}

.options .option:not(.active) .info {
    /* opacity:0; */
    /* display: none; */
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.options .option.active .info {
    /* opacity:1; */
    height: 16em;
    transition: 0.5s;
}

.options .option .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 15em;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    background: linear-gradient(0deg, #151515f0, transparent);
}

.options .option.active .shadow {
    height: 100%;
}

.item-grid svg.svg {
    fill: var(--color-a);
    height: 100%;
    position: absolute;
    left: calc(50% - 8em);
    width: 13em;
}

.home-grid2 {
    display: grid;
    /* flex-direction: column; */
    grid-template-columns: 1fr;
    gap: 4em;
    /* border-radius: 50px; */
    /* overflow: hidden; */
    width: 100%;
    counter-reset: section;
    margin-top: -6em;
}

.home-grid2 img {
    /* position: absolute; */
    /* top: 50%; */
    height: 8em;
    /* margin-bottom: 4em; */
    /* object-fit: cover; */
    width: auto;
    /* border-radius: 2em; */
    /* clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%); */
    transform: skew(5deg, 0);
}

.home-grid2 .item-grid {
    position: relative;
    aspect-ratio: 2;
    display: flex;
    width: 100%;
    border: 2px solid rgb(255 255 255 / 72%);
    background: linear-gradient(266deg, #00172f, #003366);
    /* transition: 0.2s; */
    transform: skew(-5deg, 0);
    box-shadow: 16px 20px 6px 2px #0000004a;
}

.home-grid2 .item-grid:hover {
    background: linear-gradient(266deg, #0358ad, #003366);
    /* opacity: 1; */
}

.item-grid:before {
    position: absolute;
    content: '0'counter(section);
    font-size: 3em;
    opacity: 0.25;
    /* color: #c5c5c5; */
    font-weight: bold;
    top: 0.5rem;
    display: block;
    right: 1rem;
    counter-increment: section;
    /* z-index: 1; */
}

.item-grid:after {
    /* position: absolute; */
    /* content: '000'; */
    font-size: 1em;
    font-style: italic;
    font-weight: 300;
    /* opacity: 0.75; */
    color: #c5c5c5;
    bottom: 1rem;
    display: block;
    right: 1rem;
}

.home-grid2 .title {
    position: absolute;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.2em;
    left: 1em;
    bottom: 1em;
}

.home-grid2 .item-grid>a {
    overflow: hidden;
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: var(--color);
}

#contact ul {
    padding: 5px 20px;
}

#contact ul li {
    padding: 2px 0;
}

#contact ul li::marker {
    color: #50a2d2;
}

.gallery_item {
    position: relative;
    aspect-ratio: 3/2;
}

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

figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #383838bf;
    padding: 1em;
    transform: translateY(5em);
    transition: 0.5s;
    font-size: 0.8em;
}

.gallery_item:hover figcaption {
    transform: translateY(0px);
}

/* End Sections */
.neighbors {
    gap: 1em;
    flex-direction: column;
    border-left: 1px solid #ffffff42;
    padding-left: 2em;
}

/** End Shortcode Testimonials */
.navbar {
    padding: 0;
    /* width: 100%; */
}

nav>ul {
    list-style: none;
    display: flex;
    width: 100%;
    padding: 0;
}

nav>ul li {
    margin: 0;
}

.side-menu .navbar-light .navbar-nav .nav-link, header .navbar-light .navbar-nav>.nav-item>.nav-link {
    color: var(--color);
    padding: 0.75em 1em;
    font-size: 0.9em;
    line-height: 1em;
    white-space: nowrap;
    position: relative;
    /* font-weight: 500; */
    /* border: 1px solid var(--color-a); */
    border-radius: 5px;
    /* border: 2px solid transparent; */
    /* letter-spacing: 0; */
}

.side-menu .navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-a);
}

.search-form {
    max-width: 13em;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
}

.search-form label {
    display: flex;
}

.search-form input {
    border: none;
    background: transparent;
    border: none;
    outline: none;
    height: 3em;
    width: fit-content;
}

input.search-submit {
    width: 2em;
    aspect-ratio: 1;
    display: block;
    background: url(/assets/img/search.svg) no-repeat center / 50%;
}

.navbar-nav {
    justify-content: center;
    flex: 1;
    /* gap: 1em; */
}

.nav-item {
    padding: 0.5em 1em;
    /* font-size: 1.15em; */
    /* opacity:0.7; */
    text-transform: uppercase;
}

.navbar-nav a.nav-item:hover {
    color: var(--blue);
    opacity: 1;
}

@media(min-width: 992px) {
    .dropdown-menu {
        -webkit-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        -moz-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        box-shadow: 7px 7px 14px 0px rgb(50 50 50 / 34%);
        background-color: #ffffffde;
        padding: 0;
        margin: 0;
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: 0.2s;
        display: block;
        backdrop-filter: blur(6px) saturate(180%);
        border: 1px solid rgb(93 93 93 / 27%);
        min-width: 13em;
        top: 100%;
        font-size: 1em;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        transition: 0.3s;
        height: auto;
        border-radius: 0;
        border: 1px solid #ffffff47;
        background: var(--color-back);
    }

    .nav-item.level-2.dropdown>.dropdown-menu, .nav-item.level-3.dropdown>.dropdown-menu {
        display: none;
    }

    .nav-item.level-2.dropdown:hover>.dropdown-menu, .nav-item.level-3.dropdown:hover>.dropdown-menu {
        display: block;
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .widjet .contact_form:first-child {
        /* bottom: 5em; */
        /* opacity: 1; */
    }
}

.side-menu .navbar-light .navbar-nav .active>.nav-link {
    color: var(--color-a-hover);
}

.side-menu .navbar-nav li {
    text-align: center;
}

.navbar-toggler {
    display: none;
}

.navbar-toggler.collapsed {
    outline: none;
    background: url(/template/content/img/menu.svg) no-repeat center;
    background-size: contain;
    padding: 0.5em;
}

.navbar-toggler:focus {
    outline: none;
}

.menu_btn {
    display: block;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    background: #047174;
    font-weight: bold;
    color: #fff;
}

.nav_top_1 nav .menu {
    position: absolute;
    z-index: 10000;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    text-align: center;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 0.5em;
    background-repeat: no-repeat;
    transition: all 0.1s ease;
    color: var(--color);
}

.dropdown-item span {
    display: block;
    width: 2em;
    height: 2em;
    aspect-ratio: 1;
}

.dropdown-item.no-image {
    padding: 0.5em;
}

.dropdown-item.active, .dropdown-item:active {
    color: #000000;
    background-color: #ffffff;
}

.dropdown-item:focus, .dropdown-item:hover, .nav-item.level-2:focus, .nav-item.level-2:hover, .nav-item.level-3:focus, .nav-item.level-3:hover {
    background-color: transparent;
    color: var(--color-a);
    /* border-left: 3px solid #047174; */
}

.small {
    /* opacity: 0.95; */
    font-size: 0.75em;
    /* font-weight: 200; */
    line-height: 1em;
}

.header_wrapper {
    position: relative;
    z-index: 100;
    /* background: var(--color-back); */
}

.w100 {
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 5px;
    color: #fff;
    line-height: 0.9em;
    padding: 1em 2em;
    font-size: 1em;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid var(--color-a);
    min-width: 7em;
}

.btn:hover,a.btn:hover {
    background: #fff;
    color: var(--main);
    text-decoration: none;
    border: 1px solid var(--blue);
}

.btn.btn-arrow {
    padding: 0.5em 1em;
    /* color: var(--color); */
    /* background: var(--main); */
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
    /* border: var(--border); */
}

.btn.btn-arrow:after {
    content: '';
    /* padding: 0.5em 1em; */
    background: #dbdbdb url(/assets/img/Arrow1.svg) no-repeat center / 40%;
    border-radius: 5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-arrow.black:after {
    content: '';
    /* padding: 0.5em 1em; */
    background: var(--color-back) url(/assets/img/Arrow1.svg) no-repeat center;
    border-radius: 5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-download:before {
    content: '';
    /* padding: 0.5em 1em; */
    background: url(/assets/img/link.svg) no-repeat center / 60%;
    border-radius: 50%;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-arrow-orange {
    padding: 0.5em 1em;
    color: #fff;
    /* background: var(--red); */
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
    /* border-color: var(--red); */
}

.btn.btn-arrow-orange:after {
    content: '';
    /* padding: 0.5em 1em; */
    background: #fff url(/assets/img/Arrow2.svg) no-repeat center;
    border-radius: 5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-w100 {
    width: 100%;
    /* font-size: 0.8em; */
    /* padding: 1.5em; */
}

.btn-arrow-only {
    background: var(--blue) url(/assets/img/Arrow3.svg) no-repeat center / 40%;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 2em;
}

.header_callback {
    font-size: 0.8em;
}

.header_top {
    /* border-bottom: 1px solid #d0d0d0; */
    padding: 0.5em 0;
}

.header_logo img {
    width: 12vw;
}

.header_phone a {
    font-size: 1.75em;
    font-family: var(--font);
}

.table-text-center td, .table-text-center th {
    text-align: center !important;
}

.form_main_index {
    margin-bottom: 25px;
}

div#successmodal {
    background: url(/img/success.jpg) no-repeat center;
    background-size: cover;
}

.success {
    /* color: #fff; */
    padding: 30px;
    min-height: 400px;
}

.success h3 {
    font-size: 3em;
    padding-top: 2em;
}

.success p {
    font-size: 2em;
    text-align: left!important;
}

.success-black {
    color: var(--color);
}

.menu-close {
    display: none;
}

/*ARTI*/
.main_banner_wrapper {
    background: var(--color);
    border-radius: 25px;
}

.main_banner img {
    border-radius: 35px;
    aspect-ratio: 1.5;
    object-fit: cover;
    height: 100%;
}

.main_banner_btn {
    margin-top: 1em;
}

img.ya-otzyv {
    width: 15em;
}

.section_title {
    font-size: 2.5em;
    line-height: 1.2em;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    font-family: var(--font);
}

.section_title span {
    display: block;
    font-size: 0.5em;
    color: #F9F9F9;
}

.service_img img {
    background: var(--color-back);
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid var(--color-a); */
    padding: 4em;
    aspect-ratio: 4/3;
}

.about-count p {
    font-size: 3em;
    color: var(--color-a);
    display: block;
}

.about-count {
    font-family: var(--font);
    text-transform: uppercase;
    padding: 2em 1em 0 1em;
}

.about-count span {
    font-size: 1em;
}

.main-page .advantages {
    /* position: relative; */
    /* margin-top: -12em; */
}

.advantages_wrapper {
    padding: 10px 0;
}

.advantage_item {
    /* text-align: center; */
    /* margin-bottom: 2em; */
    /* background: #fff; */
    aspect-ratio: 1;
    padding: 1rem 1rem;
    /* line-height: 1.2em; */
    border: var(--border);
    border-radius: 30px;
}

.advantage_icon {
    border-radius: 50%;
    background: #fff;
    /* margin-bottom: 1em; */
    display: inline-block;
    padding: 0em;
    aspect-ratio: 1;
    width: 6em;
}

.advantage_title {
    font-size: 1.9em;
    font-family: var(--font);
    text-transform: uppercase;
    font-weight: bold;
    color: var(--blue);
    line-height: 1.2em;
}

.advantage_text {
    line-height: 1.2em
}

ul.ul-num {
    column-count: 2;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.ul-num li {
    position: relative;
    padding: 0.5em 0em;
    counter-increment: num;
}

ul.ul-num li:before {
    content: '0'counter(num);
    background: #fff;
    color: var(--color-a);
    border-radius: 50%;
    width: 2em;
    aspect-ratio: 1;
    text-align: center;
    line-height: 2em;
    font-size: 0.8em;
    padding: 0.5em;
    margin-right: 1em;
}

.num {
    position: relative;
    counter-increment: numm;
    margin-bottom: 1.5em;
}

.num:before {
    content: '0'counter(numm);
    background: var(--color-back);
    color: #fff;
    border-radius: 50%;
    width: 2em;
    aspect-ratio: 1;
    text-align: center;
    line-height: 2em;
    font-size: 0.8em;
    padding: 0.5em;
    margin-right: 1em;
}

.prim_icon {
    width: 1.5em;
}

.prim_title {
    font-size: 0.8em;
    line-height: 1em;
    text-transform: lowercase;
}

.main_services {
    padding: 80px 0 50px;
}

.main_services_wrapper {
    padding: 10px 0;
}

.main_service_item {
    width: calc(25% - 1em);
    /* transition: 0.3s; */
    /* background: var(--gray); */
    border: 1px solid #44444429;
}

.fancybox-is-open .fancybox-bg {
    background: #fff;
    opacity: 0.98;
}

.main_service_img img {
    /* height: 11em; */
    /* width: auto; */
    /* padding: 1em; */
    max-width: 100%;
    border-radius: 10px;
    aspect-ratio: 1;
    object-fit: cover;
}

.main_service_img {
    text-align: center;
    position: relative;
}

.main_service_img:has(a:hover):after {
    content: '';
    position: absolute;
    inset: calc(1em);
    border-radius: 50%;
    width: 2em;
    aspect-ratio: 1;
    display: block;
    background: #ffffffdb url(/assets/img/search.svg) no-repeat center / 50%;
    z-index: 100;
}

.main_service_txt {
    padding: 1em;
    /* font-size: 0.85em; */
}

.main_service_title {
    line-height: 1em;
    font-weight: 500;
    font-family: var(--font);
    color: var(--color-a);
    margin-bottom: 0.5em;
    font-size: 1.5em;
    height: 2em;
}

.main_service_title a {
    color: var(--color-a);
    font-weight: 500;
}

.ajax-filter-count {
    width: 100%;
    margin: 1em 0;
}

.ajax-more.btn {
    width: fit-content;
    margin: 0 auto;
}

.delivery-list {
    padding: 0 6em 0em;
}

.action_item {
    width: 30%;
    /* padding: 0em 2em; */
    /* display: grid; */
}

.action_item>div {
    border: var(--border);
    padding: 2em 2em;
    aspect-ratio: 1;
    overflow: hidden;
}

.action_item img {
    width: 100%;
    object-fit: cover;
    /* height: 100%; */
}

.about-tag {
    border: 1px solid #FD934C;
    border-radius: 5px;
    padding: 1em 2em;
    display: flex;
    gap: 1em;
}

.about_item {
    padding: 1em 3em 1em 0em;
}

.main_cat {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 1em;
    width: 100%;
}

span.simplesearch-page a,.simplesearch-current-page {
    padding: 0.5em 1em;
    border: var(--border);
    border-radius: 5px;
}

.simplesearch-paging {
    padding: 2em 0;
}

.simplesearch-current-page {
    background: var(--blue);
    color: white;
}

.clients {
    background-image: url(/assets/img/clients.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* padding: 85px 0 100px; */
    overflow: hidden;
}

.clients .section_title {
    margin-bottom: 50px;
}

.clients_slider {
    margin-right: -30px;
}

.clients_slider_item img {
    border-radius: 5px;
}

.clients_list {
    display: flex;
    gap: 2em;
}

.promo_item img {
    width: 3em;
    margin-bottom: 1rem;
}

.promo_item {
    padding-right: 3em;
}

.review_item {
    padding: 1em 1em;
    background: url(/assets/img/quotas.svg) no-repeat right bottom;
    height: 100%;
}

.review-swiper {
    /* padding: 1em 0 3em; */
    position: relative;
    /* overflow: hidden; */
}

.review-swiper .swiper-slide {
    width: 40%;
    height: 100%;
}

.review_item img {
    width: 5em;
    border-radius: 50%;
}

.swiper-pagination-bullet {
    width: 0.5em;
    /* height: 1em; */
    border-radius: 50%;
    aspect-ratio: 1;
}

.review_title {
    color: #C5C6C6;
    font-size: 0.8em;
}

.rating {
    display: flex;
}

star {
    display: block;
    width: 1em;
    height: 1em;
    background: url(/assets/img/Star.svg) no-repeat center/contain;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    /* bottom: unset; */
    /* top: 0em; */
    /* text-align: right; */
    /* padding-right: 5em; */
    /* z-index: 10; */
}

.main_contacts .section_title {
    margin-bottom: 1em;
}

.main_contacts_item {
    /* font-weight: 500; */
    /* font-size: 1.1em; */
    /* margin-bottom: 1em; */
    text-align: right;
    border-right: 1px solid;
    padding-right: 2em;
}

.main_contacts_item_subheader {
    color: #A89999;
    font-size: 0.8em;
    padding-bottom: 0.5em;
}

.orange {
    color: var(--color-a);
}

.main_contacts_item a {
    display: block;
}

.main_contacts_map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.main_contacts_map iframe {
    /* position:absolute; */
    width: 100%;
    height: 100%;
    inset: 0;
}

.main_contacts_map ymaps {
    border-radius: 5px;
}

.main_contacts_form {
    /* position: relative; */
}

.main_contacts_form .section_title {
    text-align: center;
    font-size: 2.5em;
}

.main_contacts_form .section_title:before {
    left: calc(50% - 355px);
}

.main_contacts_form .wpcf7 form .wpcf7-response-output {
    margin-top: 25px;
    margin-left: 90px;
}

.main_contacts_form .wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.logistics_list_num {
    font-size: 64px;
    width: 90px;
}

.mobile-contacts {
    text-align: center;
}

.header_callback {
    /* padding: 1em 3.5em; */
    /* font-size: 0.8em; */
}

.mobile-contacts {
    padding-bottom: 15px;
}

.Calc-button {
    position: fixed;
    transform: translateY(-50%);
    right: 0;
    top: 50%;
    width: 8%;
    /* height: 8em; */
    z-index: 10;
    background: var(--color-a);
    border-radius: 5px 0 0 5px;
}

.Calc-button a {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 0.7em;
    line-height: 1.2em;
    padding: 1em;
}

.Calc-button .close {
    position: absolute;
    top: -1em;
    left: calc(50% - 1em);
    background: url(/assets/img/close-calc.svg) no-repeat center / contain;
    width: 2em;
    height: 2em;
    z-index: 20;
    border-radius: 50%;
}

.Calc-button .close:hover {
    box-shadow: 0 0 5px #000;
}

.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 15px;
    /* overflow: hidden; */
    border: 2px solid var(--red);
}
#about .video-wrap{
    /* width:50%; */
}
.video-wrap video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    border-radius: 15px;
}

.video-wrap video:hover {
    cursor: pointer;
}

.video-wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  url(/assets/img/play.svg) no-repeat center/10%;
    z-index: 1;
    border-radius: 50%;
    border: 2px solid var(--yellow);
}

.video-wrap:hover:after {
    display:none;
    
}

/***********************************/
@media (max-width: 768px) {
    :root {
        --pad: 15px;
    }

    body {
        /* padding-top: 70px; */
        font-size: 15px;
        /* margin-top: 4em; */
    }

    .row {
        --bs-gutter-x: 30px;
    }

    .aside {
        text-align: center;
        position: relative;
        top: 0;
        padding: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .not-mobile,img.ya-otzyv {
        display: none;
    }

    .header_logo img {
        width: 33vw;
    }

    .header_phone a {
        font-size: 4.2vw;
    }

    a.phone {
        font-size: 1.5em;
    }

    h1,.h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    h1+p {
        font-size: 1.1em;
        margin-bottom: 1.5em;
    }

    h2 ,.main-page h2 {
        /* font-size: 1.4em; */
        /* text-align: center; */
    }

    .product h1, .product h2 {
        font-size: 1.25em;
    }

    .also h2 {
        text-align: center;
        margin-bottom: 1em;
    }

    p.subtitle-h2 {
        text-align: center;
        font-size: 1.25em;
    }

    h3 {
        margin: 10px 0;
        /* font-size: 1.2em; */
        /* text-align: center; */
    }

    .slider_h2 {
        letter-spacing: 0.3em;
        /* text-transform: uppercase; */
        /* margin-bottom: 2em; */
        /* margin-top: 0em; */
        font-size: 0.7em;
    }

    .razdel-flex img {
        width: 50px;
    }

    section.main-about img {
        max-width: 50%;
    }

    .home-grid2 .title {
        font-size: 1.2em;
        line-height: 1.2em;
        /* left: 1em; */
        /* top: 1em; */
    }

    .header-ico {
        /* margin: 2px; */
        border: 2px solid var(--color-a);
        width: 50px;
        height: 50px;
        margin: 0;
    }

    .header-contact a.big {
        font-size: 1em;
    }

    .header-contact-wrap {
        /* align-items: baseline; */
        width: 100%;
        background: transparent;
    }

    .header-contact-wrap > div:first-child {
        /* display: flex; */
        justify-content: end;
    }

    header .header_callback {
        display: none;
    }

    .header-tel {
        display: block;
        background: var(--color-a-hover) url(/img/icon/smartphone.svg) no-repeat center/70%;
        width: 40px;
        height: 40px;
        /* border-radius: 50%; */
    }

    .header-zakaz {
        display: block;
        background: var(--color-a-hover) url(/img/icon/email.svg) no-repeat center/70%;
        width: 40px;
        height: 40px;
        /* border-radius: 50%; */
    }

    .header_page {
        padding: 0 0 10px 0;
        /* border-radius: 0; */
    }

    .btn-mobile-menu {
        z-index: 100;
        cursor: pointer;
        background: var(--blue);
        padding: 0.6em;
        border-radius: 50%;
        aspect-ratio: 1;
        position: absolute;
        right: 5px;
        top: 5px;
    }

    .btn-mobile-menu span {
        background: #ffffff;
        display: block;
        width: 1.25em;
        height: 2px;
        margin-bottom: 0.4em;
        /* border-radius: 2px; */
    }

    .btn-mobile-menu span:first-child {
        position: relative;
        top: 0;
        -webkit-transition: top .3s .3s,transform .3s 0s;
        -webkit-transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s,-webkit-transform .3s 0s;
    }

    .btn-mobile-menu span:nth-child(2) {
        opacity: 1;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }

    .btn-mobile-menu span:last-child {
        margin-bottom: 0;
        position: relative;
        top: 0;
        -webkit-transition: top .3s .3s,transform .3s 0s;
        -webkit-transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s,-webkit-transform .3s 0s;
    }

    .btn-mobile-menu.open span:first-child {
        top: 9px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: top .3s 0s,transform .3s .3s;
        -webkit-transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s,-webkit-transform .3s .3s;
    }

    .btn-mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .btn-mobile-menu.open span:last-child {
        top: -7px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: top .3s 0s,transform .3s .3s;
        -webkit-transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s,-webkit-transform .3s .3s;
    }

    .btn-mobile-menu.open span {
        /* background: #fff; */
    }

    .grid-chess {
        /* grid-template-columns: 1fr; */
        width: 100%;
    }

    .grid-chess > div {
        aspect-ratio: unset;
        font-size: 0.8em;
    }

    .grid-chess .grid-chess-2image img {
        height: 150px;
        transition: 0.2s;
    }

    .ico_small {
        width: 35px;
        margin: 0;
    }

    .footer-logo {
        /* padding: 0 20%; */
        margin: 2em 0;
        width: 150px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-grid2 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
    }

    .home-grid2 .item-grid {
        box-shadow: none;
    }

    .item-grid:before {
        font-size: 2em;
    }

    .home-grid2 img {
        height: 70px;
    }

    .navbar-toggler {
        padding: 19px;
        /* margin-top: 5px; */
        outline: none;
        background: var(--color-a) url(/template/content/img/menu-close.svg) no-repeat center;
        background-size: 50%;
        height: 40px;
        width: 40px;
        display: block;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .collapse.show {
        z-index: 1000;
    }

    header .logo {
        max-width: 70px;
        padding: 5px 0;
    }

    .menu-close {
        position: fixed;
        right: 30px;
        top: 30px;
        width: 20px;
        height: 20px;
        background: url(/template/content/img/menu-close.svg) no-repeat;
        background-size: 100%;
        cursor: pointer;
        z-index: 10;
        display: block;
    }

    .menu-back {
        background: #015ca9c7;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    .menu-wrap {
        display: none;
        background: var(--color-back);
        z-index: 1000;
        position: absolute;
        /* overflow: auto; */
        top: 60px;
        left: 0;
        width: 100%;
        border-radius: 30px;
        -webkit-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        -moz-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
    }

    .navbar-nav {
        padding-top: 15px;
    }

    .nav-link {
        /* color: #fff; */
        text-align: center;
        /* padding: 15px; */
        font-size: 1.5em;
        color: var(--color-a);
    }

    .dropdown-menu {
        background: var(--header);
        border-color: transparent;
    }

    .menu-contact {
        /* text-align: center; */
        padding: 0 20px 15px;
        /* color: #fff; */
    }

    .menu-contact .menu-contact-text {
        /* font-weight:bold; */
        margin: 15px 0px 5px;
        opacity: 0.5;
        /* text-transform:uppercase; */
        /* font-size:0.8em; */
        /* letter-spacing:1px; */
    }

    .left-sidebar {
        display: none;
        width: 80%;
    }

    .left-sidebar.active {
        display: block;
        background: #fff;
    }

    section:first-child {
        /* padding-top: 70px; */
    }

    .section_title {
        font-size: 1.5em;
    }

    section#slider {
        overflow: hidden;
        /* padding-bottom: 5em; */
    }

    .Calc-button {
        display: none;
    }

    table {
        font-size: 0.9em;
        table-layout: auto;
    }

    .faq {
        font-size: 1em;
    }

    .faq-header .faq_text {
        padding-right: 20px;
        font-size: 1em;
    }

    .promo {
        text-align: center;
        /* padding: 10px; */
        flex-direction: column;
        gap: 15px;
    }

    .clients_list {
        flex-wrap: wrap;
    }

    .promo >div {
    }

    .promo h3 {
        /* color:#fff; */
        font-size: 1em;
        /* padding-bottom: 10px; */
        /* margin: 0; */
    }

    .promo strong {
        font-family: prata;
        font-size: 4em;
        color: var(--color-a);
        padding: 0px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
        /* margin: 0px 15px; */
    }

    .gallery-column-3c {
        gap: 15px;
    }

    .gallery-column-3c .gallery_item {
        width: calc(50% - 8px);
        min-width: auto;
    }

    .gallery-text {
        display: none;
    }

    .contact_form .header {
        /* text-align: center; */
    }

    .contact-map {
        height: auto;
    }

    .contact-box {
        padding: 20px 50px;
        max-width: 100%;
        position: relative;
        left: 0px;
        top: 0;
        margin: 0;
        background: transparent;
        color: var(--color);
        text-align: center;
    }

    .contact-item.contact-map {
        height: auto;
    }

    .price_block {
        flex-direction: column;
        /* max-height: none; */
        flex: 1 0 100%;
    }

    .fancybox-slide {
        padding: 5px;
    }

    .footer-contact {
        margin: 1em 0;
        text-align: center;
    }

    footer .logo {
        text-align: center;
        margin: 0 auto 30px auto;
    }

    #callme_main {
        padding: 0;
    }

    .contact_form .button-warp > div:last-child {
        padding: 15px 30px;
        text-align: center;
    }

    .mobile-center {
        display: flex;
        justify-content: center;
    }

    .online-yc {
        position: fixed;
        bottom: 63px;
        right: 16px;
    }

    img.img-right {
        max-width: 50%;
        float: none;
        clear: both;
        display: block;
        margin: 15px auto;
    }

    .success {
        padding: 15px;
    }

    .success h3 {
        font-size: 2em;
        padding-top: 2em;
    }

    .success p {
        font-size: 1em;
    }

    .standard-form {
        /* padding: 20px; */
        width: 100%;
    }

    .contact_form input, .contact_form select,.contact_form .custom_btn {
        width: 100%;
    }

    .form_radio_btn label {
        font-size: 0.7em;
        padding: 5px;
        height: 70px;
        min-width: 50px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .footer_contacts {
        position: inherit;
    }

    .spec-item {
        /* display: block; */
        flex-direction: column;
    }

    .slider-home .swiper-wrapper div {
        width: 100vw;
        height: 50vh;
    }

    .slick-news-item .spec-item {
        flex-direction: column;
        height: auto;
    }

    .slider-nav-product-wrap {
        position: relative;
        top: 0em;
        width: 100%;
        box-shadow: 4px 6px 6px 3px #0000004f;
    }

    #back-top {
        right: 9px;
        bottom: -10px;
        z-index: 99;
    }

    #back-top span {
        width: 40px;
        height: 40px;
    }

    .more-block {
        padding: 25px;
    }

    .footer-wrap {
        /* display:flex; */
        /* background: var(--color-a-hover); */
        /* width: 100%; */
        /* overflow: hidden; */
        flex-direction: column;
    }

    .footer-wrap>div {
        flex: 1 1 50%;
    }

    .footer-wrap>div:first-child {
        padding: 15px;
        /* padding-top: 2em; */
    }

    .content-text .price {
        text-align: center;
    }

    .swiper-thumbs img {
        height: 100%;
    }

    .main_cat {
        /* grid-template-columns: 1fr 1fr; */
        gap: 25px;
    }

    .service_img {
        margin: 0 -15px;
    }

    section.top {
        padding-top: 100px;
    }

    .page_title {
        font-size: 1.25em;
    }

    .main_contacts_map {
        height: 100vw;
    }

    .main_service_title {
        color: var(--color-a);
        /* font-size: 1em; */
    }

    .main_service_item {
        /* aspect-ratio: 0.85; */
        width: 100%;
    }

    a.main_service_item {
        color: #fff;
    }

    .main_service_item .btn {
        opacity: 1;
        padding: 9px;
        width: 100%;
    }

    .main_service_img:after {
        opacity: 0;
    }

    .main_service_img:before {
        opacity: 1;
        background: linear-gradient(1deg, black, #00000059);
    }

    .main_service_txt {
        padding: 10px;
        /* font-size: 1em; */
    }

    .review-swiper {
        overflow: hidden;
    }

    .delivery-list {
        width: 200%;
        padding: 15px;
        /* overflow-x: scroll; */
    }

    .action_item>div {
        padding: 15px;
    }

    .main-page .advantages {
        /* margin-top: -190px; */
    }

    .advantage_item {
        padding: 20px;
        /* border-bottom: 5px solid; */
        aspect-ratio: unset;
        margin-bottom: 30px;
        min-height: 120px;
    }

    .advantage_icon {
        float: left;
        width: 90px;
    }

    .advantage_title {
        padding-left: 90px;
        /* height: 3em; */
    }

    a.btn, .btn, .btn.btn-arrow,.btn.btn-w100 {
        padding: 8px 15px;
        /* min-width: 200px; */
        font-size: 1em;
        /* height: 60px; */
        /* display: flex; */
        /* justify-content: center; */
        line-height: 2em;
    }

    .main_banner_btn .btn {
        /* width: 70%; */
    }

    #filter {
        display: flex;
        align-items: center;
    }

    #filter:after {
        content: '';
        background: #fff url(/assets/img/Filter.svg) no-repeat center / 70%;
        border-radius: 50%;
        color: #fff;
        aspect-ratio: 1;
        width: 2em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    ul.ul-num {
        column-count: 1;
        margin-bottom: 1em;
    }

    .about-count p {
        line-height: 1em;
        margin: 0;
    }

    .last-product-item {
        aspect-ratio: 0.5;
    }

    .service_content_text td {
        font-size: 1em;
    }

    ul.col2.form-check {
        display: flex;
        overflow: auto;
        padding: 1em 0;
    }

    label.form-check-label.label-color {
        width: 180px;
        /* padding: 5px; */
    }

    section.main-catalog {
        background: none;
    }

    .popup {
        width: 100%;
    }

    .popup-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .popup-wrapper > div:first-child {
        order: 2;
        width: 100%;
    }

    .popup-wrapper > div:last-child {
        order: 1;
    }

    .popup-img {
        margin-top: -5em;
        transform: scale(1);
    }

    .popup h3 {
        font-size: 2em;
        text-align: center;
    }

    #callme {
        padding: 2em 1em;
    }

    .product_title {
        text-align: center;
    }

    .navbar-nav .nav-item {
        display: block;
        font-size: 1.5em;
    }

    label.form-check-label img {
        padding: 15px;
        height: auto;
    }

    footer {
        margin-top: 5em;
        padding: 1em 1em 0 1em;
    }

    footer:before {
        font-size: 20vw;
    }

    .social {
        justify-content: end;
        margin-bottom: 2em;
    }

    #consultation {
        padding-top: 74vw;
    }

    .blue {
        padding: var(--pad);
    }

    .search-form {
        max-width: unset;
        width: 100%;
        margin: 5px 0
    }

    .widjet .contact_form {
        /* position: absolute; */
        bottom: -500px;
        opacity: 0;
        transition: 0.5s;
    }

    .widjet .contact_form.show-form {
        /* transform: translateY(0); */
        /* z-index: 10; */
        opacity: 1;
        bottom: 70px;
    }

    .widjet {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        /* overflow: hidden; */
    }

    .btn-chat {
        position: relative;
        z-index: 10;
        font-size: 1em;
        /* gap: 5px; */
    }

    .btn-chat>div {
        padding: 0 10px;
    }

    .main_service_img img {
        /* height:100px; */
        /* padding:5px; */
    }

    .price-img {
        margin-top: -1em;
    }

    .side-menu {
        border: 1px solid #CFCFCF;
        border-radius: 15px;
        padding: 30px;
        display: none;
        margin-bottom: 15px;
        position: relative;
    }

    .show-form {
        display: block!important;
    }

    .main_contacts_item {
        border: none;
        padding-right: 0
    }

    ul.footer_ul_contact {
        flex-direction: column;
    }

    footer:after {
        bottom: 30px;
        top: unset;
    }
}
