.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: 33px !important;
    height: 33px;
}

.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;
    }
}



.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: #a31f36;
  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: #a31f36;
}

.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: #111;
    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: #a31f36;
  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: #111;
}

.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: #a31f36;
    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: #111;
    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;
  }
}







.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: #111;
}
.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: #a31f36;
  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: #111;
  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: #a31f36;
}


.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: #111;
    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%;
  }
}



.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: #a31f36;
}

.stats-rating{
background: #fff;
    padding: 40px 0;
    border: 1px solid;
    border: 2px solid #a31f36;
    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: #a31f36;
    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;
}


@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;
  }
}


.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;
}


.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: 35px;
    height: 35px;
  margin-bottom: 10px;
}
.cargo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cargo-card__text {
  flex-grow: 1;
}

.cargo-card__btn {
  margin-top: 16px;
}
.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: #111;
}

.cargo-card__text {
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    margin: 0;
    font-weight: 300;
}





@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;
  }
}



.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;
}


.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;
  border:1px solid #e6e6e6;
  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: #111;
}

.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: #111;
    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: 4px;
  border: none;
  background: #a31f36;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

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

.service-card__btn:hover {
text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}


@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 {

    font-size: 18px;
    color: #111;
    font-weight: 300;
	margin-top: 15px;
	
}


@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: 16px;
	margin-top: 15px;
  }
}


.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: #111;
}

.my-stats-block .section-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    font-weight: 300;
    margin-top: 10px;
}


.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;
}


.my-stats-block .price-table th,
.my-stats-block .price-table td {
border: 1px solid #dcdcdc !important;
    font-weight: 300;
    font-size: 16px;
}

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

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

.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;
}


.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: 16px;
        line-height: 1.5;
        color: #111;
        font-weight: 300;
        margin-top: 15px;
  }


  .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: #111;
  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 #a31f36;
    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: #111;
}

.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: #a31f36;
  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, #a31f36, #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: #111;
    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;
  }
}



.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: #111;
}
.fleet-card__subtitle {
font-size: 15px;
    color: #111;
    margin: 0;
    font-weight: 400;
}

.fleet-card__meta {
    font-size: 14px;
    color: #111;
    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: #a31f36;
    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;
  }
}


.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: 4px;
  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: #a31f36;
  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: #111;
    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: #a31f36;
}

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

.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;
  }
}


.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;
  }


  .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: #a31f36;
  }

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

  .geo-timeline .section-subtitle {
margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    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 #a31f36;
    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: #a31f36;
    margin-bottom: 4px;
    font-weight: 600;
  }

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

  .geo-step__text {
    font-size: 15px;
    color: #111;
    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: #a31f36;
    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: #111;
    font-weight: 400;
}


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


.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;
}


.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, #a31f36, #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;
}


.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: #a31f36;
  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: #111;
  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: #a31f36;
}

.my-stats-block .faq-item__btn[aria-expanded="true"] .faq-item__icon::before {
  background: #a31f36;
  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: #a31f36;
  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;
  }
}


.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: #a31f36;
}

.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;
}


.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: 4px;
  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: #111;
    font-weight: 600;
}

.my-stats-block .photos-section__text a {
  color: #a31f36;
  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;
  }
}





.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: #a31f36;
}

.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: #111;
}

.my-stats-block .seo-text a {
  color: #a31f36;
  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;
  }
}


.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: #111;
}

.my-stats-block .steps-section .section-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
    font-weight: 300;
    margin-top: 10px;
}


.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: 18px;
    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: #a31f36;
  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: #111;
}

.my-stats-block .step-card__text {
    margin: 0;
    font-size: 16px;
    color: #111;
    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: 16px;
	margin-top: 15px;
  }
  .my-stats-block .step-card__title {
    font-size: 17px;
  }
  .my-stats-block .step-card__text {
    font-size: 14px;
  }
}







.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: 12px 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: 62px;
  height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px; 
  color: #fff;
}

.icon--orange { background:#f3f5f6; }
.icon--blue   { background:#f3f5f6; }
.icon--green  { background:#f3f5f6;  }
.icon--violet { background:#f3f5f6; }
.my-stats-block .legal-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #111;
    text-align: center;
}
.my-stats-block .legal-card__text {
    font-size: 16px;
    line-height: 1.55;
    color: #111;
    font-weight: 300;
    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: #a31f36;
    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;
}


.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);
}


.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: #a31f36;
}
#logo {
    max-width: 240px;
    max-width: 240px;
    width: 100%;
}
@media (min-width: 1200px) {
    #logo {
        max-width: 320px;
        max-width: 320px;
        width: 100%;
    }
}
.contacts-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}



.online-box {
    display: none;
}


@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: #a31f36;
    color: #261700;
}


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




