

/* Start:/local/templates/pobeda/template_styles.css?175155101918782*/
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://use.fontawesome.com/releases/v5.15.4/css/all.css');

@font-face {
    font-display: swap;
    font-family: "Stengazeta";
    font-weight: 600;
    src: url("/local/templates/pobeda/fonts/Stengazeta-Regular_5.ttf") format("truetype")
}

:root{
    --font-family: "Inter", sans-serif;
    --second-family: "Roboto", sans-serif;
    --third-family: "Font Awesome 5 Brands", sans-serif;
    --color-coral: #ece1d2;
    --color-main: #313131;
    --color-white: #fff;
    --bs-dropdown-bg: #c8b69e;
    --bs-dropdown-border-color: #671410;
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-link-active-bg: #671410;
    --border-color: #dee2e6;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
}
html{
    width: 100%;
    height: 100%;
}

ul, ol,
ul li,
ol li{
    list-style: none;
    color: inherit;
    text-decoration: none;
}

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

body{
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    font-size: 1.4rem;
    min-height: 100%;
    font-weight: 300;
    color: var(--color-main);
    font-family: var(--font-family);
}
body.fixed {
    position: fixed;
    width: 100%;
    overflow: hidden;
}


main{
    flex: 1;
    flex-grow: 1;
}
main.bg-coral{
    background: var(--color-coral);
}
.breadcrumb_wrapper{
    background: var(--color-white);
}

section ~ div{
    height: 100%;
}

.container{
    margin: 0 auto;
    max-width: 1330px;
    padding: 0 15px;
    position: relative;
}
.d-flex{
    display: flex;
}
.align-center{
    align-items: center;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.justify-end{
    justify-content: flex-end;
}
.justify-start{
    justify-content: flex-start;
}

.main_btn{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    border: 1px solid #212529;
    border-radius: 8px;
    background: #681412;
    padding: 13px 17px;
    cursor: pointer;
}

.main_btn:hover{
    color: var(--color-white);
    background-color: #424649;
    border-color: #373b3e;
}

.second_title{
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 129%;
    color: #313131;
}

.breadcrumbs{
    padding: 1rem 0;
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #313131;
}

/* header styled */

.header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--color-coral);
}

.header.shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}


.header_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.lang{
    text-transform: uppercase;
    font-weight: 500;
}
.lang a{
    display: flex;
    gap: 3px;
    align-items: center;
}
.header_menu{
    position: relative;
    width: 100%;
}

.header_menu_list{
    display: flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    width: 100%;
    padding-right: 10rem;
}
.header_menu_item_link{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}
.header_menu_item_arrow{
    width: 20px;
    height: 10px;
    display: flex;
    align-items: center;
}

.header_menu_list_submenu {
    display: none;
    position: absolute;
    top: 3rem;
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    z-index: var(--bs-dropdown-zindex);
    min-width: var(--bs-dropdown-min-width);
    width: max-content;
    margin: 0;
    font-size: 1.6rem;
    color: var(--color-white);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: 1px solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
    padding: 8px 0;
}
.header_menu_list_submenu.active{
    display: block;
}
.header_menu_list_submenu_item:hover{
    color: #212529;
    background-color: #f8f9fa;
}

.header_menu_list_submenu_item:active,
.header_menu_list_submenu_item:focus{
    background: #671410;
    color: #f8f9fa;
}
.header_menu_list_submenu_item{
    padding: 5px 16px;
}
.header_menu_item_arrow img{
    width: 100%;
    height: 100%;
}
.header_logo{
    margin-right: 57px;
}
.header_logo img{
    min-width: 200px;
    max-width: 200px;
    width: 100%;
    object-fit: contain;
    height: 9rem;
}
.header_menu_item{
    display: block;
    position: relative;
    padding: 0 32px;
}

.header_box{
    display: flex;
    align-items: center;
}

.header_nav{
    background: var(--bs-dropdown-bg);
}

.header_nav_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
    padding: 20px 0;
}

.header_nav_item{
    color: var(--color-main);
    font-size: 1.4rem;
}

/* header styled end */


/* promo section */

.promo{
    position: relative;
    overflow: hidden;
    user-select: none;
    background: #ece1d2;
}

.main_slider_item{
    width: 100%;
}
.main_slider_item img{
    width: 100%;
    height: auto;
}

.main_arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    backdrop-filter: blur(2px);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15);
    background: rgba(217, 217, 217, 0.5);
}
.main_arrow svg{
    width: 12px;
}
.main_arrow::after,
.main_arrow::before{
    display: none;
}

.main_next{
    right: 7.6rem;
}
.main_prev{
    left: 7.6rem;
}

/* promo section end */

/* join section */

.join{
    position: relative;
    padding-top: 20px;
    background: #ece1d2;
}

.join_title{
    width: 150px;
    font-family: 'Stengazeta';
    font-style: normal;
    font-weight: 400;
    font-size: 55.04px;
    line-height: 52px;
    text-align: center;
    color: #681412;
}

.join_box{
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.join_descr{
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 175%;
    font-weight: 400;
    max-width: 900px;
    width: 100%;
}

.join_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}

