body {
    width: 100%;
    overflow: hidden !important;
    background-color: var(--body-bg);
}


/* ХЕДЕР */
.rmUIheader {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 14px 21px;
    background-color: var(--body-bg);
}

.rmUIheader__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.rmUIheader__margin .rmUIheader {
    margin-bottom: 40px;
}

.rmUIheader__content-logo__container {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
}

.rmUIheader__content-logo__img {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.rmUIheader__content-logo-text__block {
    display: flex;
    flex-direction: column;
}

.rmUIheader__content-logo-text--title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: var(--red-color);
    font-size: 21px;
}

.rmUIheader__content-logo-text--subtitle {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 15px;
}

.rmUIheader__right {
    display: flex;
    flex-direction: row;
    gap: 11px;
}


.rmUIheader__content-navigation {
    display: flex;
    flex-direction: row;
    gap: 27px;
    align-items: center;
}

.rmUIheader__content-nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--black-color);
    font-size: 16px;
    position: relative;
    transition: all 0.4s ease;
}

.rmUIheader__content-nav-link svg {
    height: 21px;
    width: 21px;
    fill: var(--black-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.rmUIheader__content-nav-link:hover {
    color: var(--red-color);
}

.rmUIheader__content-nav-link:hover svg {
    fill: var(--red-color);
}



.rmUIheader__content-nav--dropdown-trigger {
    cursor: pointer;
}

.rmUIheader__content-dropdown {
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: var(--block-bg);
    backdrop-filter: blur(655px);
    padding: 30px 80px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-28px);
    z-index: 9999;
    border-radius: 0 0 25px 25px;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.rmUIheader__content-dropdown-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 7px;
    margin: 0 auto;
}

.rmUIheader__content-dropdown-inner a {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--black-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s;
}

.rmUIheader__content-dropdown-inner a:hover {
    color: var(--red-color);
}

.rmUIheader__content-nav--dropdown-trigger.active + .rmUIheader__content-dropdown,
.rmUIheader__content-dropdown:hover,
.rmUIheader__content-nav--dropdown-trigger:hover + .rmUIheader__content-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}



.rmUIheader__content-cabinet__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.rmUIheader__content-cabinet__wrapper--mobile {
    display: none;
}

.rmUIheader__content-cabinet__block {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 13px 21px;
    gap: 7px;
    background-image: linear-gradient(90deg, var(--linear-thin-red), var(--linear-dark-red));
    align-items: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.6s ease;
}

.rmUIheader__content-cabinet__block svg {
    height: 24px;
    width: 24px;
    fill: var(--white-color);
    flex-shrink: 0;
    transition: all 0.6s ease;
}

.rmUIheader__content-cabinet__block:hover {
    border-radius: 35px;
}

.rmUIheader__content-cabinet__block:active {
    transform: scale(0.94);
}



/* ОСНОВНЫЕ СТИЛИ */
.rmUImain__content {
    display: flex;
    flex-direction: column;
    gap: 170px;
    width: 100%;
    padding: 0px 21px;
    margin-bottom: 170px;
}


.rmUItitle__block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 60px;
}

.rmUItitle {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--black-color);
    font-size: 51px;
    text-transform: uppercase;
}

.rmUItitle span {
    color: var(--red-color);
    padding: 0px 7px;
    background-color: var(--accent-text-bg);
}

.rmUItitle--margin {
    margin-bottom: 17px;
}

.rmUIsubtitle {
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--gray-color);
    font-size: 17px;
}

.rmUIbutton {
    width: fit-content;
    position: relative;
    isolation: isolate;
}

.rmUIbutton__inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 21px;
    position: relative;
    cursor: pointer;
    color: var(--black-color);
    text-decoration: none;
    border: none;
    background-color: transparent;
}

.rmUIbutton__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--button--animation-bg);
    border-radius: 32px;
    clip-path: inset(0 calc(100% - 90px) 0 0 round 25px);
    transform: rotate(-15deg);
    transform-origin: 30px 50%;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.rmUIbutton__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--red-color);
    position: relative;
    z-index: 1;
    transition: background 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.rmUIbutton__icons {
    position: relative;
    width: 22px;
    height: 22px;
    overflow: hidden;
}

.rmUIbutton__icons-inner {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    transition: transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.rmUIbutton__icon {
    width: 22px;
    height: 22px;
    fill: none;
    flex-shrink: 0;
}

.rmUIbutton__icon path {
    fill: var(--white-color);
}

.rmUIbutton__text {
    position: relative;
    z-index: 1;
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--black-color);
    font-size: 16px;
    user-select: none;
    transition: all 0.4s ease;
}

