@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Arimo';
    src: url('/fonts/arimo/Arimo-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

:root {
  --main-color-action: #0066FF;
  --main-color-hover: #67A2F3;
}

@-webkit-keyframes pulsate {
    50% {
        color: #fff;
        text-shadow: 0 -1px rgba(0, 0, 0, .3), 0 0 5px #ffd, 0 0 8px #fff;
    }
}

@keyframes pulsate {
    50% {
        color: #fff;
        text-shadow: 0 -1px rgba(0, 0, 0, .3), 0 0 5px #ffd, 0 0 8px #fff;
    }
}
@-webkit-keyframes slideInFromTop {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes slideInFromTop {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes moveIcon {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  50% { -webkit-transform: translateX(10px); transform: translateX(10px); }
  100% { -webkit-transform: translateX(0); transform: translateX(0); }
}
@keyframes moveIcon {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  50% { -webkit-transform: translateX(10px); transform: translateX(10px); }
  100% { -webkit-transform: translateX(0); transform: translateX(0); }
}

@-webkit-keyframes shake {
  0% { -webkit-transform: translateY(-2px) rotateZ(1deg); transform: translateY(-2px) rotateZ(1deg); -webkit-transform-origin: center; transform-origin: center; }
  25% { -webkit-transform: translateY(2px) rotateZ(-1deg); transform: translateY(2px) rotateZ(-1deg); -webkit-transform-origin: center; transform-origin: center; }
  50% { -webkit-transform: translateY(-2px) rotateZ(1deg); transform: translateY(-2px) rotateZ(1deg); -webkit-transform-origin: center; transform-origin: center; }
  75% { -webkit-transform: translateY(2px) rotateZ(-1deg); transform: translateY(2px) rotateZ(-1deg); -webkit-transform-origin: center; transform-origin: center; }
  100% { -webkit-transform: translateY(0) rotateZ(0); transform: translateY(0) rotateZ(0); -webkit-transform-origin: center; transform-origin: center; }
}
@keyframes shake {
  0% { -webkit-transform: translateY(-2px) rotateZ(1deg); transform: translateY(-2px) rotateZ(1deg); -webkit-transform-origin: center; transform-origin: center; }
  25% { -webkit-transform: translateY(2px) rotateZ(-1deg); transform: translateY(2px) rotateZ(-1deg); -webkit-transform-origin: center; transform-origin: center; }
  50% { -webkit-transform: translateY(-2px) rotateZ(1deg); transform: translateY(-2px) rotateZ(1deg); -webkit-transform-origin: center; transform-origin: center; }
  75% { -webkit-transform: translateY(2px) rotateZ(-1deg); transform: translateY(2px) rotateZ(-1deg); -webkit-transform-origin: center; transform-origin: center; }
  100% { -webkit-transform: translateY(0) rotateZ(0); transform: translateY(0) rotateZ(0); -webkit-transform-origin: center; transform-origin: center; }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    opacity: 1;
    transition: opacity 0.3s;
}

table {
    border-collapse: collapse;
    border: none;
}

body {
    font-family: 'Arimo', sans-serif;
    line-height: 1.3;
}

h1 {
    font-weight: 700;
    font-size: 48px;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-white {
    color: #ffffff;
}
.text-center {
    text-align: center;
}

.articleBody h2 {
    font-weight: bold;
    font-size: 22px;
}

.articleBody table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.articleBody table thead {
    background-color: #f8f9fa;
    border-bottom: 2px solid #0066FF;
}

.articleBody table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: #373945;
    font-size: 15px;
    border-right: 1px solid #e0e0e0;
    white-space: nowrap;
}

.articleBody table th:last-child {
    border-right: none;
}

.articleBody table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    vertical-align: top;
    line-height: 1.5;
    color: #373945;
}

.articleBody table td:last-child {
    border-right: none;
}

.articleBody table tbody tr:last-child td {
    border-bottom: none;
}

.articleBody table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.articleBody table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.articleBody table tbody tr:nth-child(even):hover {
    background-color: #f0f2f4;
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 768px) {
    .articleBody table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .articleBody table th,
    .articleBody table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .articleBody table th,
    .articleBody table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .articleBody table thead {
        display: none;
    }
    
    .articleBody table tbody tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }
    
    .articleBody table tbody tr td {
        display: block;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .articleBody table tbody tr td:before {
        content: attr(data-label);
        font-weight: 700;
        display: block;
        margin-bottom: 4px;
        color: #0066FF;
        font-size: 12px;
        text-transform: uppercase;
    }
    
    .articleBody table tbody tr td:last-child {
        border-bottom: none;
    }
}
input, textarea {
    border: none;
    outline: none;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
}

.visible-480 {
    display: none;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.container:after {
    content: '';
    display: table;
    clear: both;
}

blockquote {
    font-style: italic;
    font-weight: bold;
    padding-left: 20px;
}

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

.header {
    position: relative;
    background-color: #4A4140;
    z-index: 1;
}
.header .contacts {
    display: block;
    text-align: center;
    padding: 0 10px;
}
.logo img {
    display: block;
}

.mainMenu {
    position: relative;
}

.mainMenu__item {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mainMenu__item i,
.footerMenu__item i {
    display: inline-block;
    color: white;
    margin-left: 10px;
}

.mainMenu__item:not(:last-child) {
    margin-right: 25px;
}

.mainMenu__item--prom {
    position: relative;
}

.mainMenu__item--prom:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: -30px;
    width: 26px;
    height: 26px;
    background-image: url(../images/spec.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 10;
}

.mainMenu__item--prom span {
    color: rgb(255, 224, 21);
}

.mainMenu__link,
.footerMenu__link,
.submenu__item a {
    display: inline-block;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
}

.mainMenu__link:hover,
.footerMenu__link:hover,
.submenu__item a:hover {
    color: #b4b4b4;
}

.mainMenu__item .active {
    color: #dcdcdc;
    font-size: 16px;
    font-weight: 700;
}
.mainMenu__icon {
    margin-left: 10px;
}
.mainMenu__icon--up {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.submenu {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    background-color: #4A4140;
    list-style: none;
}
.submenu--opened {
    display: block;
}
.submenu:hover {
    display: block;
}
.footer .submenu__item {
    border: none;
}
.footer .submenu {
    position: static;
    background-color: #4A4140;
}
    
.footerMenu__icon {
    position: absolute;
    top: 7px;
    right: 0;
    padding-left: 10px;
    padding-right: 10px;
}
.footerMenu__icon--up {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.submenu__item {
    width: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    box-shadow: inset 0 -2px 0px rgba(0, 0, 0, .1);
    padding: 10px;
}

.navbar__btn-menu {
    display: none;
}

.contacts {
    position: relative;
    display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
    width: 240px;
}

.contacts__telIcon {
    position: absolute;
    display: block;
    top: 5px;
    right: 0;
    width: 64px;
    height: 40px;
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(144, 182, 255, 0.36);
    -webkit-box-shadow-box-shadow: 0 4px 10px 0 rgba(144, 182, 255, 0.36);
    background-color: #0065f2;
    background-image: url(../images/tel.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center;
}

.tel {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.tel a {
    color: #fff;
}
.tel a:hover {
    text-decoration: none;
}
.tel small,
.contactsMap small {
    opacity: 1!important;
}

.workTime {
    color: #eeeeee;
    font-size: 14px;
}

.req {
    color: #eeeeee;
    font-size: 14px;
    margin-top: 10px;
}

.navbar__row {
    display: -webkit-box;
    display-display: -ms-flexbox;
    display-display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar--fixed {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(54, 57, 77, .8);
    z-index: 999;
    -webkit-animation: slideInFromTop 1s ease-in-out forwards;
            animation: slideInFromTop 1s ease-in-out forwards;
}

.firstScreen {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}
.firstScreen__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.firstScreen__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.firstScreen__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.firstScreen__list {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    list-style-position: inside;
    margin-bottom: 36px;
}

.pageTitle {
    margin-bottom: 24px;
}
.sectionLabel {
    background-color: var(--main-color-action);
    padding: 5px 0;
}
.sectionLabel__row {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.sectionLabel__title {
    font-weight: 700;
    font-size: 40px;
}

.form {
    width: 358px;
    background-color: #ffffff;
    border: 1px solid #000;
    padding: 15px 25px;
    text-align: center;
}

.form__title {
    font-size: 20px;
    font-weight: 700;
}
.form .input-group {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
}

.form__input {
    width: 100%;
    height: 45px;
    border: solid 2px #ABA5A5;
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 35px;
}

.form .form__btn {
    display: inline-block;
    height: 45px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 10px 0 rgba(144, 182, 255, 0.36);
    background-color: var(--main-color-action);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    width: auto;
    padding-left: 5vw;
    padding-right: 5vw;
}

.form .form__btn:hover {
    color: #373945;
}

.form__subText {
    font-size: 14px;
    color: #b4b4b4;
    padding-left: 20px;
    padding-right: 20px;
}

.form__privacy {
    position: relative;
    font-size: 14px;
    color: #373945;
    padding-left: 20px;
    padding-right: 20px;
}

.form__privacy:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
}

.form .input-error {
    border: 1px solid red;
}

.form .input-correct {
    border: 1px solid #0065f2;
}

.form__label {
    display: block;
    position: relative;
    width: 100%;
}

.form__icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #727272;
}


.errorText {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.errorText span {
    position: relative;
    background-color: #f34336;
    color: #ffffff;
    padding: 5px;
    font-size: 13px;
    border-radius: 4px;
    z-index: 100;
}

.errorText span:after {
    content: '';
    position: absolute;
    display: block;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background-color: #f34336;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}
.blocked {
    pointer-events: none;
}

#modalForm {
    position: fixed;
    display: none;
    opacity: 0;
    top: 40%;
    left: 50%;
    margin-top: -163px;
    margin-left: -179px;
    z-index: 900;
}
#modalFormThanks {
    position: fixed;
    display: none;
    opacity: 0;
    top: 40%;
    left: 50%;
    margin-top: -163px;
    margin-left: -179px;
    z-index: 900;
}
#modalFormCalc {
    position: fixed;
    display: none;
    opacity: 0;
    top: 50%;
    left: 50%;
    width: 60%;
    z-index: 900;
}

.modalForm__title {
    font-size: 20px;
    color: #373945;
    line-height: 1.5;
}

#modalAnswer {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    z-index: 900;
}

.formFile {
    position: static;
    width: auto;
    max-width: 600px;
    margin: 0 auto;
    border: none;
    background-color: transparent;
}

.formFile .input-group {
    width: 50%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}
.formFile__input {
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    padding-left: 15px;
    font-size: 18px;
}
.formFile__btn {
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    background-color: var(--main-color-action);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.formFile .form__subText {
    clear: both;
}

.formFile__title {
    font-size: 20px;
    margin-bottom: 10px;
}
.formFile a:hover {
    text-decoration: none;
}

.section {
    padding-top: 2vw;
    padding-bottom: 2vw;
}

.section__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    padding-right: 20px;
}

.section__title a {
    color: #7C7B82;
    text-decoration: none;
}
.section__title a:hover {
    color: var(--main-color-action);
    text-decoration: underline;
}

.card {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    vertical-align: top;
    width: 23%;
    border: 1px solid #000000;
    background-color: #ffffff;
    margin-bottom: 28px;
    margin-right: 2%;
    padding: 15px;
}
.card__show {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.card__viewport {
    position: relative;
    width: 100%;
    height: 230px;
    margin-bottom: 15px;
}
.card__info {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}
.card__img {
    display: block;
    height: 100%;
}
.card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.fivetonn .card__img:hover,
.fiveseventonn .card__img:hover,
.seventonn .card__img:hover,
.ekskavator .card__img:hover {
    -webkit-animation: shake 0.1s linear infinite;
            animation: shake 0.1s linear infinite;
}

.card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.card__title a {
    color: #000;
    text-decoration: none;
}

.card__info table {
    width: 100%;
    color: #373945;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.card__info table td:last-child {
    text-align: right;
}

.card__price {
    font-weight: bold;
    color: #373945;
    line-height: 1;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.card__priceNum--promotion {
    font-weight: bold;
    color: red;
}

.card__promotion {
    position: absolute;
    display: inline-block;
    top: 10%;
    left: -30px;
    width: 80%;
    background: #ffe015;
    font-size: 16px;
    font-weight: 700;
    padding: 3px 20px;
    border-radius: 0 4px 4px 0;
}

.card__promotion:before {
    content: '';
    position: absolute;
    display: block;
    bottom: -3px;
    left: 7px;
    width: 20px;
    height: 10px;
    background: #FFEE7E;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: -1;
}

.card__promotion:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background-image: url(../images/spec.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 10;
}

.card__add {
    padding-top: 10px;
}

.card__add a {
    color: #0065f2;
}

.card__add a:hover {
    text-decoration: none;
}
.card .btn {
    text-align: left;
    padding: 15px 20px;
    width: 100%;
}
.section__cards {
    margin-bottom: 20px;
}
.section__cards .card:nth-child(n+5) {
    display: none;
}
.show-more-button {
    text-align: center;
}

.show-more-button button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: var(--main-color-action);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.show-more-button button:hover {
    background-color: var(--main-color-hover);
}
.arrow-right {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -34px;
    -webkit-animation: moveIcon 2s infinite linear;
            animation: moveIcon 2s infinite linear;
    cursor: pointer;
    color: #144487;
}

.product .card__promotion {
    width: 100%;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    border-radius: 0 0 0 4px;
    margin-top: 0;
    text-align: center;
    font-size: 14px;
}

.product .card__promotion:before {
    display: none;
}

.vpItem {
    border: 1px solid #706B7D;
    border-radius: 5px;
    padding: 3vw;
}
.vpItem__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.vpItem__col-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
}
.vpItem__col-2 {
    width: 50vw;
    padding: 20px;
}
.vpItem__img-wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.vpItem__img-wrap a {
    position: relative;
    display: inline-block;
    height: 25vw;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: top center;
    overflow: hidden;
}
.vpItem__img-wrap a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(/assets/images/lupa.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  opacity: 0;
  -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.vpItem__img-wrap a:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.vpItem__img-wrap a:hover:after {
  opacity: 1;
}
.vpItem__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.vpItem__table-wrap {
    margin-bottom: 20px;
}
.vpItem table {
    width: 100%;
    margin-bottom: 10px;
}
.vpItem table caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 3;
}
.vpItem table td {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    white-space: nowrap;
    border-bottom: 1px solid #575757;
}
.vpItem table td:nth-child(2) {
    text-align: right;
}
.vpItem__price-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vpItem__price {
    font-size: 26px;
    font-weight: 700;
}
.vpItem__priceTitle {
    font-size: 20px;
}
.vpItem__priceTitle span {
    border-bottom: 1px dashed #000;
}
.vpgalery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}
.vpgalery__item {
    position: relative;
    padding: 8px;
}
.vpgalery__item--active {
    box-shadow: inset 0 0 0 2px red;;
}
.vpgalery__item img {
    display: block;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.btn-wrap {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    white-space: nowrap;
    padding: 15px 40px;
}

.btn--1 {
    background-color: var(--main-color-action);
    color: #ffffff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.btn--1:hover {
    background-color: var(--main-color-hover);
}

.btn--2 {
    background-color: var(--main-color-action);
    color: #ffffff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.btn--2:hover {
    background-color: var(--main-color-hover);
}
.btn--illuminate {
    box-shadow: 0 0 15px 5px rgba(103, 162, 243, 0.5);
}
.btn--illuminate:hover {
  box-shadow: 0 0 0 0 rgba(103, 162, 243, 0);
}

.price-text-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.about h3 {
    margin-bottom: 20px;
}
.about__row {
    display: block;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    padding: 34px;
    line-height: 1.5;
    color: #373945;
    font-size: 16px;
}

.inner-page .about__row {
    display: block;
    padding: 34px;
    text-align: center;
}

.textArea__content {
    border-radius: 4px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    padding: 34px;
    line-height: 1.5;
    color: #373945;
    font-size: 16px;
    text-align: center;
}

.about__left {
    width: 60%;
    padding-right: 32px;
}

.about__right {
    width: 40%;
}

.about p {
    margin-bottom: 30px;
}

.about ul {
    margin-bottom: 30px;
}

.about__subTitle {
    margin-bottom: 15px;
}

.about ul {
    margin-bottom: 30px;
    list-style: none;
}

.about li {
    margin-bottom: 10px;
    list-style-position: inside;
}

.about ul li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #0869f2;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 7px;
}

.about blockquote {
    position: relative;
    padding-left: 50px;
}

.about blockquote:before {
    content: '!';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid blue;
    border-radius: 50%;
    text-align: center;
    color: blue;
    line-height: 33px;
    font-size: 28px;
}

.about table {
    width: auto;
    margin: 0 auto;
}

.about tr:nth-child(odd) {
    background-color: #99CCFF;
}

.about caption {
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
}

.about td {
    padding: 10px;
}

.articlesBlock__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.articlesBlock__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.sidebar {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 300px;
    padding-left: 15px;
}
.widget__title {
    font-size: 22px;
}
.widget a {
    display: block;
    text-decoration: none;
    padding: 13px;
    border-bottom: solid 2px #ececec;
}
.widget__list {
    list-style: none;
}
.widget__articleTitle {
    font-weight: normal;
    color: #373945;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.articlesItem {
    display: inline-block;
    vertical-align: top;
    width: 31%;
    border-radius: 4px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    margin-bottom: 28px;
    overflow: hidden;
}
.articlesInterest .articlesItem {
    width: 24%;
}
.articlesInterest .section__row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.articlesItem img {
    display: block;
    width: 100%;
    height: auto;
}

.articlesItem__title {
    font-weight: bold;
    color: #373945;
    font-size: 20px;
    line-height: 1.4;
    padding: 13px;
    border-bottom: solid 2px #ececec;
}

.articlesItem__title a {
    color: #373945;
    text-decoration: none;
}

.articlesItem__bottom {
    padding: 13px;
}

.articlesItem p {
    color: #373945;
    font-size: 14px;
    margin-bottom: 13px;
}

.articlesItem .btn {
    width: 100%;
    padding: 8px;
}

.articleBody {
    border-radius: 4px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    padding: 34px;
    line-height: 1.5;
    color: #373945;
    font-size: 16px;
}

.articleContent:after {
    content: '';
    display: table;
    clear: both;
}

.articleImg {
    max-width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.articleImg img {
    max-width: 100%;
}

.articleMeta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #b6b6b6;
}

.articleMeta__item {
    margin-right: 10px;
}

.articleBody .articleMeta ul {
    margin-bottom: 0;
}

.articleBody h1 {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.1;
}

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

.articleBody ul,
.articleBody ol {
    list-style-position: inside;
    margin-bottom: 30px;
    padding-left: 20px;
}

.sectionForm {
    background-image: url(../images/form-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 40px;
    padding-bottom: 40px;
}

.sectionForm__title {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
}

.sectionForm .form {
    position: static;
    width: 100%;
}

.input-group:has(.form__label) {
    margin-right: 20px;
}

.sectionForm .form__privacy {
    display: inline-block;
}

.inner-page .sectionForm {
    margin-bottom: 40px;
}

.footer {
    background-color: #36394d;
    padding-top: 22px;
    padding-bottom: 22px;
}
.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    margin-bottom: 20px;
}

.footerMenu {
    list-style: none;
    width: 200px;
    margin: 10px 0;
}
.footerMenu__item {
    position: relative;
}

.footerMenu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 4px 0;
}
.footerMenu a:hover {
    color: #b4b4b4;
}
.footerMenu__item .active {
    color: #dcdcdc;
    font-size: 18px;
    font-weight: 700;
}

.copyright {
    font-size: 14px;
    color: #eeeeee;
}

#shadow {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

#scroll-top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    cursor: pointer;
    display: none;
    z-index: 400;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    background-color: #36394d;
}
.scroll-top__viewport {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

.schema-meta {
    display: none;
}

#comment-form .btn-default {
    width: auto;
    border: solid 1px #e8e8e8;
    background-color: #fff;
    padding: 0 15px;
}

#comment-form .btn-default:hover {
    border: solid 1px #373945;
    color: #373945;
}

#comment-form .btn-primary {
    border: 0;
    background-color: #0065f2;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

label[for=comment-name],
label[for=comment-email] {
    display: inline-block;
    width: 50px;
}

#comment-form input {
    width: 150px;
    height: 48px;
    border-radius: 4px;
    border: solid 1px #eeeeee;
    background-color: #fafafa;
    padding-left: 15px;
    padding-right: 15px;
}

#comment-form .form-group {
    margin-bottom: 10px;
}

.pagination {
    list-style: none;
    text-align: center;
    margin-top: 30px;
}

.pagination__item {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #eeeeee;
    border: 1px solid #fff;
}

.pagination__item--active {
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #fff;
    background-color: #0065f2;
    ;
}

.pagination__link {
    text-decoration: none;
}

.breadcrumbs {
    padding: 10px 0;
}

.breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumbs__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.breadcrumbs__item span {
    padding: 0 10px;
}

.breadcrumbs__link {
    text-decoration: none;
    color: #373945;
}
.section--map {
    padding-bottom: 0;
}
.map {
    margin-top: 20px;
}
.btn-spb {
    display: inline-block;
    border: solid 1px #e8e8e8;
    border-radius: 4px 0 0 0;
    padding: 5px 10px;
    color: #cbcbcb;
    cursor: pointer;
}

.btn-msk {
    display: inline-block;
    border: solid 1px #e8e8e8;
    border-radius: 0 4px 0 0;
    color: #595959;
    padding: 5px 10px;
    margin-left: -5px;
    cursor: pointer;
}

.btn-map-active {
    background-color: #0065f2;
    color: #fff;
    cursor: auto;
}

#mapMsk {
    display: none;
}
.contactsMap {
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contactsMap__title {
    font-size: 34px;
    margin-top: 20px;
    margin-bottom: 0;
}

.adressMap {
    
}

.adressMap__title {
    background-color: #FF9F00;
    border-radius: 4px 4px 0 0;
    line-height: 43px;
    color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
}

.adressMap i {
    color: var(--main-color-action);
}

.adressMap__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}
.adressMap__row svg {
    margin-right: 2vw;
}
.adressMap a {
    color: #000;
}

