* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    --main-color-1: #0F1829;
    --main-color-2: #E74824;
    --main-color-3: #CCDBF7;
    --main-color-1-hover: #E74824
}

body {
    font-family: Open Sans
}

a {
    text-decoration: none;
    color: initial
}

.wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto
}

@media (max-width: 1400px) {
    .wrapper {
        padding-left:15px;
        padding-right: 15px
    }
}

header {
    padding-top: 25px;
    background: #fff;
    position: relative
}

header .header_top_l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 600px) {
    header .header_top_l {
        display:none
    }
}

header .header_top_l .header_top_lov {
    margin-right: 50px
}

header .header_top_l .header_top_lov span {
    display: block;
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    font-size: 14px;
    color: var(--main-color-1)
}

header .header_top_l .header_top_lov span:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 16px;
    background-image: url("../img/Vector.png");
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

header .header_top_l .header_top_menu_page ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

header .header_top_l .header_top_menu_page ul li {
    list-style: none;
    margin-right: 22px
}

header .header_top_l .header_top_menu_page ul li a {
    color: #2F2F2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

header .header_top_l .header_top_menu_page ul li a:hover {
    color: var(--main-color-2)
}

header .header_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 600px) {
    header .header_top {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

header .header_top_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
    header .header_top_r {
        width:100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
            flex-direction: column;
    align-items: unset;
    }
}

header .header_top_r .header_top_r_ph {
    margin-right: 28px
}

header .header_top_r .header_top_r_ph a {
    color: #2F2F2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display:block;
}

header .header_top_r .header_top_r_ph a:hover {
    color: var(--main-color-2)
}

header .header_top_r .header_top_r_gr {
    color: #0F1829;
    font-weight: 600;
    font-size: 14px
}

header .header_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px
}

