@import url('../lib/reset.css');

:root {
    --black-color: rgba(39, 38, 43,1);
    --beige-color: rgba(246, 239, 220);
    --blue-color: #103D74;
    --gray-color: #727272;
    --light-color: #F6EFDC;
    --red-color: #E4191F;
    --light-color: #F6EFDC;
    --light-gray-color: #E2E2E2;
}

*, *:before, *:after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: .3s ease-out;
    color: var(--black-color);
    outline: none!important;
}
a.hover {
    opacity: .7;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0 0 72px 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: var(--black-color);
}
body.fixed {
    height: 100vh;
    overflow: hidden;
}


/*layout*/
.v-container {
    margin-left: auto!important;
    margin-right: auto!important;
    max-width: 1520px;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
}
.v-flex {
    display: flex;
    flex-wrap: wrap;
}
.ai-c {
    align-items: center;
}
.ai-e {
    align-items: flex-end;
}
.ai-s {
    align-items: flex-start;
}
.jc-c {
    justify-content: center;
}
.jc-e {
    justify-content: flex-end;
}
.jc-s {
    justify-content: flex-start;
}
.jc-sb {
    justify-content: space-between;
}
.fd-c {
    flex-direction: column;
}
.bg-black {
    background: var(--black-color);
}
.bg-beige {
    background: var(--beige-color);
}
.bg-white {
    background: #fff;
}
.w100 {
    width: 100%;
}
.v-show-on-tablet,
.v-show-on-desktop,
.v-show-on-laptop {
    display: none;
}
.py48 {
    padding-top: 48px;
    padding-bottom: 48px;
}
.pt0 {
    padding-top: 0!important;
}
/*layout end*/


/*text*/
b {
    font-weight: bold;
}
ul, ol {
    padding-left: 1rem;
    margin-bottom: 1rem;
}
ol {
    list-style: none;
    counter-reset: li;
}
ul li,
ol li{
    margin-bottom: .75rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
    line-height: 1.6;
}
ol li {
    counter-increment: li;
    display: flex;
}
ol li:before {
    margin-right: 10px;
    content: counter(li) ". " !important;
    color: var(--black-color);
    flex-shrink: 0;
}
ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--black-color);
    border-radius: 50%;
}
h1,h2,h3,h4,h5 {
    line-height: 1.2;
}
h2 {
    margin: 0 0 24px 0;
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
}
h3 {
    margin: 0 0 24px 0;
    font-size: 18px;
    font-family: "Merriweather", serif;
    font-weight: 400;
}
h4  {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    display: block;
    margin: 0 0 8px 0;
}
p {
    line-height: 1.6;
    margin: 0 0 16px 0;
}
.fs12 {
    font-size: 11px;
}
.fs14 {
    font-size: 14px;
}
.fs24 {
    font-size: 21px;
}
.fs20 {
    font-size: 18px;
}
.text-upper {
    text-transform: uppercase;
}
.white-color {
    color: white;
}
.begie-color {
    color: var(--beige-color);
}
.black-color {
    color: var(--black-color);
}
.text-center {
    text-align: center;
}
.montserrat-400 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.montserrat-500 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.montserrat-600 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.montserrat-700 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.merriweather-light {
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: normal;
}
.merriweather-regular {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
}
.merriweather-bold {
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-style: normal;
}
/*text end*/