.hr-dashed {
    width: 10%;
    margin: 0 auto;
    border: 0;
    border-top: 1px dashed #000000;
    background-color: #fff;
    margin-bottom: 20px;
}

.text-hide {
    display: none;
}

.writeTo {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.writeTo svg {
    margin-right: 10px;
}

.writeTo a {
    text-decoration: none;
}

.formPresentation {
    border: 1px solid #ffffff;
}

.coop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    margin-bottom: 100px;
    justify-content: space-between;
}

.coop .number {
    font-size: 160px;
    color: rgb(219, 229, 243);
}

.coop h6 {
    font-size: 36px;
    margin-left: 90px;
    margin-top: -40px;
}

.coop p {
    max-width: 420px;
    font-size: 18px;
    margin-left: 90px;
}

.coop__col {
    width: 50%;
}

.coop.left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.pokupka-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.what__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
}

.what__col {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}

.what__icon img {
    width: 100px;
    height: 100px;
}

.what__card {
    text-align: center;
}

/* Анимация появления блоков */
.app_block {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0s linear, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, visibility 0s linear, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear, -webkit-transform 0.5s ease;
}

.app_block_left {
  -webkit-transform: translateX(-10%);
      -ms-transform: translateX(-10%);
          transform: translateX(-10%);
}

