.alert-block {
    right: 1rem;
    top: 1rem;
    left: 1rem;
}

@media(min-width:576px) {
    .alert-block {
        right: 1.5rem;
        top: 1.5rem;
        left: auto;
    }
}

.ds-alert {
    background: var(--ds-white-color);
    box-shadow: 0px 4px 40px 0px rgba(37, 38, 39, 0.22);
    padding: 1.5rem;
    overflow: hidden;
    border: var(--ds-main-border)
}

.ds-alert .purchase-success {
    display: none !important;
}

.ds-alert-text {
    font-size: 12px;
}

@media(min-width:1200px) {
    .ds-alert-text {
        font-size: 14px;
    }
}

@media(min-width:576px) {
    .ds-alert {
        width: 370px;
    }
}

.ds-alert-text a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-alert-text a:hover {
    text-decoration: none
}

.alert-text-item + .alert-text-item {
    margin-top: .5rem
}

.ds-alert [data-bs-dismiss=modal] {
    display: none !important
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

@keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

#ds_fixed_contact_button {
    background: var(--ds-primary-color);
    position: fixed;
    right: 15px;
    bottom: 26px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1020
}

#ds_fixed_contact_button.clicked {
    z-index: 1041
}

#ds_fixed_contact_substrate {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
    display: none
}

#ds_fixed_contact_substrate.active {
    z-index: 1020;
    display: block
}

.ds-fixed-contact-pulsation {
    background: var(--ds-primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite pulsation;
    animation: 2s infinite pulsation;
    display: none;
}

@media(min-width:420px) {
    #ds_fixed_contact_button {
        right: 30px;
        width: 70px;
        height: 70px
    }
    .ds-fixed-contact-pulsation {
        width: 100px;
        height: 100px
    }
}

.ds-fixed-contact-icon {
    color: var(--ds-white-color);
    width: 100%;
    font-size: 20px;
    overflow: hidden;
    display: none;
}

.ds-fixed-contact-icon .fa-envelope {
    -webkit-animation: 3s infinite iconOpacity;
    animation: 3s infinite iconOpacity;
    width: 20px;
    height: 20px
}

@media(min-width:420px) {
    .ds-fixed-contact-icon {
        font-size: 28px
    }
    .ds-fixed-contact-icon .fa-envelope {
        width: 28px;
        height: 28px
    }
}

.ds-fixed-contact-text {
    font-size: 7px;
    text-transform: uppercase;
    line-height: 9px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-dropdown {
    position: absolute;
    bottom: 60px;
    right: 36px;
    padding: 20px;
    border-radius: 6px;
    background: var(--ds-white-color);
    display: block;
    opacity: 0;
    z-index: -1;
    transform: translateY(20px);
    -webkit-transition: transform .3s, opacity .3s;
    -o-transition: transform.3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    -webkit-box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    visibility: hidden;
    min-width: 250px;
    will-change: transform, opacity;
}

@media(min-width:420px) {
    .ds-fixed-contact-text {
        font-size: 8px;
        line-height: 10px
    }
    .ds-fixed-contact-dropdown {
        right: 60px
    }
}

.ds-fixed-contact-dropdown.expanded {
    transform: translateY(0);
    opacity: .98;
    z-index: 1;
    visibility: visible
}

.ds-fixed-contact-item {
    color: var(--ds-dark-text-color);
    transition: color var(--ds-main-transition);
}

.ds-fixed-contact-item:not(:last-child) {
    margin-bottom: 18px
}

.ds-fixed-contact-item:hover {
    color: var(--ds-links-color)
}

.ds-fixed-contact-item > * {
    pointer-events: none;
}

.ds-fixed-contact-item-icon {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    margin-right: 10px;
    color: var(--ds-white-color)
}

.ds-fixed-contact-item-icon svg {
    width: 20px !important;
    height: 20px
}

.ds-fixed-contact-messenger {
    background: #0084ff
}

.ds-fixed-contact-viber {
    background: #7c529d
}

.ds-fixed-contact-telegram {
    background: #2ca5e0
}

.ds-fixed-contact-skype {
    background: #31c4ed
}

.ds-fixed-contact-whatsapp {
    background: #25d366
}

.ds-fixed-contact-email {
    background: #50a8ff
}

.ds-fixed-contact-call {
    background: #3cba8b
}

.ds-fixed-contact-contacts {
    background: #e6a83a
}

@media(max-width:991px) {
    .ds-fixed-contact-viber-desktop {
        display: none !important
    }
}

@media(min-width:768px) {
    #ds_fixed_contact_button {
        bottom: 30px
    }
}

.popover {
    font-family: Ubuntu, sans-serif;
    border-color: transparent;
    border-radius: .5rem;
    box-shadow: var(--ds-medium-shadow);
    background-color: var(--ds-white-color);
    color: var(--ds-dark-text-color)
}

.popover-arrow::after {
    border-top-color: var(--ds-white-color) !important;
}

@media(min-width:360px) {
    .popover {
        min-width: 260px
    }
}

@media(max-width:991px) {
    #ds_fixed_contact_button {
        max-width: 0;
    }
}

@media(min-width:992px) {
    .popover {
        z-index: 19999
    }

    .ds-fixed-contact-pulsation {
        display: block;
    }

    .ds-fixed-contact-icon {
        display: flex;
    }
}

.popover-arrow:before {
    border-color: transparent !important
}

.popover-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1.075rem;
    padding: 1rem 1rem .5rem;
    color: var(--ds-dark-text-color);
}

.popover-header:before {
    border-color: transparent !important
}

.popover-body {
    padding: 0 1rem 1rem;
    font-size: .875rem;
    color: var(--ds-secondary-text-color);
}

.popover-body p+p {
    margin-top: 1rem
}

.popover-body ul {
    padding: 1rem 0 1rem .75rem
}
.ds-loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: relative;
    background: currentColor;
    color: var(--ds-primary-color);
    opacity: 0.7;
    box-sizing: border-box;
    animation: animloader 0.3s 0.3s linear infinite alternate;
  }
  
  .ds-loader::after, .ds-loader::before {
    content: '';
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    box-sizing: border-box;
    animation: animloader 0.3s  0.45s  linear infinite alternate;
  }
  .ds-loader::before {
    left: -20px;
    animation-delay: 0s;
  }
  
  @keyframes animloader {
    0%   { height: 48px} 
    100% { height: 4px}
  }

.ds-loader-overlay {
    position: fixed;
    z-index: 19999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes loaderMove {
    0% {
        transform: translateX(-40%);
    }
    50% {
        transform: translateX(20%);
        width: 80%;
    }
    100% {
        transform: translateX(100%);
        width: 100%;
    }
}

.ds-livesearch {
    top: 46px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 12300;
    background: var(--ds-light-bg-color);
    gap: .5rem;
    -webkit-box-shadow: 0 2px 24px 0 rgba(37,38,39,.08);
    box-shadow: 0 2px 24px 0 rgba(37,38,39,.08);
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    max-height: 0;
}

@media (min-width: 768px) {
    .ds-livesearch {
        z-index: 13300;
    }
}

.ds-livesearch.expanded {
    max-height: unset;
}

.ds-livesearch .ds-livesearch-categories-item {
    flex: 1 0 30%;
    max-width: 30%
}

.ds-livesearch .ds-livesearch-categories-item img {
    max-width: 100%;
    height: auto
}

.ds-livesearch .ds-subcategories-title {
    hyphens: auto;
}

.ds-livesearch-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

@media (min-width: 568px) {
    .ds-livesearch .ds-livesearch-categories-item {
        flex: 1 0 50%;
        max-width: 50%
    }
}

@media (min-width: 768px) {
    .ds-last-reviews-item {
        width:50%
    }

    .ds-livesearch {
        top: calc(100% + .325rem);
        max-height: 0;
        left: 1rem;
        right: 0;
        border-radius: 7px;
        position: absolute;
        bottom: auto;
    }

    .ds-livesearch.expanded {
        max-height: calc(100vh - 5rem)
    }

    .ds-livesearch .ds-livesearch-categories-item {
        flex: 1 0 25%;
        max-width: 25%
    }
}

.ds-livesearch-item {
    background: var(--ds-white-color);
    gap: 1rem
}

.ds-livesearch-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    border-right: var(--ds-main-border)
}

.ds-livesearch-item-img img {
    margin-bottom: 1rem
}

.ds-livesearch-item-sticker {
    background: var(--ds-green-color);
    color: var(--ds-white-color);
    text-align: center;
    border-radius: 4.0625rem;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.ds-livesearch-item-sticker.red-bg {
    background: var(--ds-red-color)
}

.ds-livesearch-item-title {
    line-height: 1
}

.ds-livesearch-item-title:hover {
    color: var(--ds-links-color)
}

.ds-livesearch-item .ds-price-new {
    line-height: 1
}

@media (max-width: 567.98px) {
    .ds-livesearch-items-box {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
    }
}

.modal {
    z-index: 14505
}

.modal-open {
    overflow: hidden
}

.modal-backdrop {
    background: var(--ds-popup-backdrop-bg);
    opacity: 1;
    z-index: 12500;
    --bs-backdrop-opacity: 1
}

.modal-dialog.wide {
    --bs-modal-width: 860px
}

.modal-content {
    padding: 1.5rem;
    border: 0;
    background-color: var(--ds-white-color);
    -webkit-box-shadow: var(--ds-dark-shadow);
    box-shadow: var(--ds-dark-shadow)
}

.modal-header {
    border: 0;
    border-bottom: var(--ds-main-border)
}

.modal-header .btn-close {
    border-radius: .625rem;
    background-color: var(--ds-popup-close-btn-bg);
    --bs-btn-close-bg: none;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 1
}

.modal-header .btn-close svg path {
    fill: var(--ds-secondary-dark-color)
}

.modal-title {
    line-height: 1.2
}

.modal-body {
    padding: 0;
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-body .ds-buy-one-click {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important
}

.modal-body .ds-buy-one-click>:first-child {
    margin-bottom: .5rem
}

.modal-body .ds-buy-one-click .form-control {
    font-size: .75rem;
    min-width: 200px;
}

.modal-body .ds-buy-one-click .form-control::-webkit-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-moz-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control:-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::-ms-input-placeholder {
    font-size: .75rem
}

.modal-body .ds-buy-one-click .form-control::placeholder {
    font-size: .75rem
}

@media (max-width: 767.98px) {
    #error_minimum {
        font-size: .875rem
    }
}

.modal-body-cart .ds-buy-one-click {
    border-top: 0
}

.modal-body-cart .ds-buy-one-click>:first-child {
    display: none
}

.modal-body .ds-cart-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem
}

.modal-body-cart .ds-cart-recommended-products {
    overflow-x: auto;
}

.modal-body-cart .ds-cart-recommended-products-item {
    flex: 0 0 80%;
    max-width: 80%;
}

@media(min-width: 768px) {
    .modal-body-cart .ds-cart-recommended-products-item {
        flex: 0 0 330px;
        max-width: 330px;
    }
}

.modal-body-cart .ds-cart-recommended-products .content-block {
    transition: border var(--ds-main-transition);
}

.modal-body-cart .ds-cart-recommended-products .content-block:hover {
    box-shadow: none;
    border-color: var(--ds-form-control-focus-color);
}

.modal-body-buttons {
    border-top: var(--ds-main-border)
}

@media (max-width: 575.98px) {
    .modal-body-buttons .button-primary {
        width:100%
    }
}

.modal-body-form>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem)
}

.modal-body-product-img-box {
    flex: 0 0 320px;
    min-width: 320px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA&data-fill-color=12345");
    padding: 0;
    margin: 0 auto;
}

.modal-body-product-panel {
    border: var(--ds-main-border);
    flex: 0 0 12009px
}

.modal-body-product-img img {
    width: 100px;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: .25rem;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    .modal-body-product-img {
        width:158px;
        height: 158px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 158px;
        flex: 0 0 158px
    }

    .modal-body-product-img img {
        width: 150px
    }
}

.modal-body-product-title {
    line-height: 1.2
}

.modal-body-product-info .ds-module-rating-star {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer
}

.modal-body-product-info .ds-module-rating-star+.ds-module-rating-star {
    margin-left: .75rem
}

.modal-body-product .ds-product-options {
    border-bottom: 0
}

.modal-body-quick-view {
    background-color: var(--ds-light-bg-color)
}

.modal-body-quick-view .ds-product-main-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.modal-body-quick-view .ds-product-main-buttons .button-outline {
    margin-top: 1rem;
    margin-left: 0
}

@media (min-width: 768px) {
    .modal-body-product {
        border-right:var(--ds-main-border)
    }

    .modal-body .ds-product-images {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(52% - 1rem);
        flex: 0 0 calc(52% - 1rem);
        max-width: calc(52% - 1rem)
    }
}

.modal-body .ds-product-main-content {
    border-top: var(--ds-main-border)
}

.modal-body-popup-text>:not(:first-child) {
    margin-top: 1rem
}

.modal-body-popup-text ol,.modal-body-popup-text ul {
    padding-left: 1rem
}

.modal-small-text {
    line-height: 1.2
}

#popup_review_form .modal-body-product-img {
    width: 88px;
    height: 88px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 88px;
    flex: 0 0 88px
}