/*inputs*/
input[type="checkbox"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 24px;
    height: 24px;
    margin: 0 12px 0 0;
    position: relative;
    flex-shrink: 0;
}
input[type="checkbox"]:checked {
    accent-color: var(--black-color);
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea,
.v-input-field {
    border-radius: 8px;
    border: 1px solid var(--black-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    font-weight: 400;
    padding: 19px 46px 19px 24px;
    display: flex;
    align-items: center;
    color: var(--black-color);
    margin-bottom: 24px;
    min-height: 64px;
    width: 100%;
}

#bx_admin_form input,
#bx_admin_form textarea {
    min-height: initial;
    appearance: initial;
}
textarea {
    min-height: 96px;
}
input.not-valid {
    border-color: red;
}
.v-input-field::placeholder {
    font-size: 14px;
    font-weight: 400;
    padding: 19px 46px 19px 24px;
    display: flex;
    align-items: center;
    color: var(--black-color);
    margin-bottom: 24px;
    min-height: 64px;
}

form input[type="checkbox"] {
    display: inline-flex;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    margin: 0 14px 0 0;
    position: relative;
    flex-shrink: 0;
    background: none!important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--black-color);
}
form input[type="checkbox"]:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 9px;
    transform: translate(-50%, -50%);
    transition: .3s ease-out;
    opacity: 0;
    background: url('data:image/svg+xml,<svg width="13" height="9" viewBox="0 0 13 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.7144 0.277256C12.8973 0.454634 13 0.695179 13 0.945992C13 1.19681 12.8973 1.43735 12.7144 1.61473L5.40245 8.70441C5.30582 8.79812 5.1911 8.87246 5.06483 8.92318C4.93857 8.9739 4.80324 9 4.66657 9C4.5299 9 4.39457 8.9739 4.26831 8.92318C4.14205 8.87246 4.02732 8.79812 3.9307 8.70441L0.297818 5.18258C0.204645 5.09533 0.130327 4.99096 0.0792003 4.87556C0.0280737 4.76016 0.00116242 4.63604 3.68327e-05 4.51044C-0.00108875 4.38485 0.0235939 4.2603 0.0726445 4.14405C0.121695 4.02781 0.194131 3.9222 0.285727 3.83339C0.377322 3.74458 0.486242 3.67434 0.606131 3.62678C0.72602 3.57922 0.854478 3.55529 0.984008 3.55638C1.11354 3.55747 1.24155 3.58357 1.36057 3.63314C1.47958 3.68271 1.58723 3.75477 1.67722 3.84511L4.66625 6.74329L11.3343 0.277256C11.4249 0.189359 11.5325 0.119631 11.6509 0.0720587C11.7693 0.0244859 11.8962 0 12.0244 0C12.1525 0 12.2794 0.0244859 12.3978 0.0720587C12.5162 0.119631 12.6238 0.189359 12.7144 0.277256Z" fill="%2327262B"/></svg>');
}

form input[type="checkbox"]:checked:after {
    opacity: 1;
}
form input[type="checkbox"]:checked {
    accent-color: transparent;
}
textarea[name="SPM"] {
    display: none!important;
}
/*inputs end*/

/*forms*/
.v-form-modal {
    background: white!important;
    padding: 33px 48px!important;
    border-radius: 8px!important;
    position: relative;
    width: 100%!important;
    max-width: 558px!important;
}
.v-form-modal .title {
    font-size: 21px;
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-style: normal;
    padding-right: 48px;
    margin: 0 0 37px 0;
    display: block;
}
.v-form-modal .close-modal-btn {
    flex-shrink: 0;
    margin-left: 16px;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 24px;
    right: 36px;
    cursor: pointer;
}
.v-agree-label {
    display: flex;
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 24px;
    color: var(--black-color);
}
.v-agree-label a {
    text-decoration: underline;
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--black-color);
}
/*forms end*/

/*buttons*/
.v-btn {
    border: 1px solid var(--black-color);
}
.v-btn,
#payOnline input[type="submit"]{
    border-radius: 8px;
    padding: 24px 32px;
    cursor: pointer;
    transition: .3s ease-out;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    /*border: none;*/
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--black-color);
    color: var(--beige-color);
}
.v-btn svg,
.v-btn path{
    transition: .3s ease-out;
}
.v-btn:hover,
#payOnline input[type="submit"]:hover{
    background: var(--beige-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.v-btn:hover path {
    stroke: var(--beige-color);
}
.v-btn.small {
    padding: 16px 32px;
    font-size: 14px;
}
.v-btn.beige {
    background: var(--beige-color);
    color: var(--black-color);
    border-color: var(--beige-color)
}
.v-btn.beige:hover {
    background: var(--black-color);
    color: var(--beige-color);
    border-color: var(--beige-color);
}
.v-btn.outline {
    background: transparent;
    color: var(--beige-color);
    border: 1px solid var(--beige-color);

}
.v-show-more-btn {
    height: 68px;
    background: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 36px 0;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    color: var(--beige-color);
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
    border-radius: 8px;
    transition: .3s ease-out;
}
.v-show-more-btn.disabled {
    pointer-events: none;
    opacity: .4;
}
.v-show-more-btn .icon {
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 12px;
    flex-shrink: 0;
    transition: .3s ease-out;
}
.v-show-more-btn.disabled .icon {
    animation:spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    } to {
          transform: rotate(360deg);
      }
}
/*buttons end*/