@media (max-width: 1000px) {
    header .header_bot {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

header .header_bot .header_bot_l {
    display: contents
}

@media (max-width: 1000px) {
    header .header_bot .header_bot_l {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

header .header_bot .header_bot_r {
    display: contents
}

@media (max-width: 1000px) {
    header .header_bot .header_bot_r {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

header .header_bot .header_bot_logo {
    margin-right: 50px
}

@media (max-width: 1000px) {
    header .header_bot .header_bot_logo {
        margin-right:0
    }
}

@media (max-width: 600px) {
    header .header_bot .header_bot_logo {
        width:50%
    }
}

@media (max-width: 600px) {
    header .header_bot .header_bot_logo a img {
        width:100%
    }
}

header .header_bot .header_bot_menu {
    margin-right: 20px;
    background: var(--main-color-2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
    height: 58px;
    cursor: pointer
}

@media (max-width: 1000px) {
    header .header_bot .header_bot_menu {
        margin-right:0
    }
}

@media (max-width: 600px) {
    header .header_bot .header_bot_menu {
        padding-left:18px;
        padding-right: 18px
    }
}

header .header_bot .header_bot_menu .header_bot_menu_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_l {
    width: 25px;
    height: 16px;
    position: relative;
    margin-right: 16px
}

@media (max-width: 600px) {
    header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_l {
        margin-right:0
    }
}

header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_l:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_l:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    top: 100%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_l .header_bot_menu_lr_l_line {
    position: relative;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    background: #fff
}

header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_r {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-weight: 400;
    font-size: 14px
}

@media (max-width: 600px) {
    header .header_bot .header_bot_menu .header_bot_menu_lr .header_bot_menu_lr_r {
        display:none
    }
}

header .header_bot .header_bot_search {
    margin-right: 30px;
    max-width: 560px;
    width: 100%;
    height: 58px;
    position: relative
}

header .header_bot .header_bot_search:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("../img/Vector (1).png");
    width: 16px;
    height: 16px
}

header .header_bot .header_bot_search form {
    height: 100%;
    width: 100%
}

header .header_bot .header_bot_search input {
    width: 100%;
    height: 100%;
    padding-left: 42px;
    border: 1px solid #000;
    border-radius: 10px
}

header .header_bot .header_bot_search input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #D4DDEB
}

header .header_bot .header_bot_search input::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #D4DDEB
}

header .header_bot .header_bot_search input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #D4DDEB
}

header .header_bot .header_bot_search input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #D4DDEB
}

header .header_bot .header_bot_search input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: #D4DDEB
}

header .header_bot .header_bot_cart {
    margin-right: 70px;
    position: relative
}

header .header_bot .header_bot_cart .header_bot_cart_link {
    padding: 16px;
    background: var(--main-color-3);
    display: block;
    border-radius: 10px
}

@media (max-width: 1000px) {
    header .header_bot .header_bot_cart {
        margin-right:35px
    }
}

header .header_bot .header_bot_cart .header_bot_cart_cnt {
    position: absolute;
    left: 80%;
    bottom: 80%;
    background: #fff;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1019607843) inset;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.1019607843) inset;
    border-radius: 50%;
    color: #000;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

header .header_bot a .header_bot_log {
    border: solid 1px #E74824;
    border-radius: 10px;
    height: 60px;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 600px) {
    header .header_bot a .header_bot_log {
        width:58px
    }
}

header .header_bot a .header_bot_log .header_bot_log_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

header .header_bot a .header_bot_log .header_bot_log_lr .header_bot_log_lr_l {
    margin-right: 12px
}

@media (max-width: 600px) {
    header .header_bot a .header_bot_log .header_bot_log_lr .header_bot_log_lr_l {
        margin-right:0
    }
}

header .header_bot a .header_bot_log .header_bot_log_lr .header_bot_log_lr_r {
    color: #E74824;
    font-weight: 400;
    font-size: 14px
}

@media (max-width: 600px) {
    header .header_bot a .header_bot_log .header_bot_log_lr .header_bot_log_lr_r {
        display:none
    }
}

header .header_bot_l_mob {
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #fff;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    z-index: 3
}

header .header_bot_l_mob .header_top_l {
    display: none
}

@media (max-width: 600px) {
    header .header_bot_l_mob .header_top_l {
        display:block
    }
}

header .header_bot_l_mob .header_top_l .header_top_lov {
    margin-bottom: 30px
}

header .header_bot_l_mob .header_top_l .header_top_menu_page ul {
    display: block
}

header .header_bot_l_mob .header_top_l .header_top_menu_page ul li {
    margin-right: 0
}

header .header_bot_l_mob .header_bot_l_mob_cls {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
    cursor: pointer
}

header .header_bot_l_mob .header_bot_l_mob_cls:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #000;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

header .header_bot_l_mob .header_bot_l_mob_cls:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #000;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

header .header_bot_l_mob_active {
    left: 0
}

footer {
    background: var(--main-color-1);
    padding-top: 120px;
    padding-bottom: 40px
}

@media (max-width: 1000px) {
    footer {
        padding-top:60px;
        padding-bottom: 20px
    }
}

footer .wrapper .footer_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    footer .wrapper .footer_lr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

footer .wrapper .footer_lr .footer_lr_l {
    width: 100%
}

@media (max-width: 1300px) {
    footer .wrapper .footer_lr .footer_lr_l {
        width:50%
    }
}

@media (max-width: 1000px) {
    footer .wrapper .footer_lr .footer_lr_l {
        width:100%
    }
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_logo {
    margin-bottom: 80px
}

@media (max-width: 1000px) {
    footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_logo {
        margin-bottom:40px
    }
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_logo a {
    display: block
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social {
    margin-bottom: 80px
}

@media (max-width: 1000px) {
    footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social {
        margin-bottom:40px
    }
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social:last-child {
    margin-bottom: 0
}

@media (max-width: 768px) {
    footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social:last-child {
        margin-bottom:40px
    }
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_txt {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_items a {
    display: block;
    margin-right: 20px
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_items a .footer_lr_l_social_items_item {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_items a:hover .footer_lr_l_social_items_item {
    background: var(--main-color-2)
}

footer .wrapper .footer_lr .footer_lr_l .footer_lr_l_social .footer_lr_l_social_items a:hover .footer_lr_l_social_items_item svg path {
    fill: #fff
}

footer .wrapper .footer_lr .footer_lr_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

@media (max-width: 1000px) {
    footer .wrapper .footer_lr .footer_lr_r {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

footer .wrapper .footer_lr .footer_lr_r a {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

footer .wrapper .footer_lr .footer_lr_r a:hover {
    color: var(--main-color-2) !important
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr .footer_lr_r_lr_l_wrap .footer_lr_r_lr_l_wrap_txt {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr .footer_lr_r_lr_l_wrap .footer_lr_r_lr_l_wrap_menu a {
    display: block;
    color: #fff;
    margin-bottom: 18px
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr_r {
    color: #fff
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr_r .footer_lr_r_lr_r_txt {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 46px
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr_r .footer_lr_r_lr_r_items {
    font-weight: 400;
    font-size: 16px
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr_r .footer_lr_r_lr_r_items .footer_lr_r_lr_r_items_item {
    margin-bottom: 18px
}

footer .wrapper .footer_lr .footer_lr_r .footer_lr_r_lr_r .footer_lr_r_lr_r_items .footer_lr_r_lr_r_items_item a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit
}

.breadcrmbs {
    margin-top: 80px;
    margin-bottom: 60px
}

.breadcrmbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.breadcrmbs ul li {
    list-style: none;
    position: relative;
    padding-right: 5px;
    margin-right: 5px
}

.breadcrmbs ul li:before {
    position: absolute;
    content: "/";
    font-size: inherit;
    color: #CCDBF7;
    right: 0
}

.breadcrmbs ul li:last-child:before {
    display: none
}

.breadcrmbs ul li a {
    color: #CCDBF7;
    margin-right: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.breadcrmbs ul li a:hover {
    color: var(--main-color-2)
}

.main_slider {
    margin-top: 40px
}

.main_slider .main_slider_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1336px) {
    .main_slider .main_slider_lr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.main_slider .main_slider_lr .main_slider_lr_l {
    max-width: 920px;
    width: 100%;
    border-radius: 10px;
    margin-right: 40px;
    border-radius: 10px
}

@media (max-width: 1336px) {
    .main_slider .main_slider_lr .main_slider_lr_l {
        margin:0 auto;
        margin-bottom: 20px
    }
}

.main_slider .main_slider_lr .main_slider_lr_l .main_slider_lr_l_slider .slick-dots li button:before {
    font-size: 16px
}

.main_slider .main_slider_lr .main_slider_lr_l .main_slider_lr_l_slider a {
    display: block;
    position: relative
}

.main_slider .main_slider_lr .main_slider_lr_l .main_slider_lr_l_slider a .main_slider_lr_l_slider_item {
    position: relative;
    z-index: 2
}

.main_slider .main_slider_lr .main_slider_lr_l .main_slider_lr_l_slider a .main_slider_lr_l_slider_item img {
    width: 100%;
    object-fit: contain
}

.main_slider_lr_l_slider_item_back {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(15px)
}

.main_slider_lr_l_slider_item_back img {
    width: 100%;
    height: 100%;
    object-fit: fill
}

.main_slider .main_slider_lr .main_slider_lr_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 1366px) {
    .main_slider .main_slider_lr .main_slider_lr_r {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        max-width: 960px;
        margin: 0 auto
    }
}

@media (max-width: 560px) {
    .main_slider .main_slider_lr .main_slider_lr_r {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.main_slider .main_slider_lr .main_slider_lr_r a {
    display: block;
    max-width: 440px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden
}

.main_slider .main_slider_lr .main_slider_lr_r a:last-child {
    margin-top: 30px
}

@media (max-width: 1366px) {
    .main_slider .main_slider_lr .main_slider_lr_r a:last-child {
        margin-bottom:0
    }
}

@media (max-width: 1366px) {
    .main_slider .main_slider_lr .main_slider_lr_r a:first-child {
        margin-right:30px
    }
}

@media (max-width: 560px) {
    .main_slider .main_slider_lr .main_slider_lr_r a:first-child {
        margin-right:0;
        margin-bottom: 30px
    }
}

.main_slider .main_slider_lr .main_slider_lr_r .main_slider_lr_r_item img {
    width: 100%;
    display: block
}

#pres_centr .pres_centr_title {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 80px;
    margin-top: 110px;
    text-transform: uppercase
}

#pres_centr .pres_centr_box {
    width: 100%
}

#pres_centr .pres_centr_box .pres_centr_box_up {
    width: 100%
}

#pres_centr .pres_centr_box .pres_centr_box_up .pres_centr_box_up_items {
    width: 100%
}

#pres_centr .pres_centr_box .pres_centr_box_up .pres_centr_box_up_items .pres_centr_box_up_items_item {
    cursor: pointer;
    min-height: 62px;
    padding-left: 40px;
    padding-right: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#pres_centr .pres_centr_box .pres_centr_box_up .pres_centr_box_up_items .pres_centr_box_up_items_item:hover {
    color: #fff;
    background: var(--main-color-2)
}

#pres_centr .pres_centr_box .pres_centr_box_up .pres_centr_box_up_items .pres_centr_box_up_items_item_active {
    color: #fff;
    background: var(--main-color-2)
}

#pres_centr .pres_centr_box .pres_centr_box_bot .pres_centr_box_bot_items {
    display: none;
    padding-top: 80px
}

#pres_centr .pres_centr_box .pres_centr_box_bot .pres_centr_box_bot_items_active {
    display: block
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1220px;
    width: 100%
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item a {
    display: block
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_img {
    max-width: 320px;
    height: auto;
    width: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 0;
    top: 0;
    outline: solid 1px #000;
    opacity: 0
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_img:hover:before {
    left: 15px;
    top: 15px;
    scale: 0.9;
    opacity: 1
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_img img {
    display: block;
    position: relative;
    width: 100%;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_img img:hover {
    scale: 0.9
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_rigt {
    margin-left: 40px;
    width: 100%
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_rigt {
        margin-left:0
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #000
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_desc {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_news_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_link a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: solid 1px #001942;
    color: #001942
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1220px;
    width: 100%
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a {
    display: block
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img {
    width: 320px;
    height: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 0;
    top: 0;
    outline: solid 1px #000;
    opacity: 0
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img:hover:before {
    left: 15px;
    top: 15px;
    scale: 0.9;
    opacity: 1
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img img:hover {
    scale: 0.9
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item .pres_news_box_item_rigt {
    margin-left: 40px;
    width: 100%
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item .pres_news_box_item_rigt {
        margin-left:0
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #000
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_desc {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-style: italic
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item .pres_news_box_item_rigt .pres_news_box_item_rigt_link a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: solid 1px #001942;
    color: #001942
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px
}

@media (max-width: 1000px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items a {
    border: 1px solid #E0E0E0;
    background: #FBFBFB;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px;
    text-decoration: none;
    color: #000
}

@media (max-width: 1000px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items a {
        padding:25px
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items a .pres_catalog_box_items_item .pres_catalog_box_items_item_img img {
    width: 100%
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items a .pres_catalog_box_items_item .pres_catalog_box_items_item_title {
    margin-top: 40px
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items a .pres_catalog_box_items_item .pres_catalog_box_items_item_lnk {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: solid 1px #001942;
    color: #001942;
    display: inline-block
}

.pres_video_box_items_item {
    width: 100%;
    height: 340px;
    position: relative
}

.pres_video_box_items_item:before {
    display: none;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    pointer-events: none
}

.pres_video_box_items_item_nobefore:before {
    display: none
}

@-webkit-keyframes elipse_play {
    0% {
        scale: 1;
        opacity: 0
    }

    30% {
        opacity: 0.7
    }

    100% {
        scale: 2;
        opacity: 0
    }
}

@keyframes elipse_play {
    0% {
        scale: 1;
        opacity: 0
    }

    30% {
        opacity: 0.7
    }

    100% {
        scale: 2;
        opacity: 0
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_video_box .pres_video_box_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px
}

@media (max-width: 1000px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_video_box .pres_video_box_items {
        -ms-grid-columns:1fr 40px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

.pres_video_box_items_item .pres_video_box_items_item_play {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer
}

.pres_video_box_items_item .pres_video_box_items_item_play:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: solid 1px #fff;
    -webkit-animation: elipse_play;
    animation: elipse_play;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    opacity: 0;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

.pres_video_box_items_item .pres_video_box_items_item_play:after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: solid 1px #fff;
    -webkit-animation: elipse_play;
    animation: elipse_play;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    opacity: 0;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

.pres_video_box_items_item .pres_video_box_items_item_play .pres_video_box_items_item_play_pl {
    border-top: 20px solid transparent;
    border-left: 25px solid var(--main-color-2);
    border-bottom: 20px solid transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%
}

.pres_video_box_items_item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000
}

.pres_video_box_items_item_active:before {
    display: none
}

.pres_video_box_items_item_active .pres_video_box_items_item_play {
    display: none
}

.pres_video_box_items_item_active .pres_video_box_items_item_play_pl {
    display: none
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item a {
    margin-bottom: 20px;
    display: block
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item a .pres_proekt_box_items_item_img {
    width: 100%
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item a .pres_proekt_box_items_item_img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item .pres_proekt_box_items_item_title {
    font-size: 20px;
    font-weight: 700;
    color: #000
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item .pres_proekt_box_items_item_desc {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #000
}

#pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item .pres_proekt_box_items_item_lnk a {
    max-width: 218px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #000000;
    color: #1D1D1D;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    height: 76px
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_proekt_box .pres_proekt_box_items .pres_proekt_box_items_item .pres_proekt_box_items_item_lnk a {
        height:30px;
        font-size: 18px
    }
}

.pres_news_box_item_rigt_title_date {
    color: #939393;
    font-weight: 700;
    font-size: 13px
}

.pres_news_box_item_rigt_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.pres_news_box_item_rigt_title_fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#pres_centr {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 130px
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_stati_box .pres_news_box_item a .pres_news_box_item_img {
        width:100%
    }

    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_video_box .pres_video_box_items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.catalog {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 50px
}

@media (max-width: 1000px) {
    .catalog {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
}

@media (max-width: 600px) {
    .catalog {
        grid-gap:10px
    }
}

@media (max-width: 360px) {
    .catalog {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.catalog .catalog_items {
    display: block
}

.catalog .catalog_items .catalog_items_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 55px;
    border: 0.5px solid #0F1829;
    border-radius: 10px;
    height: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

@media (max-width: 1000px) {
    .catalog .catalog_items .catalog_items_lr {
        padding:15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.catalog .catalog_items .catalog_items_lr:hover {
    background: #F1F6FF;
    border: 1px solid #0F1829
}

.catalog .catalog_items .catalog_items_lr .catalog_items_lr_l {
    margin-right: 46px;
    font-weight: 400;
    font-size: 20px;
    color: var(--main-color-1)
}

@media (max-width: 1000px) {
    .catalog .catalog_items .catalog_items_lr .catalog_items_lr_l {
        margin-right:0;
        margin-top: 20px;
        text-align: center;
        word-break: break-word;
    }
}

.catalog .catalog_items .catalog_items_lr .catalog_items_lr_r img {
    width: 100%
}

.category {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    /*overflow: hidden*/
}

@media (max-width: 1100px) {
    .category {
        padding-top:70px
    }
}

.category .filt_icon {
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0;
    display: none
}

@media (max-width: 1100px) {
    .category .filt_icon {
        display:block
    }
}

.category .category_r {
    width: 100%
}

.category .category_r .category_r_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px
}

@media (max-width: 768px) {
    .category .category_r .category_r_items {
        -ms-grid-columns:1fr 15px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px
    }
}

@media (max-width: 450px) {
    .category .category_r .category_r_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.category_r_items_item {
    border-radius: 20px;
    border-left: 0.5px solid #CCDBF7;
    border-bottom: 0.5px solid #CCDBF7;
    border-right: 0.5px solid #CCDBF7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.category_r_items_item a .category_r_items_item_img {
    overflow: hidden;
    position: relative
}

.category_r_items_item a .category_r_items_item_img img {
    width: 100%;
    display: block;
    -webkit-transition: 1s;
    transition: 1s
}

.category_r_items_item a .category_r_items_item_img img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.category_r_items_item a .category_r_items_item_img .category_r_items_item_img_fav {
    width: 27px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.category_r_items_item a .category_r_items_item_img .category_r_items_item_img_fav:hover svg path {
    fill: #E74824
}

.category_r_items_item a .category_r_items_item_img .active svg path {
    fill: #E74824
}

.category_r_items_item .category_r_items_item_bot {
    padding: 20px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

@media (max-width: 1400px) {
    .category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset
    }
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 1400px) {
    .category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_wrap {
        -webkit-box-pack:justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 10px
    }
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_price {
    color: #0F1829;
    font-weight: 600;
    font-size: 20px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_skid {
    color: #ff6b6b;
    font-weight: 500;
    font-size: 15px;
    text-decoration: line-through;
    text-decoration-color: #ff0000;
    margin-left: 5px;
    position: relative
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_nal {
    color: #0F1829;
    font-weight: 400;
    font-size: 12px;
    position: relative;
    padding-left: 15px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_pr .category_r_items_item_bot_pr_nal:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00D951;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_title {
    color: #0F1829;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_var {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_var .category_r_items_item_bot_var_item {
    color: #000;
    font-weight: 300;
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid #CCDBF7;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_btn {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    background: #E74824;
    width: 100%;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_art {
    color: #0F1829;
    font-weight: 300;
    font-size: 12px;
    text-align: center
}

.category_r_items_item .category_r_items_item_bot .category_r_items_item_bot_art span {
    color: #0F1829;
    font-weight: 600;
    font-size: 12px
}

.cart_item {
    margin-bottom: 40px
}

.cart_item .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1300px) {
    .cart_item .wrapper {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.cart_item .cart_item_l {
    margin-right: 40px
}

@media (max-width: 1300px) {
    .cart_item .cart_item_l {
        margin-right:0
    }
}

.cart_item .cart_item_l .cart_item_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 1300px) {
    .cart_item .cart_item_l .cart_item_slider {
        margin-bottom:30px
    }
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap {
    position: relative;
    margin-right: 40px;
    max-width: 80px;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap {
        max-width:unset;
        margin-right: 0;
        padding: 0;
        padding-left: 50px;
        padding-right: 50px
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_top {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg)
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_top {
        left:0;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(-180deg);
        transform: translateY(-50%) rotate(-180deg)
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_top:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 50%;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_top:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 50%;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_bot {
    position: absolute;
    left: 50%;
    bottom: 0%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg)
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_bot {
        left:unset;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg)
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_bot:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 50%;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l_wrap .cart_item_slider_l_btn_bot:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 50%;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l .slick-slide {
    margin-bottom: 20px;
    margin-top: 20px
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_l .slick-slide {
        margin:0;
        margin-right: 20px;
        margin-left: 20px
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_l div img {
    width: 100%;
    height: 100%;
    display: block
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_r {
    max-width: 560px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden
}

@media (max-width: 1300px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_r {
        max-width:unset
    }
}

@media (max-width: 768px) {
    .cart_item .cart_item_l .cart_item_slider .cart_item_slider_r {
        margin-bottom:30px
    }
}

.cart_item .cart_item_l .cart_item_slider .cart_item_slider_r div img {
    width: 100%;
    display: block
}

.cart_item .cart_item_r .cart_item_r_title {
    color: #0F1829;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px
}

.cart_item .cart_item_r .cart_item_r_wrap {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 440px) {
    .cart_item .cart_item_r .cart_item_r_wrap {
        flex-direction:column-reverse;
        align-items: center
    }

    .cart_item .cart_item_r .cart_item_r_wrap .cart_item_r_art {
        margin-top: 5px
    }
}

.cart_item .cart_item_r .cart_item_r_wrap .cart_item_r_art {
    font-size: 14px;
    font-weight: bold
}

.cart_item .cart_item_r .cart_item_r_nal {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    padding-left: 43px;
    padding-right: 23px;
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    max-width: 200px;
    width: 100%
}

.cart_item .cart_item_r .cart_item_r_nal:before {
    width: 10px;
    height: 10px;
    position: absolute;
    content: "";
    left: 23px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #00D951;
    border-radius: 50%
}

.cart_item .cart_item_r .cart_item_r_var .cart_item_r_var_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px
}

.cart_item .cart_item_r .cart_item_r_var .cart_item_r_var_items {
    margin-bottom: 40px
}

.cart_item .cart_item_r .cart_item_r_var .cart_item_r_var_items .cart_item_r_var_items_item {
    display: inline-block;
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 20px;
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    margin-right: 30px;
    margin-bottom: 10px;
    cursor: pointer
}

.cart_item .cart_item_r .cart_item_r_wrap_buy {
    -webkit-box-shadow: 10px 20px 50px -8px rgba(0,0,0,0.1019607843);
    box-shadow: 10px 20px 50px -8px rgba(0,0,0,0.1019607843);
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    padding: 30px
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px
}

@media (max-width: 700px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 700px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_wrap {
        margin-bottom:20px
    }
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_wrap .cart_item_r_wrap_buy_t_wrap_price {
    color: #0F1829;
    font-weight: 600;
    font-size: 26px
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_wrap .cart_item_r_wrap_buy_t_wrap_disc {
    color: #ff6b6b;
    font-weight: 500;
    font-size: 18px;
    text-decoration: line-through;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 2px;
    margin-left: 20px;
    position: relative
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_fav {
    cursor: pointer
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_fav_act {
    color: var(--main-color-2)
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_t .cart_item_r_wrap_buy_t_fav_act svg path {
    fill: var(--main-color-2)
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

@media (max-width: 700px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 700px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_wrap {
        margin-bottom:20px
    }
}

@media (max-width: 400px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_wrap {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_wrap .cart_item_r_wrap_buy_b_wrap_btn {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    background: var(--main-color-2);
    border-radius: 10px;
    padding: 20px 40px;
    display: inline-block;
    margin-right: 20px;
    cursor: pointer
}

@media (max-width: 400px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_wrap .cart_item_r_wrap_buy_b_wrap_btn {
        margin-right:0;
        margin-bottom: 20px;
        width: 100%
    }
}

@media (max-width: 400px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_pok {
        width:100%
    }
}

.cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_pok a {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #3B3B3B;
    border-radius: 10px;
    color: #3B3B3B;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: Auto;
    text-decoration-thickness: Auto;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

@media (max-width: 400px) {
    .cart_item .cart_item_r .cart_item_r_wrap_buy .cart_item_r_wrap_buy_b .cart_item_r_wrap_buy_b_pok a {
        width:100%
    }
}

.cart_item .cart_item_r_pl {
    padding: 25px 40px;
    border: 1px solid #001942;
    border-radius: 10px;
    margin-top: 40px
}

.cart_item .cart_item_r_pl .cart_item_r_pl_t {
    color: #000;
    font-weight: 400;
    font-size: 17px
}

.cart_item .cart_item_r_pl .cart_item_r_pl_t span {
    text-decoration: underline
}

.cart_item .cart_item_r_pl .cart_item_r_pl_b {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 17px
}

.cart_pa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto
}

@media (max-width: 800px) {
    .cart_pa {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.cart_pa .cart_pa_items:first-child {
    margin-right: 80px
}

@media (max-width: 800px) {
    .cart_pa .cart_pa_items:first-child {
        margin-right:0;
        margin-bottom: 30px
    }
}

.cart_pa .cart_pa_items .cart_pa_items_title {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px
}

.cart_pa .cart_pa_items .cart_pa_items_wrap .cart_pa_items_item {
    margin-bottom: 10px
}

.cart_pa .cart_pa_items .cart_pa_items_wrap .cart_pa_items_item span {
    color: #0F1829;
    font-weight: 400;
    font-size: 16px;
    margin-left: 10px
}

.cart_pa .cart_pa_items .cart_pa_items_wrap .cart_pa_items_item svg path {
    fill: var(--main-color-2)
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.char_item {
    margin-top: 110px
}

.char_item .char_item_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

.char_item .char_item_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    .char_item .char_item_lr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.char_item .char_item_lr .char_item_lr_l {
    max-width: 200px;
    width: 100%;
    margin-right: 40px
}

@media (max-width: 768px) {
    .char_item .char_item_lr .char_item_lr_l {
        margin:0 auto;
        margin-top: 40px
    }
}

.char_item .char_item_lr .char_item_lr_l a {
    display: block
}

.char_item .char_item_lr .char_item_lr_l a .char_item_lr_l_img {
    margin-bottom: 26px
}

.char_item .char_item_lr .char_item_lr_l a .char_item_lr_l_img img {
    width: 100%
}

.char_item .char_item_lr .char_item_lr_l a .char_item_lr_l_btn {
    color: var(--main-color-2);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 20px 55px;
    position: relative;
    border: 1px solid var(--main-color-2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.char_item .char_item_lr .char_item_lr_l a .char_item_lr_l_btn .don-sv {
    margin-left: 8px
}

.char_item .char_item_lr .char_item_lr_l a .char_item_lr_l_btn .don-sv svg path {
    fill: var(--main-color-2)
}

.char_item .char_item_lr .char_item_lr_r .char_item_lr_r_item {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px
}

.rec_item {
    margin-top: 110px;
    margin-bottom: 120px
}

.rec_item .rec_item_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

.rec_item .rec_item_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px
}

@media (max-width: 1300px) {
    .rec_item .rec_item_items {
        -ms-grid-columns:1fr 15px 1fr 15px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 15px
    }
}

@media (max-width: 900px) {
    .rec_item .rec_item_items {
        -ms-grid-columns:1fr 15px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 600px) {
    .rec_item .rec_item_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.item_video {
    margin-bottom: 90px
}

.item_video .item_video_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

.item_video .item_video_wrap_vid_wrap {
    padding-left: 70px;
    padding-right: 70px;
    position: relative
}

@media (max-width: 768px) {
    .item_video .item_video_wrap_vid_wrap {
        padding-left:0px;
        padding-right: 0px;
        padding-bottom: 40px
    }
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev {
    left: 10px;
    transform: translateY(-50%) rotate(180deg)
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next {
    right: 10px
}

@media (max-width: 768px) {
    .item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next {
        top:100%
    }
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev:before,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev:after,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next:before,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 50%;
    height: 2px;
    transform-origin: right center
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev:before,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next:before {
    transform: translate(-50%,0%) rotate(50deg)
}

.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_prev:after,.item_video .item_video_wrap_vid_wrap .item_video_wrap_vid_wrap_next:after {
    transform: translate(-50%,-50%) rotate(-50deg)
}

@keyframes elipse_play {
    0% {
        scale: 1;
        opacity: 0
    }

    30% {
        opacity: 0.7
    }

    100% {
        scale: 2;
        opacity: 0
    }
}

.item_video .item_video_wrap_vid {
    max-width: 920px;
    margin: 0 auto
}

.item_video .item_video_wrap_vid .item_video_wrap_vid_item_wraps_title {
    margin-top: 20px;
    color: #000;
    font-weight: 700;
    font-size: 20px
}

.item_video .item_video_wrap_vid .item_video_wrap_vid_item {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.item_video .item_video_wrap_vid .item_video_wrap_vid_item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.item_video .item_video_wrap_vid .item_video_wrap_vid_item .item_video_wrap_vid_item_play {
    display: none
}

.rew_custom {
    padding: 40px;
    -webkit-box-shadow: 2px 6px 30px -8px rgba(0,0,0,0.1215686275);
    box-shadow: 2px 6px 30px -8px rgba(0,0,0,0.1215686275);
    max-width: 680px;
    width: 100%
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 600px) {
    .rew_custom .rew_custom_t .rew_custom_t_ic_na {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na .rew_custom_t_ic_na_radname {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na .rew_custom_t_ic_na_radname .rew_custom_t_ic_na_radname_radius {
    width: 80px;
    height: 80px;
    background: #FBFBFB;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    font-size: 34px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #E0E0E0;
    text-transform: uppercase
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na .rew_custom_t_ic_na_radname .rew_custom_t_ic_na_radname_name_star {
    margin-left: 20px
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na .rew_custom_t_ic_na_radname .rew_custom_t_ic_na_radname_name_star .rew_custom_t_ic_na_radname_name_star_name {
    font-size: 24px;
    font-weight: 600;
    color: #000
}

.rew_custom .rew_custom_t .rew_custom_t_ic_na .rew_custom_t_ic_na_fate {
    font-size: 18px;
    font-weight: 400;
    color: #3B3B3B
}

.rew_custom .rew_custom_b {
    margin-top: 30px;
    border-bottom: solid 1px #000;
    padding-bottom: 15px;
    margin-bottom: 30px
}

#review {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px
}

.star_fill {
    background-image: url("../img/Star 4.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    display: inline-block
}

.star_none {
    background-image: url("../img/Star 5.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    display: inline-block
}

.review .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px
}

@media (max-width: 900px) {
    .review .wrapper {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.main_vide {
    background: #071D37;
    position: relative;
    padding-top: 136px;
    padding-bottom: 136px;
    overflow: hidden
}

@media (max-width: 1400px) {
    .main_vide {
        padding-left:15px;
        padding-right: 15px
    }
}

@media (max-width: 768px) {
    .main_vide {
        padding-top:80px;
        padding-bottom: 80px
    }
}

.main_vide .main_vide_line {
    background: #394a5f;
    height: 100%;
    width: 70%;
    max-width: 471px;
    position: absolute;
    top: 0;
    left: 0
}

.main_vide .main_vide_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

@media (max-width: 1000px) {
    .main_vide .main_vide_wrap {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column-reverse;
        padding-left: 15px;
        padding-right: 15px
    }
}

.main_vide .main_vide_wrap .main_vide_wrapL {
    max-width: 676px;
    width: 100%;
    margin-right: 95px
}

@media (max-width: 1000px) {
    .main_vide .main_vide_wrap .main_vide_wrapL {
        margin-right:0;
        margin-top: 30px
    }
}

.main_vide .main_vide_wrap .main_vide_wrapL .main_vide_wrapL_title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: normal;
    margin-bottom: 40px
}

@media (max-width: 768px) {
    .main_vide .main_vide_wrap .main_vide_wrapL .main_vide_wrapL_title {
        font-size:16px
    }
}

.main_vide .main_vide_wrap .main_vide_wrapL .main_vide_wrapL_txt {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: justify
}

@media (max-width: 768px) {
    .main_vide .main_vide_wrap .main_vide_wrapL .main_vide_wrapL_txt {
        font-size:14px
    }
}

.main_vide .main_vide_wrap .main_vide_wrapR {
    max-height: 450px;
    max-width: 726px;
    width: 100%
}

.main_vide .main_vide_wrap .main_vide_wrapR video {
    width: 100%
}

.pres_video_box_items_item_title {
    margin-top: 10px
}

.main_shop {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 60px;
    margin-bottom: 120px
}

@media (max-width: 768px) {
    .main_shop {
        -webkit-box-pack:center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: unset;
        margin-bottom: 60px
    }
}

.main_shop .wrapper {
    height: 100%
}

.main_shop .wrapper .main_shop_title {
    max-width: 967px;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 700;
    font-size: 42px
}

@media (max-width: 768px) {
    .main_shop .wrapper .main_shop_title {
        font-size:24px
    }
}

@media (max-width: 600px) {
    .main_shop .wrapper .main_shop_title {
        font-size:20px
    }
}

.shop_bl_1 {
    margin-bottom: 120px
}

@media (max-width: 768px) {
    .shop_bl_1 {
        margin-bottom:60px
    }
}

.shop_bl_1 .wrapper .shop_bl_1_title {
    color: var(--main-color-1);
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

@media (max-width: 768px) {
    .shop_bl_1 .wrapper .shop_bl_1_title {
        font-size:24px;
        margin-bottom: 40px
    }
}

.shop_bl_1 .wrapper .shop_bl_1_image img {
    width: 100%;
    display: block
}

.shop_bl_1 .wrapper .shop_bl_1_fl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width: 800px) {
    .shop_bl_1 .wrapper .shop_bl_1_fl {
        grid-gap:10px
    }
}

@media (max-width: 360px) {
    .shop_bl_1 .wrapper .shop_bl_1_fl {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.shop_bl_1 .wrapper .shop_bl_1_fl .shop_bl_1_fl_item {
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.shop_bl_1 .wrapper .shop_bl_1_fl .shop_bl_1_fl_item img {
    width: 100%;
    display: block
}

.shop_bl_1 .wrapper .shop_bl_1_fl .shop_bl_1_fl_item .shop_bl_1_fl_item_txt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    padding: 15px 30px;
    background: var(--main-color-2);
    border-radius: 10px;
    position: absolute;
    left: 40px;
    bottom: 40px
}

@media (max-width: 800px) {
    .shop_bl_1 .wrapper .shop_bl_1_fl .shop_bl_1_fl_item .shop_bl_1_fl_item_txt {
        position:unset;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px
    }
}

.shop_bl_2 {
    margin-bottom: 120px
}

@media (max-width: 900px) {
    .shop_bl_2 {
        margin-bottom:40px
    }
}

.shop_bl_2 .shop_bl_2_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px
}

@media (max-width: 1000px) {
    .shop_bl_2 .shop_bl_2_items {
        -ms-grid-columns:1fr 10px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px
    }
}

@media (max-width: 600px) {
    .shop_bl_2 .shop_bl_2_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item {
    border: 1px solid #0F1829;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    background: #fff
}

@media (max-width: 600px) {
    .shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item {
        padding:10px
    }
}

.shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item .shop_bl_2_items_item_img {
    margin-bottom: 30px
}

@media (max-width: 600px) {
    .shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item .shop_bl_2_items_item_img {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item .shop_bl_2_items_item_img svg path {
    fill: var(--main-color-2)
}

.shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item .shop_bl_2_items_item_txt {
    color: var(--main-color-1);
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px
}

@media (max-width: 600px) {
    .shop_bl_2 .shop_bl_2_items .shop_bl_2_items_item .shop_bl_2_items_item_txt {
        text-align:justify
    }
}

.shop_gal {
    margin-bottom: 90px
}

.shop_gal .shop_gal_title {
    color: var(--main-color-1);
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

@media (max-width: 900px) {
    .shop_gal .shop_gal_title {
        margin-bottom:40px
    }
}

.shop_gal .shop_gal_galery {
    position: relative
}

.shop_gal .shop_gal_galery .wrapper {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 120px;
    z-index: 1
}

@media (max-width: 900px) {
    .shop_gal .shop_gal_galery .wrapper {
        -webkit-transform:translateX(0%);
        transform: translateX(0%);
        position: unset;
        margin-top: 20px
    }
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev_btn {
    width: 85px;
    height: 85px;
    background: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev {
    margin-right: 30px;
    cursor: pointer;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--main-color-2);
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--main-color-2);
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_next {
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_next:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--main-color-2);
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_next:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--main-color-2);
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@media (max-width: 900px) {
    .shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev_btn {
        background:var(--main-color-2);
        width: 50px;
        height: 50px
    }

    .shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev_btn:before {
        background: #fff
    }

    .shop_gal .shop_gal_galery .wrapper .shop_gal_galery_wrap .shop_gal_galery_wrap_prev_btn:after {
        background: #fff
    }
}

.shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item {
    position: relative
}

.shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item img {
    display: block;
    width: 100%
}

.shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item .wrapper {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 1
}

@media (max-width: 900px) {
    .shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item .wrapper {
        position:unset;
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item .wrapper .shop_gal_galery_items_item_txt {
    color: #fff;
    font-weight: 600;
    font-size: 34px
}

@media (max-width: 900px) {
    .shop_gal .shop_gal_galery .shop_gal_galery_items .shop_gal_galery_items_item .wrapper .shop_gal_galery_items_item_txt {
        color:#000;
        margin-top: 20px;
        font-size: 24px
    }
}

.shop_form {
    margin-bottom: 120px
}

@media (max-width: 1000px) {
    .shop_form {
        margin-bottom:60px
    }
}

.shop_form .wrapper form .shop_form_wrap {
    position: relative;
    border-radius: 10px;
    background: var(--main-color-2);
    padding: 60px
}

@media (max-width: 1000px) {
    .shop_form .wrapper form .shop_form_wrap {
        padding:20px
    }

    .shop_form .wrapper form .shop_form_wrap:before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 2
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_title {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_title {
        font-size:20px
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form {
    position: relative;
    z-index: 2
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input {
    outline: none;
    border: none;
    border-radius: 10px;
    max-width: 291px;
    width: 100%;
    height: 78px;
    padding-left: 30px;
    padding-right: 30px
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input:first-child {
    margin-right: 30px
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input:first-child {
        margin-right:0;
        margin-bottom: 30px
    }
}

@media (max-width: 1000px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input {
        max-width:unset;
        width: 50%
    }
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input {
        width:100%
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form .shop_form_wrap_form_inp input:placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot input[type=submit] {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: var(--main-color-1);
    border: none;
    outline: none;
    cursor: pointer;
    max-width: 255px;
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    margin-right: 20px
}

@media (max-width: 600px) {
    .shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot input[type=submit] {
        margin-right:0;
        margin-bottom: 20px
    }
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot .shop_form_wrap_form_chek {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot .shop_form_wrap_form_chek input {
    cursor: pointer;
    border-radius: 10px;
    width: 12px;
    height: 12px
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot .shop_form_wrap_form_chek span {
    max-width: 186px;
    width: 100%;
    margin-left: 10px;
    color: #fff;
    font-weight: 200;
    font-size: 14px;
    line-height: 14.4px
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_form_bot .shop_form_wrap_form_chek span a {
    text-decoration: underline;
    color: inherit
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_img {
    position: absolute;
    right: 50px;
    bottom: 20px;
    pointer-events: none
}

.shop_form .wrapper form .shop_form_wrap .shop_form_wrap_img img {
    display: block;
    width: 100%
}

.shop_video .shop_video_title {
    color: var(--main-color-1);
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 80px
}

@media (max-width: 1000px) {
    .shop_video .shop_video_title {
        margin-bottom:40px;
        font-size: 20px
    }
}

.shop_video .pres_video_box_items_item {
    display: inline-block;
    height: 100%;
    max-height: 850px
}

.shop_video .pres_video_box_items_item video {
    height: 100%
}

.contacts_map {
    margin-top: 120px;
    margin-bottom: 70px
}

@media (max-width: 1000px) {
    .contacts_map {
        margin-top:60px;
        margin-bottom: 45px
    }
}

.contacts_map .contacts_map_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1000px) {
    .contacts_map .contacts_map_lr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.contacts_map .contacts_map_lr .contacts_map_lr_l {
    border: 1px solid #0F1829;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 40px;
    max-width: 440px;
    width: 100%;
    padding: 40px;
    background: #fff
}

@media (max-width: 1000px) {
    .contacts_map .contacts_map_lr .contacts_map_lr_l {
        margin-right:0;
        margin-bottom: 40px;
        max-width: unset
    }
}

.contacts_map .contacts_map_lr .contacts_map_lr_l .contacts_map_lr_l_item {
    margin-bottom: 30px
}

.contacts_map .contacts_map_lr .contacts_map_lr_l .contacts_map_lr_l_item .contacts_map_lr_l_item_title {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px
}

.contacts_map .contacts_map_lr .contacts_map_lr_l .contacts_map_lr_l_item .contacts_map_lr_l_item_txt {
    color: #000;
    font-weight: 300;
    font-size: 18px;
    line-height: 23.4px
}

.contacts_map .contacts_map_lr .contacts_map_lr_l .contacts_map_lr_l_item .contacts_map_lr_l_item_txt span {
    font-weight: 400
}

.contacts_map .contacts_map_lr .contacts_map_lr_l .contacts_map_lr_l_item .contacts_map_lr_l_item_txt .contacts_map_lr_l_item_txt_img svg {
    width: 18px;
    height: 18px
}

.contacts_map .contacts_map_lr .contacts_map_lr_r {
    border: 1px solid #0F1829;
    border-radius: 10px;
    overflow: hidden;
    width: 100%
}

@media (max-width: 1000px) {
    .contacts_map .contacts_map_lr .contacts_map_lr_r {
        height:300px
    }
}

.shop_last_block {
    background: var(--main-color-3);
    padding-top: 40px;
    padding-bottom: 40px
}

.shop_last_block .wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.shop_last_block .wrapper .shop_last_block_wrap {
    max-width: 873px;
    width: 100%
}

@media (max-width: 1000px) {
    .shop_last_block .wrapper .shop_last_block_wrap {
        max-width:unset
    }
}

.shop_last_block .wrapper .shop_last_block_title {
    color: var(--main-color-1);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px
}

@media (max-width: 1000px) {
    .shop_last_block .wrapper .shop_last_block_title {
        font-size:22px
    }
}

.shop_last_block .wrapper .shop_last_block_btn a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--main-color-2);
    width: 255px;
    height: 80px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 10px
}

.shop_last_block .wrapper .shop_last_block_img {
    margin-top: -100px;
    max-width: 450px;
    width: 100%
}

@media (max-width: 1000px) {
    .shop_last_block .wrapper .shop_last_block_img {
        display:none
    }
}

.shop_last_block .wrapper .shop_last_block_img img {
    display: block;
    width: 100%
}

.us_bl,.us_bl_foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 120px;
    min-height: 350px;
    height: 100%;
    background: #CCDBF7;
    border-radius: 10px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px
}

@media (max-width: 1200px) {
    .us_bl,.us_bl_foot {
        padding:60px 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: unset
    }
}

@media (max-width: 600px) {
    .us_bl,.us_bl_foot {
        padding:20px
    }
}

.us_bl .us_bl_l,.us_bl_foot .us_bl_l {
    color: #0F1829;
    font-weight: 700;
    font-size: 42px
}

@media (max-width: 1200px) {
    .us_bl .us_bl_l,.us_bl_foot .us_bl_l {
        font-size:21px;
        margin-bottom: 30px
    }
}

.us_bl .us_bl_wrap,.us_bl_foot .us_bl_wrap {
    max-width: 500px;
    width: 100%
}

.us_bl .us_bl_wrap .us_bl_l,.us_bl_foot .us_bl_wrap .us_bl_l {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 45px
}

.us_bl .us_bl_wrap .us_bl_l_btn a,.us_bl_foot .us_bl_wrap .us_bl_l_btn a {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: #0F1829;
    border-radius: 10px;
    width: 255px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.us_bl .us_bl_r,.us_bl_foot .us_bl_r {
    position: absolute;
    right: 0;
    bottom: 0
}

@media (max-width: 1200px) {
    .us_bl .us_bl_r,.us_bl_foot .us_bl_r {
        max-width:350px;
        height: auto;
        position: unset
    }
}

.us_bl .us_bl_r img,.us_bl_foot .us_bl_r img {
    display: block;
    width: 100%
}

.us_bl_foot {
    min-height: 320px
}

@media (max-width: 600px) {
    .us_bl_foot {
        min-height:unset
    }
}

.us_bl_foot .us_bl_r {
    right: 146px
}

@media (max-width: 1200px) {
    .us_bl_foot .us_bl_wrap {
        margin-bottom:30px
    }
}

@media (max-width: 1200px) {
    .us_bl_foot .us_bl_wrap .us_bl_l {
        font-size:21px
    }
}

@media (max-width: 1200px) {
    .us_bl_foot .us_bl_wrap .us_bl_l_btn {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width: 1200px) {
    .us_bl_foot .us_bl_r {
        max-width:250px;
        height: auto
    }
}

.dos .dos_bl_1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 50px;
    -ms-grid-rows: auro;
    grid-template-rows: auro
}

.dos .dos_bl_1>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.dos .dos_bl_1>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.dos .dos_bl_1>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5
}

.dos .dos_bl_1>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7
}

@media (max-width: 600px) {
    .dos .dos_bl_1 {
        display:block
    }
}

.dos .dos_bl_1 .dos_bl_1_item {
    border: 1px solid #0F1829;
    padding: 30px 50px;
    border-radius: 10px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 600px) {
    .dos .dos_bl_1 .dos_bl_1_item {
        margin-bottom:30px
    }
}

@media (max-width: 1000px) {
    .dos .dos_bl_1 .dos_bl_1_item {
        padding:20px
    }
}

.dos .dos_bl_1 .dos_bl_1_item .dos_bl_1_item_img {
    margin-bottom: 25px;
    max-height: 50px;
    height: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.dos .dos_bl_1 .dos_bl_1_item .dos_bl_1_item_img img {
    width: 100%;
    display: block
}

.dos .dos_bl_1 .dos_bl_1_item .dos_bl_1_item_txt {
    color: #0F1829;
    font-weight: 400;
    font-size: 16px
}

.dos .dos_bl_1 .dos_bl_1_item .dos_bl_1_item_txt span {
    font-weight: 600
}

.dos .dos_bl_1 .dos_bl_1_item_1 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3
}

@media (max-width: 1000px) {
    .dos .dos_bl_1 .dos_bl_1_item_1 {
        -ms-grid-column:1;
        grid-column-start: 1;
        -ms-grid-column-span: 4;
        grid-column-end: 5
    }
}

.dos .dos_bl_1 .dos_bl_1_item_2 {
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-column-span: 0;
    grid-column-end: 3
}

@media (max-width: 1000px) {
    .dos .dos_bl_1 .dos_bl_1_item_2 {
        -ms-grid-row:2;
        grid-row-start: 2;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 2;
        grid-column-end: 3
    }
}

.dos .dos_bl_1 .dos_bl_1_item_3 {
    -ms-grid-column: 4;
    grid-column-start: 4;
    -ms-grid-column-span: 0;
    grid-column-end: 4
}

@media (max-width: 1000px) {
    .dos .dos_bl_1 .dos_bl_1_item_3 {
        -ms-grid-row:2;
        grid-row-start: 2;
        -ms-grid-column: 3;
        grid-column-start: 3;
        -ms-grid-column-span: 2;
        grid-column-end: 5
    }
}

.dos .dos_bl_2 {
    color: #000;
    font-weight: 400;
    font-size: 16px
}

.dos .dos_bl_2 .dos_bl_2_txt {
    margin-bottom: 30px
}

.dos .dos_bl_2 ul {
    list-style-position: inside
}

.dos .dos_bl_2 ul li {
    margin-bottom: 5px
}

.dos_bl_3 {
    margin-top: 60px
}

.dos_bl_3 .dos_bl_3_title {
    margin-bottom: 30px
}

.dos_bl_3 .dos_bl_3_sub_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.dos_bl_3 .dos_bl_3_sub_title .dos_bl_3_sub_title_img {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.5px solid #0F1829;
    border-radius: 10px
}

.dos_bl_3 .dos_bl_3_sub_title span {
    margin-left: 15px
}

.dos_bl_3 ul {
    list-style-position: inside;
    margin-top: 30px;
    margin-bottom: 30px
}

.dos_bl_3 ul li {
    margin-bottom: 5px
}

.dos_bl_4 {
    padding: 50px;
    border: solid 1px #000;
    border-radius: 10px;
    margin-bottom: 60px
}

@media (max-width: 768px) {
    .dos_bl_4 {
        padding:20px
    }
}

.dos_bl_4 .dos_bl_4_title {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px
}

.dos_bl_4 ul {
    list-style-type: decimal;
    list-style-position: inside
}

.dos_bl_4 ul li {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px
}

.opl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 130px
}

@media (max-width: 1200px) {
    .opl {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
}

@media (max-width: 550px) {
    .opl {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr;
        margin-bottom: 60px
    }
}

.opl .opl_item {
    padding: 36px;
    border: solid 1px #000;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 1200px) {
    .opl .opl_item {
        padding:20px
    }
}

.opl .opl_item .opl_item_img {
    margin-right: 20px
}

.opl .opl_item .opl_item_img img {
    display: block
}

@media (max-width: 1200px) {
    .opl .opl_item .opl_item_img img {
        width:100%
    }
}

.opl .opl_item .opl_item_txt {
    color: #0F1829;
    font-weight: 600;
    font-size: 16px
}

.garant .garant_title {
    margin-bottom: 60px;
    color: #0F1829;
    font-weight: 600;
    font-size: 34px
}

.garant .garant_txt {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 50px
}

.garant .garant_table {
    max-width: 600px;
    width: 100%
}

.garant .garant_table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    overflow-x: auto
}

.garant .garant_table table thead tr th {
    border: 3px solid #fff;
    background: #0F1829;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
    white-space: nowrap
}

.garant .garant_table table tbody tr {
    min-height: 50px;
    background: #CCDBF7
}

.garant .garant_table table tbody tr td {
    border: 3px solid #fff;
    padding: 20px
}

.garant .garant_table table tbody tr td:nth-child(2n) {
    text-align: center;
    font-weight: 600
}

.garant .garant_table table tbody tr:nth-child(2n) {
    background: #fff
}

.garant .garant_txt_bot {
    margin-top: 50px;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 30px
}

.gde_kupit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 80px
}

@media (max-width: 800px) {
    .gde_kupit {
        grid-gap:20px
    }
}

@media (max-width: 600px) {
    .gde_kupit {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.gde_kupit .gde_kupit_item {
    border: 1px solid #001942;
    padding: 140px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    color: #000
}

@media (max-width: 800px) {
    .gde_kupit .gde_kupit_item {
        padding:20px 20px
    }
}

.faq {
    margin-bottom: 80px
}

.faq .faq_title {
    color: #0F1829;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 80px
}

.faq .faq_items .faq_items_item {
    padding: 40px;
    border: 1px solid #0F1829;
    border-radius: 10px;
    margin-bottom: 30px
}

@media (max-width: 600px) {
    .faq .faq_items .faq_items_item {
        padding:20px
    }
}

.faq .faq_items .faq_items_item .faq_items_item_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_btn {
    max-width: 50px;
    width: 100%;
    height: 50px;
    background: #0F1829;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    margin-right: 30px
}

.faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_btn .faq_items_item_top_btn_arrow {
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 50%;
    height: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-90deg);
    transform: translate(-50%,-50%) rotate(-90deg);
    left: 50%;
    top: 50%
}

.faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_btn .faq_items_item_top_btn_arrow:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #fff;
    width: 50%;
    height: 1px;
    -webkit-transform: translate(-50%,-50%) rotate(50deg);
    transform: translate(-50%,-50%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_btn .faq_items_item_top_btn_arrow:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #fff;
    width: 50%;
    height: 1px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_txt {
    color: #0F1829;
    font-weight: 600;
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer
}

@media (max-width: 600px) {
    .faq .faq_items .faq_items_item .faq_items_item_top .faq_items_item_top_txt {
        font-size:14px
    }
}

.faq .faq_items .faq_items_item .faq_items_item_bot {
    margin-top: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18.2px;
    color: #0F1829
}

.faq .faq_items .faq_items_item .faq_items_item_top_active .faq_items_item_top_btn .faq_items_item_top_btn_arrow {
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transform: translate(-50%,-50%) rotate(90deg)
}

.faq .faq_items .faq_items_item .faq_items_item_top_active .faq_items_item_top_txt {
    color: #CCDBF7
}

.faq .faq_items .faq_items_item .faq_items_item_bot {
    display: none
}

.faq_forms {
    margin-bottom: 60px
}

.faq_forms .faq_forms_title {
    color: var(--main-color-1);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 60px
}

.faq_forms .faq_formses form .faq_forms_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    .faq_forms .faq_formses form .faq_forms_lr {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l {
    max-width: 440px;
    width: 100%;
    margin-right: 40px
}

@media (max-width: 768px) {
    .faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l {
        max-width:unset;
        margin-bottom: 20px
    }
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item {
    margin-bottom: 40px
}

@media (max-width: 768px) {
    .faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item {
        margin-bottom:20px
    }
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item:last-child {
    margin-bottom: 0
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input {
    width: 100%;
    height: 70px;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 300;
    border-radius: 10px;
    display: block
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input::-webkit-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input::-moz-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input:-ms-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input::-ms-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_l .faq_forms_lr_l_item input::placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r .faq_forms_lr_r_text {
    height: 100%
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 300;
    padding: 25px 20px;
    border-radius: 10px;
    resize: none
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea::-webkit-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea::-moz-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea:-ms-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea::-ms-input-placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr .faq_forms_lr_r textarea::placeholder {
    color: #CCDBF7
}

.faq_forms .faq_formses form .faq_forms_lr label {
    display: block;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
    font-size: 18px
}

.faq_forms .faq_formses form .faq_forms_lr_l_item_sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

@media (max-width: 768px) {
    .faq_forms .faq_formses form .faq_forms_lr_l_item_sub {
        margin-top:20px
    }
}

@media (max-width: 500px) {
    .faq_forms .faq_formses form .faq_forms_lr_l_item_sub {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_btn {
    margin-right: 20px;
    max-width: 440px;
    width: 100%
}

@media (max-width: 768px) {
    .faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_btn {
        margin-right:0
    }
}

.faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_btn input {
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    background: var(--main-color-2);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    padding: 20px 40px
}

.faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_check label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_check label span {
    margin-left: 10px
}

@media (max-width: 500px) {
    .faq_forms .faq_formses form .faq_forms_lr_l_item_sub .faq_forms_lr_l_item_sub_check {
        margin-top:20px
    }
}

.partneram_7 ul {
    margin-bottom: 0;
    -webkit-padding-start: 0px;
    padding-inline-start:0px}

#partneram .wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

#partneram .wrap .partneram_1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 60px
}

#partneram .wrap .partneram_1 .partneram_1_txt1 {
    margin-bottom: 20px
}

#partneram .wrap .partneram_1 .partneram_1_txt2 {
    font-weight: normal
}

#partneram .wrap .partneram_2 {
    border: 1px solid #0F1829;
    border-radius: 10px;
    -webkit-box-shadow: 38px 49px 25px 0px rgba(0,0,0,0.0117647059);
    box-shadow: 38px 49px 25px 0px rgba(0,0,0,0.0117647059);
    max-width: 1160px;
    margin: 0 auto;
    background: #FBFBFB;
    width: 100%;
    padding: 50px;
    position: relative;
    margin-bottom: 120px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_2 {
        padding:20px;
        margin-bottom: 60px
    }
}

#partneram .wrap .partneram_2:before {
    position: absolute;
    right: 50px;
    bottom: 50px;
    content: "";
    background: url("../img/798546.png") no-repeat;
    max-width: 200px;
    max-height: 140px;
    width: 100%;
    height: 100%
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_2:before {
        display:none
    }
}

#partneram .wrap .partneram_2 .partneram_2_txt1 {
    text-transform: uppercase;
    color: #0F1829;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px
}

#partneram .wrap .partneram_2 .partneram_2_txt2 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 45px
}

#partneram .wrap .partneram_2 .partneram_2_fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_2 .partneram_2_fl {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_l {
    margin-right: 130px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_l {
        margin-right:0;
        margin-bottom: 50px
    }
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_l .partneram_2_fl_l_txt {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_l a {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    text-decoration: none
}

@media (max-width: 600px) {
    #partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_l a {
        font-size:18px
    }
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_r .partneram_2_fl_r_txt {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_r .partneram_2_fl_r_mes a {
    display: inline-block;
    margin-right: 24px
}

#partneram .wrap .partneram_2 .partneram_2_fl .partneram_2_fl_r .partneram_2_fl_r_mes a img {
    width: auto
}

#partneram .wrap .partneram_3 {
    margin-bottom: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0F1829
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_3 {
        margin-bottom:50px
    }
}

#partneram .wrap .partneram_3 .partneram_3_title {
    background: #0F1829;
    padding: 60px;
    color: #fff;
    font-size: 34px;
    font-weight: 400
}

#partneram .wrap .partneram_3 .partneram_3_title span {
    font-weight: 600
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_3 .partneram_3_title {
        font-size:14px;
        padding: 20px
    }
}

#partneram .wrap .partneram_3 .partneram_3_desc {
    padding: 60px;
    font-size: 24px;
    font-weight: 400;
    color: #000
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_3 .partneram_3_desc {
        font-size:14px;
        padding: 20px
    }
}

#partneram .wrap .partneram_3 .partneram_3_desc ul {
    list-style-position: inside
}

#partneram .wrap .partneram_3 .partneram_3_desc ul li {
    margin-bottom: 15px;
    list-style-image: url("../img/mhfj.png")
}

.partneram_4 {
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: center
}

@media (max-width: 500px) {
    .partneram_4 {
        padding-top:50px;
        padding-bottom: 50px
    }
}

.partneram_4 .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.partneram_4 .partneram_4_wrap {
    max-width: 730px;
    width: 100%
}

.partneram_4 .partneram_4_title {
    margin-bottom: 43px;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_title {
        font-size:24px
    }
}

.partneram_4 .partneram_4_title span {
    margin-top: 5px;
    display: block;
    font-weight: 400;
    font-size: 24px
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_title span {
        font-size:20px
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_form .partneram_4_form_top {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_top input {
    margin-right: 30px;
    max-width: 290px;
    display: block;
    width: 100%;
    height: 80px;
    padding: 30px;
    border: none;
    border-radius: 10px
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_form .partneram_4_form_top input {
        margin-right:0;
        margin-bottom: 20px;
        max-width: unset
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_top input::-webkit-input-placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.partneram_4 .partneram_4_form .partneram_4_form_top input::-moz-placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.partneram_4 .partneram_4_form .partneram_4_form_top input:-ms-input-placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.partneram_4 .partneram_4_form .partneram_4_form_top input::-ms-input-placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.partneram_4 .partneram_4_form .partneram_4_form_top input::placeholder {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

.partneram_4 .partneram_4_form .partneram_4_form_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_form .partneram_4_form_bot {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 0
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_bot input[type=submit] {
    max-width: 255px;
    width: 100%;
    height: 80px;
    color: #fff;
    background: var(--main-color-2);
    border: none;
    border-radius: 10px;
    cursor: pointer
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_form .partneram_4_form_bot input[type=submit] {
        max-width:unset
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek {
    margin-left: 20px
}

@media (max-width: 500px) {
    .partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek {
        margin-left:0;
        margin-top: 20px
    }
}

.partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 208px;
    color: #fff;
    width: 100%;
    font-weight: 300;
    font-size: 12px;
    line-height: 120%;
    cursor: pointer
}

.partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek label input {
    cursor: pointer
}

.partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek label span {
    margin-left: 10px;
    display: block
}

.partneram_4 .partneram_4_form .partneram_4_form_bot .inp_chek label span a {
    color: inherit;
    text-decoration: underline
}

#partneram .wrap .partneram_5 {
    margin-top: 120px;
    margin-bottom: 120px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_5 {
        margin-top:60px;
        margin-bottom: 60px
    }
}

#partneram .wrap .partneram_5 .partneram_5_title {
    margin-bottom: 80px;
    font-size: 30px;
    font-weight: 600;
    color: #000
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_5 .partneram_5_title {
        margin-bottom:40px
    }
}

#partneram .wrap .partneram_5 .partneram_5_grd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_5 .partneram_5_grd {
        grid-gap:20px
    }
}

@media (max-width: 600px) {
    #partneram .wrap .partneram_5 .partneram_5_grd {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

#partneram .wrap .partneram_5 .partneram_5_grd .partneram_5_grd_item {
    -webkit-box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    border: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    width: 100%
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_5 .partneram_5_grd .partneram_5_grd_item {
        padding:20px
    }
}

#partneram .wrap .partneram_5 .partneram_5_grd .partneram_5_grd_item img {
    max-width: 100%;
    width: auto
}

#partneram .wrap .partneram_6 .partneram_6_title {
    margin-bottom: 80px;
    font-size: 30px;
    font-weight: 600;
    color: #000
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_6 .partneram_6_title {
        margin-bottom:40px
    }
}

#partneram .wrap .partneram_6 .partneram_6_grd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 120px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_6 .partneram_6_grd {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin-bottom: 40px
    }
}

#partneram .wrap .partneram_6 .partneram_6_grd .partneram_6_grd_item {
    width: 100%;
    -webkit-box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    border: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_6 .partneram_6_grd .partneram_6_grd_item {
        padding:20px
    }
}

#partneram .wrap .partneram_6 .partneram_6_grd .partneram_6_grd_item img {
    width: 100%
}

#partneram .wrap .partneram_8 .partneram_8_title {
    margin-bottom: 80px;
    font-size: 30px;
    font-weight: 600;
    color: #000
}

@media (max-width: 768px) {
    #partneram .wrap .partneram_8 .partneram_8_title {
        margin-bottom:40px
    }
}

#partneram .wrap .partneram_8 .partneram_8_grd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 120px
}

@media (max-width: 920px) {
    #partneram .wrap .partneram_8 .partneram_8_grd {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
}

#partneram .wrap .partneram_8 .partneram_8_grd .partneram_8_grd_item {
    width: 100%;
    -webkit-box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    box-shadow: 4px 8px 30px -10px rgba(0,0,0,0.1019607843);
    border: 1px solid #E0E0E0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px
}

@media (max-width: 920px) {
    #partneram .wrap .partneram_8 .partneram_8_grd .partneram_8_grd_item {
        padding:20px
    }
}

#partneram .wrap .partneram_8 .partneram_8_grd .partneram_8_grd_item img {
    width: auto
}

.partneram_7 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 120px;
    margin-bottom: 120px
}

@media (max-width: 768px) {
    .partneram_7 {
        margin-top:60px;
        margin-bottom: 60px
    }
}

@media (max-width: 1000px) {
    .partneram_7 {
        -webkit-box-orient:vertical;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (max-width: 768px) {
    .partneram_7 {
        margin-bottom:60px
    }
}

.partneram_7 .partneram_7_maps {
    max-width: 70%;
    height: 650px;
    width: 100%
}

@media (max-width: 1000px) {
    .partneram_7 .partneram_7_maps {
        max-width:100%;
        height: 300px
    }
}

@media (max-width: 1180px) {
    .partneram_7 .partneram_7_maps {
        max-width:600px
    }
}

@media (max-width: 1000px) {
    .partneram_7 .partneram_7_maps {
        max-width:unset
    }
}

@media (max-width: 768px) {
    .partneram_7 .partneram_7_maps {
        height:300px
    }
}

.partneram_7 .partneram_7_r {
    margin-left: 40px
}

@media (max-width: 1000px) {
    .partneram_7 .partneram_7_r {
        margin-left:0
    }
}

.partneram_7 .partneram_7_r .partneram_7_r_title {
    color: var(--main-color-1);
    font-weight: 600;
    font-size: 30px;
    margin-top: 40px
}

.partneram_7 .partneram_7_r .partneram_7_r_adres ul {
    list-style-position: inside;
    margin-top: 40px
}

.partneram_7 .partneram_7_r .partneram_7_r_adres ul li {
    margin-bottom: 30px;
    list-style: none;
    position: relative;
    padding-left: 16px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: #000
}

.partneram_7 .partneram_7_r .partneram_7_r_adres ul li:before {
    position: absolute;
    content: url("../img/loc.svg");
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.map_ya {
    width: 100%;
    height: 100%
}

.partneram_7_maps {
    position: sticky;
    border-radius: 10px;
    overflow: hidden
}

@media (max-width: 1000px) {
    .partneram_7_maps {
        position:unset
    }
}

.review_title {
    color: var(--main-color-1);
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 80px
}

@media (max-width: 768px) {
    .review_title {
        font-size:24px;
        margin-bottom: 60px
    }
}

#partnerams {
    margin-bottom: 120px
}

@media (max-width: 768px) {
    #partnerams {
        margin-bottom:60px
    }
}

#partnerams .wrapper {
    position: relative
}

#partnerams .wrapper img {
    width: 100%;
    display: block
}

#partnerams .wrapper .partneram_title_abs {
    position: absolute;
    left: 120px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--main-color-1);
    font-weight: 700;
    font-size: 42px
}

@media (max-width: 768px) {
    #partnerams .wrapper .partneram_title_abs {
        left:50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        font-size: 24px
    }
}

#about {
}

#about .wrap {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%
}

@media (max-width: 1400px) {
    #about .wrap {
        padding-left:15px;
        padding-right: 15px
    }
}

#about .about_scr_1 .about_scr_1_baner {
    min-height: 772px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

#about .about_scr_1 .about_scr_1_baner .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#about .about_scr_1 .about_scr_1_baner .about_scr_1_baner_text {
    color: #fff;
    font-size: 42px;
    font-weight: 400;
    max-width: 835px;
    width: 100%
}

@media (max-width: 768px) {
    #about .about_scr_1 .about_scr_1_baner .about_scr_1_baner_text {
        font-size:26px
    }
}

#about .about_scr_1 .about_scr_1_baner .about_scr_1_baner_text span {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 9px
}

@media (max-width: 768px) {
    #about .about_scr_1 .about_scr_1_baner .about_scr_1_baner_text span {
        font-size:26px
    }
}

#about .about_scr_2 .about_scr_2_text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 90px;
    margin-top: 90px
}

#about .about_scr_2 .about_scr_2_title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase
}

#about .about_scr_2 .about_scr_2_items {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 120px
}

@media (max-width: 1000px) {
    #about .about_scr_2 .about_scr_2_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item {
    -webkit-box-shadow: 38px 49px 25px 0px rgba(0,0,0,0.0117647059);
    box-shadow: 38px 49px 25px 0px rgba(0,0,0,0.0117647059);
    border: 1px solid #E0E0E0;
    padding: 40px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    min-height: 277px;
    background: #FBFBFB
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item:before {
    position: absolute;
    content: "";
    background-image: url("/images/Vector (22).png");
    left: 0px;
    top: 0px;
    width: 140px;
    height: 140px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item:after {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    right: 30px;
    bottom: 30px;
    width: 140px;
    height: 140px
}

#about .about_scr_2_items_item_t {
    position: relative
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item_one:after {
    background-image: url("../img/hfg.png")
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item_two:after {
    background-image: url("../img/nfgh.png")
}

#about .about_scr_2 .about_scr_2_items .about_scr_2_items_item_three:after {
    background-image: url("../img/hfn.png")
}

#about .about_scr_3 {
    margin-bottom: 120px
}

#about .about_scr_3 .about_scr_3_title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 80px
}

#about .about_scr_3 .about_scr_3_grd {
    display: -ms-grid;
    display: grid;
    grid-gap: 40px;
    -ms-grid-rows: auto;
    grid-template-rows: repeat(1,auto);
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3,1fr)
}

#about .about_scr_3 .about_scr_3_grd>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

#about .about_scr_3 .about_scr_3_grd>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

#about .about_scr_3 .about_scr_3_grd>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5
}

@media (max-width: 768px) {
    #about .about_scr_3 .about_scr_3_grd {
        grid-gap:10px
    }
}

#about .about_scr_3 .about_scr_3_grd .about_scr_3_grd_item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden
}

#about .about_scr_3 .about_scr_3_grd .about_scr_3_grd_item img {
    width: 100%;
    height: 100%
}

#about .about_scr_3 .about_scr_3_grd #item-0 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-column-span: 1;
    grid-column-end: 2
}

#about .about_scr_3 .about_scr_3_grd #item-1 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row-span: 3;
    grid-row-end: 4;
    -ms-grid-column-span: 1;
    grid-column-end: 4
}

#about .about_scr_3 .about_scr_3_grd #item-2 {
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-column-span: 1;
    grid-column-end: 2
}

#about .about_scr_3 .about_scr_3_grd #item-3 {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3
}

#about .about_scr_3 .about_scr_3_grd #item-4 {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 2;
    grid-row-end: 4;
    -ms-grid-column-span: 1;
    grid-column-end: 3
}

#about .about_scr_4 .about_scr_4_text .about_scr_4_text_title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 60px
}

#about .about_scr_4 .about_scr_4_text .about_scr_4_text_desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 120px
}

#about .about_scr_4 .about_scr_4_man {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_img {
    margin-right: 40px;
    max-width: 320px;
    width: 100%
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_img {
        margin-right:0;
        margin-bottom: 30px
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_img img {
    width: 100%
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r {
        width:100%
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_title {
    font-size: 30px;
    font-weight: 700;
    max-width: 434px;
    width: 100%;
    margin-bottom: 30px
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_title {
        max-width:unset
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_soc {
    margin-bottom: 25px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_soc a {
    margin-right: 16px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_soc a img {
    width: auto
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_desc {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_desc span {
    font-weight: 600
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_desc_2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_phone {
    margin-bottom: 20px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_phone a {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    text-decoration: none
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_desc_3 {
    font-size: 18px;
    font-weight: 400
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc a {
    text-decoration: none;
    color: #fff;
    margin-right: 15px;
    display: inline-block;
    min-width: 192px;
    min-height: 57px;
    margin-top: 10px
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc a {
        margin-right:0
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all {
    min-height: 57px;
    height: 100%;
    width: 100%;
    border: 1px solid;
    border-image-source: linear-gradient(96.12deg,rgba(166,255,199,0.4) 12.33%,rgba(255,255,255,0.4) 88.95%);
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 32px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid;
    height: 100%
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr {
        width:100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr .about_scr_4_man_r_btn_soc_all_lr_l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 29px;
    border-right: 1px solid;
    -o-border-image: linear-gradient(rgba(255,255,255,0),rgba(69,69,69,0.48),rgba(0,0,0,0)) 0 100%;
    border-image: -webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,0)),color-stop(rgba(69,69,69,0.48)),to(rgba(0,0,0,0))) 0 100%;
    border-image: linear-gradient(rgba(255,255,255,0),rgba(69,69,69,0.48),rgba(0,0,0,0)) 0 100%;
    height: 100%
}

@media (max-width: 800px) {
    #about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr .about_scr_4_man_r_btn_soc_all_lr_l {
        width:100%
    }
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr .about_scr_4_man_r_btn_soc_all_lr_l .about_scr_4_man_r_btn_soc_all_lr_l_img {
    margin-right: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_all .about_scr_4_man_r_btn_soc_all_lr .about_scr_4_man_r_btn_soc_all_lr_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 17px
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_whats {
    background: linear-gradient(142.99deg,#25D366 21.49%,#1DA951 105.11%)
}

#about .about_scr_4 .about_scr_4_man .about_scr_4_man_r .about_scr_4_man_r_btn_soc .about_scr_4_man_r_btn_soc_teleg {
    background: linear-gradient(142.99deg,#37AEE2 21.49%,#1A8BBD 105.11%)
}

#about .about_scr_5 {
    margin-top: 80px
}

#about .about_scr_5 .about_scr_5_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn {
    background: #003084;
    max-width: 50px;
    width: 100%;
    height: 50px;
    position: relative;
    cursor: pointer;
    margin-right: 60px
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    left: 100%;
    top: 50%;
    background: #003084;
    margin-left: 15px
}

@media (max-width: 600px) {
    #about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn {
        margin-right:10px
    }

    #about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn:before {
        display: none
    }
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn .about_scr_5_item_btn_arrow {
    position: absolute;
    width: 20px;
    height: 10px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(180deg);
    transform: translate(-50%,-50%) rotate(180deg);
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn .about_scr_5_item_btn_arrow:before {
    background: #fff;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn .about_scr_5_item_btn_arrow:after {
    background: #fff;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_btn .about_scr_5_item_btn_arrow_active {
    -webkit-transform: translate(-50%,-50%) rotate(0deg);
    transform: translate(-50%,-50%) rotate(0deg)
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt .about_scr_5_item_txt_title {
    font-size: 20px;
    font-weight: 600;
    color: #000
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt .about_scr_5_item_txt_desc {
    font-size: 14px;
    font-weight: 400;
    color: #3B4152;
    display: none
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt_active {
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px -2px rgba(0,0,0,0.1019607843);
    box-shadow: 0px 10px 30px -2px rgba(0,0,0,0.1019607843);
    padding: 30px;
    width: 100%
}

@media (max-width: 600px) {
    #about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt_active {
        padding:10px
    }
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt_active .about_scr_5_item_txt_title {
    font-size: 20px;
    font-weight: 600;
    color: #D1D1D1;
    margin-bottom: 20px
}

#about .about_scr_5 .about_scr_5_item .about_scr_5_item_txt_active .about_scr_5_item_txt_desc {
    display: block
}

#cont_new {
    margin-bottom: 50px;
    position: relative
}

#cont_new:before {
    position: absolute;
    left: 0;
    top: 0;
    content: url(img/ad_big.png);
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    z-index: -1
}

#cont_new .cont_new_title {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase
}

#cont_new .cont_new_tripl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
    z-index: 1;
    grid-gap: 20px
}

@media (max-width: 1000px) {
    #cont_new .cont_new_tripl {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#cont_new .cont_new_tripl_item {
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: #7E7E7E;
    background: #fff
}

#cont_new .cont_new_tripl_item .cont_new_tripl_item_title {
    color: #000;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 30px
}

#cont_new .cont_new_tripl_item .cont_new_tripl_item_items {
    margin-bottom: 50px
}

#cont_new .cont_new_tripl_item .cont_new_tripl_item_items .cont_new_tripl_item_items_title {
    margin-bottom: 10px;
    color: #CCDBF7;
    font-weight: 400;
    font-size: 18px
}

#cont_new .cont_new_tripl_item .cont_new_tripl_item_items .cont_new_tripl_item_items_txt {
    color: #000;
    font-weight: 400;
    font-size: 18px
}

#cont_new .cont_new_tripl_item .cont_new_tripl_item_items a {
    display: block;
    color: inherit;
    text-decoration: none
}

#cont_new .cont_new_obj {
    height: 100%;
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding: 75px 40px
}

#cont_new .cont_new_obj_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 60px
}

@media (max-width: 1000px) {
    #cont_new .cont_new_obj_grid {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#cont_new .cont_new_obj_grid .cont_new_obj_left {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3
}

#cont_new .cont_new_obj_grid .cont_new_obj_left .cont_new_tripl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr
}

#cont_new .cont_new_obj_grid .cont_new_obj_right {
    -ms-grid-column: 3;
    grid-column: 3/3
}

#cont_new .cont_new_obj_grid .cont_new_tripl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
}

@media (max-width: 1000px) {
    #cont_new .cont_new_obj_grid .cont_new_obj {
        -ms-grid-column:1;
        grid-column: 1/1
    }
}

@media (max-width: 700px) {
    #cont_new .cont_new_obj_grid .cont_new_obj_left .cont_new_tripl {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.wrapper .title {
    color: #0F1829;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 50px
}

#blog .blog_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px
}

@media (max-width: 1000px) {
    #blog .blog_items {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#blog .blog_items a {
    margin-right: 40px;
    max-width: 440px;
    width: 100%;
    border-radius: 10px;
    display: block
}

@media (max-width: 1000px) {
    #blog .blog_items a {
        margin-right:0;
        margin-bottom: 40px;
        max-width: unset
    }
}

#blog .blog_items a .blog_items_l img {
    width: 100%
}

#blog .blog_items .blog_items_r .blog_items_r_title {
    color: Lorem ipsum;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 10px
}

#blog .blog_items .blog_items_r .blog_items_r_txt {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px
}

#blog .blog_items .blog_items_r .blog_items_r_btn {
    max-width: 166px;
    width: 100%
}

#blog .blog_items .blog_items_r .blog_items_r_btn a {
    color: #E74824;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    border: solid 1px #E74824;
    padding: 20px 40px;
    display: block;
    margin-right: 0
}

.cart_item_r_wrap_buy_b_wrap_inp {
    margin-right: 40px
}

@media (max-width: 400px) {
    .cart_item_r_wrap_buy_b_wrap_inp {
        margin-right:0
    }
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap {
    position: relative;
    display: inline-block
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap .cart_item_r_wrap_buy_b_wrap_inp_wrap_min {
    position: absolute;
    left: 17px;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap .cart_item_r_wrap_buy_b_wrap_inp_wrap_min:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #000;
    width: 15px;
    height: 2px
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap .cart_item_r_wrap_buy_b_wrap_inp_wrap_plus {
    position: absolute;
    right: 17px;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap .cart_item_r_wrap_buy_b_wrap_inp_wrap_plus:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #000;
    width: 15px;
    height: 2px
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap .cart_item_r_wrap_buy_b_wrap_inp_wrap_plus:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transform: translate(-50%,-50%) rotate(90deg);
    background: #000;
    width: 15px;
    height: 2px
}

.cart_item_r_wrap_buy_b_wrap_inp .cart_item_r_wrap_buy_b_wrap_inp_wrap input {
    display: block;
    min-width: 110px;
    min-height: 56px;
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    color: #0F1829;
    font-weight: 400;
    font-size: 22px
}

#basket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1200px) {
    #basket {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#basket .basket_l {
    margin-right: 40px;
    width: 100%
}

@media (max-width: 1200px) {
    #basket .basket_l {
        margin-right:0
    }
}

#basket .basket_l .basket_l_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #0F1829;
    margin-bottom: 40px
}

@media (max-width: 800px) {
    #basket .basket_l .basket_l_items {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width: 500px) {
    #basket .basket_l .basket_l_items {
        padding:20px
    }
}

#basket .basket_l .basket_l_items .basket_l_items_l {
    margin-right: 40px;
    max-width: 280px;
    width: 100%
}

@media (max-width: 800px) {
    #basket .basket_l .basket_l_items .basket_l_items_l {
        margin:0 auto;
        margin-bottom: 20px
    }
}

#basket .basket_l .basket_l_items .basket_l_items_l a img {
    width: 100%
}

#basket .basket_l .basket_l_items .basket_l_items_r {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 800px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top {
        margin-bottom:20px
    }
}

@media (max-width: 500px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top .basket_l_items_r_top_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 18px;
    max-width: 300px;
    width: 100%;
    margin-right: 20px
}

@media (max-width: 1200px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top .basket_l_items_r_top_title {
        font-size:14px
    }
}

@media (max-width: 500px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top .basket_l_items_r_top_title {
        margin-bottom:20px;
        margin-right: 0;
        text-align: center
    }
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top .basket_l_items_r_top_sku {
    color: #0F1829;
    font-weight: 300;
    font-size: 12px
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_top .basket_l_items_r_top_sku span {
    font-weight: 600
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 500px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_bot {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_bot .cart_item_r_wrap_buy_b_wrap_inp {
        margin-right: 0
    }
}

@media (max-width: 500px) {
    #basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_bot .basket_l_items_r_bot_inp {
        margin-bottom:20px
    }
}

#basket .basket_l .basket_l_items .basket_l_items_r .basket_l_items_r_bot .basket_l_items_r_bot_price {
    color: #0F1829;
    font-weight: 700;
    font-size: 24px
}

.basket_r {
    max-width: 440px;
    width: 100%;
    border: 1px solid #CCDBF7;
    background: #fff;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

@media (max-width: 1200px) {
    .basket_r {
        max-width:unset;
        margin-bottom: 30px
    }
}

.basket_r .basket_r_top {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #CCDBF7;
    margin-bottom: 30px
}

@media (max-width: 500px) {
    .basket_r .basket_r_top {
        padding-left:15px;
        padding-right: 15px
    }
}

.basket_r .basket_r_top .basket_r_top_title {
    color: #CCDBF7;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 20px
}

.basket_r .basket_r_top .basket_r_top_lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #0F1829
}

.basket_r .basket_r_top .basket_r_top_lr .basket_r_top_lr_count {
    font-weight: 400;
    font-size: 24px
}

@media (max-width: 500px) {
    .basket_r .basket_r_top .basket_r_top_lr .basket_r_top_lr_count {
        font-size:14px
    }
}

.basket_r .basket_r_top .basket_r_top_lr .basket_r_top_lr_price {
    font-weight: 700;
    font-size: 24px
}

@media (max-width: 500px) {
    .basket_r .basket_r_top .basket_r_top_lr .basket_r_top_lr_price {
        font-size:14px
    }
}

.basket_r .basket_r_bot {
    padding-left: 30px;
    padding-right: 30px
}

@media (max-width: 500px) {
    .basket_r .basket_r_bot {
        padding-left:15px;
        padding-right: 15px
    }
}

.basket_r .basket_r_bot .basket_r_bot_title {
    color: #0F1829;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px
}

.basket_r .basket_r_bot .basket_r_bot_delivery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px
}

@media (max-width: 1200px) {
    .basket_r .basket_r_bot .basket_r_bot_delivery {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.basket_r .basket_r_bot .basket_r_bot_delivery input[type=radio] {
    display: none
}

.basket_r .basket_r_bot .basket_r_bot_delivery input[type=radio]:checked+label {
    background: var(--main-color-2)
}

.basket_r .basket_r_bot .basket_r_bot_delivery input[type=radio]:checked+label span {
    color: #fff
}

.basket_r .basket_r_bot .basket_r_bot_delivery label {
    border: 0.5px solid #0F1829;
    padding: 15px;
    max-width: 170px;
    width: 100%;
    cursor: pointer;
    border-radius: 10px
}

@media (max-width: 1200px) {
    .basket_r .basket_r_bot .basket_r_bot_delivery label {
        margin-right:20px
    }
}

@media (max-width: 500px) {
    .basket_r .basket_r_bot .basket_r_bot_delivery label {
        max-width:unset;
        margin-right: 0
    }
}

.basket_r .basket_r_bot .basket_r_bot_delivery label span {
    display: block
}

.basket_r .basket_r_bot .basket_r_bot_delivery label .label_var {
    color: #000;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 15px
}

.basket_r .basket_r_bot .basket_r_bot_delivery label .label_var_price {
    color: #000;
    font-weight: 600;
    font-size: 14px
}

.basket_r .basket_r_bot input[type=submit] {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    background: #E74824
}

#bascket_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1200px) {
    #bascket_cont {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#bascket_cont .bascket_cont_l {
    margin-right: 40px
}

@media (max-width: 1200px) {
    #bascket_cont .bascket_cont_l {
        margin-right:0;
        margin-bottom: 40px
    }
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items {
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    width: 100%;
    background: #F6F9FF
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 30px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px
}

@media (max-width: 700px) {
    #bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr .bascket_cont_l_items_gr_item input {
    border: 1px solid #0F1829;
    border-radius: 10px;
    background: #F6F9FF;
    width: 100%;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three label,#bascket_cont .bascket_cont_l .bascket_cont_l_items label {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-bottom: 20px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two {
    display: block
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item {
    margin-bottom: 60px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px
}

@media (max-width: 700px) {
    #bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio input {
    display: none
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio input:checked+label .cust_chek::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio label {
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio label .cust_chek {
    width: 25px;
    height: 25px;
    margin-right: 25px;
    background: #fff;
    border: 1px solid #0F1829;
    border-radius: 5px;
    position: relative
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio label span {
    display: block;
    color: #0F1829
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio label .label_var {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_two .bascket_cont_l_items_gr_item_radio label .label_var_price {
    font-weight: 300;
    font-size: 14px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three {
    display: block
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_item {
    margin-bottom: 20px
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px
}

@media (max-width: 700px) {
    #bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr .bascket_cont_l_items_gr_three_gr_l {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px
}

@media (max-width: 400px) {
    #bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr .bascket_cont_l_items_gr_three_gr_l {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr .bascket_cont_l_items_gr_three_gr_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr .bascket_cont_l_items_gr_three_gr_r .bascket_cont_l_items_gr_item {
    height: 100%
}

#bascket_cont .bascket_cont_l .bascket_cont_l_items .bascket_cont_l_items_gr_three .bascket_cont_l_items_gr_three_gr .bascket_cont_l_items_gr_three_gr_r .bascket_cont_l_items_gr_item textarea {
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 10px;
    resize: none;
    padding: 25px
}

#cabinet {
    margin-bottom: 50px
}

#cabinet .cabinet_title {
    font-weight: 600;
    font-size: 32px;
    color: #000;
    margin-bottom: 50px
}

#cabinet .cabinet_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px 40px
}

@media (max-width: 1000px) {
    #cabinet .cabinet_items {
        -ms-grid-columns:1fr 20px 1fr 20px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px 20px
    }
}

@media (max-width: 768px) {
    #cabinet .cabinet_items {
        -ms-grid-columns:1fr 20px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

#cabinet .cabinet_items a {
    padding: 30px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #0F1829;
    border-radius: 10px;
    background: #F5F8FF
}

@media (max-width: 500px) {
    #cabinet .cabinet_items a {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 20px
    }
}

#cabinet .cabinet_items a .cabinet_items_img {
    margin-right: 20px;
    max-width: 60px;
    width: 100%
}

@media (max-width: 500px) {
    #cabinet .cabinet_items a .cabinet_items_img {
        margin-right:0;
        margin-bottom: 20px
    }
}

#cabinet .cabinet_items a .cabinet_items_img svg {
    width: 100%;
    height: auto
}

@media (max-width: 1366px) {
    #cabinet .cabinet_items a .cabinet_items_img {
        max-width:40px
    }
}

#cabinet .cabinet_items a .cabinet_items_txt {
    color: #0F1829;
    font-weight: 600;
    font-size: 20px
}

@media (max-width: 1366px) {
    #cabinet .cabinet_items a .cabinet_items_txt {
        font-size:14px
    }
}

@media (max-width: 500px) {
    #cabinet .cabinet_items a .cabinet_items_txt {
        text-align:center
    }
}

body {
    position: relative
}

.popup_custom {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.popup_custom .popup_custom_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99
}

.popup_custom .popup_custom_window {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 920px;
    width: 100%;
    background: #CCDBF7;
    border-radius: 10px;
    padding: 60px;
    z-index: 100
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window {
        padding:40px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_cls {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 3
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_cls {
        right:10px;
        top: 10px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_cls:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: #0F1829;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg)
}

.popup_custom .popup_custom_window .popup_custom_window_cls:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: #0F1829;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg)
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w {
    position: relative;
    z-index: 2;
    width: 60%
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w {
        width:100%;
        text-align: center
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_title {
    color: #0F1829;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_title {
        font-size:18px;
        margin-bottom: 20px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_sub_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_sub_title {
        font-size:14px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul {
    margin-bottom: 60px
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul {
        margin-bottom:20px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul .popup_custom_window_baner_w_ul_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul .popup_custom_window_baner_w_ul_item .popup_custom_window_baner_w_ul_item_img {
    margin-right: 10px
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul .popup_custom_window_baner_w_ul_item .popup_custom_window_baner_w_ul_item_txt {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_ul .popup_custom_window_baner_w_ul_item .popup_custom_window_baner_w_ul_item_txt {
        font-size:14px
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_sub a {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px;
    padding: 30px 50px;
    background: #E74824
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_w .popup_custom_window_baner_w_sub a {
        padding:30px 10px;
        display: block;
        width: 100%
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%
}

@media (max-width: 800px) {
    .popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_img {
        display:none
    }
}

.popup_custom .popup_custom_window .popup_custom_window_baner .popup_custom_window_baner_img img {
    width: 100%;
    display: block;
    height: 100%
}

.popup_custom_active {
    display: block;
    opacity: 1
}

.rew_custom_b_img {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px
}

.rew_custom_b_img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px
}

.rew_custom_b_videos video {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 8px
}

.category .category_l {
    max-width: 300px;
    width: 100%;
    margin-right: 100px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 3
}

.category .category_l .category_l_cls {
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 20px;
    cursor: pointer
}

@media (max-width: 1100px) {
    .category .category_l .category_l_cls {
        display:block
    }
}

.category .category_l .category_l_cls:before {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 50%;
    height: 2px;
    background: #000
}

.category .category_l .category_l_cls:after {
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    width: 50%;
    height: 2px;
    background: #000
}

@media (max-width: 1100px) {
    .category .category_l {
        padding-left:15px;
        padding-right: 15px;
        position: fixed;
        left: -100%;
        top: 0;
        max-width: 100%;
        min-height: 100vh;
        background: #fff;
        padding-top: 50px
    }
}

.category .category_l .category_l_item .category_l_item_txt {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--main-color-1);
    position: relative;
    cursor: pointer
}

.category .category_l .category_l_item .category_l_item_txt .category_l_item_txt_slide_wrap {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

.category .category_l .category_l_item .category_l_item_txt .category_l_item_txt_slide_wrap_active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.category .category_l .category_l_item .category_l_item_txt .category_l_item_txt_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.category .category_l .category_l_item .category_l_item_txt .category_l_item_txt_slide:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #000;
    width: 100%;
    height: 2px;
    -webkit-transform: translateY(-50%) rotate(50deg);
    transform: translateY(-50%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.category .category_l .category_l_item .category_l_item_txt .category_l_item_txt_slide:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    background: #000;
    width: 100%;
    height: 2px;
    -webkit-transform: translateY(-50%) rotate(-50deg);
    transform: translateY(-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

.category .category_l .category_l_item .category_l_item_slide_slideup {
    display: none
}

.category .category_l .category_l_item .category_l_item_slide_slideup .category_l_item_slide:last-child {
    margin-bottom: 30px
}

.category .category_l .category_l_item .category_l_item_inp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 30px
}

.category .category_l .category_l_item .category_l_item_inp .category_l_item_inp_r {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 1px;
    background: #000;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.category .category_l .category_l_item .category_l_item_inp .category_l_item_inp_wrap {
    position: relative;
    width: 50%;
    margin-right: 25px
}

.category .category_l .category_l_item .category_l_item_inp .category_l_item_inp_wrap:last-child {
    margin-right: 0
}

.category .category_l .category_l_item .category_l_item_inp .category_l_item_inp_wrap input {
    width: 100%;
    padding-left: 30px;
    font-weight: 400;
    font-size: 14px;
    color: var(--main-color-1);
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    min-height: 32px
}

.category .category_l .category_l_item .category_l_item_inp .category_l_item_inp_wrap .category_l_item_inp_wrap_txt {
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 12px;
    color: #CCDBF7
}

.category .category_l_active {
    left: 0;
    height: 100%;
    overflow: auto;
}

.category_l_item_btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--main-color-1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease,transform 0.2s ease;
    font-family: inherit
}

.category_l_item_btn:hover {
    background-color: var(--main-color-1-hover);
    transform: scale(1.05)
}

.category_l_item_btn:last-child {
    margin-right: 0;
    background-color: #CCDBF7;
    color: var(--main-color-1)
}

.category_l_item_btn:last-child:hover {
    background-color: darken(#CCDBF7,10%)
}

.category_l_item_slide select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--main-color-1);
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer
}

.header_bot_search {
    position: relative
}

.search_ajax_block {
    display: none;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 100%;
    max-width: 560px;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
    text-align: center
}

.search_ajax_block .search_ajax_block_item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: solid 1px #000
}

.search_ajax_block .search_ajax_block_item .search_ajax_block_img {
    width: 20%;
    margin-right: 30px
}

.search_ajax_block .search_ajax_block_item .search_ajax_block_img img {
    width: 100%;
    display: block
}

.search_ajax_block_txt {
    width: 100%
}

.search_ajax_block_txt .search_ajax_block_txt_title {
    font-size: 18px;
    margin-bottom: 20px
}

.search_ajax_block_txt .search_ajax_block_txt_price {
    font-weight: bold;
    font-size: 18px
}

.header_bot_r_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.search_ajax_block_txt_art {
    font-size: 11px;
    margin-top: 5px
}

@media (max-width: 768px) {
    .header_bot_r {
        flex-direction:column-reverse
    }

    header .header_bot .header_bot_search {
        margin-right: 0;
        margin-top: 30px
    }

    .search_ajax_block .search_ajax_block_item {
        flex-direction: column
    }

    .search_ajax_block .search_ajax_block_item .search_ajax_block_img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 50%
    }

    .search_ajax_block_txt .search_ajax_block_txt_title {
        font-size: 14px
    }
}

.unique-selling-point {
    color: #0F1829;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 20px;
    width: 100%
}

.search-page {
}

.search_page_item {
    display: flex;
    padding: 40px;
    margin-bottom: 20px;
    border: solid 1px #000;
    border-radius: 10px
}

.search_page_item .search_page_item_img {
    max-width: 300px;
    margin-right: 20px;
    border-right: solid 1px #000;
    padding-right: 40px
}

.search_page_item .search_page_item_img img {
    width: 100%
}

.search_page_item .search_page_item_txt {
}

.search_page_item .search_page_item_txt .search_page_item_txt_title {
    margin-bottom: 20px
}

.search_page_item .search_page_item_txt .search_page_item_txt_desc {
}

.search-page_inp {
    display: flex;
    margin-bottom: 50px
}

.se_in_page {
}

.search-page_inp .se_in_page_btn {
    background: var(--main-color-2);
    color: #fff;
    border-radius: 0px 10px 10px 0px;
    border: none;
    padding-left: 30px;
    padding-right: 30px
}

.search-page_inp input.search-suggest {
    padding: 20px;
    border-radius: 10px 0px 0px 10px;
    width: 100%;
    border: solid 1px #000
}

@media (max-width: 768px) {
    .search_page_item {
        flex-direction:column
    }

    .search_page_item .search_page_item_img {
        max-width: unset;
        margin-right: 0;
        margin-bottom: 20px;
        padding-right: 0;
        border: none;
        border-bottom: solid 1px #000
    }
}

header .header_bot_l_mob_active .header_top_l {
    display: block
}

.cart_item_r_wrap_buy_b_wrap_btn {
    transition: all 0.3s ease !important;
    cursor: pointer
}

.cart-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease
}

.cart-btn-loading {
    opacity: 0.8;
    background: linear-gradient(90deg,var(--main-color-2) 0%,#3a7bd5 50%,var(--main-color-2) 100%);
    background-size: 200% auto;
    animation: loadingAnimation 1.5s infinite linear
}

.cart-btn-success {
    background: #4CAF50 !important
}

.cart-btn-error {
    background: #f44336 !important
}

@keyframes loadingAnimation {
    0% {
        background-position: 0% center
    }

    100% {
        background-position: 200% center
    }
}

@media (max-width: 400px) {
    .cart-btn {
        margin-right:0;
        margin-bottom: 20px;
        width: 100%
    }
}

.basket_l_items_r_bot_price_disc {
    font-size: 14px;
    color: #9c9c9c;
    position: relative;
    display: inline-block
}

.basket_l_items_r_bot_price_disc:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #9c9c9c;
    transform: translateY(-50%) rotate(0deg)
}

.header_wishlist {
    position: relative;
    margin: 0
}

.header_wishlist_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease
}

.header_wishlist_link:hover {
    color: #E74824;
    transform: translateY(-2px)
}

.header_wishlist_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 22px
}

.header_wishlist_cnt {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #E74824;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    animation: bounce 0.5s
}

@keyframes bounce {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }
}

@media (max-width: 768px) {
    .header_wishlist {
        margin:0 10px
    }
}

.popup_crt_over {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none
}

.popup_crt_over_active {
    display: block
}

.popup_crt {
    max-width: 924px;
    width: 100%;
    background: #fff;
    padding: 32px 57px;
    border: 1px solid #000000;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 99;
    display: none;
    max-height: 962px;
    overflow-y: auto;
    height: 100%
}

@media (max-width: 768px) {
    .popup_crt {
        max-height:100%;
        padding: 20px
    }
}

.popup_crt2 {
    max-width: 924px;
    width: 100%;
    background: #fff;
    padding: 32px 57px;
    border: 1px solid #000000;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 99;
    display: none;
    max-height: 461px;
    overflow-y: auto;
    height: 100%
}

.popup_crt_active {
    display: block
}

.popup_crt_cls {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
    cursor: pointer
}

.popup_crt_cls:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: #000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg)
}

.popup_crt_cls:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: #000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg)
}

.popup_crt .popup_crt_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 24px;
    color: #0F1829;
    margin-bottom: 40px
}

.popup_crt .popup_crt_cls_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_l {
    max-width: 277px;
    width: 100%;
    margin-right: 40px
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_l {
        margin:0 auto;
        margin-bottom: 20px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_l img {
    width: 100%
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
    font-family: Open Sans;
    font-weight: 300;
    font-size: 24px;
    color: #0F1829
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku span {
    font-weight: bold
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
        margin-bottom:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
        font-size:14px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
        margin-bottom:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
        font-size:18px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt .popup_crt_cls_item_r_cnt_price {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt .popup_crt_cls_item_r_cnt_price {
        font-size:18px
    }
}

.popup_crt .popup_crt_botuns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_botuns {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_l {
    max-width: 380px;
    width: 100%;
    height: 80px
}

@media (max-width: 917px) {
    .popup_crt .popup_crt_botuns .popup_crt_botuns_l {
        margin-right:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_botuns .popup_crt_botuns_l {
        margin-right:0;
        margin-bottom: 20px
    }
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_l a {
    border-radius: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #010101;
    background: #fff;
    border: 1px solid #000000
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_r {
    max-width: 380px;
    width: 100%;
    height: 80px
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_r a {
    border-radius: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: #E74824
}

.popup_crt .popup_crt_s_tov_pok {
    margin-top: 32px
}

.popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #0F1829;
    margin-bottom: 32px
}

.popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.popup_crt2 {
    background: #CCDBF7
}

@media (max-width: 540px) {
    .popup_crt2 {
        padding:20px
    }
}

.popup_crt2 .popup_crt_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829;
    margin-bottom: 70px
}

.popup_crt2 .popup_crt2_items {
    max-width: 534px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt2 .popup_crt2_items a {
    max-width: 100px;
    width: 100%;
    display: block
}

@media (max-width: 540px) {
    .popup_crt2 .popup_crt2_items a {
        max-width:50px
    }
}

.popup_crt2 .popup_crt2_items a img {
    width: 100%
}

.popup_crt2 .popup_crt2_btn_copy {
    max-width: 534px;
    width: 100%;
    margin: 0 auto;
    margin-top: 64px;
    border-radius: 10px;
    cursor: pointer;
    background: #E74824;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 20px
}

.popup_crt2 .popup_crt2_btn_copy span {
    margin-right: 45px
}

@media (max-width: 540px) {
    .popup_crt2 .popup_crt2_btn_copy span {
        margin-right:5px
    }

    .popup_crt2 .popup_crt2_btn_copy span img {
        width: 20px
    }
}

#page_thanks .page_thanks_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 36px;
    color: #0F1829;
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_title {
        font-size:24px;
        margin-bottom: 40px
    }
}

#page_thanks .page_thanks_fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #0F1829
}

@media (max-width: 1000px) {
    #page_thanks .page_thanks_fl {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l {
    max-width: 935px;
    width: 100%
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_nom {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_nom {
        font-size:24px;
        margin-bottom: 40px
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_stoim {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 38px
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_stoim {
        font-size:14px
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_txt {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 50px
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_txt {
        font-size:14px
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_img_wrap {
    width: 100%
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_img {
    margin-right: 36px
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_img {
        display:none
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_title {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    color: #0F1829
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_title {
        font-size:20px
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_elem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 768px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_elem .page_thanks_fl_l_bot_elem_l {
        width:49%
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_l .page_thanks_fl_l_bot .page_thanks_fl_l_bot_elem .page_thanks_fl_l_bot_elem_r {
    width: 49%
}

#page_thanks .page_thanks_fl .page_thanks_fl_r {
    max-width: 366px;
    width: 100%;
    color: #0F1829;
    margin-left: 130px
}

@media (max-width: 1000px) {
    #page_thanks .page_thanks_fl .page_thanks_fl_r {
        margin-left:0;
        max-width: unset;
        margin-top: 50px
    }
}

#page_thanks .page_thanks_fl .page_thanks_fl_r .page_thanks_fl_r_title {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 60px
}

#page_thanks .page_thanks_fl .page_thanks_fl_r .page_thanks_fl_r_txt {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 50px
}

#page_thanks .page_thanks_fl .page_thanks_fl_r .page_thanks_fl_r_map {
    width: 100%;
    height: 560px
}

.header_bot_menu ul {
    position: relative
}

.header_bot_menu ul li {
    position: relative
}

.header_bot_menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    z-index: 1000
}

.header_bot_menu ul li:hover ul {
    display: block
}

.header_bot_menu ul li ul li {
    padding: 10px;
    border-bottom: 1px solid #eee
}

#auth,#register {
    max-width: 920px;
    width: 100%;
    padding: 40px;
    border: 1px solid #0F1829;
    background: #F6F9FF;
    border-radius: 10px
}

@media (max-width: 768px) {
    #auth,#register {
        padding:20px
    }
}

#auth form,#register form {
    color: #0F1829;
    width: 100%;
    overflow: hidden
}

#auth form .auth_title,#register form .auth_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 30px
}

#auth form .auth_inp label,#register form .auth_inp label {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    display: block
}

#auth form .auth_inp .auth_inp_inp,#register form .auth_inp .auth_inp_inp {
    margin-bottom: 26px;
    position: relative
}

#auth form .auth_inp .auth_inp_inp input,#register form .auth_inp .auth_inp_inp input {
    height: 70px;
    width: 100%;
    background: unset;
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding-left: 30px
}

#auth form .auth_inp .auth_pas,#register form .auth_inp .auth_pas {
    position: relative;
    margin-bottom: 26px
}

#auth form .auth_inp .auth_pas input,#register form .auth_inp .auth_pas input {
    height: 70px;
    width: 100%;
    background: unset;
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding-left: 30px
}

#auth form .auth_inp .auth_pas .auth_pas_img,#register form .auth_inp .auth_pas .auth_pas_img {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    width: 34px;
    height: 20px
}

#auth form .auth_inp .auth_pas .auth_pas_img.active svg path,#register form .auth_inp .auth_pas .auth_pas_img.active svg path {
    fill: #4182F4
}

#auth form label,#register form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 26px
}

#auth form label input,#register form label input {
    margin-right: 10px
}

#auth form label span,#register form label span {
    color: #8f949f;
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    display: block
}

#auth form .last_pas,#register form .last_pas {
    color: #4182F4;
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    margin-bottom: 35px;
    display: block
}

#auth form .auth_bot,#register form .auth_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 45px
}

#auth form .auth_bot .auth_bot_l,#register form .auth_bot .auth_bot_l {
    padding-right: 18px;
    font-weight: 300;
    font-size: 14px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
    color: #8f949f
}

#auth form .auth_bot .auth_bot_r,#register form .auth_bot .auth_bot_r {
    width: 100%;
    height: 1px;
    background: #000000
}

#auth form .auth_soc,#register form .auth_soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px
}

#auth form .auth_soc a,#register form .auth_soc a {
    margin-right: 21px;
    display: block
}

#auth form .auth_soc a .auth_soc_item,#register form .auth_soc a .auth_soc_item {
    width: 48px;
    height: 48px
}

#auth form .auth_soc a .auth_soc_item img,#register form .auth_soc a .auth_soc_item img {
    width: 100%;
    display: block
}

#auth form .auth_btn input,#register form .auth_btn input {
    background: #E74824;
    color: #fff;
    padding-left: 48px;
    padding-right: 48px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer
}

#auth .register_fl,#register .register_fl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 26px 40px;
    margin-bottom: 40px
}

@media (max-width: 768px) {
    #auth .register_fl,#register .register_fl {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#auth .register_fl .register_fl_item label,#register .register_fl .register_fl_item label {
    margin-bottom: 20px;
    display: block
}

#auth .register_fl .register_fl_item input,#register .register_fl .register_fl_item input {
    height: 70px;
    width: 100%;
    background: unset;
    border: 1px solid #0F1829;
    border-radius: 10px;
    padding-left: 30px
}

#auth .register_fl .register_fl_item .register_fl_item_wrap,#register .register_fl .register_fl_item .register_fl_item_wrap {
    position: relative
}

#auth .gen_pasw,#register .gen_pasw {
    color: #4182F4;
    font-weight: 400;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 27px;
    cursor: pointer
}

.auth_inp_error {
    display: none;
    background: url("img/Rectangle 225.png") no-repeat;
    position: absolute;
    left: 98%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-size: 100% 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    padding-right: 50px;
    color: #E74824;
    font-weight: 400;
    font-size: 18px
}

@media (max-width: 1300px) {
    .auth_inp_error {
        background:unset;
        left: 0;
        top: 100%;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        padding: 0;
        width: 100%;
        font-size: 14px
    }
}

.auth_inp_error.active {
    display: block
}

#search_page .header_bot_search {
    max-width: 1035px;
    width: 100%;
    height: 95px;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    #search_page .header_bot_search {
        height:40px
    }
}

#search_page .header_bot_search:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("../img/search_page.png");
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: cover
}

@media (max-width: 768px) {
    #search_page .header_bot_search:before {
        width:16px;
        height: 16px;
        left: 15px
    }
}

#search_page .header_bot_search form {
    height: 100%;
    width: 100%
}

#search_page .header_bot_search input {
    width: 100%;
    height: 100%;
    padding-left: 82px;
    border: 1px solid #000;
    border-radius: 10px;
    background: rgba(255,255,255,0.8);
    font-size: 24px
}

@media (max-width: 768px) {
    #search_page .header_bot_search input {
        padding-left:40px;
        font-size: 14px
    }
}

#search_page .search_page_title {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 36px;
    color: #0F1829;
    margin-bottom: 37px
}

@media (max-width: 768px) {
    #search_page .search_page_title {
        font-size:18px
    }
}

#search_page .search_page_sub_title {
    max-width: 681px;
    width: 100%;
    font-weight: 400;
    font-size: 30px;
    color: #000;
    margin-bottom: 52px;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    #search_page .search_page_sub_title {
        font-size:15px
    }
}

#search_page .search_page_bot_text {
    margin-top: 60px;
    font-weight: 400;
    font-size: 25px;
    color: #000;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    #search_page .search_page_bot_text {
        font-size:14px
    }
}

#search_page .search_page_wrap {
    position: relative
}

#search_page .search_page_wrap .search_page_wrap_img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 508px;
    height: 478px
}

@media (max-width: 768px) {
    #search_page .search_page_wrap .search_page_wrap_img {
        width:100%;
        height: 100%;
        opacity: 0.5
    }
}

#search_page .search_page_wrap .search_page_wrap_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

#search_page .search_page_lnk {
    margin-top: 54px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 54px 1fr 54px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 54px;
    margin-bottom: 92px
}

@media (max-width: 1100px) {
    #search_page .search_page_lnk {
        grid-gap:25px
    }
}

@media (max-width: 768px) {
    #search_page .search_page_lnk {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#search_page .search_page_lnk .search_page_lnk_item {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F5F8FF;
    border: 1px solid #0F1829;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

@media (max-width: 1100px) {
    #search_page .search_page_lnk .search_page_lnk_item {
        padding:20px
    }
}

#search_page .search_page_lnk .search_page_lnk_item .search_page_lnk_item_img {
    width: 63px;
    height: auto;
    margin-right: 27px;
    -webkit-transition: inherit;
    transition: inherit
}

@media (max-width: 1100px) {
    #search_page .search_page_lnk .search_page_lnk_item .search_page_lnk_item_img {
        width:36px
    }
}

#search_page .search_page_lnk .search_page_lnk_item .search_page_lnk_item_img svg path {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#search_page .search_page_lnk .search_page_lnk_item .search_page_lnk_item_txt {
    color: #0F1829;
    font-weight: 600;
    font-size: 20px;
    -webkit-transition: inherit;
    transition: inherit
}

@media (max-width: 1100px) {
    #search_page .search_page_lnk .search_page_lnk_item .search_page_lnk_item_txt {
        font-size:14px
    }
}

#search_page .search_page_lnk .search_page_lnk_item:hover {
    background: #E74824
}

#search_page .search_page_lnk .search_page_lnk_item:hover .search_page_lnk_item_txt {
    color: #fff
}