#popup_review_form .modal-body-product-img img {
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: .25rem;
    width: 80px;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

@media (min-width: 360px) {
    #popup_review_form .modal-body-product-img {
        width:120px;
        height: 120px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
        flex: 0 0 120px
    }

    #popup_review_form .modal-body-product-img img {
        width: 112px
    }
}

@media (max-width: 359.98px) {
    .modal-header .modal-title {
        font-size:1.25rem!important
    }

    #quickViewModal .ds-product-main-cart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #quickViewModal .ds-product-main-cart .ds-module-quantity {
        margin-right: 0!important;
        margin-bottom: 1rem
    }
}

@media (min-width: 992px) {
    #quickViewModal .ds-product-main {
        -webkit-box-flex:0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
        max-width: 48%
    }
}

#quickViewModal .ds-product-images-main {
    height: auto
}

#quickViewModal .ds-product-images-main img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto
}

[data-bs-dismiss=modal] {
    text-decoration: none
}

@media (min-width: 360px) {
    #productOptionModal .modal-body-product-img {
        width:128px;
        height: 128px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 128px;
        flex: 0 0 128px
    }

    #productOptionModal .modal-body-product-img img {
        width: 120px
    }
}

#cartModal .modal-dialog {
    --bs-modal-width: 720px
}

@media (max-width: 767.98px) {
    .empty-popup-cart .button-primary {
        width:100%
    }
}

#loginTabs {
    border-bottom: 0;
}

#loginTabs .nav-link {
    margin-bottom: 0;
    background-color: #fdfdfd;
    border: var(--ds-main-border);
    border-radius: 0.25rem;
    padding: .5rem 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
    line-height: 1;
    transition: background-color var(--ds-main-transition), color var(--ds-main-transition), border var(--ds-main-transition);
    font-size: .75rem;
    color: var(--ds-light-text-color);
}

@media (min-width: 1200px) {
    #loginTabs .nav-link {
        padding: .75rem 1.5rem;
        font-size: .875rem;
    }
}

#loginTabs .nav-item + .nav-item {
    margin-left: 0.5rem;
}

#loginTabs .nav-link.active {
    color: var(--ds-primary-color);
    box-shadow: var(--ds-light-shadow);
    font-weight: 700;
    color: var(--ds-dark-text-color);
    background-color: var(--ds-white-color);
}

#loginTabs .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ds-primary-color);
}

#otp-form-code .otp-code-block {
    background: var(--ds-light-bg-color);
}

.ds-account-column-nav li {
    padding: 0;
    font-size: inherit
}

.ds-account-column-nav li:not(:last-child) {
    border-bottom: var(--ds-main-border)
}

.ds-account-column-nav .ds-column-categories-children.ds-categories-2 li {
    padding: 1rem!important;
    border-bottom: 0;
    border-top: var(--ds-main-border)
}

.ds-account-column-nav-item {
    line-height: 1;
    white-space: nowrap;
    padding: .75rem 1rem;
    -webkit-transition: background-color var(--ds-main-transition);
    transition: background-color var(--ds-main-transition)
}

.ds-account-column-nav-item:hover {
    background-color: #fbfbfb
}

.ds-account-column-nav-item:hover .ds-account-column-nav-item-text {
    text-decoration: underline
}

.ds-account-column-nav-item-icon {
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-right: .75rem;
    background-color: var(--ds-light-bg-color)
}

.ds-account-column-nav-item-icon svg path {
    fill: var(--ds-dark-text-color)
}

.ds-account .content-block:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.ds-account-login-button {
    min-width: 160px
}

@media (max-width: 575.98px) {
    .ds-account-login-button {
        width:100%
    }
}

.ds-account-wishlist-info {
    border-left: var(--ds-main-border)
}

.ds-account-wishlist-title {
    line-height: 1.2
}

.ds-account-wishlist-title:hover {
    color: var(--ds-links-color);
    text-decoration: underline
}

.ds-account-wishlist .no-btn {
    top: 1rem;
    right: 1rem;
    width: 14px;
    height: 14px;
    display: grid;
    place-items: center
}

.ds-account-wishlist .no-btn svg {
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 767.98px) {

    .ds-account table td {
        white-space: nowrap
    }
}

@keyframes autofill {
    to {
        color: inherit;
        background: transparent;
    }
}

@keyframes fadeInColumn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

.fadeInColumn {
    animation-name: fadeInColumn;
    animation-duration: 0.8s;
}

.oct-animated svg {
    animation: rotateIcon 0.5s ease-in-out infinite;
}

.error_style {
    background-color: var(--ds-error-bg-color)!important;
    border: 1px solid #fe4d97!important;
    -webkit-transition: background-color var(--ds-main-transition),border var(--ds-main-transition);
    transition: background-color var(--ds-main-transition),border var(--ds-main-transition)
}

.error_style+label {
    color: var(--ds-red-color)!important
}

.error_style::-webkit-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::-moz-placeholder {
    color: var(--ds-red-color)!important
}

.error_style:-ms-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::-ms-input-placeholder {
    color: var(--ds-red-color)!important
}

.error_style::placeholder {
    color: var(--ds-red-color)!important
}

.tooltip {
    z-index: 19999;
}

.ds-switcher button {
    background: 0 0;
    border: none;
    text-decoration: underline;
    color: var(--ds-links-color);
    font-size: .875rem;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0
}

.ds-switcher button.active {
    color: var(--ds-primary-dark-color);
    text-decoration: none;
    background: var(--ds-primary-light-color);
    font-size: 1rem;
    font-weight: 700;
    padding: .25rem .5rem;
    cursor: default;
    pointer-events: none;
    border: var(--ds-main-border)
}

.ds-switcher button+button {
    margin-left: .5rem
}

.ds-switcher button.language-select {
    text-transform: uppercase
}

.ds-switcher button:hover {
    text-decoration: none
}

.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0!important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 1rem;
    padding: 1rem 0
}

.pagination li a,.pagination li span {
    display: block;
    line-height: 1rem;
    padding: .5rem .75rem;
    border-radius: 7px;
    color: var(--ds-light-text-color);
    -webkit-transition: background var(--ds-main-transition),color var(--ds-main-transition);
    transition: background var(--ds-main-transition),color var(--ds-main-transition);
    text-decoration: none;
    will-change: background, color;
}

.pagination li.active span,.pagination li:hover a {
    color: var(--ds-white-color);
    background: var(--ds-primary-color)
}

.table {
    margin-bottom: 0;
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border);
    border-color: var(--ds-border-color);
    font-weight: 400
}

.table>:not(:first-child) {
    border-top: var(--ds-main-border)
}

.table .thead-dark th {
    background-color: var(--ds-light-bg-color);
    border-top: var(--ds-main-border);
    color: var(--ds-dark-text-color)
}

.table tbody {
    font-size: 14px;
    color: var(--ds-secondary-text-color)
}

.table td {
    border-color: var(--ds-border-color)
}

.table td,.table th {
    vertical-align: top
}

.table tbody tr:first-child td {
    border-top: 0
}

.table td a {
    color: var(--ds-links-color);
    text-decoration: underline
}

.table td a:hover {
    text-decoration: none
}

.table thead {
    border-left: var(--ds-main-border);
    border-right: var(--ds-main-border)
}

.table thead th {
    font-size: 1rem;
    line-height: 20px;
    padding: .75rem 1rem;
    vertical-align: middle;
    font-weight: 700;
    color: var(--ds-dark-text-color);
    background-color: var(--ds-primary-light-color);
    border: 0;
    border-bottom: var(--ds-main-border)
}

.table tbody tr:hover>* {
    --bs-table-bg-state: #FDFDFD
}

.table a:has(.img-thumbnail) {
    width: 100px;
}

.ds-theme-switcher {
    background-color: var(--ds-light-bg-color)
}

.ds-theme-switcher-btn {
    display: grid;
    place-items: center;
    padding-left: .75rem;
    padding-right: .75rem;
    cursor: pointer
}

.ds-theme-switcher-btn.active {
    background-color: var(--ds-white-color);
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.08)
}

.ds-theme-switcher-btn.light svg path {
    fill: var(--ds-yellow-color)
}

.ds-blog-search-button {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.75rem
}

.ds-blog-search-button svg path {
    -webkit-transition: fill var(--ds-main-transition);
    transition: fill var(--ds-main-transition)
}

.ds-blog-search-button:focus:not([disabled]),.ds-blog-search-button:hover {
    -webkit-box-shadow: none!important;
    box-shadow: none!important
}

.ds-blog-search-button:focus:not([disabled]) svg path,.ds-blog-search-button:hover svg path {
    fill: var(--ds-primary-color)
}

.ds-blog-post-gallery,.ds-blog-post-text {
    border-bottom: var(--ds-main-border)
}

.ds-blog-post-gallery-items {
    gap: .5rem
}

.ds-blog-post-gallery-item {
    display: grid;
    place-items: center;
    border: var(--ds-main-border);
    width: 92px;
    height: 92px
}

.ds-blog-post-gallery-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1
}

.ds-blog-post-info {
    border-bottom: var(--ds-main-border);
    gap: 1rem
}

.ds-blog-post-comments {
    border-top: var(--ds-main-border)
}

@media (max-width: 575.98px) {
    .ds-blog-post .button-primary {
        width:100%
    }
}

#article-comments .ds-product-reviews-item-content {
    border-bottom: 0;
    padding-bottom: 0!important
}

.ds-empty-reviews svg path {
    fill: var(--ds-border-color);
}

#oct-infobar.hidden {
	opacity: 0;
	display: none;
}

.progress-bar {
    background-color: var(--ds-primary-color);
}

@media (max-width: 991.98px) {
    iframe#credential_picker_iframe {
        margin-bottom: 68px;
    }
}


/* ===== КОНТАКТЫ POGRUZKIN ===== */
.my-stats-block .contacts-section {
   margin: 120px 5px 0px 5px;
}

.my-stats-block .contacts-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Заголовок */
.my-stats-block .section-header--contacts {
  text-align: center;
  margin-bottom: 32px;
}

.my-stats-block .section-header--contacts .section-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 8px;
}

.my-stats-block .section-header--contacts .section-subtitle {
  margin: 0;
  font-size: 16px;
  color: #4b5563;
}

/* Лейаут */
.my-stats-block .contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Левая колонка */
.my-stats-block .contacts-main__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 40, 0.08);
  color: #f97328;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.my-stats-block .contacts-main__phone-block {
  margin-bottom: 18px;
}

.my-stats-block .contacts-main__label {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #6b7280;
  margin-bottom: 5px;
  font-weight: 500;
}

.my-stats-block .contacts-main__phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
}

.my-stats-block .contacts-main__phone:hover {
  color: #f97328;
}

