/* ===== FOOTER MENU ===== */

.footer-menu {
    background: #f5f5f5;
    padding: 70px 0 80px;
}

.footer-bg-gray {
    background: #f5f5f5;
}

.footer-menu__list {
    list-style: none;
    padding: 0;
}

.footer-menu__list li {
    margin-bottom: 9px;
}

/* ===== FOOTER BLOCK ===== */

.footer-block {
    position: relative;
    padding-left: 45px;
}

.footer-block > i {
    position: absolute;
    left: 0;
    top: 1px;
}

.footer-block > i.icon-subscribe {
    top: 4px;
}

.footer-block > i.icon-poll {
    top: 2px;
}

.footer-block__title {
    font-size: 20px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* ===== FOOTER EXTRA MENU ===== */

.footer-extra-menu {
    background: #f5f5f5;
    border-bottom: 2px solid #eee;
    margin-top: -28px;
}

.footer-extra-menu__opener {
    text-align: center;
    margin-bottom: -27px;
}

.footer-extra-menu__opener .btn {
    padding-left: 45px;
    padding-right: 45px;
}

.footer-extra-menu__holder {
    padding-bottom: 42px;
}

/* ===== FOOTER CONTACTS ===== */

.footer-contacts {
    background: #f5f5f5;
    padding: 94px 0 44px;
}

.footer-cont__item {
    margin-bottom: 20px;
}

.footer-cont__label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.6;
}

.footer-cont__number {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.footer-cont__number img {
    margin-right: 8px;
}

.footer-cont__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cont__link {
    display: inline-flex;
    align-items: center;
}

/* ===== FOOTER BLOCK ADDR ===== */

.footer-block-item {
    margin-top: 10px;
}

.footer-block-addr {
    margin-bottom: 20px;
}

.footer-block-addr-label {
    font-weight: bold;
    margin-bottom: 4px;
}

.footer-block-addr-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.footer-block-addr__link {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
}

.footer-block-addr__link img {
    margin-right: 6px;
}

/* ===== FOOTER BLOCK INFO ===== */

.footer-block-col {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-block-under-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.footer-block-info {
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

.footer-block-info:hover {
    color: #e22c49;
}

/* ===== CONTACTS ADDRESS & SOCIALS ===== */

.contacts-address {
    margin-bottom: 30px;
}

.contacts-soc {
    background: transparent;
    color: #e22c49;
    border: 2px solid #e22c49;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    transition: all .3s ease;
    margin-bottom: 4px;
    margin-right: 6px;
}

.contacts-soc_vk:hover {
    color: #fff;
    border-color: #5a7fa6;
    background: #5a7fa6;
}

.contacts-soc_ok:hover {
    color: #fff;
    border-color: #ee8208;
    background: #ee8208;
}

.contacts-soc_yt:hover {
    color: #fff;
    border-color: #f00;
    background: #f00;
}

.contacts-soc_kl:hover,
.contacts-soc_mg:hover {
    color: black;
    border-color: #f00;
    background: #f00;
}

.contacts-soc span {
    font-size: 0;
}

span.socicon-vkontakte,
span.socicon-odnoklassniki,
span.socicon-youtube,
span.socicon-telegram {
    font-size: 27px !important;
}

.contacts__button {
    margin-top: 20px;
}

/* ===== FOOTER ICONS ===== */

.icon--footer {
    display: block;
    margin-bottom: 12px;
}

.icon--footer-info {
    margin-bottom: 12px;
}

/* ===== FOOTER ROW / LAYOUT ===== */

.footer--row {
    display: flex;
    flex-direction: column;
}

/* ===== MISC ===== */

.red {
    color: #e22c49;
}

/* ===== COLLAPSE ===== */

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

/* ===== BTN (only footer-relevant) ===== */

.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 0;
    padding: 13px 37px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 50px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: #e22c49;
    color: #fff;
    cursor: pointer;
}

.btn:hover {
    background: #f83352;
    border-color: #f83352;
    color: #fff;
    box-shadow: 0 10px 15px rgba(226, 44, 74, .3);
    text-decoration: none;
}

.btn-lite {
    background: transparent;
    color: #f83352;
    border: 2px solid #eee;
}

.btn-lite:hover {
    background: #f83352;
    border-color: #f83352;
    color: #fff;
}

.btn[aria-expanded="true"] {
    background: #f83352 !important;
    color: #fff !important;
    border-color: #f83352 !important;
}

.btn[aria-expanded="false"] {
    background: #f5f5f5 !important;
    color: #f83352 !important;
}

.btn-lite[aria-expanded="false"] {
    border: 2px solid #eee !important;
}

/* ===== BUTTON TOGGLE (hamburger в кнопке "Весь сайт") ===== */

.button-toggle {
    padding: 0;
    cursor: pointer;
    transition-property: opacity;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    background: none;
    border: 0;
    margin: 0 15px 0 -5px;
    overflow: visible;
}

.button-toggle:focus,
.button-toggle:active {
    outline: 0;
}

.button-toggle__box {
    width: 12px;
    height: 12px;
    display: inline-block;
    position: relative;
}

.button-toggle__inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.button-toggle__inner,
.button-toggle__inner::before,
.button-toggle__inner::after {
    width: 12px;
    height: 2px;
    background-color: #e22c49;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.button-toggle__inner::before,
.button-toggle__inner::after {
    content: "";
    display: block;
}

.button-toggle__inner::before {
    top: -5px;
}

.button-toggle__inner::after {
    bottom: -5px;
}

.btn:hover .button-toggle__inner,
.btn:hover .button-toggle__inner::before,
.btn:hover .button-toggle__inner::after,
.btn[aria-expanded="true"] .button-toggle__inner,
.btn[aria-expanded="true"] .button-toggle__inner::before,
.btn[aria-expanded="true"] .button-toggle__inner::after {
    background-color: #fff;
}

.btn[aria-expanded="true"] .button-toggle__inner {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn[aria-expanded="true"] .button-toggle__inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.btn[aria-expanded="true"] .button-toggle__inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.button-toggle .button-toggle__inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.button-toggle .button-toggle__inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.button-toggle .button-toggle__inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.advantages__item p {
    font-size: 18px!important;
    font-weight: 500;
    line-height: 120%;
}


.select-r__width {
    display: flex;
    width: calc(25% - 15px)!important; /* 4 карточки в ряд */
}

.b24-web-form-popup-btn-37 {
    margin: 0px 0px 0px!important;
}
.index-sl-block {
    padding: 32px!important;
    max-width: 675px;
}
.header-fixed {
    transition: all 0.4s ease;
    background-color: #fff;
}
@media (max-width: 650px) {
.select-r__width {
    display: block;
    width: 100%!important;
}
}
@media (max-width: 1000px) {
    .prime-page__send-form {
        width: min-content!important;
        margin-right: auto;
    }
.prime-page__slider {
    width: 305px;
    margin-right: auto!important;
    margin-left: auto;
}
.header-tabs li {
    margin-left: revert-rule;
}
}
.project-r-container .container{
    overflow: hidden;
}
.rules {
    margin-bottom: 0;
    background-color: var(--RED);
    z-index: 1;
    position: relative;
}
.header-under__list {
    display: flex;
    align-items: center;
    position: relative;
}

.header-under__item {
    position: relative;
}

.header-under__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    padding-top: 18px;
}

.header-under__item:hover .header-under__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-under__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);

    min-width: 320px;
    width: max-content;
    max-width: 420px;
}

.header-under-arrow-top {
    position: absolute;
    top: -22px;
    left: 32px;
}
.header-under__dropdown {
    padding-top: 32px;
}

.header-under__dropdown::before {
    height: 32px;
}
.header-under__item {
    position: relative;
}

.header-under__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    padding-top: 30px;
    transition: opacity .18s ease, visibility .18s ease;
}