#search_page .search_page_lnk .search_page_lnk_item:hover .search_page_lnk_item_img svg path {
    fill: #fff !important
}

#search_page .slide_search .slide_search_slider_wrap_arrow {
    position: relative
}

@media (max-width: 1550px) {
    #search_page .slide_search .slide_search_slider_wrap_arrow {
        padding-left:50px;
        padding-right: 50px
    }
}

@media (max-width: 768px) {
    #search_page .slide_search .slide_search_slider_wrap_arrow {
        padding:0;
        padding-bottom: 50px
    }
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows {
    position: absolute;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 24px;
    height: 50px;
    z-index: 10
}

@media (max-width: 768px) {
    #search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows {
        top:100%;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_l {
    left: 0px
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_l:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 49%;
    background: #000;
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: left center
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_l:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 51%;
    background: #000;
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: left center
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_r {
    right: -52px
}

@media (max-width: 1550px) {
    #search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_r {
        right:0
    }
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_r:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,0%) rotate(50deg);
    transform: translate(-50%,0%) rotate(50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

#search_page .slide_search .slide_search_slider_wrap_arrow .slide_search_slider_wrap_arrows_r:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #000;
    width: 20px;
    height: 2px;
    -webkit-transform: translate(-50%,-50%) rotate(-50deg);
    transform: translate(-50%,-50%) rotate(-50deg);
    -webkit-transform-origin: right center;
    transform-origin: right center
}

#search_page .slide_search .slide_search_title {
    color: #0F1829;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 32px
}