/*footer*/
.v-footer {
    padding-top: 48px;
    padding-bottom: 64px;
}
.v-footer .logo .icon {
    display: block;
    margin: 0 24px;
    width: 60px;
    height: 70px;
    object-fit: contain;
}
.v-footer .logo .name {
    font-size: 14px;
    display: block;
    margin: 16px 0 32px 0;

}
.v-footer .menu {
    margin: 16px 0 32px 0;
}
.v-footer .menu a {
    display: block;
    margin-bottom: 16px;
    text-align: center;
}
.v-footer .copy {
    margin-bottom: 24px;
    display: block;
}
.v-footer .dev a {
    color: white;
}
/*footer end*/



/*contacts-with-map*/
/*[class*="ground-pane"] {*/
/*    filter: grayscale(1);*/
/*}*/
.v-contacts-with-map {
    position: relative;
}
.v-contacts-with-map .v-container {
    /*padding-left: 0;*/
    /*padding-right: 0;*/
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}
.v-contacts-with-map .v-map {
    min-height: 300px;

    padding: 0 8px 48px 8px;
}
.v-contacts-with-map .contacts {
    padding: 48px 8px 24px 8px;
}
.v-contacts-with-map .title {
    margin: 0 0 24px 0;
    display: block;
}
.v-contacts-with-map .logo {
    margin-bottom: 24px;
}
.v-contacts-with-map .logo .name {
    line-height: 1.3;
}
.v-contacts-with-map .logo .icon {
    width: 60px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin-right: 11px;
}
.v-contacts-with-map .address,
.v-contacts-with-map .phone,
.v-contacts-with-map .email {
    margin-bottom: 16px;
    line-height: 1.2;
}
.v-contacts-with-map .v-btn {
    width: 100%;
}

.v-contacts-with-map {
    width: 100%;
    /*height: 516px;*/
}
/*contacts-with-map end*/


/*v-sber-block*/
.v-sber-block .logo {
    text-align: center;
    margin-bottom: 24px;
    display: block;
    object-fit: contain;
}
.v-sber-block .title {
    margin: 0 0 48px 0;
}
.v-sber-block p {
    margin: 0 0 24px 0;
}
.v-sber-block .grid img {
    object-fit: cover;
    width: 100%;
}
.v-sber-block .grid img:not(.v-show-on-tablet) {
    display: block;
    margin-bottom: 24px;
}
.v-sber-block img:not(.logo) {
    border-radius: 8px;
}
.v-sber-block .grid {
    display: grid;
    grid-template-columns: 1fr;
}
.v-sber-block .v-btn {
    padding: 16px;
    width: 100%;
}
/*v-sber-block end*/