/* невидимый мостик между пунктом и выпадашкой */
.header-under__dropdown::before {
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    top: 0;
    height: 30px;
}

.header-under__item.is-open .header-under__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-under__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);

    min-width: 320px;
    width: max-content;
    max-width: 420px;
}

.header-under-arrow-top {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.header-under__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    padding-top: 30px;
    transition: opacity .18s ease, visibility .18s ease;
}

.header-under-arrow-top {
    position: absolute;
    top: -22px;
    left: 32px;
    transform: none;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 16px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__icon svg {
  width: 16px;
  height: 17px;
  display: block;
}

.faq-item__icon-up {
  display: none !important;
}

.faq-item__icon-down {
  display: block !important;
}

/* открыто — вверх */
.faq-item.active .faq-item__icon-up {
  display: block !important;
}

.faq-item.active .faq-item__icon-down {
  display: none !important;
}
.footer-block-info{
    text-decoration: none;
}
.header-under__content a{
color:#000;
}
.header-under__content a:hover{
color:#e22c49;
}
.prime-page__slider .slick-slide img{
    border-radius: 16px;
}
@media (max-width: 1680px) {
    .header-under__item:last-child .header-under__dropdown {
        left: -156% !important;
        right: auto !important;
    }
}
.header-under__dropdown.is-scroll {
    overflow: hidden;
}

.header-under__dropdown.is-scroll .header-under__content {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.header-under__dropdown.is-scroll .header-under__content::-webkit-scrollbar {
    width: 6px;
}

.header-under__dropdown.is-scroll .header-under__content::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 10px;
}
.header-mobile--item__dropdown ol {
    counter-reset: mobile-menu-counter;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.header-mobile--item__dropdown ol > li {
    counter-increment: mobile-menu-counter;
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
    margin: 0 0 12px;
    padding: 0;
}

.header-mobile--item__dropdown ol > li::before {
    content: counter(mobile-menu-counter, decimal-leading-zero) ".";
    display: block;
    grid-column: 1;
    grid-row: 1;
    color: #f51f2c;
    line-height: 1.45;
    white-space: nowrap;
}

.header-mobile--item__dropdown ol > li > a {
    display: block !important;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    line-height: 1.45;
}