#search_page .slide_search .slide_search_slider_wrap {
    width: 100%;
    overflow: hidden;
    position: relative
}

#search_page .slide_search .slide_search_slider_wrap .slide_search_slider {
    margin-right: -50px;
    margin-left: 37px;
    width: 110%
}

@media (max-width: 1550px) {
    #search_page .slide_search .slide_search_slider_wrap .slide_search_slider {
        margin-left:0
    }
}

@media (max-width: 768px) {
    #search_page .slide_search .slide_search_slider_wrap .slide_search_slider {
        margin-left:0;
        margin-right: 0;
        width: 100%
    }
}

#search_page .slide_search .slide_search_slider_wrap .slide_search_slider .slide_search_slider_item {
    width: 100px;
    display: flex;
    margin-right: 50px
}

@media (max-width: 768px) {
    #search_page .slide_search .slide_search_slider_wrap .slide_search_slider .slide_search_slider_item {
        margin-right:0
    }
}

#search_page .slide_search .slide_search_slider_wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear,left top,right top,color-stop(88%,rgba(255,255,255,0)),to(rgb(255,255,255)));
    background: linear-gradient(90deg,rgba(255,255,255,0) 88%,rgb(255,255,255) 100%)
}

@media (max-width: 768px) {
    #search_page .slide_search .slide_search_slider_wrap:before {
        display:none
    }
}