.my-stats-block .contacts-main__hint {
font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* Мессенджеры */
.my-stats-block .contacts-messengers {
  margin-top: 20px;
}

.my-stats-block .contacts-messengers__label {
display: block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.my-stats-block .contacts-messengers__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.my-stats-block .contacts-messenger {
   display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.my-stats-block .contacts-messenger__icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
}

.my-stats-block .contacts-messenger__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.my-stats-block .contacts-messenger--viber {
  background: #7b3f99;
  box-shadow: 0 4px 14px rgba(123, 63, 153, 0.4);
}

.my-stats-block .contacts-messenger--whatsapp {
  background: #22c55e;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.my-stats-block .contacts-messenger--telegram {
  background: #0ea5e9;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.my-stats-block .contacts-messenger:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Доп. инфо */
.my-stats-block .contacts-info {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.my-stats-block .contacts-info__item {
  font-size: 14px;
}

.my-stats-block .contacts-info__label {
display: block;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 2px;
}

.my-stats-block .contacts-info__value {
      color: #4b5563;
    font-size: 15px;
    font-weight: 500;
}

.my-stats-block .contacts-info__value a,
.my-stats-block .contacts-info__value-link {
  color: #f97328;
  text-decoration: none;
}

/* Правая колонка — карточка */
.my-stats-block .contacts-side {
  display: flex;
  align-items: stretch;
}

.my-stats-block .contacts-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.my-stats-block .contacts-card__image-wrap {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.my-stats-block .contacts-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.my-stats-block .contacts-card:hover .contacts-card__image {
  transform: scale(1.03);
}

.my-stats-block .contacts-card__body {
  padding: 16px 18px 18px;
}

.my-stats-block .contacts-card__title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #000;
}

.my-stats-block .contacts-card__text {
    margin: 0 0 14px;
    font-size: 15px;
    color: #333;
    line-height: 1.55;
    font-weight: 400;
}

.my-stats-block .contacts-card__btn {
display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: #f97328;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 25px rgba(249, 115, 40, 0.45);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.my-stats-block .contacts-card__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.my-stats-block .contacts-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(249, 115, 40, 0.35);
}

/* Карта */
.my-stats-block .contacts-map {
  margin-top: 32px;
}

.my-stats-block .contacts-map__inner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.my-stats-block .contacts-map__inner iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

.my-stats-block .contacts-map__hint {
    margin: 15px 7px 0;
    font-size: 15px;
    color: #000;
    font-weight: 400;
}

/* Адаптив */
@media (max-width: 991px) {
  .my-stats-block .contacts-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .my-stats-block .contacts-side {
    order: -1;
  }
}

@media (max-width: 767px) {
  
  .my-stats-block .contacts-messenger__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
  
  .my-stats-block .contacts-section {
    padding: 40px 0 50px;
  }

  .my-stats-block .section-header--contacts .section-title {
    font-size: 24px;
  }

  .my-stats-block .section-header--contacts .section-subtitle {
    font-size: 14px;
  }

  .my-stats-block .contacts-main__phone {
    font-size: 21px;
  }

  .my-stats-block .contacts-messengers__row {
    gap: 8px;
  }

  .my-stats-block .contacts-messenger {
    font-size: 12px;
    padding: 6px 14px;
  }

  .my-stats-block .contacts-info {
    font-size: 13px;
  }

  .my-stats-block .contacts-map__inner iframe {
    min-height: 220px;
  }
}





/* Обратная связь 1 */

.my-stats-block .consult-banner {
  padding: 120px 5px 0px 5px;
}
.my-stats-block .consult-banner__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.my-stats-block .consult-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 16px 40px rgba(15,23,42,0.06);
  padding: 24px 28px;
}

/* Левая часть */
.my-stats-block .consult-banner__left {
  max-width: 420px;
}
.my-stats-block .consult-banner__title {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 800;
  color: #000;
}
.my-stats-block .consult-banner__subtitle {
  margin: 0;
  font-size: 16px;
  color: #333;
    font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Пульсирующий статус */
.my-stats-block .consult-banner__status-dot {
    width: 12px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
    position: relative;
    margin-right: 5px;
}
.my-stats-block .consult-banner__status-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #22c55e;
  opacity: 0.6;
  animation: pulseDot 1.6s ease-out infinite;
}
@keyframes pulseDot {
  0% { transform: scale(1);   opacity: 0.7; }
  60%{ transform: scale(2.3); opacity: 0;   }
  100%{transform: scale(2.3); opacity: 0;   }
}

/* Правая часть */
.my-stats-block .consult-banner__right {
  flex: 1;
  max-width: 520px;
}

/* Главная кнопка */
.my-stats-block .consult-banner__cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #f97328;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(249,115,40,0.45);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.my-stats-block .consult-banner__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 36px rgba(249,115,40,0.5);
}
.my-stats-block .consult-banner__cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(249,115,40,0.4);
}
.my-stats-block .consult-banner__cta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.my-stats-block .consult-banner__cta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.my-stats-block .consult-banner__cta-text {
  white-space: nowrap;
}

/* Мессенджеры В РЯД */
.my-stats-block .consult-banner__contacts-row {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.my-stats-block .consult-banner__messenger {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.my-stats-block .consult-banner__messenger-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.my-stats-block .consult-banner__messenger-icon svg {
width: 15px;
    height: auto;
    display: block;
}

.my-stats-block .consult-banner__messenger--viber {
  background: #7b3f99;
  box-shadow: 0 6px 16px rgba(123,63,153,0.45);
}
.my-stats-block .consult-banner__messenger--whatsapp {
  background: #22c55e;
  box-shadow: 0 6px 16px rgba(34,197,94,0.45);
}
.my-stats-block .consult-banner__messenger--telegram {
  background: #0ea5e9;
  box-shadow: 0 6px 16px rgba(14,165,233,0.45);
}

.my-stats-block .consult-banner__messenger:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Адаптив */
@media (max-width: 991px) {
  .my-stats-block .consult-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 18px;
  }
  .my-stats-block .consult-banner__right {
    max-width: 100%;
  }
  .my-stats-block .consult-banner__cta {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .my-stats-block .consult-banner__title {
    font-size: 20px;
  }
  .my-stats-block .consult-banner__subtitle {
    font-size: 13px;
  }
  .my-stats-block .consult-banner__messenger {
    font-size: 11px;
    padding: 8px 5px;
  }
}

/* Стили Баннер */


/* контент-блок с баннером */
.content-block:has(> .hero-mem){
  border: 1px solid #f2f4f8;
  background-color: #fff;
  padding: 0.8rem;
  border-radius:16px;
  color: inherit;
  box-shadow: none;
}

/* ====== секция ====== */
.hero-mem{
  background: #fff;
  padding: clamp(24px, 2.6vw, 48px) 0;
}
.hero-mem__container{
  max-width: 1600px !important;
  margin: 0 auto;
  padding: 0 70px;
}
.hero-mem__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

/* текст */
.hero-mem__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color:#282525;
}
.hero-mem__list{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #000;
  font-size: clamp(15px, 1.6vw, 18px);
}
.hero-mem__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: #282525;
}
.hero-mem__check{
  width: 20px; height: 20px; flex: 0 0 20px;
  color: #f97328;
}

/* кнопка + контакты */
.hero-mem__bottom{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px 14px;
}
.hero-mem__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: rgb(249, 115, 40);
  box-shadow: var(--hero-shadow);
  transition: transform .15s ease, filter .15s ease;
  text-transform: uppercase;
}
.hero-mem__cta:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hero-mem__contacts{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:14px;
}
.hero-mem__phone{
  font-weight:700;
  color:#282525;
  text-decoration:none;
}
.hero-mem__phone:hover{
  text-decoration:underline;
}