.web-nav { display: none; }
@media (min-width: 1200px) {
  .web-nav { display: block; }
}

.web-nav__inner{
  display: flex;
  align-items: center;
}

.web-nav__logo img { display:block; }

.web-nav__phone{
  margin-left: auto;
  font-weight: 700;
  font-size: 22px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
      margin-top: 7px;
}

.menu__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .menu__link {
    font-size: 14px;
  }
  .menu{
  gap: 12px;

}
}
.menu__link:hover,
.menu__link:focus-visible{

  outline: none;
  color: #a31f36;
}

.menu__link--btn { -webkit-appearance: none; appearance: none; }

.chev{
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    margin-top: -5px;
}


.menu__item{ position: relative; }

.submenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 350px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
  padding: 10px;
  display: none;
  z-index: 50;
}

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

.submenu__item{ position: relative; }

.submenu__link{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.submenu__link:hover,
.submenu__link:focus-visible{
  background: #f6f6f6;
  outline: none;
  color: #a31f36;  
}

.arrow{
  width: 10px; height: 10px;
  border-right: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
  transform: rotate(-45deg);
}


.submenu2{
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  min-width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
  padding: 10px;
  display: none;
  z-index: 60;
}

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

.submenu2__link{
  display:block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration:none;
  color:#222;
  font-weight: 500;
}

.submenu2__link:hover,
.submenu2__link:focus-visible{
  background:#f6f6f6;
  outline:none;
    color: #a31f36;
}


.menu__item.has-sub:hover > .submenu,
.menu__item.has-sub:focus-within > .submenu{
  display:block;
}

.submenu__item.has-sub2:hover > .submenu2,
.submenu__item.has-sub2:focus-within > .submenu2{
  display:block;
}


.submenu::before{
  content:"";
  position:absolute;
  top:-10px; left:0;
  width:100%; height:10px;
}
.submenu2::before{
  content:"";
  position:absolute;
  top:0; left:-10px;
  width:10px; height:100%;
}
.submenu2{
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.submenu2__link{
  white-space: normal;
}

.btn-soc svg {
    margin-right: 4px;
}
.btn-soc img {
    margin-right: 4px; 
	margin-bottom: 2px;
}
.topbar-desktop{
    background:#fff;
    border-bottom:1px solid #f5f5f5;
}

.topbar-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
	margin-bottom: 5px;
    margin-top: -11px;
}

.topbar-left{
    font-size:13px;
    color:#333;
}

.topbar-right{
    display:flex;
    gap:10px;
}

.topbar-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: #fff;
    font-size: 13px;
}

.topbar-btn:hover{
    background:#f5f5f5;
}

.topbar-desktop {
  display: none;
}


@media (min-width: 1200px) {
  .topbar-desktop {
    display: block;
  }
}


.content-block:has(.hero-law, .lead-form, .criminal-block, .faq),
.ocf-description:has(.hero-law, .lead-form, .criminal-block, .faq) {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}




.hero-law__card{
  max-width: 1600px;
  margin: 0 auto;
  background:#f6f6f6;
  border-radius:4px;
  overflow:hidden;
  position:relative;

  display:grid;
  grid-template-columns: 1fr 560px;
  grid-template-areas:
    "title media"
    "body  media";
  column-gap: 40px;

  padding: 24px 56px;
}


.hero-law__titlebox{ grid-area:title; margin-top: 50px; }
.hero-law__media{ grid-area:media; }
.hero-law__body{ grid-area:body; }


.hero-law__title{
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing:-0.02em;
  color:#111;
}

.hero-law__subtitle{
  margin:22px 0 22px;
  font-size:16px;
  line-height:1.6;
  color:#222;
  max-width: 520px;
}

.hero-law__list{
  margin:0 0 30px;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
  font-size:16px;
  line-height:1.6;
  color:#222;
  max-width: 560px;
}
.hero-law__list li{
  position:relative;
  padding-left:28px;
}
.hero-law__list li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color:#9b1c2b;
  font-weight:700;
}

.hero-law__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 4px;
    background: #9b1c2b;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    height: 46px;
    font-size: 16px;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}


.hero-law__media{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height: 420px;
}

.hero-law__media::before{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius:50%;
  background:#d7dbcf;
  top: 24px;
  left: 50%;
  transform: translateX(-51%);
}

.hero-law__img{
  position: relative;
  z-index: 1;
  width: auto;
  max-height: 520px;
  object-fit: contain;
  transform: translateY(22px);
  margin-top: -40px;
}


@media (max-width: 1399px) {
  .hero-law__title {
    font-size: 38px;
    line-height: 1.1;
  }
}