.slide_search_slider .slick-list {
    display: flex
}

.slide_search_slider .slick-track {
    display: flex
}

.slide_search {
    margin-bottom: 50px
}

.slide_search_slider .category_r_items_item {
    height: 100%
}

.slide_search_slider .category_r_items_item a {
    height: 100%
}

.slide_search_slider .category_r_items_item a .category_r_items_item_img {
    height: 100%
}

.slide_search_slider .category_r_items_item a .category_r_items_item_img img {
    height: 100%;
    object-fit: contain
}

@media(max-width: 768px) {
    .slide_search_slider .category_r_items_item a .category_r_items_item_img img {
        object-fit:cover
    }

    .slide_search_slider .category_r_items_item {
        height: unset
    }

    .slide_search_slider .category_r_items_item a {
        height: unset
    }

    .slide_search_slider .category_r_items_item a .category_r_items_item_img {
        height: unset
    }
}

@media(max-width: 1000px) {
    .rec_item .category_r_items {
        grid-template-columns:repeat(2,1fr)
    }
}

@media(max-width: 768px) {
    .rec_item .category_r_items {
        grid-template-columns:repeat(1,1fr);
        grid-gap: 15px
    }
}

.header_wishlist {
    position: fixed;
    right: 10px;
    top: 70%;
    z-index: 9;
    display: none
}