.hero-mem__messengers{
  display:flex;
  align-items:center;
  gap:8px;
}
.hero-mem__messenger{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.hero-mem__messenger svg{
  width:18px;
  height:18px;
}

/* цвета мессенджеров */
.hero-mem__messenger--viber{ background:#7f3bb3; }
.hero-mem__messenger--wa{ background:#25D366; }
.hero-mem__messenger--tg{ background:#29a9ea; }

.messenger-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
}

.messenger-phone {
    font-size: 15px;
    font-weight: 700;
    color: #282525;
    text-decoration: none;
}

.messenger-phone:hover {
    text-decoration: underline;
}

.messenger-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.messenger-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.messenger-item img {
    width: 24px;
    height: 24px;
    display: block;
}

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

/* картинка */
.hero-mem__figure{
  position: relative;
  display: grid;
  place-items: center;
}
.hero-mem__img{
  width: min(620px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.15));
  border-radius: 12px;
}

/* адаптив */
@media (max-width: 1024px){
  .hero-mem__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-mem__list{
    text-align:left;
    margin-left:auto;
    margin-right:auto;
    max-width:520px;
  }
  .hero-mem__bottom{
    flex-direction:column;
    align-items:center;
  }
}
@media (max-width: 560px){
  .hero-mem{
    padding: 22px 0 28px;
  }
  .hero-mem__container{
    padding: 0 12px;
  }
  .hero-mem__figure{
    order:-1;
    margin-bottom:10px;
  }
  .hero-mem__img{
    width:100%;
  }
}



/* Баннер - Рейтинг на главной */

 
/* 1. Сброс стилей именно у того .content-block, где есть наш блок .my-stats-block */
.content-block:has(.my-stats-block),
.ocf-description:has(.my-stats-block) {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* убираем внутренние отступы и цвет текста у обёртки модуля */
.content-block:has(.my-stats-block) .content-block-text,
.ocf-description:has(.my-stats-block) .content-block-text {
  padding: 0 !important;
  color: inherit !important;
}
  
      .stats-rating__title>span[data-v-f97328] {
    color: #f97328;
}
/* Общий контейнер */
.stats-rating{
background: #fff;
    padding: 40px 0;
    border: 1px solid;
    border: 2px solid #f97328;
    border-radius: 14px;
    margin: 120px 5px 0px 5px;
}

.stats-rating__container{
  max-width:1180px;
  margin:0 auto;
  padding:0 16px;
}

/* Заголовок */
.stats-rating__title{
    margin: 0 0 8px;
    font-size: clamp(30px, 3vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    color: #262626;
}

.stats-rating__subtitle{
  margin:0 0 32px;
  font-size:15px;
  color:#4b5b75;
}

/* Цифры */
.stats-rating__stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  margin-bottom:28px;
}

.stats-rating__stat-number{
   font-size: 24px;
    font-weight: 700;
    color: #f97328;
    margin-bottom: 4px;
}

.stats-rating__stat-label{
font-size: 15px;
    color: #282525;
    font-weight: 400;
}

/* Карточки рейтинга */
.stats-rating__cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.rating-card{
  display:flex;
  align-items:center;
  padding:12px 20px;
  border-radius:999px;
  border: var(--ds-main-border);
  box-shadow:0 6px 16px rgba(15,35,64,.06);
  background:#fff;
}

.rating-card__logo{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:14px;
  font-weight:800;
  color:#fff;
  font-size:20px;
}

/* Цвета логотипов */
.rating-card__logo--yandex{ background:#ff432c; }
.rating-card__logo--green{ background:#33a852; }
.rating-card__logo--google{ background:#4c8bf5; }

.rating-card__content{
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-left: 10px;
}

.rating-card__row{
  display:flex;
  align-items:center;
  gap:10px;
}

.rating-card__score{
  font-size:20px;
  font-weight:700;
  color: #262626;
}

.rating-card__stars{
  display:flex;
  gap:2px;
}

.rating-card__stars svg{
  width:16px;
  height:16px;
  fill:#ffb300;
}

.rating-card__reviews{
      font-size: 14px;
    color: #262626;
    font-weight: 400;
}

/* ===== Адаптив ===== */

/* Планшет и ниже: цифры 2 в ряд, карточки столбиком */
@media (max-width:768px){
  .stats-rating__stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    row-gap:20px;
  }

  .stats-rating__cards{
    grid-template-columns:1fr;
  }

  .rating-card{
    border-radius:14px;
  }
}

/* Мобильный: всё в одну колонку, как на втором скрине */
@media (max-width:480px){
  .stats-rating{
    padding:24px 0 32px;
  }

  .stats-rating__container{
    padding:0 12px;
  text-align: center;
  }

  .stats-rating__title{
    font-size:24px;
  }

  .stats-rating__stats{
    grid-template-columns:1fr;
  }
}


/* 03. Блок - Какие грузы перевозим */

/* ===== СБРОС СТИЛЕЙ OPENCART ===== */
.content-block:has(.my-stats-block),
.ocf-description:has(.my-stats-block) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.content-block:has(.my-stats-block) .content-block-text,
.ocf-description:has(.my-stats-block) .content-block-text {
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
}

/* ===== СЕКЦИЯ ===== */
.cargo-types {
  margin: 120px 5px 0px 5px;

}

.cargo-types__container {
  max-width: 1600px;

  padding: 0 15px;
}

/* ===== GRID ===== */
.cargo-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===== КАРТОЧКА ===== */
.cargo-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cargo-card__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
}

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

.cargo-card__name {
font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #000;
}

.cargo-card__text {
font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    font-weight: 400;
}




/* ===== МОБИЛЬНАЯ ВЕРСТКА — 2 в ряд ===== */
@media (max-width: 768px) {
  .cargo-types__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ====== ЗАГОЛОВОК С ЛИНИЯМИ ====== */
.section-header {
  text-align: center;
  margin: 50px 0 30px;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #262626;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #ff7a00;
}

.section-title::before {
  right: 100%;
  margin-right: 16px;
}

.section-title::after {
  left: 100%;
  margin-left: 16px;
}

.section-subtitle {
  margin: 0;
  font-size: 16px;
  color: #282525;
  font-weight: 500;
}

/* ===== АДАПТИВ ЗАГОЛОВКА ===== */
@media (max-width: 768px) {
  .section-header {
    margin: 35px 0 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .section-subtitle {
    font-size: 14px;
  }
}


/* 04. Блог - Виды грузоперевозок (главная) */
  /* ===== СБРОС СТИЛЕЙ OPENCART ===== */
.content-block:has(.my-stats-block, .vsa-about-block),
.ocf-description:has(.my-stats-block, .vsa-about-block) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.content-block:has(.my-stats-block) .content-block-text,
.ocf-description:has(.my-stats-block) .content-block-text {
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
}

/* ===== БЛОК ПЛИТКИ УСЛУГ ===== */

.services-block {

  color: #282525;
  font-family: inherit;
}

.services-block__container {
  max-width: 1600px;
 margin: 120px 5px 0px 5px;
  padding: 0 10px;
}

/* Заголовок блока */
.services-block__header {
  text-align: center;
  margin-bottom: 24px;
}

.services-block__title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 8px;
  color: #282525;
}

.services-block__subtitle {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: #555555;
}

/* Сетка карточек */
.services-block__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Карточка */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* низ на одной линии */
  gap: 14px;
}

.service-card--main {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Верх карточки */
.service-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-card__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.service-card__label {
  flex: 1;
}

.service-card__name {
margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.service-card__text {
margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
}

/* Низ карточки */
.service-card__bottom {
  margin-top: auto; /* прижимает низ к нижнему краю карточки */
  display: flex;
  flex-direction: column;
  align-items: center; /* кнопка по центру */
  text-align: center;
  gap: 6px;
}

.service-card__price {
  font-size: 14px;
  font-weight: 600;
  color: #282525;
}

.service-card__hint {
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

/* Кнопки */
.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 9px;
  border: none;
  background: #f97328;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.service-card__btn--ghost {
  background: transparent;
    color: #f97328;
    border: 1px solid #f97328;
}

.service-card__btn:hover {
  text-decoration: none;
  filter: brightness(1.03);
  color: #fff;
  background: #f97328;
  text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
}

/* Адаптив — планшеты */
@media (max-width: 991px) {
  .services-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Адаптив — мобильные */
@media (max-width: 575px) {
  .services-block__title {
    font-size: 20px;
  }

  .services-block__grid {
    grid-template-columns: 1fr;
  }
}
   /* ====== ЗАГОЛОВОК С ЛИНИЯМИ ====== */
.section-header {
  text-align: center;
  margin: 50px 0 30px;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #262626;
}

/* Декоративные линии слева и справа от заголовка */
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #ff7a00; /* фирменный цвет */
}

.section-title::before {
  right: 100%;
  margin-right: 16px;
}

.section-title::after {
  left: 100%;
  margin-left: 16px;
}

/* Подзаголовок */
.section-subtitle {
    margin: 0;
    font-size: 16px;
    color: #282525;
    font-weight: 500;
}

/* Адаптив — на мобильных линии убираем */
@media (max-width: 768px) {
  .section-header {
    margin: 35px 0 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .section-subtitle {
    font-size: 14px;
  }
}


/* 05. Блок - Цены на грузоперевозки (главная) */


/* Прайс-блок внутри my-stats-block */
.my-stats-block .price-section {
  padding: 0px 0;
}

.my-stats-block .price-section__container {
  max-width: 1600px;
  margin: 120px 5px 0px 5px;
  padding: 0 15px;
}

.my-stats-block .section-header {
  text-align: center;
  margin-bottom: 24px;
}

.my-stats-block .section-title {
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #000;
}

.my-stats-block .section-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

/* Таблица цен */
.my-stats-block .price-table-wrapper {
  margin-top: 24px;
  overflow-x: auto;
}

.my-stats-block .price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 280px;
}

/* Полная обводка и толщина шрифта 500 */
.my-stats-block .price-table th,
.my-stats-block .price-table td {
  border: 1px solid #dcdcdc !important;
  font-weight: 500;
}

.my-stats-block .price-table thead th {
text-align: left;
    padding: 12px 16px;
    background: #f8f8f8;
    color: #000;
    white-space: nowrap;
    font-weight: 600;
}

.my-stats-block .price-table tbody td {
  padding: 10px 16px;
  color: #333;
}

.my-stats-block .price-table tbody tr:nth-child(even) {
  background: #fcfcfc;
}

/* Текст под таблицей */
.my-stats-block .price-notes {
  margin-top: 18px;
}

.my-stats-block .price-notes p {
font-weight: 500;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

/* CTA блок */
.my-stats-block .price-cta {
  margin-top: 24px;
  text-align: center;
}

.my-stats-block .price-cta__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #282525;
  font-size: 14px;
     font-weight: 600;
}

.my-stats-block .price-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 9px;
  border: none;
  background: rgb(249, 115, 40);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--hero-shadow);
  transition: transform .15s ease, filter .15s ease, background-color .15s ease;
}

.my-stats-block .price-cta__btn:hover {
  background-color: #e06620;
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.my-stats-block .price-cta__btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

/* Адаптив */
@media (max-width: 767px) {
  .my-stats-block .price-section {
    padding: 30px 0;
  }

  .my-stats-block .section-title {
    font-size: 22px;
  }

  .my-stats-block .section-subtitle {
            margin: 0;
        font-size: 14px;
        line-height: 1.5;
        color: #000;
        font-weight: 400;
  }

  /* Обычная таблица в два столбца, без карточек */
  .my-stats-block .price-table-wrapper {
    overflow-x: auto;
  }

  .my-stats-block .price-table th,
  .my-stats-block .price-table td {
    padding: 10px !important;
    font-size: 14px;
  }

  .my-stats-block .price-table thead th {
    background: #f8f8f8;
  }

  .my-stats-block .price-cta__text {
    font-size: 13px;
   font-weight: 500;
  }

  .my-stats-block .price-cta__btn {
    width: 100%;
    max-width: 320px;
  }
}
  /* Контакты под кнопкой в прайс-блоке */
.my-stats-block .price-contacts {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.my-stats-block .price-contacts__phone {
  font-size: 15px;
  font-weight: 700;
  color: #282525;
  text-decoration: none;
}

.my-stats-block .price-contacts__phone:hover {
  text-decoration: underline;
}

.my-stats-block .price-contacts__row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.my-stats-block .price-contacts__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.my-stats-block .price-contacts__item svg {
  width: 20px;
  height: 20px;
  display: block;
}

.my-stats-block .price-contacts__item:hover {
  opacity: 0.8;
}

/* немного поджать на мобиле */
@media (max-width: 560px){
  .my-stats-block .price-contacts__row {
    gap: 10px;
  }
  .my-stats-block .price-contacts__item span {
    font-size: 13px;
  }
}


/* Баннер - Рейтинг на главной */

.my-stats-block .calc-section {
  padding: 0px 0 16px;
}

.my-stats-block .calc-section__container {
  max-width: 1600px;
  margin: 120px 5px 0px 5px;
  padding: 0 15px;
}

/* Форма расчёта (упрощённая) */
.calc-form {
   margin-top: 20px;
    padding: 18px 18px 20px;
    border-radius: 14px;
    border: 2px solid #f97328;
    background: #fef6f1;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.calc-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.calc-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.calc-form__field input,
.calc-form__field select {
  width: 100%;
  border-radius: 9px;
  border: 1px solid #fef6f1;
  padding: 10px 11px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.calc-form__field input::placeholder {
  color: #a0a5b5;
}

.calc-form__field input:focus,
.calc-form__field select:focus {
  border-color: #f97328;
  box-shadow: 0 0 0 1px rgba(249, 115, 40, 0.18);
  background-color: #fffdf9;
}

/* Низ формы */
.calc-form__bottom {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.calc-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f97328, #f59e0b);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 12px 28px rgba(249, 115, 40, .45);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.calc-form__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 32px rgba(249, 115, 40, .55);
}

.calc-form__btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .25);
}

.calc-form__hint {
   font-size: 14px;
    color: #000;
    margin: 0;
    font-weight: 700;
}

/* Адаптив */
@media (max-width: 900px) {
  .calc-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .my-stats-block .calc-section {
    padding: 30px 0 8px;
  }

  .calc-form {
    padding: 14px 12px 16px;
  }

  .calc-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-form__btn {
    width: 100%;
    justify-content: center;
  }

  .calc-form__hint {
font-size: 13px;
        text-align: center;
        margin-top: 15px;
  }
}


/* 07. Блок - Наш транспорт */
.my-stats-block .fleet-section {
   margin: 120px 5px 0px 5px;
}

.my-stats-block .fleet-section__container {
  max-width: 1600px;
   
  padding: 0 15px;
}

.fleet-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fleet-card {
  border-radius: 14px;
  border: 1px solid #e4e4e4;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.fleet-card__image {
  width: 100%;
  aspect-ratio: 4 / 2;
  background: #f3f3f3;
  overflow: hidden;
}
.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1; /* ДОБАВЛЕНО — растягивает тело карточки */
}


.fleet-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #000;
}
.fleet-card__subtitle {
font-size: 15px;
    color: #000;
    margin: 0;
    font-weight: 400;
}

.fleet-card__meta {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

}

.fleet-card__prices {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff4f0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}
.fleet-card__price-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fleet-card__price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #f97328;
    font-weight: 600;
}
.fleet-card__price-value {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.fleet-card__list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  width: 100%;
  border-radius: 10px;
  border: none;
  background: rgb(249, 115, 40);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .15s ease, filter .15s ease, background-color .15s ease;
}
.fleet-card__btn:hover {
  background-color: #e06620;
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.fleet-card__btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

/* Адаптив */
@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card__body {
    padding: 16px 18px 18px;
  }

  .fleet-card__title {
    font-size: 17px;
  }
  .fleet-card__subtitle {
    font-size: 14px;
  }
  .fleet-card__prices {
    grid-template-columns: 1fr;
  }
}

/* 08. Блок - Преимущества грузоперевозок (Главная) */
.my-stats-block .benefits-section {
   margin: 120px 5px 0px 5px;
}

.my-stats-block .benefits-section__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Компоновка блока */
.benefits-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 26px;
  align-items: flex-start;
}

/* Левая колонка */
.benefits-main {
  border-radius: 16px;
  border: 1px solid #f1e4dc;
  background: #fff7f2;
  padding: 18px 20px 20px;
}

.benefits-main__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #f97328;
  margin-bottom: 10px;
}

.benefits-main__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #222;
}

.benefits-main__text {
font-size: 15px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
    margin: 0 0 10px;

}

.benefits-main__list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
}

/* Правая колонка — список преимуществ */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  background: #ffffff;
}

.benefit-row__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.benefit-row__check svg {
  width: 20px;
  height: 20px;
}
.benefit-row__check circle {
  fill: #ffe2d2;
}
.benefit-row__check path {
  stroke: #f97328;
}

.benefit-row__title {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #000;
}

.benefit-row__text {
font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* Адаптив */
@media (max-width: 992px) {
  .benefits-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .benefits-main {
    padding: 14px 14px 16px;
  }

  .benefits-main__title {
    font-size: 16.5px;
  }

  .benefit-row {
    padding: 9px 10px;
  }

  .benefit-row__title {
    font-size: 14px;
  }
}

/* 09. Блок - География грузоперевозок (Главная) */

  /* ===== СБРОС СТИЛЕЙ OPENCART ===== */
.content-block:has(.my-stats-block),
.ocf-description:has(.my-stats-block) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.content-block:has(.my-stats-block) .content-block-text,
.ocf-description:has(.my-stats-block) .content-block-text {
  padding: 0 !important;
  background: transparent !important;
  color: inherit !important;
}
  .geo-timeline {
     margin: 120px 5px 120px 5px;
  }

  .geo-timeline__container {
    max-width: 1600px;
    margin: 0 auto;
  }

  /* весь текст не менее 500 */
  .geo-timeline,
  .geo-timeline * {
    font-weight: 500;
  }

  /* Единый стиль заголовков, как в других блоках */
  .geo-timeline .section-header {
    text-align: center;
    margin-bottom: 26px;
  }

  .geo-timeline__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
  }

  .geo-timeline__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f97328;
  }

  .geo-timeline .section-title {
   font-size: 30px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #000;
      font-weight: 700;
  }

  .geo-timeline .section-subtitle {
margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
  }

  /* Линейка направлений */
  .geo-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 22px;
    position: relative;
  }

  .geo-step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
  }

  /* Вертикальная линия */
  .geo-steps::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
  }

  .geo-step__marker {
    position: relative;
    height: 100%;
  }

  .geo-step__dot {
    position: absolute;
    top: 8px;
    left: 6px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 3px solid #f97328;
    box-sizing: border-box;
  }

  /* Контент шага */
  .geo-step__content {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 12px 14px 12px;
  }

  .geo-step__label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f97328;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .geo-step__title {
    font-size: 18px;
    color: #000;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .geo-step__text {
    font-size: 15px;
    color: #000;
    line-height: 1.55;
    margin-bottom: 6px;
  }

  .geo-step__example {
    font-size: 14px;
    color: #333;
    font-weight: 600;
  }

  .geo-step__example span {
     color: #333;
    font-size: 14px;
  }

  .geo-timeline__footer {
    text-align: center;
    margin-top: 22px;
  }

  .geo-timeline__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #f97328;
    text-decoration: none;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    background: rgb(249, 115, 40);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .15s ease, filter .15s ease, background-color .15s ease;
  }

  .geo-timeline__link::after {
    content: "→";
  color: #fff;
  }

  .geo-timeline__link:hover {
    border-bottom-style: solid;
  color: #fff;
  }

  @media (max-width: 600px) {
    .geo-timeline {
      padding: 32px 14px;
    }

    .geo-timeline .section-title {
              font-size: 22px;
        line-height: 1.3;
        font-weight: 700;
    }

  .geo-timeline .section-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}


    .geo-step__content {
      padding: 11px 12px;
    }
  }

/* 11. Блок - FAQ грузоперевозки (главная) */
/* ===== FAQ SECTION (уникальный дизайн Pogruzkin) ===== */
.my-stats-block .faq-section {
   margin: 120px 5px 0px 5px;
}

.my-stats-block .faq-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Заголовок блока FAQ — тот же стиль, но свой акцент */
.my-stats-block .section-header--faq {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
}

.my-stats-block .section-header--faq .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.my-stats-block .section-header--faq .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97328, #ffb472);
}

.my-stats-block .section-header--faq .section-subtitle {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}

/* Основной контейнер FAQ */
.my-stats-block .faq {
  margin-top: 10px;
}

.my-stats-block .faq__list {
  display: grid;
  gap: 14px;
}

/* Линия слева — “таймлайн” */
.my-stats-block .faq-item {
  position: relative;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 14px;
}

.my-stats-block .faq-item__line {
  grid-row: 1 / span 2;
  width: 2px;
  background: linear-gradient(to bottom, rgba(249, 115, 40, 0.18), rgba(249, 115, 40, 0.4));
  border-radius: 999px;
  margin: 6px auto;
}

.my-stats-block .faq-item__inner {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 10px 16px 12px;
}