/*v-call-agent*/
.v-call-agent .title {
    margin: 0 0 24px 0;
}
.v-call-agent .text {
    margin: 0 0 16px 0;
}
.v-call-agent .phone {
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
    color: var(--black-color);
}
.v-call-agent .v-btn {
    width: 100%;
    margin-bottom: 48px;
    display: flex;
}
.v-call-agent .v-btn.small {
    width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
    justify-content: flex-start;
    padding: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    border: 1px solid var(--black-color);
    background: var(--beige-color);
    color: var(--black-color);
    transition: .3s ease-out;
}
.v-call-agent .v-btn.small .icon {
    display: block;
    flex-shrink: 0;
    margin-right: 5px;
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.v-call-agent .v-btn.small:hover {
    background: var(--black-color);
    color: var(--beige-color);
}
.v-call-agent .v-btn.small .arr rect {
    fill: var(--black-color);
    transition: .3s ease-out ;
}
.v-call-agent .v-btn.small:hover .arr rect {
fill: var(--beige-color);
}
.v-call-agent .v-btn.small:hover .icon path {
    fill: var(--beige-color);
    stroke: initial;
}
.v-call-agent .v-btn.small:hover .arr path {
    stroke: var(--black-color)
}
.v-call-agent .v-btn.small:last-child {
    margin-bottom: 0;
}
.v-call-agent .v-container {
    display: flex;
    flex-direction: column;
}
.v-call-agent .v-container > div:first-child {
    order: 2;
    margin-top: 42px;
}
.v-call-agent .v-btn.js-call-agent-btn {
    margin-bottom: 0;
}
/*v-call-agent end*/


/*v-consultation-block*/
.v-consultation-block .title {
    margin: 0 0 24px 0;
}
.v-consultation-block p {
    color: var(--beige-color);
    margin: 0 0 32px 0;
    font-size: 14px;
}
.v-consultation-block img {
    width: 100%;
    display: block;
    margin-bottom: 32px;
    object-fit: cover;
    border-radius: 8px;
}
.v-consultation-block .grid {
    display: grid;
    grid-template-columns: 1fr;
}
.v-consultation-block .grid > * {
    min-width: 0px;
}
.v-consultation-block .img1 {
    /*height: 366px;*/
}
.v-consultation-block .img2 {
    height: 232px;
}
.v-consultation-block .img3 {
    height: 220px;
}
.v-consultation-block .phone {
    color: var(--beige-color);
    display: block;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}
.v-consultation-block .v-btn {
    width: 100%;
    margin-bottom: 48px;
}
.v-consultation-block .info {
    background: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
}
.v-consultation-block .info .icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}
.v-consultation-block .info p {
    font-size: 14px;
    text-align: center;
    color: var(--black-color);
    margin: 0;
}
/*v-consultation-block end*/

/*v-services-slider*/
.v-services-slider-wrapper .title {
    margin: 0 0 24px 0;
}
.v-services-slider {
    width: 100%;
    padding-right: 0;
    padding-left: 8px!important;
}
.v-services-slider .item {
    position: relative;
    width: 100%;
    height: 321px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 32px 24px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
}
.v-services-slider .item .name,
.v-services-slider .item .v-btn {
    position: relative;
    z-index: 2;
}
.v-services-slider .item .name {
    color: white;
    display: block;
    margin-bottom: 16px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
}
.v-services-slider .item .v-btn {
    width: initial;
}
.v-services-slider .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/*v-services-slider end*/


/*v-price-block*/
.v-price-block {
    padding-bottom: 0;
}
.v-price-block .title,
.v-price-block .sub {
    margin: 0 0 24px 0;
}
.v-price-block .text {
    margin: 0 0 32px 0;
    line-height: 1.4;
}
.v-price-block .grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    margin-bottom: 48px;
}
.v-price-block label {
    margin: 0 0 24px 0;
    flex-wrap: nowrap;
    line-height: 1.4;
}
.v-price-block label input {
    flex-shrink: 0;
}
.v-price-block .grid:last-child {
    margin-bottom: 32px;
}
.v-price-block .grid .item {
    border-radius: 8px;
    border: 1px solid var(--black-color);
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    color: var(--black-color);
    transition: .3s ease-out;
}
.v-price-block .grid .item:hover {
    background: var(--beige-color);
    border-color: var(--beige-color);
}
.v-price-block .grid .item .name {
    margin: 0 0 16px 0;
}
.v-price-block .grid .item .text {
    font-size: 14px;
    margin: 0 0 16px 0;
}
.v-price-block .grid .item .price {
    display: block;
    margin: 0 0 24px 0;
    font-weight: 700;
}
.v-price-block .grid .item .v-btn {
    width: 100%;
}
.v-price-block .info {
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.v-price-block .info .icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 0 16px 0;
}
.v-price-block .info .text {
    margin: 0 0 24px 0;
    font-size: 14px;
}
.v-price-block .info .v-btn {
    width: 100%;
    margin-bottom: 28px;
}
.v-price-block .info .v-btn:last-child {
    margin-bottom: 0;
}
/*v-price-block end*/