.category_r_items_item a {
    display: block;
    height: 100%
}

.category_r_items_item a .category_r_items_item_img {
    height: 100%
}

.category_r_items_item a .category_r_items_item_img img {
    height: 100%;
    object-fit: contain
}

.basc_dop {
    margin-top: 60px
}

.basc_dop .basc_dop_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 24px
}

@media (max-width: 768px) {
    .basc_dop .basc_dop_top {
        font-size:14px
    }
}

.basc_dop .basc_dop_top .basc_dop_top_elem a {
    color: #3661B1
}

.basc_dop .basc_dop_top .basc_dop_top_elem a span {
    color: #E74824;
    margin-right: 15px
}

.basc_dop .basc_dop_top .basc_dop_top_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 600px) {
    .basc_dop .basc_dop_top .basc_dop_top_wrap {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px
}

@media (max-width: 600px) {
    .basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem {
        margin-right:0
    }
}

.basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem:last-child {
    margin-right: 0
}

.basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem a {
    color: #3661B1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block
}

.basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem svg {
    margin-left: 20px
}

@media (max-width: 768px) {
    .basc_dop .basc_dop_top .basc_dop_top_wrap .basc_dop_top_wrap_elem svg {
        width:20px
    }
}

.basc_dop .basc_dop_bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 70px
}