.join_info{
    margin-top: 80px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
    background: #c8b69e;
    padding: 30px 30px 50px 30px;
}

.join_info_title{
    text-align: center;
    margin-bottom: 30px;
}

.join_info_wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.join_info_item{
    background: #ece1d2;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    color: #313131;
}

.join_promo{
    margin-top: 100px;
    padding-bottom: 50px;
}

.join_promo_title{
    margin-bottom: 8px;
}

.join_promo_box{
    display: flex;
    align-items: center;
    gap: 30px;
}

.join_promo_inner_box{
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
    background: #c8b69e;
    padding: 30px;
}

.join_promo_box_title{
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 2.2rem;
    text-align: center;
    color: #313131;
    margin-bottom: 5px;
}
.join_promo_box_descr{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    color: #313131;
    line-height: 175%;
    margin-bottom: 20px;
}

/* join section end */

/* wanted section */

.wanted{
    position: relative;
    padding: 50px 0;
}

.wanted_title{
    margin-bottom: 8px;
}

.wanted_wrapper{
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
}

.wanted_item{
    display: flex;
    align-items: center;
    gap: 50px;
}
.wanted_item._reversed{
    flex-direction: row-reverse;
}
.wanted_content_title{
    font-weight: 700;
    font-size: 66px;
    line-height: 130%;
    color: #313131;
}
.wanted_content_descr{
    font-size: 13px;
    line-height: 175%;
    color: #313131;
}

/* wanted section end */

/* principles section */

.principles{
    position: relative;
    padding: 50px 0;
}

.principles_title{
    margin-bottom: 1.6rem;
}

.principles_item{
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.principles_item:last-child{
    margin-bottom: 0;
}

.principles_imgs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
}
.principles_imgs img{
    width: 216px;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    object-fit: cover;
}

/* principles section end */

/* waited section */

.waited{
    position: relative;
    background: #ece1d2;
    padding: 50px 0;
}

.waited_title{
    margin-bottom: 20px;
}

.waited_descr{
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    color: #313131;
    max-width: 760px;
    width: 100%;
    margin: 0 0 0 auto;
    margin-bottom: 20px;
}

.waited_bg{
    max-width: 760px;
    width: 100%;
    border-radius: 24px;
    margin: 0 0 0 auto;
    overflow: hidden;
}

/* waited section end */

/* question title */

.question{
    position: relative;
    padding: 50px 0;
}

.question_title{
    margin-bottom: 24px;
}