/*v-free-consultation-block*/
.v-free-consultation-block {
    position: relative;
}
.v-free-consultation-block .title,
.v-free-consultation-block p,
.v-free-consultation-block .phone{
    margin: 0 0 24px 0;
}
.v-free-consultation-block .content {
    position: relative;
    z-index: 2;
}
.v-free-consultation-block .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.v-free-consultation-block .phone {
    display: block;
}
.v-free-consultation-block .v-btn {
    width: 100%;
}
/*v-free-consultation-block end*/


/*v-menu-block*/
.v-menu-block .title,
.v-menu-block .text {
    margin: 0 0 24px 0;
}
.v-menu-block .grid {
    display: grid;
    grid-template-columns: 1fr;
}
.v-menu-block .grid > * {
    min-width: 0px;
}
.v-menu-block .v-btn {
    width: 100%;
    margin-bottom: 32px;
}
.v-menu-block .grid img {
    width: 100%;
    height: 279px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.v-menu-block .menu {
    padding-right: 0;
    margin-bottom: 48px;
    /*overflow: auto;*/
    /*display: flex;*/
}
.v-menu-block .menu::-webkit-scrollbar {
    display: none;
}
.v-menu-block .menu a {
    flex-shrink: 0;
    background: var(--beige-color);
    padding: 16px 32px;
    margin-right: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    display: inline-flex;
    text-transform: uppercase;
    border-radius: 8px;
    color: var(--black-color);
}
.v-menu-block .menu a:hover {

}
/*v-menu-block end*/

/*v-main-banner*/
.v-main-banner {
    width: 100%;
    position: relative;
    height: 626px;
    overflow: hidden;
}
.v-main-banner .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.v-main-banner .title {
    font-size: 28px;
}
.v-main-banner .title,
.v-main-banner .sub,
.v-main-banner .text {
    margin: 0 0 16px 0;
    max-width: 600px;
}
.v-main-banner .bold {
    margin: 0 0 8px 0;
    display: block;
}
.v-main-banner .phone {
    margin: 0 0 32px 0;
    display: block;
}
.v-main-banner .v-btn {
    width: 100%;
}
.v-main-banner img {
    position: absolute;
    bottom: -72px;
    right: -190px;
    width: 554px;
    height: 379px;
    object-fit: contain;
    z-index: 0;
}
/*v-main-banner end*/


/*header*/
.v-header {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
}
.v-header .menu-wrapper {
    display: none;
}
.v-header .col-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.v-header .logo .icon {
    display: block;
    margin: 0 8px;
}
.v-header .logo .name {
    margin-top: 4px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}
.v-header .address,
.v-header .worktime{
    font-size: 14px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
}
.v-header .top-menu a,
.v-header  .toggle-menu-btn {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
}
/*header end*/

/*v-mobile-menu-panel*/
.v-mobile-menu-panel-wrapper {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 72px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.v-mobile-menu-panel {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 9px;
    z-index: 90;
}
.v-mobile-menu-panel > * {
    min-width: 0;
}
.v-mobile-menu-panel .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0px;
    height: 52px;
    color: white;
    font-size: 9px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: -0.05em;
    text-align: center;
}
.v-mobile-menu-panel .item.card-item {
    position: relative;
}
.v-mobile-menu-panel .item.card-item .cnt {
    background: var(--beige-color);
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    left: calc(50% + 3px);
    top: 5px;
    color: var(--black-color);
}
.v-mobile-menu-panel .item .icon {
    width: 24px;
    height: 24px;
    display: block;
}
.v-mobile-menu-panel .item .icon.close {
    display: none;
}
.v-mobile-menu-panel .item:last-child .icon {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}
.v-mobile-menu-toggle-btn .icon-wrapper {
    width: 24px;
    height: 24px;
    position: relative;
}
.v-mobile-menu-toggle-btn .icon-wrapper .icon {
    position: absolute;
    top: 0;
    left: 0;
}
/*v-mobile-menu-panel end*/

/*v-mobile-menu*/
.v-mobile-menu-wrapper {
    transition: .3s ease-out;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: var(--black-color);
    visibility: hidden;
    z-index: 888;
    padding-top: 16px;
    padding-bottom: 100px;
    overflow: auto;
}
.v-mobile-menu-wrapper::-webkit-scrollbar {
    display: none;
}
.v-mobile-menu-wrapper.open {
    transform: translateX(0);
    visibility: visible;
}
.v-mobile-menu-wrapper .logo {
    margin-bottom: 16px;
}
.v-mobile-menu-wrapper .logo .icon {
    display: block;
    margin: 0 8px;
}
.v-mobile-menu-wrapper .logo .name {
    margin-top: 4px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}


.v-mobile-menu {
    position: relative;
    background: var(--beige-color);
}

.v-mobile-menu .menu-item {
    width: 100%;
    position: absolute;
    z-index: 0;
    padding-top: 32px;
    padding-bottom: 58px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    background: white;
    top: 0;
    left: 0;
}
.v-mobile-menu .menu-item.lvl-1 {
    background: var(--beige-color)
}
.v-mobile-menu .menu-item.lvl-2 {
    background: rgba(255,255,255, .4)
}

.v-mobile-menu .menu-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 3;
}
.v-mobile-menu-wrapper .menu-item a {
    line-height: 1.3;
}
.v-mobile-menu-wrapper .menu-item .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 0 0;
}