.app_block_right {
  -webkit-transform: translateX(10%);
      -ms-transform: translateX(10%);
          transform: translateX(10%);
}

.app_block_top {
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
}

.app_block_bottom {
  -webkit-transform: translateY(10%);
      -ms-transform: translateY(10%);
          transform: translateY(10%);
}
/* Анимация появления блоков end */
.calc__select {
    border: 1px solid #000;
    margin-bottom: 10px;
}
.calc__subtitle {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #514B4B;
  padding: 10px;
  margin-bottom: 0;
  cursor: pointer;
}
.calc__arrow {
    color: #B4B0B0;
}
.calc__arrow--up {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.calc__options {
    display: none;
    list-style: none;
  width: 100%;
  background-color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
}
.calc__option {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.calc__disk {
    position: relative;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    margin-right: 5px;
}
.calc__disk:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
}
.calc__disk--active:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 50%;
}

.calc__options li {
  padding: 10px;
  cursor: pointer;
}

.calc__options li:hover {
  background-color: #f1f1f1;
}
#calcResult {
    display: none;
}
#calcResult .card {
    display: none;
}
input[type="range"] {
    width: 200px;
    -webkit-appearance: none;
    background-color: #f1f1f1;
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ff0000;
}
.calc__range {
    display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
        width: 280px;
    padding: 10px 0 40px;
}
.calc__range-input-wrap {
    position: relative;
    width: 80px;
    margin-left: 20px;
    
}
.calc__range-wrap {
    position: relative;
}
.calc__range-wrap:before {
    content: 'от 1 м';
    display: inline-block;
    position: absolute;
    top: 20px;
    left: 0;
    border: 1px solid #000;
    text-align: center;
    white-space: nowrap;
    padding: 0 5px;
}
.calc__range-wrap:after {
    content: 'до 24 м';
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    border: 1px solid #000;
    text-align: center;
    white-space: nowrap;
    padding: 0 5px;
}
.calc__range-input-wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background-color: var(--main-color-action);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.calc__range input {
    display: block;
    width: 100%;
    background-color: var(--main-color-action);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0;
}
.calc__btn-order {
    display: none;
}
.formCalcOrder__table {
    width: 100%;
    margin-bottom: 15px;
}
.formCalcOrder__table td {
    border: solid 2px #ABA5A5;
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
}
.formCalcOrder__table input {
    border: none;
    text-align: center;
    width: 100%;
}
.formCalcOrder textarea {
    width: 100%;
    height: 100%;
}
.page404 h1,
.page404 .textArea__content a {
    color: var(--main-color-action);
}
.data-table {
    margin: 0 auto 20px;
    text-align: left;
}
.data-table th {
    padding: 5px 20px;
    text-align: center;
    font-weight: bold;
}
.data-table td {
    padding: 5px 20px;
}
.data-table span {
    font-size: 24px;
    color: red;
    font-weight: bold;
}
.textArea__content p {
    margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
    .vpItem table td {
        font-size: 16px;
    }
    h1 {
        font-size: 40px;
    }
    .articlesItem {
        width: 49%;
    }
    .sidebar {
        width: 260px;
    }
}

