.rmUIbrand {
    display: flex;
    flex-direction: column;
}

.rmUIbrand__content {
    display: flex;
    flex-direction: column;
    padding: 0px 25px;
    margin-bottom: 100px;
}

.rmUItitle__brand {
    text-align: left;
    margin-bottom: -20px;
}

.rmUIbrand__text {
    white-space: pre-line;
    margin-bottom: 60px;
}


/* BLOCKS */
.rmUIbrand__content--blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 13px;
}

.rmUIbrand__content--blocks__left {
    display: flex;
    flex-direction: column;
    gap: 13px;
    height: 100%;
}

.rmUIbrand--block {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #1b51a0;
    border-radius: 20px;
    height: 100%;
}

.rmUIbrand--block__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 60px;
}

.rmUIbrand--block__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}


.rmUIbrand__content--blocks__right {
    display: flex;
    flex-direction: column;
}

.rmUIbrand--logo__block {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #bababa;
    border-radius: 20px;
    height: 100%;
}

.rmUIbrand--block__title__logo {
    color: #000;
    margin-bottom: 20px;
}

.rmUIbrand--logo__block--color__blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rmUIbrand--logo__block--color__block {
    display: flex;
    flex-direction: row;
    gap: 11px;
}

.rmUIbrand--color__block {
    width: 50%;
    height: 100%;
    border-radius: 20px;
}

.rmUIbrand--logo__block--color__block--text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rmUIbrand--color__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 18px;
}

.rmUIbrand--color__text span {
    font-weight: 700;
}

.rmUIbrand__content--button {
    display: flex;
    flex-direction: row;
    padding: 13px 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    text-align: center;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    background-color: #1b51a0;
    border-radius: 14px;
    transition: all 0.4s;
    user-select: none;
}

.rmUIbrand__content--button:hover {
    background-color: #072044;
}

.rmUIbrand__content--button:active {
    transform: scale(0.95);
}

.rmUIbrand__content--warning {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #072044;
    font-size: 19px;
    margin-bottom: 30px;
}

.rmUIbrand__content--warning__link {
    color: #1b51a0;
    text-decoration: underline !important;
    transition: all 0.4s;
}

.rmUIbrand__content--warning__link:hover {
    color: #000;
}


.rmUIbrand__content--rules {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.rmUIbrand__content--rules__link {
    display: flex;
    flex-direction: row;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1b51a0;
    font-size: 23px;
    gap: 4px;
    align-items: center;
    text-decoration: underline !important;
    transition: all 0.4s;
}

.rmUIbrand__content--rules__link svg {
    height: 30px;
    width: 30px;
    transform: rotate(-45deg);
    fill: #1b51a0;
    flex-shrink: 0;
    flex-grow: 0;
    transition: all 0.4s;
}

.rmUIbrand__content--rules__link:hover {
    color: #072044;
    text-decoration: none !important;
}

.rmUIbrand__content--rules__link:hover svg {
    fill: #072044;
}


/* COLORS */
.rmUIbrand--block-color__blue {
    background-color: #1b51a0;
}

.rmUIbrand--text-color__blue {
    color: #1b51a0;
}


.rmUIbrand--block-color__white {
    background-color: #fff;
}

.rmUIbrand--text-color__white {
    color: #fff;
}


.rmUIbrand--block-color__black {
    background-color: #000;
}

.rmUIbrand--text-color__black {
    color: #000;
}