/* Метка над вопросом */
.my-stats-block .faq-item__meta {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.my-stats-block .faq-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(249, 115, 40, 0.06);
  color: #f97328;
  font-weight: 700;
}

/* Кнопка вопроса */
.my-stats-block .faq-item__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  transition: color .15s ease, transform .12s ease;
}

.my-stats-block .faq-item__btn:hover {
  transform: translateY(-1px);
}

.my-stats-block .faq-item__btn:focus {
  outline-offset: 2px;
}

/* Иконка раскрытия (стрелка) */
.my-stats-block .faq-item__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
  margin-top: 2px;
}

.my-stats-block .faq-item__icon::before,
.my-stats-block .faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.7px;
  border-radius: 999px;
  background: #6b7280;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, opacity .18s ease, background-color .18s ease;
}

.my-stats-block .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Состояние "открыто" — крест превращается в минус и поворот */
.my-stats-block .faq-item__btn[aria-expanded="true"] .faq-item__icon {
  border-color: #f97328;
}

.my-stats-block .faq-item__btn[aria-expanded="true"] .faq-item__icon::before {
  background: #f97328;
  transform: translate(-50%, -50%) rotate(180deg);
}

.my-stats-block .faq-item__btn[aria-expanded="true"] .faq-item__icon::after {
  opacity: 0;
}

/* Ответ */
.my-stats-block .faq-item__a {
  padding: 0 0 4px;
}

.my-stats-block .faq-item__a-inner {
   margin-top: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

.my-stats-block .faq-item__a-inner a {
  color: #f97328;
  text-decoration: none;
  font-weight: 600;
}

.my-stats-block .faq-item__a-inner a:hover {
  text-decoration: underline;
}

/* ===== Адаптив ===== */
@media (min-width: 992px) {
  .my-stats-block .faq-section {

  }

  .my-stats-block .faq__list {
    gap: 16px;
  }

  .my-stats-block .faq-item__inner {
    padding: 12px 20px 14px;
  }

  .my-stats-block .faq-item__btn {
    font-size: 16px;
  }

  .my-stats-block .faq-item__a-inner {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .my-stats-block .faq-section {
    padding: 32px 0 40px;
  }

  .my-stats-block .section-header--faq .section-subtitle {
    font-size: 13px;
  }

  .my-stats-block .faq-item {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .my-stats-block .faq-item__inner {
    padding: 10px 12px 12px;
  }

  .my-stats-block .faq-item__btn {
    font-size: 14px;
  }

  .my-stats-block .faq-item__a-inner {
    font-size: 14px;
  }
}

/* 12. Блок - Фото грузоперевозок (Главная) */
/* ===== ФОТОБЛОК POGRUZKIN (без открытия картинок) ===== */
.my-stats-block .photos-section {
   margin: 120px 5px 0px 5px;
}

.my-stats-block .photos-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Заголовок фотоблока */
.my-stats-block .section-header--photos {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
}

.my-stats-block .section-header--photos .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.my-stats-block .section-header--photos .section-title::before,
.my-stats-block .section-header--photos .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 2px;
  border-radius: 999px;
  background: #f97328;
}

.my-stats-block .section-header--photos .section-title::before {
  left: -80px;
  opacity: 0.3;
}

.my-stats-block .section-header--photos .section-title::after {
  right: -80px;
  opacity: 0.8;
}

.my-stats-block .section-header--photos .section-subtitle {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}

/* GRID */
.my-stats-block .photos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Карточка фото */
.my-stats-block .photos-card {
  height: 100%;
}

.my-stats-block .photos-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.my-stats-block .photos-card__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border-color: rgba(249, 115, 40, 0.6);
}

/* Изображение */
.my-stats-block .photos-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4;
  background: #f3f4f6;
}

.my-stats-block .photos-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.my-stats-block .photos-card__inner:hover .photos-card__image {
  transform: scale(1.04);
}

/* Подписи */
.my-stats-block .photos-card__info {
  padding: 12px 14px 14px;
}

.my-stats-block .photos-card__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.my-stats-block .photos-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
}

/* Подвал блока */
.my-stats-block .photos-section__footer {
  margin-top: 20px;
  text-align: center;
}

.my-stats-block .photos-section__text {
margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    font-weight: 600;
}

.my-stats-block .photos-section__text a {
  color: #f97328;
  font-weight: 600;
  text-decoration: none;
}

.my-stats-block .photos-section__text a:hover {
  text-decoration: underline;
}

/* ===== Адаптив ===== */
@media (max-width: 1199px) {
  .my-stats-block .photos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .my-stats-block .photos-section {
    padding: 32px 0 40px;
  }

  .my-stats-block .section-header--photos .section-title::before,
  .my-stats-block .section-header--photos .section-title::after {
    width: 40px;
    bottom: -2px;
  }

  .my-stats-block .section-header--photos .section-subtitle {
    font-size: 13px;
  }

  .my-stats-block .photos-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .my-stats-block .photos-card__info {
    padding: 10px 12px 12px;
  }

  .my-stats-block .photos-card__title {
    font-size: 14px;
  }

  .my-stats-block .photos-card__text {
    font-size: 13px;
  }

  .my-stats-block .photos-section__text {
    font-size: 13px;
  }
}




/* 15. Блок - Контакты грузоперевозки */
/* ===== SEO TEXT BLOCK ===== */
.my-stats-block .seo-text-section {
     margin: 120px 5px 0px 5px;

}

.my-stats-block .seo-text-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Заголовок с декоративными линиями */
.my-stats-block .section-header--seo {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
}

.my-stats-block .section-header--seo .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-size: 30px;
  line-height: 1.3;
}

.my-stats-block .section-header--seo .section-title::before,
.my-stats-block .section-header--seo .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 2px;
  border-radius: 999px;
  background: #f97328;
}

.my-stats-block .section-header--seo .section-title::before {
  left: -80px;
  opacity: 0.3;
}

.my-stats-block .section-header--seo .section-title::after {
  right: -80px;
  opacity: 0.8;
}

/* Основной текст */
.my-stats-block .seo-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
      text-align: center;
}

.my-stats-block .seo-text p {
  margin: 0 0 18px;
}

.my-stats-block .seo-text strong {
  color: #000;
}

.my-stats-block .seo-text a {
  color: #f97328;
  font-weight: 600;
  text-decoration: none;
}

.my-stats-block .seo-text a:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 767px){
  .my-stats-block .section-header--seo .section-title {
    font-size: 24px;
  }

  .my-stats-block .section-header--seo .section-title::before,
  .my-stats-block .section-header--seo .section-title::after {
    width: 40px;
    bottom: -2px;
  }

  .my-stats-block .seo-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 14. Блок - Схема работы грузоперевозки (главная) */
/* ===== Схема работы ===== */
.my-stats-block .steps-section {

}

.my-stats-block .steps-section__container {
  max-width: 1600px;
  margin: 120px 5px 0px 5px;
  padding: 0 15px;
}

/* заголовок */
.my-stats-block .steps-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.my-stats-block .steps-section .section-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #000;
}

.my-stats-block .steps-section .section-subtitle {
  font-size: 17px;
  color: #444;
  margin: 0;
  font-weight: 500;
}

/* GRID */
.my-stats-block .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 20px;
}

/* карточка */
.my-stats-block .step-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 20px 30px;
  position: relative;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
  border: 1px solid #ececec;
  transition: transform .25s ease, box-shadow .25s ease;
}

.my-stats-block .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* номер шага */
.my-stats-block .step-card__num {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #f97328;
  opacity: 0.18;
  position: absolute;
  top: 18px;
  right: 20px;
  pointer-events: none;
}

/* контент */
.my-stats-block .step-card__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #000;
}

.my-stats-block .step-card__text {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.55;
}

/* адаптив */
@media (max-width: 767px) {
  .my-stats-block .steps-section .section-title {
    font-size: 24px;
  }
  .my-stats-block .steps-section .section-subtitle {
    font-size: 15px;
  }
  .my-stats-block .step-card__title {
    font-size: 17px;
  }
  .my-stats-block .step-card__text {
    font-size: 14px;
  }
}






/* 16. Блок - Юридический грузоперевозки  */
.my-stats-block .legal-section {
     margin: 120px 5px 0px 5px;

}
.my-stats-block .legal-section__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.my-stats-block .legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 28px;
}
.my-stats-block .legal-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(148,163,184,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.my-stats-block .legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.09);
}
.my-stats-block .legal-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px; /* вот тут изменили */
  color: #fff;
}

.icon--orange { background:#f97328; box-shadow:0 6px 20px rgba(249,115,40,0.45); }
.icon--blue   { background:#0ea5e9; box-shadow:0 6px 20px rgba(14,165,233,0.45); }
.icon--green  { background:#22c55e; box-shadow:0 6px 20px rgba(34,197,94,0.45); }
.icon--violet { background:#7c3aed; box-shadow:0 6px 20px rgba(124,58,237,0.45); }
.my-stats-block .legal-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #000;
    text-align: center;
}
.my-stats-block .legal-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    font-weight: 400;
    margin: 0;
    text-align: center;
}
@media (max-width: 991px) {
  .my-stats-block .legal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .my-stats-block .legal-grid {
    grid-template-columns: 1fr;
  }
  .my-stats-block .legal-card {
    padding: 20px 18px;
  }
} 



 .routes-section {

    margin: 120px 5px 0px 5px;
  }

  .routes-section__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Заголовок блока, завязан только на этой секции */
  .routes-section .section-header {
    text-align: center;
    margin: 0 0 28px;
  }

  .routes-section .section-title {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #262626;
    padding: 0 70px;
  }

  .routes-section .section-title::before,
  .routes-section .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 56px;
    height: 2px;
    background: #ff7a00;
  }

  .routes-section .section-title::before {
    right: 100%;
    margin-right: 12px;
  }

  .routes-section .section-title::after {
    left: 100%;
    margin-left: 12px;
  }

  .routes-section .section-subtitle {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
  }

  /* Сетка блоков */
  .routes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  .routes-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e6e6e6;
    padding: 18px 18px 16px;
  }

  .routes-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
  }

  .routes-card__group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f97328;
    margin: 14px 0 6px;
  }

  .routes-card__group-title:first-of-type {
    margin-top: 4px;
  }

  .routes-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .routes-list li {
    margin-bottom: 4px;
  }

  .routes-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
  }

  .routes-link::before {
    content: "•";
    font-size: 14px;
    color: #ff7a00;
  }

  .routes-link:hover {
    color: #ff7a00;
  }

  /* Адаптив */
  @media (max-width: 1200px) {
    .routes-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .routes-section {
      padding: 30px 10px 40px;
      margin: 0;
    }

    .routes-section .section-header {
      margin-bottom: 22px;
    }

    .routes-section .section-title {
      font-size: 22px;
      padding: 0;
    }

    .routes-section .section-title::before,
    .routes-section .section-title::after {
      display: none;
    }

    .routes-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
    }

    .routes-card {
      padding: 16px 14px 14px;
    }

    .routes-link {
      font-size: 13px;
    }
  }
  
  
  
  /* Контейнер */
.stone-section { margin: 2rem 0; }
.stone-wrap {
  position: relative;
  line-height: 1.55;
  font-size: 15px;
  font-weight: 400;
}

/* Фото слева, 50% ширины; текст обтекает справа и снизу */
.stone-media{
  float: left;
  width: min(50%, 640px);
  max-width: 100%;
  height: auto;
  margin: 0 2rem 1rem 0; /* отступ справа, чтобы текст не прилипал */
  border-radius: 12px;
  object-fit: cover;
  shape-outside: inset(0);
}

/* Чистим float */
.stone-wrap::after{ content: ""; display: block; clear: both; }

/* Мобильная адаптация */
@media (max-width: 768px){
  .stone-media{
    float: none;
    width: 100%;
    margin: 0 0 1rem 0;
  }
}


.orange-text-2 {
    color: #f97328;
}
#logo {
    max-width: 200px;
    max-width: 200px;
    width: 100%;
}
@media (min-width: 1200px) {
    #logo {
        max-width: 280px;
        max-width: 280px;
        width: 100%;
    }
}
.contacts-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}


/* По умолчанию скрываем на всех устройствах */
.online-box {
    display: none;
}

/* Показываем только при ширине экрана 900px и больше */
@media (min-width: 900px) {
    .online-box {
        display: block;
    }
}


#tab-01:checked ~ .city-tabs label[for="tab-01"], #tab-02:checked ~ .city-tabs label[for="tab-02"], #tab-03:checked ~ .city-tabs label[for="tab-03"], #tab-04:checked ~ .city-tabs label[for="tab-04"], #tab-05:checked ~ .city-tabs label[for="tab-05"], #tab-06:checked ~ .city-tabs label[for="tab-06"], #tab-ru:checked ~ .city-tabs label[for="tab-ru"] {
    background: #fff;
    border-color: #f97328;
    color: #261700;
}


.city-grid a:hover {
    color: #f97328;
}



.vsa-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 2;
}

.vsa-hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.vsa-hero-header__inner {
    width: 100%;
}

.vsa-hero-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    transition: border-color .35s ease;
}

.vsa-hero-header__bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.vsa-hero-header__logo {
    flex: 0 0 auto;
	margin-right: -130px;
}