.question_box{
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    max-width: 640px;
    width: 100%;
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.question_item:not(:first-child){
    border-top: 1px solid #dee2e6;
}

.question_item{
    display: flex;
    align-items: center;
    padding: 24px 16px;
    gap: 16px;
}

.question_item_ico{
    border-radius: 20px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: #681412;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.question_item_title{
    font-weight: 500;
    font-size: 18px;
    line-height: 128%;
    color: #313131;
}

.qeustion_title_descr{
    margin-bottom: 20px;
}

.question_descr{
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    text-align: center;
    color: #313131;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}
.question_descr:last-child{
    margin-bottom: 24px;
}

.question_btn{
    margin: 0 auto;
    margin-top: 40px;
    width: fit-content;
}

/* question title end */

/* members section */

.members{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.member_slider{
    position: relative;
    margin-top: 15px;
}

.members_descr{
    font-weight: 500;
    font-size: 14px;
    line-height: 129%;
    color: #313131;
    margin-top: 10px;
}

.member_slider_item{
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member_slider .main_arrow{
    width: 30px;
    height: 30px;
    top: 50%;
    transform: unset;
}
.member_slider .main_arrow svg {
    width: 7px;
}

/* members section end */

/* news section */

.news{
    position: relative;
    padding: 50px 0;
    background: #ece1d2;
    overflow: hidden;
}

.news_wrapper{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news_item{
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.news_item_img{
    max-width: 416px;
    width: 100%;
    height: 235px;
    overflow: hidden;
    border-radius: 5px;
}
.news_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_item_box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px dashed #c8b69e;
    border-radius: 12px;
    padding: 23px;
    width: 100%;
}

.news_item_date{
    font-size: 14px;
    color: #313131;
}

.news_item_title{
    font-weight: 500;
    font-size: 18px;
    color: #313131;
    margin-top: 5px;
    margin-bottom: 13px;
}

.news_item_descr{
    font-weight: 400;
    font-size: 13px;
    color: #313131;
    max-width: 800px;
    line-height: 175%;
    width: 100%;
    margin-bottom: 22px;
}

.news_item_detail{
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-align: center;
    color: #212529;
    cursor: pointer;
}

.news_btn{
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 24px;
}

/* news section end */

/* footer */

.footer{
    background: #C8B69E;
    color: #313131;
    padding: 72px 0;
}
.footer_content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.footer_content_box{
    display: flex;
    flex-direction: column;
}
.footer_content_box h3{
    font-size: 18px;
    font-family: "Inter", sans-serif;
}

.footer_content_item{
    margin-top: 8px;
    font-size: 1.5rem;
}

.footer_menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_menu_item{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: rgba(33, 37, 41, 0.75);
}

.footer_line{
    height: 1px;
    width: 100%;
    background: var(--border-color);
    margin-top: 35px;
    margin-bottom: 25px;
}

.footer_copy{
    color: var(--color-main);
    font-size: 1.5rem;
}

/* footer end */

/* media */
.header_menu_mob_wrapper{
    display: none;
}
@media(max-width: 1250px){
    .header_menu_list{
        padding-right: 0;
    }
}
@media(min-width: 1091.98px){
    .header_menu_mob, .menu_mobile_icon{
        display: none;
    }
}
@media(max-width: 1091px){
    .menu_mobile_icon{
        cursor: pointer;
        height: 100%;
        position: relative;
        width: 50px;
        padding-left: 4.5rem;
        z-index: 99999999;
    }

    .menu_mobile_icon svg{
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        height: 40px;
        transition: transform .4s;
        -moz-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        width: 40px;
    }
    .menu_mobile_icon svg .line{
        fill: none;
        stroke: var(--color-main);
        stroke-width: 5.5;
        stroke-linecap: round;
        transition: stroke-dasharray .4s, stroke-dashoffset .4s;
    }
    .menu_mobile_icon svg .top{
        stroke-dasharray: 40 82;
    }
    .menu_mobile_icon svg .middle{
        stroke-dasharray: 40 111;
    }
    .menu_mobile_icon svg .bottom{
        stroke-dasharray: 40 161;
    }
    .menu_mobile_icon svg.active{
        transform: rotate(45deg) scale(1.2);
    }
    .menu_mobile_icon svg.active .top{
        stroke-dasharray: 17 82;
        stroke-dashoffset: -6.2rem;
    }
    .menu_mobile_icon svg.active .middle{
        stroke-dashoffset: 2.3rem;
    }
    .menu_mobile_icon svg.active .bottom{
        stroke-dashoffset: -8.3rem;
    }

    .header_menu{
        display: none;
    }
    .menu_mobile_icon{
        cursor: pointer;
        margin-left: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 12px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        width: 56px;
        height: 40px;
    }
    .header_menu_mob_wrapper_inner{
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-bottom: 1.6rem;
    }
    .header_menu_mob_items{
        display: block;
        padding: 8px 0;
        text-decoration: none;
        background: 0 0;
        border: 0;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    }
}

@media(max-width: 1040px){
    .wanted_item{
        gap: 20px;
    }
}
@media (max-width: 980px) {
    .second_title {
        font-size: 24px;
        line-height: 26px;
    }
    .join_promo_box_descr{
        text-align: center;
    }
    .join_promo_img img{
        width: 100%;
        min-width: 250px;
    }
}
@media(max-width: 920px){
    .wanted_img img{
        width: 100%;
        min-width: 150px;
    }
}
@media(max-width: 740px){
    .principles{
        overflow: hidden;
    }
    .principles_imgs{
        max-width: 710px;
        width: 100%;
        overflow: auto;
        justify-content: flex-start;
    }
    .principles_imgs img{
        min-width: 200px;
    }
    .main_next{
        right: 1rem;
    }
    .main_prev{
        left: 1rem;
    }
}
@media(max-width: 690px){
    .header_nav{
        display: none;
    }
    .main_next {
        right: 1rem;
    }
    .main_prev{
        left: 1rem;
    }
    .main_arrow{
        width: 45px;
        height: 45px;
    }
    .main_arrow svg {
        width: 9px;
    }
    .join_info_wrapper{
        gap: 10px;
    }
    .join_info{
        padding: 20px;
    }
    .join_promo{
        margin-top: 40px;
    }
    .wanted{
        padding: 40px 0;
    }
    .principles{
        padding-top: 0;
    }
    .question{
        padding-bottom: 0;
    }
}

@media(max-width: 640px){
    .join_promo_box{
        flex-direction: column;
    }
    .join_promo_img img {
        width: 100%;
        min-width: unset;
        max-width: 290px;
    }
    .wanted_wrapper{
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    .wanted_img img{
        min-width: 120px;
        max-width: 150px;
    }
}

@media(max-width: 560px){
    .join_info_wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    .news_item{
        flex-direction: column;
    }
    .news_item_img{
        max-width: unset;
    }
}
@media(max-width: 530px){
    .join_box{
        flex-direction: column;
    }
    .join_title{
        text-align: left;
        width: unset;
    }
    .join_info{
        margin-top: 40px;
    }
}

@media(max-width: 460px){
    .footer_content{
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }
    .footer{
        padding: 40px 0;
    }
}
@media(max-width: 400px){
    .header_logo img{
        min-width: unset;
        height: unset;
    }
    .header_logo {
        margin-right: 30px;
    }
    .main_arrow svg {
        width: 7px;
    }
    .main_arrow {
        width: 35px;
        height: 35px;
    }
    .question_box{
        padding: 10px;
        margin-bottom: 30px;
    }
    .question{
        padding-bottom: 0;
    }
}

/* media end */
/* End */
/* /local/templates/pobeda/template_styles.css?175155101918782 */