.v-mobile-menu .menu-item.lvl-1 .item {
    padding: 32px 0 0 0;
}
.v-mobile-menu-wrapper .menu-item .item .arr {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    margin-left: 22px;
    flex-shrink: 0;
    cursor: pointer;
    transition: .3s ease-out;
}
.v-mobile-menu-wrapper .menu-item .item .arr:hover {
    opacity: .7;
}
.v-mobile-menu-wrapper .menu-item .back {
    display: flex;
    padding-bottom: 8px;
}
.v-mobile-menu-wrapper .menu-item .back .arr {
    margin-left: 0;
    margin-right: 22px;
}
.v-mobile-menu-wrapper .links {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 72px;
}
.v-mobile-menu-wrapper .links .v-btn {
    margin-bottom: 16px;
    text-align: center;
}
/*v-mobile-menu end*/



.swiper:not(.swiper-initialized) {
    height: 321px;
    overflow: hidden;
    position: relative;
}
.swiper:not(.swiper-initialized):before,
.swiper:not(.swiper-initialized):after {
    content: '';
    display: block;
    position: absolute;
    z-index: 3;
}
.swiper:not(.swiper-initialized):before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
}
.swiper:not(.swiper-initialized):after {
    width: 48px;
    height: 48px;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    border: 5px solid var(--black-color);
    border-bottom-color: var(--beige-color);
    border-radius: 50%;
    display: block;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {

}
@media (min-width: 1280px) {

}


pre {
    background: #262a2b;
    color: #5eb0ef;
    font-size: 9px;
    padding: 2rem;
}





.v-mobile-menu ul {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*opacity: 0;*/
    /*visibility: hidden;*/
    /*transition: .3s ease-out;*/
    padding-left: 2rem;
}
/*.v-mobile-menu ul.active {*/
/*    position: relative;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.toggle-menu-btn {
    cursor: pointer;
}

.v-form-modal .f-button.is-close-btn {
    display: none;
}


.v-breadcrumbs {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: auto;
    padding-top: 32px;
    padding-bottom: 32px;
}
.v-breadcrumbs * {
    flex-shrink: 0;
}
.v-breadcrumbs a {
    font-size: 14px;
    color: var(--black-color);
    position: relative;
    padding-right: 36px;
    display: flex;
    align-items: center;
}
.v-breadcrumbs a:after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: url("/local/templates/2024/assets/svg/arr-r.svg") no-repeat center;
    background-size: contain;
}



.v-catalog-categories {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    margin-bottom: 60px;
}
.v-catalog-categories > * {
    min-width: 0px;
}
.v-catalog-categories .item {
    width: 100%;
    padding: 24px;
    border: 1px solid #27262B;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-gap: 24px;
    align-items: center;
    border-radius: 8px;
    min-height: 425px;
}
.v-catalog-categories .item > div:first-child {
    height: 100%;
}
.v-catalog-categories .item .name {
    text-transform: uppercase;
    font-size: 21px;
    margin: 0 0 24px 0;
    color: var(--black-color);
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    display: block;
}
.v-catalog-categories .item .link {
    display: block;
    margin: 0 0 8px 0;
    font-size: 14px;
    color: var(--black-color);
    font-weight: 500;
}
.v-catalog-categories .item .v-btn {
    margin: auto 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*display: grid;*/
    /*grid-template-columns: 1fr 24px;*/
    /*grid-gap: 8px;*/
    font-size: 14px;
}
.v-catalog-categories .item .v-btn svg {
    flex-shrink: 0;
    display: block;
    margin-left: 12px;
}
.v-catalog-categories .item .v-btn > * {
    min-width: 0px;
}
.v-catalog-categories .item .pic {
    display: flex;
    align-items: center;
    width: 100%;
}
.v-catalog-categories .item .pic img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.v-page-title {
    margin: 0 0 32px 0;
    display: block;
    font-size: 28px;
}
.bg-beige > .v-page-title {
    margin-bottom: 0;
    padding-bottom: 32px;
    margin-top: 0;
    padding-top: 22px;
}