@media (max-width: 600px) {
    .basc_dop .basc_dop_bot {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.basc_dop .basc_dop_bot .basc_dop_bot_l {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    max-width: 920px;
    width: 100%;
    padding: 45px;
    background: #fffdff
}

@media (max-width: 1366px) {
    .basc_dop .basc_dop_bot .basc_dop_bot_l {
        grid-gap:20px
    }
}

@media (max-width: 1300px) {
    .basc_dop .basc_dop_bot .basc_dop_bot_l {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .basc_dop .basc_dop_bot .basc_dop_bot_l {
        padding:15px
    }
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem {
    width: 100%
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap .basc_dop_bot_l_elem_title_wrap_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 20px
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap .basc_dop_bot_l_elem_title_wrap_gues {
    cursor: pointer
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap .basc_dop_bot_l_elem_title_wrap_gues:hover .basc_dop_bot_l_elem_title_wrap_gues_txt {
    opacity: 1;
    top: 100%
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap .basc_dop_bot_l_elem_title_wrap_gues svg {
    margin-left: 15px
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_title_wrap .basc_dop_bot_l_elem_title_wrap_gues .basc_dop_bot_l_elem_title_wrap_gues_txt {
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    pointer-events: none;
    top: -100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #e74824;
    padding: 20px;
    border-radius: 10px;
    color: #fff
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_input {
    margin-top: 17px;
    margin-bottom: 21px
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_input input {
    width: 100%;
    height: 46px;
    padding-left: 30px;
    border-radius: 10px;
    border: 0.5px solid #0F1829
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_input input:placeholder {
    font-family: Open Sans;
    font-weight: 300;
    font-size: 16px
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_btn_wrap {
    max-width: 160px
}

.basc_dop .basc_dop_bot .basc_dop_bot_l .basc_dop_bot_l_elem .basc_dop_bot_l_elem_btn_wrap .basc_dop_bot_l_elem_btn {
    width: 100%;
    height: 58px;
    background: #E74824;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: Open Sans;
    font-weight: 400;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer
}

.basc_dop .basc_dop_bot .basc_dop_bot_r {
    max-width: 440px;
    width: 100%;
    padding: 50px 30px;
    border: 1px solid #CCDBF7;
    border-radius: 10px;
    margin-left: 40px
}

@media (max-width: 768px) {
    .basc_dop .basc_dop_bot .basc_dop_bot_r {
        margin-left:20px;
        padding: 30px 15px
    }
}

@media (max-width: 600px) {
    .basc_dop .basc_dop_bot .basc_dop_bot_r {
        margin-left:0;
        margin-top: 30px;
        max-width: unset
    }
}

.basc_dop .basc_dop_bot .basc_dop_bot_r .basc_dop_bot_r_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
    text-align: center
}

.basc_dop .basc_dop_bot .basc_dop_bot_r .basc_dop_bot_r_img {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer
}

.basc_dop .basc_dop_bot .basc_dop_bot_r .basc_dop_bot_r_img img {
    width: 100%
}

.popup_crt_over {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none
}

.popup_crt_over_active {
    display: block
}

.popup_crt {
    max-width: 924px;
    width: 100%;
    background: #fff;
    padding: 32px 57px;
    border: 1px solid #000000;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 99;
    display: none;
    max-height: 962px;
    overflow-y: auto;
    height: 100%
}

@media (max-width: 768px) {
    .popup_crt {
        max-height:100%;
        padding: 20px
    }
}

.popup_crt2 {
    max-width: 924px;
    width: 100%;
    background: #fff;
    padding: 32px 57px;
    border: 1px solid #000000;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 99;
    display: none;
    max-height: 461px;
    overflow-y: auto;
    height: 100%
}

.popup_crt_active {
    display: block
}

.popup_crt_cls {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
    cursor: pointer
}

.popup_crt_cls:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: #000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg)
}

.popup_crt_cls:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    background: #000;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg)
}

.popup_crt .popup_crt_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 24px;
    color: #0F1829;
    margin-bottom: 40px
}

.popup_crt .popup_crt_cls_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_l {
    max-width: 277px;
    width: 100%;
    margin-right: 40px
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_l {
        margin:0 auto;
        margin-bottom: 20px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_l img {
    width: 100%
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
    font-family: Open Sans;
    font-weight: 300;
    font-size: 24px;
    color: #0F1829
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku span {
    font-weight: bold
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
        margin-bottom:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_sku {
        font-size:14px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829
}

@media (max-width: 768px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
        margin-bottom:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_name {
        font-size:18px
    }
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt .popup_crt_cls_item_r_cnt_price {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_cls_item .popup_crt_cls_item_r .popup_crt_cls_item_r_cnt .popup_crt_cls_item_r_cnt_price {
        font-size:18px
    }
}

.popup_crt .popup_crt_botuns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_botuns {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_l {
    max-width: 380px;
    width: 100%;
    height: 80px
}

@media (max-width: 917px) {
    .popup_crt .popup_crt_botuns .popup_crt_botuns_l {
        margin-right:20px
    }
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_botuns .popup_crt_botuns_l {
        margin-right:0;
        margin-bottom: 20px
    }
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_l a {
    border-radius: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #010101;
    background: #fff;
    border: 1px solid #000000
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_r {
    max-width: 380px;
    width: 100%;
    height: 80px
}

.popup_crt .popup_crt_botuns .popup_crt_botuns_r a {
    border-radius: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: #E74824
}

.popup_crt .popup_crt_s_tov_pok {
    margin-top: 32px
}

.popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 18px;
    color: #0F1829;
    margin-bottom: 32px
}

.popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px
}

@media (max-width: 575px) {
    .popup_crt .popup_crt_s_tov_pok .popup_crt_s_tov_pok_items {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

.popup_crt2 {
    background: #CCDBF7
}

@media (max-width: 540px) {
    .popup_crt2 {
        padding:20px
    }
}

.popup_crt2 .popup_crt_title {
    font-family: Open Sans;
    font-weight: 600;
    font-size: 32px;
    color: #0F1829;
    margin-bottom: 70px
}

.popup_crt2 .popup_crt2_items {
    max-width: 534px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup_crt2 .popup_crt2_items a {
    max-width: 100px;
    width: 100%;
    display: block
}

@media (max-width: 540px) {
    .popup_crt2 .popup_crt2_items a {
        max-width:50px
    }
}

.popup_crt2 .popup_crt2_items a img {
    width: 100%
}

.popup_crt2 .popup_crt2_btn_copy {
    max-width: 534px;
    width: 100%;
    margin: 0 auto;
    margin-top: 64px;
    border-radius: 10px;
    cursor: pointer;
    background: #E74824;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-family: Open Sans;
    font-weight: 600;
    font-size: 20px
}

.popup_crt2 .popup_crt2_btn_copy span {
    margin-right: 45px
}

@media (max-width: 540px) {
    .popup_crt2 .popup_crt2_btn_copy span {
        margin-right:5px
    }

    .popup_crt2 .popup_crt2_btn_copy span img {
        width: 20px
    }
}

.pay_logo img {
    width: 100%
}

.cart_item_r_nal-status-enough:before {
    background: #ffdd00 !important
}

.cart_item_r_nal-status-few:before {
    background: #ff9200 !important
}

.cart_item_r_nal-status-order:before {
}

.cart_item_r_nal-status-none:before {
    background: red !important
}

.pres_video_box_items iframe {
    height: 100%;
    max-height: 340px
}

.video_title {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px
}

.video_title .video_title_item {
    width: 100%
}

.video_title .video_title_item_title {
    font-weight: bold
}

.video_title .video_title_item_date {
    text-align: end;
    font-size: 12px;
    color: #787878;
    margin-left: 10px
}

.pres_video_box_items .video_desc {
    font-size: 13px
}

.main_slider_lr_l_slider {
}

.main_slider_lr_l .slick-dotted.slick-slider {
    margin-bottom: 0
}

@media(max-width: 768px) {
    .main_slider_lr_l .slick-dotted.slick-slider {
        margin-bottom:30px
    }
}

.main_slider_lr_l_slider img {
    height: 100%
}

.main_slider_lr_l_slider .slick-list {
    height: 100%;
    overflow: hidden;
    border-radius: 10px
}

.main_slider_lr_l_slider .slick-list .slick-track {
    height: 100%
}

.main_slider_lr_l_slider .slick-list .slick-track .main_slider_lr_l_slider_item {
    height: 100%
}

.main_slider_lr_r a {
}

.main_slider_lr_r a .main_slider_lr_r_item {
}

.main_slider_lr_r a .main_slider_lr_r_item img {
}

.pres_news_box_item_rigt_desc h2,.pres_news_box_item_rigt_desc h3,.pres_news_box_item_rigt_desc h4,.pres_news_box_item_rigt_desc h5,.pres_news_box_item_rigt_desc p {
    font-size: 14px;
    font-weight: normal
}

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    padding: 20px;
    border: 1px solid #0F1829;
    background: #F6F9FF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #0F1829
}

.cookie-content a {
    color: #E74824;
    text-decoration: underline
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease
}

.cookie-btn.btn-primary {
    background: #E74824;
    color: #fff;
    border: none
}

.cookie-btn.btn-primary:hover {
    background: #d14020
}

.cookie-btn.btn-secondary {
    background: #f8f9fa;
    color: #0F1829;
    border: 1px solid #ddd
}

.cookie-btn.btn-secondary:hover {
    background: #e9ecef
}

.privacy-policy {
    margin: 0 auto;
    padding: 30px 15px;
    line-height: 1.6;
    color: #000
}

.privacy-policy h1 {
    font-size: 28px;
    color: #0F1829;
    margin-bottom: 30px;
    font-weight: 600
}

.privacy-policy h2 {
    font-size: 22px;
    color: #000;
    margin: 30px 0 15px;
    font-weight: 500
}

.privacy-policy h3 {
    font-size: 18px;
    color: #0F1829;
    margin: 25px 0 10px;
    font-weight: 500
}

.privacy-policy p {
    margin-bottom: 15px;
    font-size: 16px
}

.privacy-policy ul {
    margin-bottom: 20px;
    padding-left: 20px
}

.privacy-policy li {
    margin-bottom: 8px;
    font-size: 15px
}

.privacy-policy a {
    color: #E74824;
    text-decoration: none;
    transition: color 0.3s
}

.privacy-policy a:hover {
    color: #d14020;
    text-decoration: underline
}

.privacy-policy .section {
    margin-bottom: 40px
}

#partneram_design {
    font-family: Open Sans;
    font-style: normal
}

#partneram_design .block_1_l_wrap {
    max-width: 646px
}

#partneram_design .wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px
}

#partneram_design .wrapper .block_1 {
    margin-bottom: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #0F1829;
    border-radius: 44px;
    justify-content: space-between;
    outline: 1px solid #CECECE;
    /* overflow: hidden; */
}

@media (max-width: 768px) {
    #partneram_design .wrapper .block_1 {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px
    }
}

#partneram_design .wrapper .block_1 .block_1_l {
    padding: 45px;
    color: #fff
}

@media (max-width: 768px) {
    #partneram_design .wrapper .block_1 .block_1_l {
        padding:20px;
        margin-bottom: 15px
    }
}

#partneram_design .wrapper .block_1 .block_1_l .block_1_l_wrap .block_1_l_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 34px
}

@media (max-width: 1100px) {
    #partneram_design .wrapper .block_1 .block_1_l .block_1_l_wrap .block_1_l_title {
        font-size:22px
    }
}

#partneram_design .wrapper .block_1 .block_1_l .block_1_l_wrap .block_1_l_desc {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px
}

#partneram_design .wrapper .block_1 .block_1_r {
    max-width: 574px;
    width: 100%;
    border-radius: 44px;
    /* overflow:hidden; */
}

@media (max-width: 768px) {
    #partneram_design .wrapper .block_1 .block_1_r {
        max-width:unset;
        background: inherit
    }
}

#partneram_design .wrapper .block_1 .block_1_r img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    /* object-fit: cover; */
}

#partneram_design .wrapper #block_2 {
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_2 {
        margin-bottom:40px
    }
}

#partneram_design .wrapper #block_2 .block_2_gr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px 16px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_2 .block_2_gr {
        -ms-grid-columns:1fr 16px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 450px) {
    #partneram_design .wrapper #block_2 .block_2_gr {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item {
    -webkit-box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    border-radius: 44px;
    background: #FEFEFE;
    padding: 35px;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item:hover {
    background: #E74824;
    -webkit-transform: rotate(2deg) translateY(-10px);
    transform: rotate(2deg) translateY(-10px)
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item:hover .block_2_gr_item_desc {
    color: #fff
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item:hover .block_2_gr_item_img svg path {
    stroke: #fff
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item:hover .block_2_gr_item_img_fix svg path {
    fill: #fff
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_img {
    width: 34px;
    height: auto;
    margin-bottom: 12px
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_img svg path {
    -webkit-transition: 0.5s;
    transition: 0.5s
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_img {
        margin:0 auto;
        margin-bottom: 12px
    }
}

#partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_desc {
    color: #1E1E1E;
    font-weight: 600;
    font-size: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s
}

@media (max-width: 1100px) {
    #partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_desc {
        font-size:18px
    }
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_2 .block_2_gr .block_2_gr_item .block_2_gr_item_desc {
        font-size:14px
    }
}

#partneram_design .wrapper #block_3 {
    -webkit-box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    padding-top: 34px;
    padding-left: 118px;
    padding-right: 118px;
    border-radius: 44px;
    margin-bottom: 80px;
    background: #FEFEFE
}

@media (max-width: 1000px) {
    #partneram_design .wrapper #block_3 {
        padding:40px
    }
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_3 {
        padding:20px;
        margin-bottom: 40px
    }
}

#partneram_design .wrapper #block_3 .block_2_title {
    margin-bottom: 34px
}

#partneram_design .wrapper #block_3 .block_3_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_3 .block_3_wrap {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 692px;
    width: 100%
}

#partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_l .block_3_wrap_l_item {
    margin-bottom: 34px;
    width: 33%;
    font-weight: 400;
    font-size: 24px;
    color: #1E1E1E
}

@media (max-width: 1000px) {
    #partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_l .block_3_wrap_l_item {
        width:48%
    }
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_l .block_3_wrap_l_item {
        text-align:center;
        font-size: 14px;
        margin-bottom: 18px
    }
}

#partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_r .block_3_wrap_r_btn a {
    padding-right: 50px;
    font-weight: 700;
    font-size: 24px;
    position: relative
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_r .block_3_wrap_r_btn a {
        font-size:14px
    }
}

#partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_r .block_3_wrap_r_btn a:before {
    position: absolute;
    content: "";
    right: 20px;
    top: 51%;
    background: #fff;
    width: 13px;
    height: 2px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: right;
    transform-origin: right
}

#partneram_design .wrapper #block_3 .block_3_wrap .block_3_wrap_r .block_3_wrap_r_btn a:after {
    position: absolute;
    content: "";
    right: 20px;
    top: 49%;
    background: #fff;
    width: 13px;
    height: 2px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: right;
    transform-origin: right
}

#partneram_design .wrapper #block_5 {
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_5 {
        margin-bottom:40px
    }
}

#partneram_design .wrapper #block_5 .block_2_title {
    margin-bottom: 44px
}

#partneram_design .wrapper #block_5 .block_5_desc {
    max-width: 934px;
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 34px;
    color: #1E1E1E
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_5 .block_5_desc {
        font-size:18px
    }
}

#partneram_design .wrapper #block_5 .block_5_gr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px 0px;
    grid-auto-rows: 1fr
}

@media (max-width: 1100px) {
    #partneram_design .wrapper #block_5 .block_5_gr {
        -ms-grid-columns:1fr 0px 1fr;
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_5 .block_5_gr {
        -ms-grid-columns:1fr;
        grid-template-columns: 1fr
    }
}

#partneram_design .wrapper #block_5 .block_5_gr .block_5_gr_item {
    padding-left: 34px;
    margin-right: 16px;
    border-left: solid 2px #E74824;
    color: #1E1E1E;
    font-weight: 400;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_5 .block_5_gr .block_5_gr_item {
        font-size:14px
    }
}

#partneram_design .wrapper #block_6 {
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 {
        margin-bottom:40px
    }
}

#partneram_design .wrapper #block_6 .block_2_title {
    margin-bottom: 57px
}

#partneram_design .wrapper #block_6 .block_6_items {
    position: relative;
    height: 360px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 .block_6_items {
        height:auto
    }
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item {
    position: absolute;
    top: 0;
    width: 25%;
    min-height: 191px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1E1E1E;
    font-weight: 600;
    font-size: 20px;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    box-shadow: 0px 4px 10px 0px rgba(38,48,67,0.2509803922);
    background: #FEFEFE;
    border-radius: 40px;
    text-align: center
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 .block_6_items .block_6_items_item {
        font-size:14px;
        min-height: 100px;
        padding-left: 70px;
        padding-right: 20px
    }
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item .block_6_items_item_num {
    position: absolute;
    left: 20px;
    top: 15px;
    width: 52px;
    height: 52px;
    color: #fff;
    background: #101829;
    font-weight: 700;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 .block_6_items .block_6_items_item .block_6_items_item_num {
        top:50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item_1 {
    left: 0;
    width: 35%
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item_2 {
    left: 21%;
    top: 40%;
    width: 35%;
    padding-left: 77px;
    padding-right: 77px
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item_3 {
    left: 42%;
    width: 35%
}

#partneram_design .wrapper #block_6 .block_6_items .block_6_items_item_4 {
    width: 35%;
    left: 63%;
    top: 40%
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 .block_6_items .block_6_items_item {
        position:relative;
        left: unset;
        top: unset;
        width: 100%;
        margin-bottom: 15px
    }
}

#partneram_design .wrapper #block_7 {
    background: #001773;
    padding-top: 44px;
    padding-bottom: 86px;
    padding-left: 120px;
    padding-right: 120px;
    margin-bottom: 80px;
    position: relative;
    border-radius: 40px;
    position: relative;
    overflow: hidden
}

#partneram_design .wrapper #block_7:before {
    position: absolute;
    right: 45px;
    bottom: 0%;
    -webkit-transform: translate(0%,1%);
    transform: translate(0%,1%);
    content: url("../img/ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â»ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ 1.png")
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 {
        padding-left:10px;
        padding-right: 10px;
        margin-bottom: 40px
    }
}

#partneram_design .wrapper #block_7 .block_7_form {
    position: relative;
    z-index: 1
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_title {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 61px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .block_7_form_title {
        font-size:22px;
        margin-bottom: 30px
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l {
    max-width: 338px;
    width: 100%;
    margin-right: 17px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l {
        max-width:unset;
        margin-right: 0;
        margin-bottom: 20px
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l input {
    border: 2px solid #E74824;
    background: #fff;
    border-radius: 44px;
    height: 54px;
    width: 100%;
    padding: 14px 31px;
    display: block;
    margin-bottom: 15px;
    font-size: 14px
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l input:last-child {
    margin-bottom: 0
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_r {
    max-width: 454px;
    width: 100%
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_r {
        max-width:unset
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_r textarea {
    width: 100%;
    height: 100%;
    border: 2px solid #E74824;
    background: #fff;
    border-radius: 24px !important;
    padding: 19px 24px;
    resize: none;
    font-size: 14px
}

#partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap {
    display: inline-block;
    position: relative
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap {
        width:100%
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap .btn_partneram {
    font-weight: 700;
    font-size: 24px;
    position: relative;
    border: none;
    outline: none
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap .btn_partneram {
        max-width:unset;
        width: 100%;
        font-size: 16px
    }
}

#partneram_design #block_4 {
    overflow: hidden;
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #partneram_design #block_4 {
        margin-bottom:40px
    }
}

#partneram_design #block_4 .block_4_slider {
    max-width: 1260px;
    width: 100%;
    padding-bottom: 34px
}

#partneram_design #block_4 .block_4_slider .slick-list {
    overflow: unset;
    padding: 0 5% 0 0;
    position: relative
}

@media (max-width: 768px) {
    #partneram_design #block_4 .block_4_slider .slick-list {
        padding:0
    }
}

#partneram_design #block_4 .block_4_slider .slick-list:before {
    position: absolute;
    content: "";
    left: -100%;
    width: 100%;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: 9
}

#partneram_design #block_4 .block_4_slider .slick-dots li.slick-active button:before {
    font-size: 25px
}

#partneram_design #block_4 .block_4_slider .slick-dots li button:before {
    font-size: 25px
}

#partneram_design #block_4 .block_4_slider .block_4_slider_item {
    display: block;
    border-radius: 44px;
    overflow: hidden;
    margin-right: 44px;
        
}
#partneram_design #block_4 .block_4_slider .block_4_slider_item.slick-active{
box-shadow: 0px 4px 10px 0px #26304340;
}

@media (max-width: 768px) {
    #partneram_design #block_4 .block_4_slider .block_4_slider_item {
        margin-right:0
    }
}