.rmUIbutton:hover .rmUIbutton__inner::before {
    clip-path: inset(0 0 0 0 round 25px);
    transform: rotate(0deg);
}

.rmUIbutton:hover .rmUIbutton__icons-inner {
    transform: translateX(-50%);
}

.rmUIbutton:hover .rmUIbutton__circle {
    background-color: var(--red-color);
}

.rmUIbutton:hover .rmUIbutton__text {
    color: var(--red-color);
}



.rmUIsearch {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 41px;
}

.rmUIsearch__field {
    display: flex;
    flex: 1;
    background-color: var(--block-bg);
    overflow: hidden;
}

.rmUIsearch__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 0px 0px 14px;
    aspect-ratio: 1 / 1;
    height: 100%;
    background-color: var(--red-color);
    flex-shrink: 0;
}

.rmUIsearch__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white-color);
    flex-shrink: 0;
}

.rmUIsearch__input {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 14px 16px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--black-color);
    font-size: 16px;
    width: 100%;
    border-radius: 0 14px 14px 0;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.rmUIsearch__input:focus {
    border-color: var(--red-color);
}

.rmUIsearch__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--white-color);
    font-size: 17px;
    cursor: pointer;
    user-select: none;
    border: none;
    padding: 0 54px;
    border-radius: 12px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.rmUIsearch__btn:hover {
    background-color: var(--red-color);
}

.rmUIsearch__btn:active {
    transform: scale(0.98);
}


/* ГЛАВНЫЙ ХЕРО БЛОК */
.rmUIhero {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIhero__content {
    display: grid;
    grid-template-columns: 1fr 640px;
    gap: 14px;
    width: 100%;
}

.rmUIhero__content-left__container {
    display: flex;
    flex-direction: column;
}

.rmUIhero__content-text__block {
    display: flex;
    flex-direction: column;
}

.rmUIhero__content-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Foglihten';
    font-weight: 500;
    color: var(--black-color);
    font-size: 90px;
    line-height: 1;
    margin-bottom: 21px;
}

.rmUIhero__content-title span {
    display: inline-block;
    white-space: nowrap;
    height: 80px; 
    color: var(--red-color);
    margin-bottom: 10px;
    background-color: var(--accent-text-bg);
}

.rmUIhero__content-text {
    font-family: 'Montserrat';
    font-weight: 400;
    color: var(--black-color);
    font-size: 16px;
    margin-bottom: 41px;
}



/* ЛЕНДИНГ БЛОК */
.rmUIlanding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 210px;
    margin-bottom: 70px;
    background-image: linear-gradient(45deg, var(--linear-land-thin-red), var(--linear-land-dark-red));
}

.rmUIlanding__content {
    display: flex;
    flex-direction: row;
    padding: 0px 21px;
    width: 100%;
    align-items: center;
}

.rmUIlanding__content-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Foglihten';
    font-weight: 500;
    color: var(--white-color);
    font-size: 80px;
}


/* НАМ ДОВЕРЯЮТ */
.rmUItrust {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.rmUItrust__content {
    display: flex;
    flex-direction: column;
}

.rmUItrust__content-linear__container {
    width: 100%;
    position: relative;
}

.rmUItrust__track {
    display: flex;
    width: max-content;
    gap: 60px;
    will-change: transform;
}

.rmUItrust__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    user-select: none;
    background-color: transparent;
}

.rmUItrust__slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    transition: all 0.3s ease;
}