.v-employees {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 8px;
    grid-column-gap: 8px;
    margin-bottom: 60px;
}
.v-employees .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #727272;
    border-radius: 8px;
    overflow: hidden;
}
.v-employees .item * {
    text-align: center;
}
.v-employees .item .pic {
    width: 100%;
    /*height: 230px;*/
    overflow: hidden;
}
.v-employees .item .pic img {
    width: 100%;
    height: auto;
    /*object-fit: cover;*/
}
.v-employees .item .description {
    margin-top: auto;
    padding: 12px 7px;
}
.v-employees .item .surname {
    text-transform: uppercase;
    display: block;
    width: 100%;
    font-size: 14px;
}
.v-employees .item .name {
    display: block;
    width: 100%;
    margin: 0 0 16px 0;
    color: var(--black-color);
}
.v-employees .item .num {
    color: var(--black-color);
    display: block;
    margin: 0 0 24px 0;
}


.v-grid-2 {
    display: grid;
    grid-template-columns: 1fr ;
    grid-gap: 16px;
}
.v-grid-2 > * {
    min-width: 0px;
}
.v-grid-2 img {
    width: 100%;
}

.v-sber-block.v2 .logo {
    width: 230px!important;
    height: 63px!important;
}

.v-table-block {
    width: 100%;
    margin-bottom: 32px;
    overflow: auto;
}
table {
    border-collapse: separate;
    width: 100%;
    border-spacing: 4px;
}

td, th {
    border: none;
    text-align: left;
    padding: 30px 32px;
    background: var(--beige-color);
}




.v-sort-filter-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    position: relative;
}
.v-sort-filter-wrapper > * {
    min-width: 0px;
}



.v-mobile-menu-top-panel {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
}
.v-mobile-menu-top-panel .v-open-search-btn {
    width: 24px;
    height: 24px;
    display: block;
    margin-left: 16px;
    cursor: pointer;
    flex-shrink: 0;
}
.v-mobile-menu-top-panel .phone {
    font-size: 14px;
    color: var(--light-color);
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
    /*text-decoration: underline;*/
    display: block;
    margin-right: auto;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
}