.vsa-logo-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.vsa-logo {
    display: block;
    height: auto;
    max-height: 74px;
    max-width: 65%;
    transition: opacity .3s ease, visibility .3s ease;
}

.vsa-logo--dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.vsa-hero-header__contacts {
    display: flex;
    align-items: center;
    gap: 38px;
}

.vsa-hero-header__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    transition: color .3s ease;
}

.vsa-hero-header__contact-item svg {
    flex: 0 0 auto;
}

.vsa-hero-header__callback {
    height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 4px;
    background: #fc5b0b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

.vsa-hero-header__callback:hover {
    background: #e26f0a;
}

.vsa-hero-nav {
    width: 100%;
}

.vsa-hero-nav__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vsa-hero-nav__item {
    position: relative;
}

.vsa-hero-nav__item > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: color .25s ease;
    white-space: nowrap;
}

.vsa-hero-nav__item > a:hover {
    color: #fc5b0b;
}

.vsa-hero-nav__item--has-dropdown:hover .vsa-hero-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.vsa-hero-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
    z-index: 20;
}

.vsa-hero-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.vsa-hero-dropdown li {
    margin: 0;
    padding: 0;
}

.vsa-hero-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    transition: background .2s ease, color .2s ease;
}

.vsa-hero-dropdown li a:hover {
    background: #f5822021;
    color: #fc5b0b;
}

.vsa-hero-banner {
    position: relative;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
}

.vsa-hero-banner__video,
.vsa-hero-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vsa-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.40) 0%, rgba(0,0,0,.22) 22%, rgba(0,0,0,.54) 100%);
}

.vsa-hero-banner__content {
    position: relative;
    z-index: 2;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-top: 170px;
    padding-bottom: 110px;
    box-sizing: border-box;
}

.vsa-hero-banner__text {
    max-width: 760px;
    color: #fff;
}