@media (max-width: 1199px){
  .hero-law__card{
    grid-template-columns: 1fr 460px;
    padding: 40px 22px;
    column-gap: 22px;
  }

  .hero-law__media::before{
    width: 430px;
    height: 430px;
    top: 18px;
    transform: translateX(-40%);
  }

  .hero-law__img{
    max-height: 480px;
    transform: translateY(14px);
  }
}


@media (max-width: 767px){

  .hero-law__card{
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "body";
    padding: 22px 16px 18px;
    overflow: visible;
  }

  .hero-law__titlebox{
    margin-top: 10px;
    text-align: center;
  }

  .hero-law__title{
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
    text-align: center;
  }

  .hero-law__subtitle{
    margin: 22px 0 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    max-width: 100%;
    text-align: center;
  }

  .hero-law__media{
    min-height: 360px;
    margin: 6px 0 10px;
    overflow: visible;
  }

  .hero-law__media::before{
    width: 300px;
    height: 300px;
    top: 70px;
    left: 50%;
    transform: translateX(-54%);
  }

  .hero-law__img{
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    max-height: 380px;
    margin-top: 0;           
  }

  .hero-law__list{
    font-size: 16px;
    max-width: 100%;
  }

  .hero-law__btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        border-radius: 4px;
        background: #9b1c2b;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        height: auto;
  }
}


@media (prefers-reduced-motion: reduce){
  .hero-law__img{ transition:none; }
}
  @media (max-width: 767px){

  .hero-law__btn{
    display: block;
    width: fit-content;
    margin: 0 auto;   
  }

}
 
  
  


.btn-call-anim{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, background-position;

  background-size: 220% 100%;
  background-position: 0% 50%;

  animation-name: btnSway, btnShimmer;
  animation-duration: 4.2s, 4.2s;
  animation-iteration-count: infinite, infinite;
  animation-timing-function: cubic-bezier(.4,0,.2,1), linear;
  transform-origin: 50% 60%;
}


.btn-call-anim::before{
  content:"";
  position:absolute;
  top:-60%;
  left:-80%;
  width: 45%;
  height: 220%;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.55) 45%,
    rgba(255,255,255,.12) 65%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-25deg) translateX(-160%);
  opacity: 0;

  animation: btnStripe 4.2s infinite ease-in-out;
}


@keyframes btnStripe{
  0%   { opacity:0; transform: skewX(-25deg) translateX(-170%); }
  6%   { opacity:1; }
  42%  { opacity:1; transform: skewX(-25deg) translateX(340%); }
  46%  { opacity:0; transform: skewX(-25deg) translateX(360%); }
  100% { opacity:0; transform: skewX(-25deg) translateX(360%); }
}


@keyframes btnSway{


  0%, 41% { transform: translateX(0) rotate(0); }

 
  42% { transform: translateX(0) rotate(0); }
  45% { transform: translateX(1.6px) rotate(0.7deg); }
  48% { transform: translateX(-1.6px) rotate(-0.7deg); }
  51% { transform: translateX(1px) rotate(0.4deg); }
  54% { transform: translateX(0) rotate(0); }


  55%, 100% { transform: translateX(0) rotate(0); }
}


@keyframes btnShimmer{
  0%, 41%  { background-position: 0% 50%; }

  43% { background-position: 0% 50%; }
  48% { background-position: 100% 50%; }
  52% { background-position: 0% 50%; }

  53%, 100% { background-position: 0% 50%; }
}


@media (prefers-reduced-motion: reduce){
  .btn-call-anim,
  .btn-call-anim::before{
    animation: none !important;
  }
}
  
  
  
  .hero-law__btn {
    cursor: pointer;
    transition: all 0.3s ease;
}


.hero-law__btn:hover {
    text-shadow: 0 0 10px rgba(229,229,229,.63),
                 0 0 20px rgba(245,245,245,.47);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}

.hero-law__btn:active {
    transform: scale(0.98);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.15);
}



.section-title-new {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 20px;
}


.section-title-new::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 120px;
    height: 3px;
    background: #d7dbcf;
}


.section-title-new::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #333;
}

.cargo-card__btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    background: transparent;
    color: #a31f36;
    border: 1px solid #a31f36;
    font-weight: 500;
	cursor: pointer;
}

.cargo-card__btn2 {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    background: #a31f36;
    color: #fff;
    border: 1px solid #a31f36;
    font-weight: 500;
	cursor: pointer;
}

.cargo-card__btn:hover {
text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}

.cargo-card__btn2:hover {
text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}



.criminal-block {
  padding: 100px 0px 70px 0px;
  display: flex;
  justify-content: center;
}

.criminal-block__inner {
    position: relative;
    max-width: 1600px;
    width: 100%;
    border: 1px solid #9b1c2b;
    padding: 70px 10px 0px;
    text-align: center;
    margin: 0px 10px 0px 10px;
    border-radius: 16px;
}


