.section_page {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    width: 100%;
}
.section_page.b {
    margin-bottom: 60px;
}
@media (min-width: 768px) {
    .section_page.b {
        margin-bottom: 80px;
    }
}

.page_title_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
    cursor: default;
}
.page_title_block .page_title {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    font-family: "TT Firs Neue";
}
@media (min-width: 768px) {
    .page_title_block .page_title {
        font-size: 40px;
        max-width: 800px;
        margin: 0 auto;
    }
}
.page_title_block h1.page_title {
    font-size: 30px;
}
@media (min-width: 768px) {
    .page_title_block h1.page_title {
        font-size: 60px;
    }
}
.page_title_block .page_title_text {
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.slider_block_wrap {
    position: relative;
    display: block;
}
.slider_block_wrap .slider_block_item {
    height: 150px;
    border-radius: 15px;
    padding: 30px;
    font-size: 18px;
    font-weight: 500;
}
.slider_block_wrap .slider_block_item:hover {
    cursor: default;
}
.slider_block_wrap .slider_block_item.blue {
    background-color: #4861F6;
    color: #fff;
}
.slider_block_wrap .slider_block_item.lime {
    background-color: #D9F68B;
    color: #000;
}
@media (min-width: 768px) {
    .slider_block_wrap .slider_block_items {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
    }
    .slider_block_wrap .slider_block_items .slider_block_item_wrap {
        width: calc(20% - 3px);
    }
}
@media (max-width: 767px) {
    .slider_block_wrap .slider_block_items:not(.slick-slider) {
        display: none;
    }
}
.slider_block_wrap .navigation_sliders.down {
    width: 98%;
    margin-left: 2%;
    top: 155px;
}
@media (min-width: 768px) {
    .slider_block_wrap .navigation_sliders.down {
        display: none;
    }
}

.section_point_wrap {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (min-width: 768px) {
    .section_point_wrap {
        flex-direction: row;
        justify-content: space-between;
    }
}
.section_point_wrap .section_point_item {
    border: 1px solid #D3D3D3;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    position: relative;
    min-height: 200px;
}
@media (min-width: 768px) {
    .section_point_wrap .section_point_item {
        width: 30%;
    }
}
.section_point_wrap .section_point_item .section_point_item_content {
    display: block;
    width: calc(100% - 30px);
    cursor: default;
}
.section_point_wrap .section_point_item .section_point_item_content .section_point_item_content_name {
    color: #4861F6;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .section_point_wrap .section_point_item .section_point_item_content .section_point_item_content_name {
        font-size: 25px;
    }
}
.section_point_wrap .section_point_item .section_point_item_content .section_point_item_content_text {
    font-weight: 400;
    font-size: 14px;
    color: #2B2E3C;
    line-height: 120%;
}
@media (min-width: 768px) {
    .section_point_wrap .section_point_item .section_point_item_content .section_point_item_content_text {
        font-size: 20px;
    }
}
.section_point_wrap .section_point_item .section_point_item_icon {
    width: 30px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
@media (min-width: 768px) {
    .section_point_wrap .section_point_item .section_point_item_icon {
        width: 50px;
    }
}
@media (min-width: 768px) {
    .section_point_wrap .section_point_item .section_point_item_icon svg {
        height: 50px;
        width: 50px;
    }
}

.loyalty_banner_wrap {
    border-radius: 15px;
    display: block;
}
.loyalty_banner_wrap.d {
    background-color: #1f2a59;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap.d {
        background-image: url('/rewards/rewards_loyalty/img/wban1.webp');
        height: 400px;
        background-size: cover;
        background-position: center;
    }
}
.loyalty_banner_wrap .loyalty_banner_content {
    padding: 30px;
    color: #fff;
    cursor: default;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap .loyalty_banner_content {
        width: 50%;
    }
}
.loyalty_banner_wrap .loyalty_banner_content .loyalty_banner_content_name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap .loyalty_banner_content .loyalty_banner_content_name {
        font-size: 60px;
        margin-bottom: 20px;
    }
}
.loyalty_banner_wrap .loyalty_banner_content .loyalty_banner_content_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap .loyalty_banner_content .loyalty_banner_content_text {
        font-size: 25px;
    }
}
.loyalty_banner_wrap .loyalty_banner_content .button.lime {
    background-color: #D9F68B;
    text-transform: uppercase;
    margin-top: 20px;
    color: #2B2E3C;
    font-size: 14px;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap .loyalty_banner_content .button.lime {
        margin-top: 50px;
        max-width: 300px;
    }
}
.loyalty_banner_wrap .loyalty_banner_image {
    background-image: url('/rewards/rewards_loyalty/img/women_loyalty.webp');
    height: 200px;
    border-radius: 0 0 15px 15px;
}
@media (min-width: 768px) {
    .loyalty_banner_wrap .loyalty_banner_image {
        display: none;
    }
}

.rang_banner {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    min-height: 200px;
    margin: 30px 0;
}
@media (min-width: 768px) {
    .rang_banner {
        flex-direction: row;
        padding: 15px 30px;
        gap: 5%;
        min-height: 180px;
    }
}
.rang_banner .rang_banner_name {
    display: block;
    margin-top: 20px;
    cursor: default;
}
.rang_banner .rang_banner_name .s_t {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_name .s_t {
        font-size: 16px;
    }
}
.rang_banner .rang_banner_name .rang_lvl {
    font-weight: 700;
    font-size: 25px;
    color: #4861F6;
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_name .rang_lvl {
        margin-top: 10px;
        font-size: 30px;
        line-height: 100%;
    }
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_name {
        width: 20%;
    }
}

.rang_banner .rang_banner_text {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 5px;
}
.rang_banner .rang_banner_text .content_rang {
    width: calc(100% - 15px);
    cursor: default;
}
.rang_banner .rang_banner_text .content_rang .bonus {
    font-size: 18px;
    font-weight: 700;
    color: #2B2E3C;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_text .content_rang .bonus {
        font-size: 20px;
    }
}
.rang_banner .rang_banner_text .content_rang .s_t {
    font-size: 14px;
    font-weight: 400;
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_text .content_rang .s_t {
        font-size: 16px;
    }
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_text {
        width: 40%;
        gap: 15px;
    }
}
.rang_banner .rang_banner_btn {
    display: block;
    margin-bottom: 20px;
}
.rang_banner .rang_banner_btn a.button {
    background-color: #4861F6!important;
}
@media (min-width: 768px) {
    .rang_banner .rang_banner_btn {
        width: 30%;
        height: 100%;
        margin-bottom: 0;
        margin-top: auto;
    }
    .rang_banner .rang_banner_btn a.button {
        margin-right: 0;
        width: unset;
    }
}
.navigation_sliders .sliders_prev {
    transform: rotate(90deg);
    cursor: pointer;
}
.navigation_sliders .sliders_next {
    transform: rotate(270deg);
    cursor: pointer;
}
.navigation_sliders {
    position: absolute;
    width: 104%;
    display: flex;
    justify-content: space-between;
    fill: #a9a9a9;
    top: 135px;
    margin-left: -2%;
}
.hidden {
    opacity: 0;
    pointer-events: none;
}