.vsa-hero-banner__title {
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.vsa-hero-banner__desc {
    max-width: 760px;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.vsa-mobile-header {
    min-height: 86px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.vsa-mobile-header__logo .vsa-logo {
    max-height: 54px;
    width: auto;
}

.vsa-mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.vsa-mobile-header__phone,
.vsa-mobile-header__menu {
    color: #fff;
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.vsa-mobile-header__phone:hover,
.vsa-mobile-header__menu:hover,
.vsa-mobile-header__phone:focus,
.vsa-mobile-header__menu:focus {
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.vsa-mobile-header__menu {
    width: 34px;
    height: 28px;
    position: relative;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.vsa-mobile-header__menu span {
    display: block;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
}

.vsa-hero-header.is-scrolled {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.vsa-hero-header.is-scrolled .vsa-hero-header__top {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.vsa-hero-header.is-scrolled .vsa-logo--light {
    opacity: 0;
    visibility: hidden;
}

.vsa-hero-header.is-scrolled .vsa-logo--dark {
    opacity: 1;
    visibility: visible;
}

.vsa-hero-header.is-scrolled .vsa-hero-header__contact-item,
.vsa-hero-header.is-scrolled .vsa-hero-nav__item > a,
.vsa-hero-header.is-scrolled .vsa-mobile-header__phone,
.vsa-hero-header.is-scrolled .vsa-mobile-header__menu {
    color: #333333;
}

.vsa-hero-header.is-scrolled .vsa-mobile-header {
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.vsa-hero-header.is-scrolled .vsa-mobile-header__menu span {
    background: #525252;
}

.vsa-hero-header.is-scrolled .vsa-mobile-header .vsa-logo--light {
    opacity: 0;
    visibility: hidden;
}

.vsa-hero-header.is-scrolled .vsa-mobile-header .vsa-logo--dark {
    opacity: 1;
    visibility: visible;
}

.vsa-hero-header__top,
.vsa-hero-header__bottom {
    display: flex;
}

.vsa-mobile-header {
    display: none;
}

    .vsa-mobile-header {
        display: flex;
    }

    .vsa-hero-banner__content {
        align-items: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .vsa-hero-banner__title {
        font-size: 42px;
    }

    .vsa-hero-banner__desc {
        font-size: 18px;
        max-width: 620px;
    }
}

@media (max-width: 991.98px) {
    .vsa-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .vsa-mobile-header {
        min-height: 78px;
    }

    .vsa-mobile-header__logo .vsa-logo {
        max-height: 46px;
    }

    .vsa-hero-banner,
    .vsa-hero-banner__content {
        height: 100svh;
        min-height: 100svh;
    }

    .vsa-hero-banner {
        margin-bottom: 0 !important;
    }

    .vsa-hero-banner__content {
        padding-top: 110px;
        padding-bottom: 95px;
        align-items: flex-start;
    }

    .vsa-hero-banner__text {
        max-width: 100%;
    }

    .vsa-hero-banner__title {
        font-size: 28px;
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .vsa-hero-banner__desc {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
    }

    .ds-mobile-bottom-nav {
        z-index: 1100;
    }
}

@media (max-width: 575.98px) {
    .vsa-mobile-header {
        min-height: 74px;
    }

    .vsa-mobile-header__logo .vsa-logo {
        max-height: 42px;
        max-width: 190px;
        width: auto;
    }

    .vsa-mobile-header__menu {
        width: 32px;
    }

    .vsa-mobile-header__menu span {
        width: 32px;
    }

    .vsa-hero-banner__content {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .vsa-hero-banner__title {
        font-size: 22px;
    }

    .vsa-hero-banner__desc {
        font-size: 14px;
    }
}




.vsa-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9997;
}

.vsa-mobile-menu {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: .28s ease;
    z-index: 9998;
    overflow: hidden;
}

.vsa-mobile-menu.is-open,
.vsa-mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.vsa-mobile-menu.is-open {
    transform: translateY(0);
}

.vsa-mobile-menu__inner {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 26px 22px 28px;
}

.vsa-mobile-menu__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #f5822021;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
}

.vsa-mobile-menu__nav {
    padding-top: 24px;
}

.vsa-mobile-menu__link,
.vsa-mobile-menu__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    margin: 0 0 18px;
    border: none;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
}

.vsa-mobile-menu__toggle span {
    display: block;
}

.vsa-mobile-menu__arrow {
    flex: 0 0 auto;
    transition: transform .25s ease;
}

.vsa-mobile-menu__group.is-open .vsa-mobile-menu__arrow {
    transform: rotate(180deg);
}

.vsa-mobile-menu__submenu {
    display: none;
    padding: 2px 0 10px 12px;
    margin: -6px 0 12px;
}

.vsa-mobile-menu__group.is-open .vsa-mobile-menu__submenu {
    display: block;
}

.vsa-mobile-menu__submenu a {
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.45;
    padding: 8px 0;
}

.vsa-mobile-menu__contacts {
    border-top: 1px solid #e8e8e8;
    margin-top: 24px;
    padding-top: 22px;
}

.vsa-mobile-menu__contact {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
    font-weight: 500;
}

.vsa-mobile-menu__contact--email {
 margin-bottom: 12px;
    font-weight: 400;
    color: #555;
	font-size: 14px;
}

.vsa-mobile-menu__callback {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 18px;
}

.vsa-mobile-menu__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vsa-mobile-menu__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .vsa-mobile-menu,
    .vsa-mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .vsa-mobile-menu {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 16px;
    }

    .vsa-mobile-menu__inner {
        padding: 22px 18px 24px;
    }

    .vsa-mobile-menu__close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .vsa-mobile-menu__link,
    .vsa-mobile-menu__toggle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .vsa-mobile-menu__contact {
        font-size: 17px;
    }
}
body.vsa-mobile-menu-open .vsa-mobile-callbar{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
}

.vsa-mobile-callbar{
position:fixed;
left:12px;
right:12px;
bottom:14px;

display:flex;

border-radius:40px;
overflow:hidden;

box-shadow:none;

z-index:9999;
}

.vsa-mobile-callbar__btn{
flex:1;

display:flex;
align-items:center;
justify-content:center;
gap:8px;

height:48px;

font-size:15px;
font-weight:600;

color:#fff;
text-decoration:none;
border:none;

cursor:pointer;
}

.vsa-mobile-callbar__callback{
background:#fc5b0b;
}

.vsa-mobile-callbar__phone{
background:#22a652;
}

.vsa-mobile-callbar__btn svg{
flex:0 0 auto;
}

@media (min-width:1200px){
.vsa-mobile-callbar{
display:none;
}
}
.vsa-mobile-callbar{
position:fixed;
left:12px;
right:12px;
bottom:14px;

display:flex;

border-radius:10px;
overflow:hidden;

box-shadow:none;

z-index:9999;

/* скрыта по умолчанию */
opacity:0;
visibility:hidden;
transform:translateY(20px);
transition:all .25s ease;
}

.vsa-mobile-callbar.is-visible{
opacity:1;
visibility:visible;
margin-bottom: 10px;
}
/* показываем только на мобильных */
@media (min-width:1200px){
.vsa-mobile-callbar{
display:none !important;
}
}

.vsa-about-block{
    padding: 40px 0 10px;
    background: #fff;
}
.vsa-about-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}
.vsa-about-block__title{
    margin: 0 0 24px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.vsa-about-block__title-accent{
    color: #fc5b0b;
}
.vsa-about-block__text{
    max-width: 1480px;
    font-size: 21px;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 26px;
}
.vsa-about-block__text p{
    margin: 0 0 18px;
}
.vsa-about-block__products{
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 30px;
}
.vsa-about-block__products li{
    position: relative;
    padding-left: 18px;
    font-size: 20px;
    line-height: 1.45;
    color: #333333;
}
.vsa-about-block__products li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fc5b0b;
}
.vsa-about-block__stats{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 34px;
}
.vsa-about-block__stat{
    min-width: 0;
}
.vsa-about-block__stat-num{
    margin-bottom: 8px;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #fc5b0b;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}
.vsa-about-block__stat-text{
    font-size: 21px;
    line-height: 1.35;
    color: #333333;
    font-weight: 500;
}
.vsa-about-block__gallery{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.vsa-about-block__gallery-item{
    overflow: hidden;
    border-radius: 34px;
    background: #f3f4f6;
    aspect-ratio: 1 / 1;
}
.vsa-about-block__gallery-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1399px){
    .vsa-about-block__title{
        font-size: 40px;
    }
    .vsa-about-block__text{
        font-size: 19px;
    }
    .vsa-about-block__products li{
        font-size: 18px;
    }
    .vsa-about-block__stat-num{
        font-size: 40px;
    }
    .vsa-about-block__stat-text{
        font-size: 18px;
    }
}
@media (max-width: 991px){
    .vsa-about-block{
        padding: 28px 0 6px;
    }
    .vsa-about-block__wrap{
        padding: 0 16px;
    }
    .vsa-about-block__title{
        font-size: 34px;
        margin-bottom: 18px;
    }
    .vsa-about-block__text{
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    .vsa-about-block__products{
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 24px;
    }
    .vsa-about-block__products li{
        font-size: 16px;
        line-height: 1.45;
    }
    .vsa-about-block__products li:before{
        top: 9px;
    }
    .vsa-about-block__stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 22px;
        margin-bottom: 24px;
    }
    .vsa-about-block__stat-num{
        font-size: 28px;
        margin-bottom: 6px;
    }
    .vsa-about-block__stat-text{
        font-size: 14px;
        line-height: 1.4;
    }
    .vsa-about-block__gallery{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .vsa-about-block__gallery-item{
        border-radius: 18px;
        aspect-ratio: 1 / 1.12;
    }
}
@media (max-width: 575px){
    .vsa-about-block__title{
        font-size: 26px;
    }
    .vsa-about-block__gallery{
        grid-template-columns: 1fr;
    }
}



.content-block:has(.vsa-cat-hero),
.ocf-description:has(.vsa-cat-hero) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-cat-hero{
    position: relative;
    padding: 30px 0 30px;
    background:
        radial-gradient(circle at 12% 20%, rgba(252, 91, 11, 0.08) 0, rgba(252, 91, 11, 0) 30%),
        radial-gradient(circle at 88% 78%, rgba(252, 91, 11, 0.06) 0, rgba(252, 91, 11, 0) 28%),
        linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.vsa-cat-hero:before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(51, 51, 51, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 51, 51, 0.035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .45;
}

.vsa-cat-hero__wrap{
    position: relative;
    z-index: 1;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-cat-hero__inner{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.vsa-cat-hero__label{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 22px;
    margin-bottom: 24px;
    border: 1px solid rgba(51, 51, 51, 0.15);
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.vsa-cat-hero__dot{
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    background: #fc5b0b;
    flex: none;
}

.vsa-cat-hero__title{
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
}

.vsa-cat-hero__accent{
    color: #fc5b0b;
}

.vsa-cat-hero__text{
    max-width: 900px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
    color: #333;
}

.vsa-cat-hero__btn-wrap{
    margin-top: 36px;
}

.vsa-cat-hero__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 60px;
    padding: 0 30px;
    background: #fc5b0b;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}


@media (max-width: 991px){

    .vsa-cat-hero{
        padding: 30px 0 30px;
    }

    .vsa-cat-hero__title{
        font-size: 36px;
    }

    .vsa-cat-hero__text{
        font-size: 17px;
    }

    .vsa-cat-hero__label{
        font-size: 14px;
    }
}

@media (max-width: 575px){

    .vsa-cat-hero__title{
        font-size: 24px;
    }
}



.content-block:has(.vsa-categories-block),
.ocf-description:has(.vsa-categories-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-categories-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-categories-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-categories-block__title{
    margin: 0 0 28px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-categories-block__title-accent{
    color: #fc5b0b;
}

.vsa-categories-block__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.vsa-categories-card{
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.vsa-categories-card__image{
    display: block;
    overflow: hidden;
    border-radius: 34px;
    background: #f3f4f6;
    aspect-ratio: 1 / 1;
    margin-bottom: 18px;
    text-decoration: none;
}

.vsa-categories-card__image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    image-rendering: -webkit-optimize-contrast;
}

.vsa-categories-card:hover .vsa-categories-card__image img{
    transform: scale(1.04);
}

.vsa-categories-card__title{
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #333333;
}

.vsa-categories-card__title a{
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.vsa-categories-card__title a:hover{
    color: #fc5b0b;
}

.vsa-categories-card__text{
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    color: #333333;
    flex-grow: 1;
}

.vsa-categories-card__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease;

    align-self: flex-start; 
    margin-top: 20px;
}

.vsa-categories-card__button:hover{
    background: #e65106;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1399px){
    .vsa-categories-block__title{
        font-size: 40px;
    }

    .vsa-categories-card__title{
        font-size: 23px;
    }

    .vsa-categories-card__text{
        font-size: 18px;
    }
}

@media (max-width: 991px){
    .vsa-categories-block{
        padding: 100px 0 6px;
    }

    .vsa-categories-block__wrap{
        padding: 0 16px;
    }

    .vsa-categories-block__title{
        font-size: 34px;
        margin-bottom: 20px;
    }

    .vsa-categories-block__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .vsa-categories-card__image{
        border-radius: 18px;
        margin-bottom: 14px;
    }

    .vsa-categories-card__title{
        font-size: 22px;
        margin-bottom: 10px;
    }

    .vsa-categories-card__text{
        font-size: 16px;
        line-height: 1.5;
    }

    .vsa-categories-card__button{
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
        margin-top: 16px;
    }
}

@media (max-width: 575px){
    .vsa-categories-block__title{
        font-size: 26px;
    }

    .vsa-categories-block__grid{
        grid-template-columns: 1fr;
    }
}




  .content-block:has(.vsa-gallery-block),
.ocf-description:has(.vsa-gallery-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.vsa-gallery-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-gallery-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-gallery-block__title{
    margin: 0 0 28px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-gallery-block__title-accent{
    color: #fc5b0b;
}

.vsa-gallery-block__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.vsa-gallery-block__item{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #f3f4f6;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    text-decoration: none;
}

.vsa-gallery-block__item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.vsa-gallery-block__item:hover img{
    transform: scale(1.05);
}

.vsa-gallery-block__item::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity .25s ease;
}

.vsa-gallery-block__item:hover::after{
    opacity: 1;
}

.vsa-gallery-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 99999;
}

.vsa-gallery-lightbox.is-open{
    opacity: 1;
    visibility: visible;
}

.vsa-gallery-lightbox__inner{
    position: relative;
    width: min(1400px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsa-gallery-lightbox__img{
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    background: #ffffff00;
}

.vsa-gallery-lightbox__close{
    position: absolute;
    top: -18px;
    right: -18px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fc5b0b;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.vsa-gallery-lightbox__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #333333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    transition: .2s ease;
}

.vsa-gallery-lightbox__nav:hover{
    background: #fc5b0b;
    color: #fff;
}

.vsa-gallery-lightbox__nav--prev{
    left: 18px;
}

.vsa-gallery-lightbox__nav--next{
    right: 18px;
}

.vsa-gallery-lightbox__counter{
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

body.vsa-gallery-open{
    overflow: hidden;
}

@media (max-width: 1399px){
    .vsa-gallery-block__title{
        font-size: 40px;
    }
}

@media (max-width: 991px){
    .vsa-gallery-block{
        padding: 100px 0 6px;
    }

    .vsa-gallery-block__wrap{
        padding: 0 16px;
    }

    .vsa-gallery-block__title{
        font-size: 34px;
        margin-bottom: 20px;
    }

    .vsa-gallery-block__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .vsa-gallery-block__item{
        border-radius: 18px;
    }

    .vsa-gallery-lightbox{
        padding: 20px 10px 50px;
    }

    .vsa-gallery-lightbox__close{
        top: -10px;
        right: 0;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .vsa-gallery-lightbox__nav{
        width: 46px;
        height: 46px;
    }

    .vsa-gallery-lightbox__nav--prev{
        left: 6px;
    }

    .vsa-gallery-lightbox__nav--next{
        right: 6px;
    }
}

@media (max-width: 575px){
    .vsa-gallery-block__title{
        font-size: 26px;
    }

    .vsa-gallery-lightbox__counter{
        bottom: -28px;
        font-size: 14px;
    }
}












  .content-block:has(.vsa-text-photo-block),
.ocf-description:has(.vsa-text-photo-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
  
.vsa-text-photo-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-text-photo-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-text-photo-block__title{
    margin: 0 0 24px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-text-photo-block__title-accent{
    color: #fc5b0b;
}

.vsa-text-photo-block__content{
    position: relative;
}

.vsa-text-photo-block__image{
    float: right;
    width: min(42%, 620px);
    margin: 0 0 24px 34px;
    border-radius: 34px;
    overflow: hidden;
    background: #f3f4f6;
    shape-outside: inset(0 round 34px);
}

.vsa-text-photo-block__image img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.vsa-text-photo-block__text{
    font-size: 21px;
    line-height: 1.65;
    color: #333333;
}

.vsa-text-photo-block__text p{
    margin: 0 0 18px;
}

.vsa-text-photo-block__more{
    display: none;
}

.vsa-text-photo-block.is-open .vsa-text-photo-block__more{
    display: inline;
}

.vsa-text-photo-block__fade{
    display: inline;
}

.vsa-text-photo-block.is-open .vsa-text-photo-block__fade{
    display: none;
}

.vsa-text-photo-block__button-wrap{
    clear: both;
    padding-top: 10px;
}

.vsa-text-photo-block__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: none;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.vsa-text-photo-block__button:hover{
    background: #e65106;
    color: #fff;
    transform: translateY(-2px);
}

.vsa-text-photo-block__button.is-open .vsa-text-photo-block__button-text--open{
    display: none;
}

.vsa-text-photo-block__button:not(.is-open) .vsa-text-photo-block__button-text--close{
    display: none;
}

@media (max-width: 1399px){
    .vsa-text-photo-block__title{
        font-size: 40px;
    }

    .vsa-text-photo-block__text{
        font-size: 19px;
    }

    .vsa-text-photo-block__image{
        width: min(44%, 560px);
    }
}

@media (max-width: 991px){
    .vsa-text-photo-block{
        padding: 100px 0 6px;
    }

    .vsa-text-photo-block__wrap{
        padding: 0 16px;
    }

    .vsa-text-photo-block__title{
        font-size: 34px;
        margin-bottom: 20px;
    }

    .vsa-text-photo-block__image{
        float: none;
        width: 100%;
        margin: 0 0 18px;
        border-radius: 18px;
        shape-outside: none;
    }

    .vsa-text-photo-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-text-photo-block__text p{
        margin: 0 0 16px;
    }

    .vsa-text-photo-block__button{
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
    }
}

@media (max-width: 575px){
    .vsa-text-photo-block__title{
        font-size: 26px;
    }
}










.content-block:has(.vsa-why-block),
.ocf-description:has(.vsa-why-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.vsa-why-block__button{
    border: none;
    cursor: pointer;
}
.vsa-why-block{
    padding: 100px 0;
    background: #fff;
}

.vsa-why-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-why-block__row{
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Фото */
.vsa-why-block__image{
    flex: 0 0 50%;
    min-width: 0;
}

.vsa-why-block__image-inner{
    border-radius: 34px;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 4 / 3;
}

.vsa-why-block__image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Контент */
.vsa-why-block__content{
    flex: 1 1 auto;
    min-width: 0;
}

.vsa-why-block__title{
    margin: 0 0 20px;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.vsa-why-block__title span{
    color: #fc5b0b;
}

.vsa-why-block__title--mobile{
    display: none;
}

.vsa-why-block__text{
    font-size: 20px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 24px;
}

.vsa-why-block__list{
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.vsa-why-block__list li{
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
}

.vsa-why-block__list li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fc5b0b;
}

/* Кнопка */
.vsa-why-block__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: background .25s ease, transform .25s ease;
}

.vsa-why-block__button:hover{
    background: #e65106;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1399px){
    .vsa-why-block__row{
        gap: 40px;
    }

    .vsa-why-block__title{
        font-size: 40px;
    }

    .vsa-why-block__text{
        font-size: 18px;
    }

    .vsa-why-block__list li{
        font-size: 17px;
    }
}

@media (max-width: 991px){
    .vsa-why-block{
        padding: 100px 0 60px;
    }

    .vsa-why-block__wrap{
        padding: 0 16px;
    }

    .vsa-why-block__row{
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .vsa-why-block__title--mobile{
        display: block;
        order: 1;
        font-size: 30px;
        margin-bottom: 0;
    }

    .vsa-why-block__title--desktop{
        display: none;
    }

    .vsa-why-block__image{
        order: 2;
        flex: none;
        width: 100%;
    }

    .vsa-why-block__content{
        order: 3;
    }

    .vsa-why-block__image-inner{
        border-radius: 18px;
    }

    .vsa-why-block__text{
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .vsa-why-block__list{
        margin-bottom: 22px;
    }

    .vsa-why-block__list li{
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .vsa-why-block__list li:before{
        top: 8px;
    }

    .vsa-why-block__button{
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
    }
}

@media (max-width: 575px){
    .vsa-why-block__title{
        font-size: 26px;
    }
}









  .content-block:has(.vsa-steps-block),
.ocf-description:has(.vsa-steps-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.vsa-steps-block{
    padding: 100px 0;
    background: #fff;
}

.vsa-steps-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}


.vsa-steps-block__header{
    margin-bottom: 40px;
}

.vsa-steps-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.vsa-steps-block__title span{
    color: #fc5b0b;
}

.vsa-steps-block__subtitle{
    max-width: 900px;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}


.vsa-steps-block__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}


.vsa-step-card{
    display: flex;
    gap: 20px;
    padding: 26px;
    border-radius: 24px;
    background: #f3f4f6;
    transition: .3s;
}

.vsa-step-card:hover{
    transform: translateY(-4px);
}


.vsa-step-card__num{
    flex: 0 0 auto;
    font-size: 32px;
    font-weight: 800;
    color: #fc5b0b;
    line-height: 1;
}


.vsa-step-card__body{
    flex: 1;
}

.vsa-step-card__title{
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.vsa-step-card__text{
    font-size: 16px;
    line-height: 1.55;
    color: #333;
}


@media (max-width: 1399px){
    .vsa-steps-block__title{
        font-size: 40px;
    }
}

@media (max-width: 991px){
    .vsa-steps-block{
        padding: 60px 0;
    }

    .vsa-steps-block__wrap{
        padding: 0 16px;
    }

    .vsa-steps-block__title{
        font-size: 26px;
    }

    .vsa-steps-block__subtitle{
        font-size: 16px;
    }

    .vsa-steps-block__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .vsa-step-card{
        padding: 18px;
        gap: 14px;
    }

    .vsa-step-card__num{
        font-size: 24px;
    }

    .vsa-step-card__title{
        font-size: 16px;
    }

    .vsa-step-card__text{
        font-size: 14px;
    }
}

@media (max-width: 575px){
    .vsa-steps-block__grid{
        grid-template-columns: 1fr;
    }
}







.content-block:has(.vsa-partners-block),
.ocf-description:has(.vsa-partners-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-partners-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-partners-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-partners-block__header{
    margin-bottom: 28px;
}

.vsa-partners-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-partners-block__title-accent{
    color: #fc5b0b;
}

.vsa-partners-block__text{
    max-width: 1100px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-partners-block__grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.vsa-partners-card{
    display: block;
    overflow: hidden;
    border-radius: 34px;
    background: #f3f4f6;
    aspect-ratio: 1 / 1;
}

.vsa-partners-card img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.vsa-partners-card:hover img{
    transform: scale(1.04);
}

@media (max-width: 1399px){
    .vsa-partners-block__title{
        font-size: 40px;
    }

    .vsa-partners-block__text{
        font-size: 19px;
    }
}

@media (max-width: 991px){
    .vsa-partners-block{
        padding: 100px 0 6px;
    }

    .vsa-partners-block__wrap{
        padding: 0 16px;
    }

    .vsa-partners-block__header{
        margin-bottom: 20px;
    }

    .vsa-partners-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-partners-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-partners-block__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .vsa-partners-card{
        border-radius: 18px;
    }
}

@media (max-width: 575px){
    .vsa-partners-block__title{
        font-size: 26px;
    }
}





.content-block:has(.vsa-contacts-block),
.ocf-description:has(.vsa-contacts-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-contacts-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-contacts-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-contacts-block__header{
    margin-bottom: 28px;
}

.vsa-contacts-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-contacts-block__title-accent{
    color: #fc5b0b;
}

.vsa-contacts-block__text{
    max-width: 980px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-contacts-block__row{
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.vsa-contacts-card{
    background: #f3f4f6;
    border-radius: 34px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.vsa-contacts-card__list{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vsa-contacts-card__item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.vsa-contacts-card__icon{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fc5b0b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vsa-contacts-card__content{
    min-width: 0;
}

.vsa-contacts-card__label{
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.vsa-contacts-card__value{
    font-size: 19px;
    line-height: 1.55;
    color: #333333;
}

.vsa-contacts-card__value a{
    color: #333333;
    text-decoration: none;
    transition: color .25s ease;
}

.vsa-contacts-card__value a:hover{
    color: #fc5b0b;
}

.vsa-contacts-card__phones{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vsa-contacts-card__buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.vsa-contacts-card__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.vsa-contacts-card__button:hover{
    background: #e65106;
    color: #fff;
    transform: translateY(-2px);
}

.vsa-contacts-map{
    min-width: 0;
    border-radius: 34px;
    overflow: hidden;
    background: #f3f4f6;
    min-height: 100%;
}

.vsa-contacts-map iframe{
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

@media (max-width: 1399px){
    .vsa-contacts-block__title{
        font-size: 40px;
    }

    .vsa-contacts-block__text{
        font-size: 19px;
    }

    .vsa-contacts-card__value{
        font-size: 18px;
    }
}

@media (max-width: 991px){
    .vsa-contacts-block{
        padding: 100px 0 6px;
    }

    .vsa-contacts-block__wrap{
        padding: 0 16px;
    }

    .vsa-contacts-block__header{
        margin-bottom: 20px;
    }

    .vsa-contacts-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-contacts-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-contacts-block__row{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vsa-contacts-card{
        border-radius: 18px;
        padding: 22px 18px;
    }

    .vsa-contacts-card__item{
        gap: 12px;
    }

    .vsa-contacts-card__icon{
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .vsa-contacts-card__label{
        font-size: 14px;
        margin-bottom: 4px;
    }

    .vsa-contacts-card__value{
        font-size: 16px;
        line-height: 1.5;
    }

    .vsa-contacts-card__button{
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
    }

    .vsa-contacts-map{
        border-radius: 18px;
    }

    .vsa-contacts-map iframe{
        min-height: 360px;
    }
}

@media (max-width: 575px){
    .vsa-contacts-block__title{
        font-size: 26px;
    }

    .vsa-contacts-card__buttons{
        flex-direction: column;
    }

    .vsa-contacts-card__button{
        width: 100%;
    }
}









.content-block:has(.vsa-video-block),
.ocf-description:has(.vsa-video-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-video-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-video-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-video-block__header{
    margin-bottom: 28px;
}

.vsa-video-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-video-block__title-accent{
    color: #fc5b0b;
}

.vsa-video-block__text{
    max-width: 980px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-video-block__player{
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #f3f4f6;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.vsa-video-block__media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vsa-video-block__poster,
.vsa-video-block__video{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsa-video-block__video{
    background: #000;
}

.vsa-video-block__overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.20) 100%);
    transition: opacity .25s ease;
    pointer-events: none;
}

.vsa-video-block__play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    margin: -43px 0 0 -43px;
    border: none;
    border-radius: 20px;
    background: #fc5b0b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, opacity .25s ease;
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
    z-index: 3;
}

.vsa-video-block__play:hover{
    background: #e65106;
    transform: scale(1.05);
}

.vsa-video-block__play svg{
    margin-left: 4px;
    flex: 0 0 auto;
}

.vsa-video-block__player.is-playing .vsa-video-block__play,
.vsa-video-block__player.is-playing .vsa-video-block__overlay{
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1399px){
    .vsa-video-block__title{
        font-size: 40px;
    }

    .vsa-video-block__text{
        font-size: 19px;
    }
}

@media (max-width: 991px){
    .vsa-video-block{
        padding: 100px 0 6px;
    }

    .vsa-video-block__wrap{
        padding: 0 16px;
    }

    .vsa-video-block__header{
        margin-bottom: 20px;
    }

    .vsa-video-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-video-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-video-block__player{
        border-radius: 18px;
    }

    .vsa-video-block__play{
        width: 66px;
        height: 66px;
        margin: -33px 0 0 -33px;
        border-radius: 16px;
    }

    .vsa-video-block__play svg{
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 575px){
    .vsa-video-block__title{
        font-size: 26px;
    }

    .vsa-video-block__play{
        width: 58px;
        height: 58px;
        margin: -29px 0 0 -29px;
        border-radius: 14px;
    }
}





.content-block:has(.vsa-about-company-block),
.ocf-description:has(.vsa-about-company-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-about-company-block{
    padding: 0px 0 10px;
    background: #fff;
}

.vsa-about-company-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-about-company-block__header{
    margin-bottom: 28px;
}

.vsa-about-company-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-about-company-block__title-accent{
    color: #fc5b0b;
}

.vsa-about-company-block__text{
    max-width: 1320px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-about-company-block__text p{
    margin: 0 0 18px;
}

.vsa-about-company-block__text p:last-child{
    margin-bottom: 0;
}

.vsa-about-company-block__stats{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vsa-about-company-stat{
    background: #f3f4f6;
    border-radius: 34px;
    padding: 30px 26px 28px;
    min-width: 0;
}

.vsa-about-company-stat__num{
    margin: 0 0 10px;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #fc5b0b;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.vsa-about-company-stat__text{
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    color: #333333;
}

@media (max-width: 1399px){
    .vsa-about-company-block__title{
        font-size: 40px;
    }

    .vsa-about-company-block__text{
        font-size: 19px;
    }

    .vsa-about-company-stat__num{
        font-size: 40px;
    }

    .vsa-about-company-stat__text{
        font-size: 18px;
    }
}

@media (max-width: 991px){
    .vsa-about-company-block{
        padding: 10px 0 6px;
    }

    .vsa-about-company-block__wrap{
        padding: 0 16px;
    }

    .vsa-about-company-block__header{
        margin-bottom: 20px;
    }

    .vsa-about-company-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-about-company-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-about-company-block__text p{
        margin-bottom: 14px;
    }

    .vsa-about-company-block__stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 20px;
    }

    .vsa-about-company-stat{
        border-radius: 18px;
        padding: 22px 18px 20px;
    }

    .vsa-about-company-stat__num{
        font-size: 28px;
        margin-bottom: 8px;
    }

    .vsa-about-company-stat__text{
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 575px){
    .vsa-about-company-block__title{
        font-size: 26px;
    }

    .vsa-about-company-block__stats{
        grid-template-columns: 1fr;
    }
}









.content-block:has(.vsa-contacts-block),
.ocf-description:has(.vsa-contacts-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-contacts-block{
    padding: 0px 0 10px;
    background: #fff;
}

.vsa-contacts-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-contacts-block__header{
    margin-bottom: 28px;
}

.vsa-contacts-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-contacts-block__title-accent{
    color: #fc5b0b;
}

.vsa-contacts-block__text{
    max-width: 980px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-contacts-block__row{
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.vsa-contacts-card{
    background: #f3f4f6;
    border-radius: 34px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.vsa-contacts-card__list{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vsa-contacts-card__item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.vsa-contacts-card__icon{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fc5b0b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vsa-contacts-card__content{
    min-width: 0;
}

.vsa-contacts-card__label{
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.vsa-contacts-card__value{
    font-size: 19px;
    line-height: 1.55;
    color: #333333;
}

.vsa-contacts-card__value a{
    color: #333333;
    text-decoration: none;
    transition: color .25s ease;
}

.vsa-contacts-card__value a:hover{
    color: #fc5b0b;
}

.vsa-contacts-card__phones{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vsa-contacts-card__buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.vsa-contacts-card__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    background: #fc5b0b;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.vsa-contacts-card__button:hover{
    background: #e65106;
    color: #fff;
    transform: translateY(-2px);
}

.vsa-contacts-map{
    min-width: 0;
    border-radius: 34px;
    overflow: hidden;
    background: #f3f4f6;
    min-height: 100%;
}

.vsa-contacts-map iframe{
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
}

@media (max-width: 1399px){
    .vsa-contacts-block__title{
        font-size: 40px;
    }

    .vsa-contacts-block__text{
        font-size: 19px;
    }

    .vsa-contacts-card__value{
        font-size: 18px;
    }
}

@media (max-width: 991px){
    .vsa-contacts-block{
        padding: 10px 0 6px;
    }

    .vsa-contacts-block__wrap{
        padding: 0 16px;
    }

    .vsa-contacts-block__header{
        margin-bottom: 20px;
    }

    .vsa-contacts-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-contacts-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-contacts-block__row{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vsa-contacts-card{
        border-radius: 18px;
        padding: 22px 18px;
    }

    .vsa-contacts-card__item{
        gap: 12px;
    }

    .vsa-contacts-card__icon{
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .vsa-contacts-card__label{
        font-size: 14px;
        margin-bottom: 4px;
    }

    .vsa-contacts-card__value{
        font-size: 16px;
        line-height: 1.5;
    }

    .vsa-contacts-card__button{
        min-height: 46px;
        padding: 0 20px;
        font-size: 16px;
    }

    .vsa-contacts-map{
        border-radius: 18px;
    }

    .vsa-contacts-map iframe{
        min-height: 360px;
    }
}

@media (max-width: 575px){
    .vsa-contacts-block__title{
        font-size: 26px;
    }

    .vsa-contacts-card__buttons{
        flex-direction: column;
    }

    .vsa-contacts-card__button{
        width: 100%;
    }
}


.content-block:has(.vsa-requisites-block),
.ocf-description:has(.vsa-requisites-block) {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vsa-requisites-block{
    padding: 100px 0 10px;
    background: #fff;
}

.vsa-requisites-block__wrap{
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsa-requisites-block__header{
    margin-bottom: 28px;
}

.vsa-requisites-block__title{
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-requisites-block__title-accent{
    color: #fc5b0b;
}

.vsa-requisites-block__text{
    max-width: 980px;
    font-size: 21px;
    line-height: 1.6;
    color: #333333;
}

.vsa-requisites-block__row{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 30px;
    align-items: stretch;
}

.vsa-requisites-main{
    background: #f3f4f6;
    border-radius: 34px;
    padding: 34px 32px;
    min-width: 0;
}

.vsa-requisites-main__name{
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.vsa-requisites-main__fullname{
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: #333333;
}

.vsa-requisites-main__status{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: #fc5b0b;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.vsa-requisites-main__status:before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 10px;
}

.vsa-requisites-main__note{
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
}

.vsa-requisites-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.vsa-requisites-item{
    background: #f3f4f6;
    border-radius: 34px;
    padding: 28px 26px;
    min-width: 0;
}

.vsa-requisites-item--wide{
    grid-column: 1 / -1;
}

.vsa-requisites-item__label{
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

.vsa-requisites-item__value{
    font-size: 21px;
    line-height: 1.45;
    color: #333333;
    font-weight: 700;
    word-break: break-word;
}

.vsa-requisites-item__sub{
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    font-weight: 400;
}

.vsa-requisites-item__value a{
    color: #333333;
    text-decoration: none;
    transition: color .25s ease;
}

.vsa-requisites-item__value a:hover{
    color: #fc5b0b;
}

.vsa-requisites-item__phones{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 1399px){
    .vsa-requisites-block__title{
        font-size: 40px;
    }

    .vsa-requisites-block__text{
        font-size: 19px;
    }

    .vsa-requisites-main__name{
        font-size: 28px;
    }

    .vsa-requisites-main__fullname{
        font-size: 18px;
    }

    .vsa-requisites-item__value{
        font-size: 18px;
    }
}

@media (max-width: 991px){
    .vsa-requisites-block{
        padding: 100px 0 6px;
    }

    .vsa-requisites-block__wrap{
        padding: 0 16px;
    }

    .vsa-requisites-block__header{
        margin-bottom: 20px;
    }

    .vsa-requisites-block__title{
        font-size: 34px;
        margin-bottom: 12px;
    }

    .vsa-requisites-block__text{
        font-size: 16px;
        line-height: 1.6;
    }

    .vsa-requisites-block__row{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vsa-requisites-main{
        border-radius: 18px;
        padding: 22px 18px;
    }

    .vsa-requisites-main__name{
        font-size: 24px;
    }

    .vsa-requisites-main__fullname{
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .vsa-requisites-main__status{
        min-height: 38px;
        padding: 0 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .vsa-requisites-main__note{
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .vsa-requisites-list{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vsa-requisites-item{
        border-radius: 18px;
        padding: 22px 18px;
    }

    .vsa-requisites-item__label{
        font-size: 14px;
        margin-bottom: 6px;
    }

    .vsa-requisites-item__value{
        font-size: 16px;
        line-height: 1.5;
    }

    .vsa-requisites-item__sub{
        font-size: 14px;
        line-height: 1.5;
        margin-top: 6px;
    }
}

@media (max-width: 575px){
    .vsa-requisites-block__title{
        font-size: 26px;
    }
}