.criminal-block__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 20px;
}

.criminal-block__logo img {
  width: 70px;
  display: block;
}

.criminal-block__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #d9d9d9;
}

.criminal-block__details {
  margin-bottom: 40px;
}

.criminal-block__summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #9b1c2b;
  list-style: none;
}

.criminal-block__summary::-webkit-details-marker {
  display: none;
}

.criminal-block__text {
    margin-top: 30px;
    color: #111;
    font-size: 16px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.criminal-block__btn-wrap {
  margin-top: 30px;
}

.criminal-block__btn {
  display: inline-block;
  padding: 14px 36px;
  background: #9b1c2b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.criminal-block__btn:hover {
  opacity: 0.9;
}
  .criminal-block__preview {
    margin: 25px auto 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    font-weight: 300;
    text-align: center;
}
  .criminal-block__text p {
  margin-top: 25px;
}

.criminal-block__summary .hide-text {
  display: none;
}


.criminal-block__details[open] .show-text {
  display: none;
}

.criminal-block__details[open] .hide-text {
  display: inline;
}


.criminal-block__btn-wrap {
  margin-top: 30px;
  text-align: center;
}
.lead-form{
  padding: 120px 5px 0px 5px;
}

.lead-form__inner{
    max-width: 1600px;
    margin: 0 auto;
    padding: 26px;
    background: #fff;
    border-radius: 26px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 26px;
    border: 3px solid #f3f5f6;
}

.lead-form__title{
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  color: #1b1b1b;
}

.lead-form__accent{
  color: #a31f36; 
}

.lead-form__person{
  background: #f3f5f6;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 12px;
}

.lead-form__avatar{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 56px;
  background: #e6eaec;
}

.lead-form__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lead-form__person-name{
  font-weight: 800;
  color: #111;
  font-size: 16px;
  margin-bottom: 4px;
}

.lead-form__person-note{
    color: #111;
    font-size: 16px;
    line-height: 1.35;
}

.lead-form__contacts-title{
color: #111;
    font-size: 16px;
    margin: 18px 0 10px;
    font-weight: 600;
}

.lead-form__phone{
  display: inline-block;
  font-size: 34px;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  letter-spacing: .3px;
}

.lead-form__email{
  display: block;
  margin-top: 6px;
  color: #ff5a3c;
  text-decoration: none;
  font-size: 16px;
      font-weight: 500;
}

.lead-form__right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lead-form__right-title{
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 8px;
  color: #1b1b1b;
}

.lead-form__right-subtitle{
    color: #111;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
}


.lead-form__actions{
  display: grid;
  gap: 12px;
  align-content: start;
}

.lead-form__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 52px;         
  padding: 12px 16px;
  border-radius: 4px;       
  background: #9b1c2b;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.lead-form__btn-2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid #f5f5f5;
}
  .lead-form__btn-3{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #3390ec;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid #f5f5f5;
}
  .lead-form__btn-4{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid #f5f5f5;
}
.lead-form__btn--primary{
  min-height: 60px;
  font-size: 18px;
}


.lead-form__btn:hover{
  text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}
.lead-form__btn-2:hover{
  text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}
  .lead-form__btn-3:hover{
  text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}
  .lead-form__btn-4:hover{
  text-shadow: 0 0 10px rgba(229, 229, 229, .631372549), 0 0 20px rgba(245, 245, 245, .4666666667);
    background: #d7dbcf;
    color: #333;
    border-color: #d7dbcf;
}

@media (max-width: 992px){
  .lead-form__inner{
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .lead-form__title{
    font-size: 28px;
  }

  .lead-form__phone{
    font-size: 30px;
  }

  .lead-form__right{
    order: 2;
  }

  .lead-form__left{
    order: 1;
  }
}

@media (max-width: 420px){
  .lead-form__title{
        font-size: 28px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #111;
        text-align: center;
  }
  .lead-form__phone{
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
    .ds-footer-item {
       
        margin-left: 10px;
    }
}



  .faq {
  max-width: 100%;
      margin: 0px 10px 0px 10px;
}

.faq-item {
  background: #f3f5f6;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
}


.phone-icon{
    display:inline-block;
    animation: phone-ring 1.3s infinite;
}


.phone-icon svg{
    display:block;
    transform-origin:50% 50%;
}

@keyframes phone-ring{
    0%  { transform:rotate(0deg); }
    15% { transform:rotate(18deg); }
    30% { transform:rotate(-16deg); }
    45% { transform:rotate(12deg); }
    60% { transform:rotate(-8deg); }
    75% { transform:rotate(4deg); }
    100%{ transform:rotate(0deg); }
}


.lead-form__actions a {
	text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-weight: 500;

	}
	