#partneram_design #block_4 .block_4_slider .block_4_slider_item img {
    width: 100%
}

#partneram_design .block_2_title {
    color: #E74824;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 44px
}

@media (max-width: 768px) {
    #partneram_design .block_2_title {
        font-size:22px;
        margin-bottom: 20px !important
    }
}

#partneram_design .btn_partneram {
    background: #E74824;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative
}

@media (max-width: 768px) {
    #partneram_design .btn_partneram {
        font-size:16px
    }
}

#partneram_design .btn_partneram:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

#partneram_design .block_4_slider {
}

#partneram_design .block_4_slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
    margin-right: 12px;
    transition: .5s
}

#partneram_design .block_4_slider .slick-dots .slick-active {
    width: 24px;
    height: 24px
}

#partneram_design .block_4_slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #DEDEDE;
    border-radius: 50%
}

#partneram_design .block_4_slider .slick-dots li button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    width: 50%;
    background: black;
    height: 50%;
    transform: translate(-50%,-50%);
    content: '';
    text-align: center;
    opacity: 0;
    color: #0F1829;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: .5s
}

#partneram_design .block_4_slider .slick-dots .slick-active button:before {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    width: 50%;
    background: black;
    height: 50%;
    transform: translate(-50%,-50%);
    content: '';
    text-align: center;
    opacity: 1;
    color: #0F1829;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#partneram_design .block_4_slider .slick-dots li:hover {
    width: 24px;
    height: 24px
}

#partneram_design .block_4_slider .slick-dots li:hover button:before {
    opacity: 1
}

.sctol_top {
    opacity: 0;
    position: fixed;
    border-radius: 50%;
    right: 57px;
    width: 50px;
    height: 50px;
    background: #E74824;
    bottom: -150px;
    border: solid 1px #E74824;
    transform: rotate(-90deg);
    transition: .5s;
    cursor: pointer
}

.sctol_top:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    background: #fff;
    left: 50%;
    top: 49%;
    transform: translate(-50%,-50%) rotate(-45deg);
    transform-origin: center right;
    transition: .5s
}

.sctol_top:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    background: #fff;
    left: 50%;
    top: 51%;
    transform: translate(-50%,-50%) rotate(45deg);
    transform-origin: center right;
    transition: .5s
}

.sctol_top:hover {
    background: #fff
}

.sctol_top:hover:before,.sctol_top:hover:after {
    background: #E74824
}

.sctol_top_active {
    opacity: 1;
    bottom: 150px
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_6 .block_6_items .block_6_items_item_2 {
        padding-left:0;
        padding-right: 0
    }
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl,#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl a {
    color: #fff;
    align-items: center
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l {
    margin-right: 66px
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_r_title {
    font-weight: 600;
    font-size: 24px
}

#partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_r_txt {
    font-weight: 400;
    font-size: 24px
}

#partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap {
    max-width: 338px;
    width: 100%
}

#partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap .btn_partneram {
    width: 100%
}

@media (max-width: 768px) {
    #partneram_design .wrapper #block_7 .block_7_form form .block_7_form_fl .block_7_form_fl_l {
        margin-right:0px
    }

    #partneram_design .wrapper #block_7 .block_7_form form .btn_partneram_wrap {
        max-width: unset
    }
}

.basket_fixed {
    background: #fff;
    position: fixed;
    transition: .5s;
    right: -100%;
    top: 300px;
    z-index: 999999;
    border-top: 1px solid #E74824;
    border-left: 1px solid #E74824;
    border-bottom: 1px solid #E74824;
    border-top-left-radius: 99px;
    border-bottom-left-radius: 99px;
    padding: 20px;
    overflow: hidden
}

.basket_fixed_active {
    right: 0
}

.basket_fixed .basket_fixed_wrap {
    display: flex;
    align-items: center
}

.basket_fixed .basket_fixed_a {
}

.basket_fixed .basket_fixed_wrap-hover {
    position: absolute;
    right: -100%;
    top: 0;
    background: #E74824;
    transition: .5s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border-top-left-radius: 99px;
    border-bottom-left-radius: 99px;
    padding: 20px
}

.basket_fixed .basket_fixed_wrap .basket_fixed_img,.basket_fixed .basket_fixed_wrap-hover .basket_fixed_img {
    width: 34px;
    height: 34px;
    margin-right: 8px
}

.basket_fixed .basket_fixed_wrap .basket_fixed-cnt,.basket_fixed .basket_fixed_wrap-hover .basket_fixed-cnt {
    display: flex;
    color: #E74824;
    font-weight: 400;
    font-size: 16px
}

.basket_fixed .basket_fixed_wrap-hover .basket_fixed-cnt {
    color: #fff
}

.basket_fixed:hover .basket_fixed_wrap-hover {
    right: 0
}

@media (max-width: 768px) {
    .basket_fixed .basket_fixed-cnt_sp {
        display:none
    }
}

#shaga3 {
    font-family: Open Sans;
    padding-top: 34px;
    padding-right: 54px;
    padding-left: 54px;
    padding-bottom: 86px;
    border: 1px solid #CECECE;
    border-radius: 40px;
    margin-bottom: 44px;
    background: #fff;
}

@media (max-width: 768px) {
    #shaga3 {
        padding: 20px;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_one {
    margin-bottom: 34px;
}

#shaga3 .shaga3_wrap .shaga3_wrap_one .shaga3_wrap_one_title {
    font-weight: 600;
    font-size: 36px;
    color: #E74824;
    max-width: 507px;
    width: 100%;
}

@media (max-width: 768px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_one .shaga3_wrap_one_title {
        font-size: 24px;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_two {
    margin-bottom: 48px;
}

#shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 55px 1fr 55px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 55px;
}

@media (max-width: 768px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items {
        grid-gap: 20px;
    }
}

@media (max-width: 600px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items .shaga3_wrap_two_items_item {
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 145px;
    padding: 24px;
}

@media (max-width: 1024px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items .shaga3_wrap_two_items_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items .shaga3_wrap_two_items_item .shaga3_wrap_two_items_item_num {
    max-width: 42px;
    width: 100%;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: #E74824;
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
    margin-right: 12px;
}

@media (max-width: 1024px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items .shaga3_wrap_two_items_item .shaga3_wrap_two_items_item_num {
        margin-right: 0;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        top: 0;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_two .shaga3_wrap_two_items .shaga3_wrap_two_items_item .shaga3_wrap_two_items_item_txt {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
}

#shaga3 .shaga3_wrap .shaga3_wrap_three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_three {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_l {
    width: 50%;
}

@media (max-width: 1024px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_l {
        width: 100%;
        margin-bottom: 30px;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_l .shaga3_wrap_three_l_title {
    font-weight: 600;
    font-size: 24px;
    color: #E74824;
    margin-bottom: 24px;
}

#shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_l .shaga3_wrap_three_l_desc {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

#shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_r {
    max-width: 546px;
    width: 100%;
}

@media (max-width: 1024px) {
    #shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_r {
        max-width: 100%;
    }
}

#shaga3 .shaga3_wrap .shaga3_wrap_three .shaga3_wrap_three_r img {
    width: 100%;
}

@media (max-width: 768px) {
    #pres_centr .pres_centr_box .pres_centr_box_up .pres_centr_box_up_items {
        display: flex;
        flex-direction: column;
    }

    #pres_centr .pres_centr_box .pres_centr_box_bot #pres_catalog_box .pres_catalog_box_items {
        grid-template-columns: 1fr;
    }
}

.search_page_copy {
    padding-top: 44px;
}

.breadcrmbs ul {
    flex-wrap: wrap;
}

.breadcrmbs ul li:last-child {
    color: #E74824;
}

@media (max-width: 768px) {
    .rec_item {
        margin-top: 55px;
    }
}

#about_2 {
  font-family: Open Sans;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  #about_2 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#about_2 .about_2_title {
  color: #E74824;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  #about_2 .about_2_title {
    font-size: 22px;
  }
}
#about_2 .about_2_screen_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_1 {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
#about_2 .about_2_screen_1 .about_2_screen_1_l {
  width: 46%;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_1 .about_2_screen_1_l {
    width: 100%;
  }
}
#about_2 .about_2_screen_1 .about_2_screen_1_l .about_2_screen_1_l_desc {
  font-weight: 400;
  font-size: 16px;
  color: #1E1E1E;
}
#about_2 .about_2_screen_1 .about_2_screen_1_r {
  width: 45%;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_1 .about_2_screen_1_r {
    width: 100%;
    margin-top: 40px;
  }
}
#about_2 .about_2_screen_1 .about_2_screen_1_r img {
  display: block;
  width: 100%;
}
#about_2 .about_2_screen_2 {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_2 {
    margin-bottom: 40px;
  }
}
#about_2 .about_2_screen_2 .about_2_screen_2_items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
@media (max-width: 1024px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items {
    grid-gap: 20px;
  }
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
#about_2 .about_2_screen_2 .about_2_screen_2_items .about_2_screen_2_items_elem {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 34px 60px;
  border-radius: 44px;
  color: #1E1E1E;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

#about_2 .about_2_screen_2 .about_2_screen_2_items .about_2_screen_2_items_elem:nth-child(2n){
    padding-left: 34px;
    padding-right: 34px;
}
@media (max-width: 1024px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items .about_2_screen_2_items_elem {
    padding: 34px;
  }
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items .about_2_screen_2_items_elem:last-child {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
}
@media (max-width: 560px) {
  #about_2 .about_2_screen_2 .about_2_screen_2_items .about_2_screen_2_items_elem:last-child {
    -ms-grid-column: unset;
        grid-column-start: unset;
    grid-column-end: unset;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor {
  border: 1px solid #CECECE;
  border-radius: 40px;
  padding: 34px;
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor {
    padding: 20px;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_wrap {
    max-width: 80%;
    width: 100%;
  }
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_wrap {
    max-width: 100%;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_l {
  max-width: 505px;
  width: 100%;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_l .about_2_screen_3_accor_top_l_title {
  color: #E74824;
  font-weight: 600;
  font-size: 20px;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c {
  max-width: 656px;
  width: 100%;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem:first-child {
  margin-right: 12px;
}
@media (max-width: 600px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }

}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem .about_2_screen_3_accor_top_c_wrap_elem_img {
  width: 34px;
  height: 34px;
  margin-right: 14px;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem .about_2_screen_3_accor_top_c_wrap_elem_txt {
  color: #1E1E1E;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r {
    margin-top: 20px;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli {
  position: relative;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  border: solid 3px #E74824;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli:hover {
  background: #E74824;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli:hover .about_2_screen_3_accor_top_r_eli_arrow:before, #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli:hover .about_2_screen_3_accor_top_r_eli_arrow:after {
  background: #fff;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli .about_2_screen_3_accor_top_r_eli_arrow {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform: rotate(180deg);
  transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli .about_2_screen_3_accor_top_r_eli_arrow:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    background: #E74824;
    left: 45%;
    top: 53%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform-origin: center right;
    /* transform-origin: center; */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 20px;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli .about_2_screen_3_accor_top_r_eli_arrow:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 3px;
    background: #E74824;
    left: 45%;
    top: 47%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform-origin: center right;
    /* transform-origin: center; */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 20px;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_r .about_2_screen_3_accor_top_r_eli_active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot {
  display: none;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  padding-top: 44px;
  padding-bottom: 44px;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr .about_2_screen_3_accor_bot_gr_elem:last-child {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }
}
@media (max-width: 500px) {
  #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr .about_2_screen_3_accor_bot_gr_elem:last-child {
    -ms-grid-column: unset;
        grid-column-start: unset;
    grid-column-end: unset;
  }
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr .about_2_screen_3_accor_bot_gr_elem .about_2_screen_3_accor_bot_gr_elem_title {
  color: #1E1E1E;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr .about_2_screen_3_accor_bot_gr_elem .about_2_screen_3_accor_bot_gr_elem_desc ul {
  list-style-position: inside;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_bot .about_2_screen_3_accor_bot_gr .about_2_screen_3_accor_bot_gr_elem .about_2_screen_3_accor_bot_gr_elem_desc ul li {
  color: #1E1E1E;
  font-weight: 400;
  font-size: 16px;
}
#about_2 .about_2_screen_4 {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1270px) {
  #about_2 .about_2_screen_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_l {
  max-width: 560px;
  width: 100%;
  margin-right: 40px;
  color: #1E1E1E;
}
@media (max-width: 1270px) {
  #about_2 .about_2_screen_4 .about_2_screen_4_l {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: unset;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_l .about_2_screen_4_l_title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}
#about_2 .about_2_screen_4 .about_2_screen_4_l .about_2_screen_4_l_desc {
  font-weight: 400;
  font-size: 16px;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r {
  width: 100%;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 34px;
  border-radius: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_l {
  margin-right: 34px;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_l {
    margin-bottom: 34px;
    margin-right: 0;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_l .about_2_screen_4_r_wrap_l_img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_l .about_2_screen_4_r_wrap_l_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_t {
  color: #E74824;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 24px;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_c {
  font-weight: 400;
  color: #1E1E1E;
  font-size: 18px;
  margin-bottom: 24px;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_ph {
  margin-right: 20px;
}
@media (max-width: 768px) {
  #about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_ph {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_ph a {
  display: block;
  text-decoration: none;
  color: #E74824;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_icons .about_2_screen_4_r_wrap_r_b_icons_elem {
  max-width: 48px;
  height: 48px;
  width: 100%;
  margin-right: 12px;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_icons .about_2_screen_4_r_wrap_r_b_icons_elem a {
  display: block;
  text-decoration: none;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_icons .about_2_screen_4_r_wrap_r_b_icons_elem a img {
  width: 100%;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#about_2 .about_2_screen_4 .about_2_screen_4_r .about_2_screen_4_r_wrap .about_2_screen_4_r_wrap_r .about_2_screen_4_r_wrap_r_b .about_2_screen_4_r_wrap_r_b_icons .about_2_screen_4_r_wrap_r_b_icons_elem a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about_2_screen_3_accor{
    margin-bottom: 25px;
}
.about_2_screen_3_accor:last-child{
    margin-bottom: 0;
}

.about_2_screen_3_accor_top_r{
        width: 10%;
    display: flex;
    justify-content: flex-end;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_wrap{
    width: 100%;
}
#about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem{
    max-width: 50%;
    width: 100%;
}

@media (max-width: 600px){
    #about_2 .about_2_screen_3 .about_2_screen_3_accor .about_2_screen_3_accor_top .about_2_screen_3_accor_top_c .about_2_screen_3_accor_top_c_wrap .about_2_screen_3_accor_top_c_wrap_elem{
    max-width: unset;
  }
}


    .timer_cart {
  max-width: 392px;
  width: 100%;
}
.timer_cart .timer_cart_timer {
  font-weight: 600;
  color: #E74824;
  font-size: 32px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .timer_cart .timer_cart_timer {
    font-size: 24px;
  }
}
.timer_cart .timer_cart_c {
  margin-bottom: 12px;
  color: #1E1E1E;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 768px) {
  .timer_cart .timer_cart_c {
    font-size: 16px;
  }
}
.timer_cart .timer_cart_c span {
  color: #E74824;
  font-size: 24px;
}
@media (max-width: 768px) {
  .timer_cart .timer_cart_c span {
    font-size: 20px;
  }
}
.timer_cart .timer_cart_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timer_cart .timer_cart_b .timer_cart_b_icon {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}
.timer_cart .timer_cart_b .timer_cart_b_txt {
  color: #8B8C8F;
  font-weight: 400;
  font-size: 16px;
}

.catalog_block{
            display: flex;
            justify-content: space-between;
            box-shadow: 0px 2px 10px 0px #00000040;
background: #fff;
border-radius: 40px;
color: #1E1E1E;
font-weight: 400;

font-size: 16px;
padding: 44px 54px;
max-width: 1040px;
width: 100%;
margin-bottom: 34px;
        }
        .catalog_block ul{
margin: 0;
padding: 0;
width: 49%;
        }
        .catalog_block ul li{
            margin-bottom: 20px;
            list-style: none;
            position: relative;
            padding-left: 13px;

        }
        .catalog_block ul li:before{
            position: absolute;
            content: "";
            left: 0;
            top: 0%;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #E74824;
            transform: translateY(80%);
        }
        @media (max-width: 1040px) {
            .catalog_block{
            padding: 20px;
        }
        }
        @media (max-width: 600px) {
.catalog_block{
    flex-direction: column;
}
.catalog_block ul{
    width: 100%;
}
.catalog_block ul:first-child{
margin-bottom: 20px;

}
        }



#soberi_kopl .soberi_kopl_slide .soberi_kopl_slide_l .soberi_kopl_slide_l_slider .soberi_kopl_slide_l_slider_all .soberi_kopl_slide_l_slider_all_slider .soberi_kopl_slide_l_slider_all_slider_item .soberi_kopl_slide_l_slider_all_slider_item_t{
    height: 300px;
}

.soberi_kopl_slide_l_slider_all_slider_item_t_img{
    height: 100%;
}

#soberi_kopl .soberi_kopl_slide .soberi_kopl_slide_l .soberi_kopl_slide_l_slider .soberi_kopl_slide_l_slider_all .soberi_kopl_slide_l_slider_all_slider .soberi_kopl_slide_l_slider_all_slider_item .soberi_kopl_slide_l_slider_all_slider_item_t .soberi_kopl_slide_l_slider_all_slider_item_t_img img{
    object-fit: contain;
}

.soberi_kopl_slide_l_slider_all_arrow_slide_count{
    color: #fff;
}

.basket-coupon-block-total-price-difference{
    margin-top: 10px;
}
#page_document{
    margin-bottom: 60px;
}
#page_document .page_document_tab_btn {
  border: 1px solid #CECECE;
  border-radius: 99px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 90px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #page_document .page_document_tab_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    border-radius: 20px;
  }
}
#page_document .page_document_tab_btn .page_document_tab_btn_item {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  padding: 12px 24px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 99px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #page_document .page_document_tab_btn .page_document_tab_btn_item {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#page_document .page_document_tab_btn .page_document_tab_btn_item:hover {
  background: #E74824;
  color: #fff;
}
#page_document .page_document_tab_btn .page_document_tab_btn_item:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  #page_document .page_document_tab_btn .page_document_tab_btn_item:last-child {
    margin-bottom: 0px;
  }
}
#page_document .page_document_tab_btn .active {
  background: #E74824;
  color: #fff;
}
#page_document .page_document_tab_list .page_document_tab_list_item {
  display: none;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
}
@media (max-width: 768px) {
  #page_document .page_document_tab_list .page_document_tab_list_item {
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  #page_document .page_document_tab_list .page_document_tab_list_item {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}
#page_document .page_document_tab_list .page_document_tab_list_item .elem {
  display: block;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 16px;
  color: #1E1E1E;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page_document .page_document_tab_list .page_document_tab_list_item .elem:hover {
  color: #E74824;
}
#page_document .page_document_tab_list .page_document_tab_list_item .elem .elem_img {
  max-width: 160px;
  width: 100%;
  margin-bottom: 12px;
}
#page_document .page_document_tab_list .page_document_tab_list_item .elem .elem_img img {
  display: block;
  width: 100%;
}
#page_document .page_document_tab_list .page_document_tab_list_item .elem .elem_txt {
  text-align: center;
}
#page_document .page_document_tab_list .active {
  display: -ms-grid;
  display: grid;
}