/* ГЛАВНЫЕ УСЛУГИ */
.rmUIservices {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIservices__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIservices__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rmUIservice__card--main {
    background-image: url(../img/elements/service__main--card.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: space-between;
}

.rmUIservice__card-status__block {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rmUIservice__status-bar {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rmUIservice__status-bar:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.rmUIservice__status-progress {
    width: 0%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmUIservice__status-bar--active .rmUIservice__status-progress {
    width: 100%;
}

.rmUIservice__card-bottom--main__block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

.rmUIservice__card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.rmUIservice__card--text__block {
    display: flex;
    flex-direction: column;
}

.rmUIservice__card--text__block--main {
    margin-bottom: 57px;
}

.rmUIservice__card-title--main {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--white-color);
    font-size: 27px;
    line-height: 1;
    margin-bottom: 14px;
}

.rmUIservice__card-text--main {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--blind-white-color);
    font-size: 15px;
    line-height: 1.1;
}

.rmUIservice__card-arrows__container {
    display: flex;
    flex-direction: row;
    gap: 11px;
    align-items: center;
}

.rmUIservice__card-arrow {
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: transform 0.2s ease;
}

.rmUIservice__card-arrow svg {
    display: block;
    height: 41px;
    width: 41px;
    fill: var(--white-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.rmUIservice__card-arrow--prev {
    transform: rotate(180deg);
}

.rmUIservice__card-arrow:hover svg {
    opacity: 0.75;
}

.rmUIservice__card-arrow:active {
    transform: scale(0.95);
}

.rmUIservice__card-arrow--prev:active {
    transform: rotate(180deg) scale(0.95);
}



.rmUIservices__cards--grids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rmUIservice__card {
    display: flex;
    flex-direction: column;
    padding: 17px;
    height: 100%;
    background-color: var(--block-bg);
    transition: all 0.4s ease;
}

.rmUIservice__card-icons__block {
    display: block;
    margin-bottom: 27px;
}

.rmUIservice__card-icons__block svg {
    height: 34px;
    width: 34px;
    fill: var(--red-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.rmUIservice__card--text__block {
    display: flex;
    flex-direction: column;
}

.rmUIservice__card-title {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--red-color);
    font-size: 19px;
    line-height: 1;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.rmUIservice__card-text {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 15px;
    transition: all 0.4s ease;
}



.rmUIservice__card:hover {
    border-radius: 17px;
    background-color: var(--red-color);
}

.rmUIservice__card:hover .rmUIservice__card-title,
.rmUIservice__card:hover .rmUIservice__card-text {
    color: var(--white-color);
}

.rmUIservice__card:hover .rmUIservice__card-icons__block svg {
    fill: var(--white-color);
}



/* ОТЗЫВЫ О НАС */
.rmUIreviews {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIreviews__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIreviews__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 51px;
}

.rmUIreview__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 14px;
    border-radius: 17px;
    background-color: var(--block-bg);
    cursor: pointer;
    transition: all 0.4s ease;
}

.rmUIreview__card:hover {
    transform: translateY(-4px);
}

.rmUIreview__card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 7px;
}

.rmUIreview__card-client--info__block {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.rmUIreview__card-avatar {
    height: 54px;
    width: 54px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 17px;
}

.rmUIreview__card-username {
    display: flex;
    flex-direction: column;
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1;
}

.rmUIreview__card-username span {
    color: var(--red-color);
}

.rmUIreview__card-raiting__block {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
}

.rmKITstar {
    height: 24px;
    width: 24px;
    fill: var(--gray-color);
    flex-shrink: 0;
}

.rmKITstar__red {
    fill: var(--red-color);
}


.rmUIreview__card-text {
    display: -webkit-box;
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    overflow: hidden;
    white-space: pre-line;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}


.rmUIreviews__content-button__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.rmUIreviews__content-add__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--white-color);
    font-size: 16px;
    padding: 14px 1px;
    background-color: var(--red-color);
    cursor: pointer;
    user-select: none;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.rmUIreviews__content-add__button:hover {
    opacity: 0.75;
}


/* МОДАЛКА ПОЛНОГО ОТЗЫВА */
.rmUIreview__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rmUIreview__modal--active {
    display: flex;
    opacity: 1;
}

.rmUIreview__modal-content {
    position: relative;
    width: 90vw;
    max-width: 100%;
    height: 85vh;
    background-color: var(--white-color);
    border-radius: 32px;
    padding: 38px;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.rmUIreview__modal--active .rmUIreview__modal-content {
    transform: scale(1);
}

.rmUIreview__modal-content::-webkit-scrollbar {
    width: 4px;
}

.rmUIreview__modal-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
}

.rmUIreview__modal-content::-webkit-scrollbar-thumb {
    background-color: var(--red-color);
    border-radius: 4px;
}

.rmUIreview__modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 38px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.rmUIreview__modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.rmUIreview__modal-close svg {
    width: 24px;
    height: 24px;
    fill: var(--gray-color);
    transition: fill 0.3s ease;
}

.rmUIreview__modal-close:hover svg {
    fill: var(--red-color);
}

.rmUIreview__modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.rmUIreview__modal-info__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;   
}

.rmUIreview__modal-avatar {
    width: 62px;
    height: 62px;
    border-radius: 21px;
    object-fit: cover;
}

.rmUIreview__modal-info {
    flex: 1;
}

.rmUIreview__modal-username {
    display: flex;
    flex-direction: column;
    font-family: 'Unbounded';
    font-weight: 500;
    line-height: 1;
    font-size: 24px;
    color: var(--black-color);
}

.rmUIreview__modal-username span {
    color: var(--red-color);
}

.rmUIreview__modal-raiting {
    display: flex;
    gap: 6px;
}

.rmUIreview__modal-raiting--modal {
    margin-bottom: 10px;
}

.rmUIreview__modal-raiting svg {
    width: 28px;
    height: 28px;
}

.rmUIreview__modal-text {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 17px;
    white-space: pre-line;
    word-break: break-word;
}

.rmUIreview__modal-text p {
    margin: 0;
}



/* НОВОСТИ И БЛОГ */
.rmUInews {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUInews__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUInews__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


.rmUInews__card {
    display: flex;
    flex-direction: column;
    background-color: var(--block-bg);
    min-height: 450px;
    transition: all 0.4s ease;
}

.rmUInews__card:hover {
    border-radius: 17px;
    transform: translateY(-3px);
}

.rmUInews__card:hover .rmUInews__card-title {
    color: var(--red-color);
}

.rmUInews__card:hover .rmUInews__card-go__button svg {
    fill: var(--red-color);
}


.rmUInews__card-poster__block {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 11px;
}

.rmUInews__card-poster {
    aspect-ratio: 16/9;
}

.rmUInews__card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    justify-content: space-between;
    padding: 10px 14px;
}

.rmUInews__card-title {
    display: -webkit-box;
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--black-color);
    font-size: 24px;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    line-height: 1;
    -webkit-box-orient: vertical;
    transition: all 0.4s ease;
}

.rmUInews__card-body--bottom__block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.rmUInews__card-date {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 17px;
}

.rmUInews__card-go__button svg {
    height: 34px;
    width: 34px;
    fill: var(--gray-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}



/* ЧАСТЫЕ ВОПРОСЫ — FAQ */
.rmUIfaq {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIfaq__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIfaq-questions__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.rmUIquestion__card {
    display: flex;
    flex-direction: column;
    padding: 14px;
    cursor: pointer;
    border-radius: 17px;
    background-color: var(--block-bg);
    transition: all 0.4s ease;
}

.rmUIquestion__card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.rmUIquestion__card-header--title {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--black-color);
    font-size: 20px;
    transition: all 0.4s ease;
}

.rmUIquestion__card-arrow--icon {
    height: 26px;
    width: 26px;
    fill: var(--black-color);
    flex-shrink: 0;
    transform: rotate(90deg);
    transition: all 0.4s ease;
}

.rmUIquestion__card--open .rmUIquestion__card-header--title {
    color: var(--red-color);
}

.rmUIquestion__card--open .rmUIquestion__card-arrow--icon {
    fill: var(--red-color);
    transform: rotate(270deg);
}


.rmUIquestion__card-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmUIquestion__card--open .rmUIquestion__card-answer {
    max-height: 1000px;
}

.rmUIquestion__card-answer--text {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 17px;
    line-height: 1.1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rmUIquestion__card-answer--text span {
    font-weight: 600;
    color: var(--red-color);
}



/* МЫ НАХОДИМСЯ ТУТ */
.rmUImaps {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUImaps__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUImap__container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 31px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rmUImap__container iframe {
    display: block;
    width: 100%;
    height: 550px;
    border: none;
}

.rmUImap__content-body {
    display: flex;
    flex-direction: column;
}

.rmUImap__content-info__block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 4px;
}

.rmUImap__content-info-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--black-color);
    font-size: 17px;
    transition: all 0.4s ease;
}

.rmUImap__content-info-link svg {
    height: 26px;
    width: 26px;
    fill: var(--black-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.rmUImap__content-info-link:hover {
    color: var(--red-color);
}

.rmUImap__content-info-link:hover svg {
    fill: var(--red-color);
}



/* FOOTER */
.rmUIfooter-wrapper {
	margin: 21px;
}

.rmUIfooter {
    background-color: var(--block-bg);
    box-shadow: 0 0 16px rgba(0,0,0,0.25);
    border-radius: 30px;
    width: 100%;
    padding: 24px;
}

.rmUIfooter__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rmUIfooter__content-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.rmUIfooter__content-logo-block {
    flex: 1 1 250px;
    min-width: 250px;
}

.rmUIfooter__content-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.rmUIfooter__content-logo img {
    width: 51px;
    height: 51px;
    border-radius: 50px;
}

.rmUIfooter__content-logo-text__block {
    display: flex;
    flex-direction: column;
}

.rmUIfooter__content-logo-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: transparent;
    font-size: 20px;
    color: transparent;
    line-height: 1;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(180deg, var(--linear-thin-red), var(--linear-dark-red));
}

.rmUIfooter__content-logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--gray-color);
    font-size: 15px;
}


.rmUIfooter-doc-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 15px;
}


.rmUIfooter-doc-link {
    display: flex;
    flex-direction: row;
    align-items: center;
	font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
    gap: 7px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.rmUIfooter-doc-link svg {
    height: 25px;
    width: 25px;
    fill: var(--gray-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.rmUIfooter-doc-links a:hover {
    color: var(--red-color);
}

.rmUIfooter-doc-links a:hover svg {
    fill: var(--red-color);
}



.rmUIfooter-links-group {
    display: flex;
    flex: 3 1 600px;
    flex-wrap: wrap;
    gap: 40px;
}

.rmUIfooter-links-block {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rmUIfooter-links-title {
	font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: transparent;
    font-size: 20px;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(180deg, var(--linear-thin-red), var(--linear-dark-red));
    text-transform: uppercase;
}

.rmUIfooter-links-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rmUIfooter-links-block li a {
	font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.4s;
}

.rmUIfooter-links-block li a:hover {
    color: var(--red-color);
}

.rmUIfooter-link {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
}

.rmUIfooter-link span {
    font-family: 'Unbounded';
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(180deg, var(--linear-thin-red), var(--linear-dark-red));
    text-transform: uppercase;
}

.rmUIfooter__content-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

.rmUIfooter__content-bottom-social__icons {
    display: flex;
    flex-direction: row;
    gap: 11px;
    align-items: center;
}

.rmUIfooter__content-bottom-social__icon svg {
    height: 27px;
    width: 27px;
    fill: var(--gray-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.rmUIfooter__content-bottom-social__icon:hover svg {
    fill: var(--red-color);
}



.rmUIfooter__content-bottom-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Unbounded';
    font-weight: 500;
    font-size: 18px;
    color: var(--black-color);
    flex-wrap: wrap;
}





/* МОБИЛЬНОЕ МЕНЮ */
.rmUImobile__nav {
	display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 21px;
    background-color: var(--white-color);
    border-top: 1px solid var(--black-color);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    z-index: 4000;
}

.rmUImobile__nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rmUImobile-link {
    display: flex;
    flex-direction: column;
	font-family: 'Montserrat';
    font-weight: 500;
    color: var(--black-color);
	font-size: 16px;
    align-items: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: none;
    user-select: none;
    transition: all 0.3s ease;
}

.rmUImobile-link svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-bottom: 3px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.rmUImobile-link__active {
    color: var(--red-color);
}

.rmUImobile-link__active svg {
    fill: var(--red-color);
}

.rmUImobile-link:hover {
    color: var(--red-color);
}

/* Дроверы (выезжающие меню) */
.rmUImobile__drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    visibility: hidden;
}

.rmUImobile__drawer--open {
    visibility: visible;
}

.rmUImobile__drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rmUImobile__drawer--open .rmUImobile__drawer-overlay {
    opacity: 1;
}

.rmUImobile__drawer-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    height: calc(75vh - 65px);
    background-color: var(--white-color);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.rmUImobile__drawer--open .rmUImobile__drawer-content {
    transform: translateY(0);
}


.rmUImobile__drawer-handle {
    width: 140px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    margin: 0 auto 14px auto;
    cursor: grab;
    transition: background-color 0.2s ease;
}

.rmUImobile__drawer-handle:active {
    cursor: grabbing;
}

.rmUImobile__drawer-handle:hover {
    background-color: rgba(0, 0, 0, 0.5);
}



.rmUImobile__drawer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px 20px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rmUImobile__drawer-header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.rmUImobile__drawer-header--title {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--red-color);
    font-size: 21px;
    margin: 0;
}

.rmUImobile__drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.rmUImobile__drawer-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.rmUImobile__drawer-close svg {
    fill: var(--black-color);
}

.rmUImobile__drawer-links {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rmUImobile__drawer-links a {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--black-color);
    font-size: 16px;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rmUImobile__drawer-links a:last-child {
    border-bottom: none;
}

.rmUImobile__drawer-links a:hover {
    color: var(--red-color);
    padding-left: 8px;
}