@media screen and (max-width: 768px) {
    .logo img {
        width: 20vw;
    }

    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .container {
        width: 100%;
    }
    
    .btn {
        font-size: 16px;
        padding: 10px 30px;
    }
    .firstScreen__text {
        font-size: 18px;
    }

    .mainMenu {
    position: absolute;
    display: block;
    background-color: #4A4140;
    top: 60px;
    left: -295px;
    width: 280px;
    padding: 15px;
    z-index: 100;
  }
  .footerMenu {
      width: auto;
  }
  .mainMenu__item {
      display: block;
      padding: 5px 0;
  }
  .mainMenu__icon {
      position: absolute;
      top: 12px;
      right: 0;
  }
  .footerMenu__icon {
      position: static;
  }
  .navbar {
      position: relative;
      z-index: 100;
  }
    .navbar__btn-menu {
    display: block;
    height: 60px;
  }
  .navbar__bar-group {
    width: 35px;
    height: 30px;
    margin: 10px 10px;
    position: relative;
    cursor: pointer;
    display: inline-block;
  }
  .navbar__bar {
    background-color: #fff;
    position: absolute;
    border-radius: 2px;
    -webkit-transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    -o-transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width: 100%;
    height: 4px;
    -webkit-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
  }
  .linked--mob-hide {
    display: none;
  }
  #bar1 {
    top: 0px;
    left: 0px;
  }
  #bar2 {
    top: 13px;
    left: 0px;
    opacity: 1;
  }
  #bar3 {
    bottom: 0px;
    left: 0px;
  }
  .navbar__bar-group:not(.open):hover #bar1 {
    -webkit-transform: rotate(-3deg) scaleY(1.1);
        -ms-transform: rotate(-3deg) scaleY(1.1);
            transform: rotate(-3deg) scaleY(1.1);
    }
    
    .navbar__bar-group:not(.open):hover #bar2 {
        -webkit-transform: rotate(3deg) scaleY(1.1);
        -ms-transform: rotate(3deg) scaleY(1.1);
            transform: rotate(3deg) scaleY(1.1);
    }
    
    .navbar__bar-group:not(.open):hover #bar3 {
        -webkit-transform: rotate(-4deg) scaleY(1.1);
        -ms-transform: rotate(-4deg) scaleY(1.1);
            transform: rotate(-4deg) scaleY(1.1);
    }
    .navbar__bar-group.open #bar1 {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        top: 13px;
    }
    
    .navbar__bar-group.open #bar2 {
        opacity: 0;
    }
    
    .navbar__bar-group.open #bar3 {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        top: 13px;
    }

  .mainMenu .submenu {
      position: static;
  }
  
  .vpItem__content {
      -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
    .vpItem__col-2 {
        width: 100%;
        padding: 20px 0;
    }
  
  .vpgalery {
      -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
.vpgalery__item--active {
    box-shadow: none;
}
  .vpItem__table-wrap {
    overflow-x: auto;
  }
  .vpItem__img-wrap {
      display: none;
  }
    .vpItem__price {
        font-size: 23px;
    }
    .section__row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-right: 0;
    }
    .arrow-right {
        display: none;
    }

    .card {
        width: 48%;
        height: auto;
        margin-right: 0;
    }

    .card--hide768 {
        display: none;
    }

    .about__row {
        column-count: 1;
        padding: 10px;
    }

    .articleImg {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .articleBody {
        padding: 10px;
    }

    .coop {
        display: block;
    }

    .coop__col {
        width: 100%;
    }

    .coop__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .coop h6 {
        margin-left: 20px;
    }

    .coop p {
        margin-left: 20px;
    }

    .what__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .what__col {
        width: 33.333%;
        margin-bottom: 20px;
    }
    .sectionLabel__row {
        display: block;
    }
    .footer__row:first-child {
        display: block;
    }
    .footerMenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
    }
    .footerMenu__item {
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
        padding: 0 10px;
    }
    .footer .submenu {
        position: absolute;
        z-index: 100;
    }
    .firstScreen__content {
        display: block;
    }
    .formContact {
        width: 100%;
    }
    .articlesBlock__container {
        display: block;
    }
    .pagination {
        margin-top: 0;
    }
    .sidebar {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .articlesInterest .articlesItem {
        width: 49%;
    }
    .input-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .input-group {
        width: 48%;
    }
    .input-group:has(.form__label) {
        margin-right: 0;
    }
    .input-group:has(.form__btn) {
        width: 100%;
    }
    .contactsMap {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .hidden-480 {
        display: none;
    }
    .visible-480 {
        display: block;
    }
    h1 {
        font-size: 24px;
    }
    
    .sectionLabel__title {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }
    
    .firstScreen__text {
        font-size: 16px;
    }

    .pageDescription {
        font-size: 16px;
    }
    
    .vpItem__price {
        font-size: 20px;
    }
    
    .vpItem__price-wrap {
        display: block;
    }
    .vpItem__price {
        margin-bottom: 10px;
    }
    .vpItem table td {
        white-space: wrap;
    }

    .dependences li {
        width: 30%;
        margin-right: 2px;
    }

    .dependences li:before {
        height: 28px;
    }

    .sectionForm .form {
        display: block;
    }

    .sectionForm .form .input-group {
        display: block;
        width: 100%;
        margin-left: 0;
    }

    .about__row {
        display: block;
        padding: 10px;
    }

    .about__left {
        width: 100%;
        padding-right: 0;
    }

    .about__right {
        width: 100%;
    }

    #modalForm {
        left: 2%;
        width: 96%;
        margin-top: -183px;
        margin-left: 0;
    }
    #modalFormThanks {
        left: 2%;
        width: 96%;
        margin-top: -183px;
        margin-left: 0;
    }
    #modalFormCalc {
        left: 2%;
        width: 96%;
        margin-left: 0!important;
    }
    .formCalcOrder__table tr:first-child td:last-child {
        display: none;
    }
    .formFile .input-group {
        width: 100%;
    }

    .articlesItem {
        width: 100%;
    }

    .articlesItem__introtext {
        display: none;
    }

    .form .input-group {
        padding-left: 0;
        padding-right: 0;
    }
    
    .formFile .input-group {
        float: none;
        margin: 0 auto 10px;
    }

    .what__col {
        width: 50%;
    }
    .card {
        -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
        width: 100%;
    }
    .card__viewport {
        width: 120px;
        height: auto;
    }
    .card__info {
        padding-left: 20px;
    }
    .footer__row {
        display: block;
    }
    .footer .logo {
        text-align: center;
    }
    .footer .contacts {
        display: block;
        width: 100%;
        text-align: center;
    }
    .footerMenu a {
        font-size: 16px;
    }
    .articlesInterest .articlesItem {
        width: 100%;
    }
    .input-row {
        display: block;
    }
    .input-group {
        width: 100%;
    }
}

/* === Контейнер согласий и ошибка === */
.form-agreements {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.form-agreements .custom-checkbox {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-main);
}

.form-agreements .custom-checkbox:last-of-type {
    margin-bottom: 0;
}

.form-agreements .privacy a {
    color: var(--color-primary);
    text-decoration: underline;
}
.form-agreements .privacy a:hover {
    text-decoration: none;
}

.checkbox-error-msg {
    display: none;
    color: var(--color-error);
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
}
.checkbox-error-msg.active {
    display: block;
}
/* === /Контейнер согласий и ошибка === */