.v-icon-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px;
    margin-bottom: 60px;
}
.v-icon-list .item {
    min-width: 0px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--black-color);
    border-radius: 8px;
    font-size: 18px;
    padding: 20px 32px;
    color: white;
}
.v-icon-list .item svg,
.v-icon-list .item img {
    display: block;
    flex-shrink: 0;
    margin-right: 32px;
    object-fit: contain;
}
@media (max-width: 1024px) {
    .v-icon-list {
        margin-bottom: 32px;
    }
    .v-icon-list .item {
        font-size: 14px;
        padding: 20px;
    }
    .v-icon-list .item svg,
    .v-icon-list .item img {
        margin-right: 16px;
    }
}
@media (max-width: 920px) {
    .v-icon-list {
        grid-template-columns: 1fr;
    }
}



.v-card-link {
    position: relative;
}
.v-card-link .cnt {
    position: absolute!important;
    top: -40% !important;
    left: 30% !important;
    background: var(--beige-color);
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.v-card-link .cnt .bx-basket-block {
    color: var(--black-color);
    font-size: 11px;
    font-weight: bold;
}


.v-card-link .cnt .bx-basket-item-list-container{
    display: none;
}

.v-calculator-wrapper {
    margin-top: 3rem;
}


.contacts-page-form-wrapper .title {
    font-size: 21px;
}
.v-total-wrapper .total-text {
    font-size: 28px!important;
}

.v-total-wrapper .form-btn {
    width: 100%;
    margin-top: 24px;
}
@media(min-width: 640px) {
    .v-total-wrapper .form-btn {
        width: initial;
        margin-top: 0;
    }
}




.v-page-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 32px;
    border-radius: 8px;
}
@media (max-width: 1024px) {
    .v-page-banner {
        margin-bottom: 24px;
    }
}


.v-icon-list1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px;
    margin-bottom: 60px;
}
.v-icon-list1 .item {
    min-width: 0px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--beige-color);
    border-radius: 8px;
    font-size: 18px;
    padding: 20px 32px;
    color: var(--black-color);
}
.v-icon-list1 .item svg,
.v-icon-list1 .item img {
    display: block;
    flex-shrink: 0;
    margin-right: 32px;
    object-fit: contain;
}
@media (max-width: 1024px) {
    .v-icon-list1 {
        margin-bottom: 32px;
    }
    .v-icon-list1 .item {
        font-size: 14px;
        padding: 20px;
    }
    .v-icon-list1 .item svg,
    .v-icon-list1 .item img {
        margin-right: 16px;
    }
}
@media (max-width: 920px) {
    .v-icon-list1 {
        grid-template-columns: 1fr;
    }
}


.v-burger-mobile{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.v-search-mobile {
    flex-shrink: 0;
}
.v-burger-mobile .icon.close {
    display: none;
}
.v-header > .v-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-search-mobile {
    position: relative;
}
.v-search-mobile .v-header-search-form {
    width: 100%;
    width: 300px;
}
.v-search-mobile .v-open-search-btn {
    width: 20px;
    height: 20px;
}
.v-search-mobile .v-open-search-btn path {
    fill: var(--beige-color);
}
.v-search-mobile .v-header-search-form input {
    padding: 8px;
    font-size: 11px;
}
.v-search-mobile .v-header-search-form button {
    font-size: 11px;
    padding: 8px;
}

.amo-button-holder {
    bottom: 130px!important;
    right: 3px!important;
}
.amo-button-holder .amo-button {
    width: 45px!important;
    height: 45px!important;
}

.bg-black .vi-form .ok {
    color: white;
}
@media (max-width: 580px) {
    .amo-button-holder {
        bottom: 50%!important;
    }
}
@media (max-width: 400px) {
    .v-header .logo .name {
        font-size: 11px;
    }

    #legacy-cookie-wrap {
        bottom: 60px;
    }

}

.v-debug {
    padding: 1rem;
    background: #252424;
    color: #00ffe2;
    font-size: 0.7rem;
}