/* Slider */
.slick-slider{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;

    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-family: 'Montserrat', sans-serif;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* Base styles */
*{
    box-sizing: border-box;
    outline: none;
}
section{
    padding-top: 108px;
}
form{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 27px;
    background-color: #B4A698;
    border-radius: 50px;
}
form input{
    text-align: center;
    height: 67px;
    line-height: 67px;
    font-size: 18px;
    color: #000;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #000;
    width: 290px;
}
input.error{
    border: 1px solid #EB001B;
}
input::placeholder{
    color: #AFAFAF;
}
form button.btn.lg{
    padding: 23px;
    font-size: 18px;
    flex-grow: 1;
}
form button.btn:hover{
    background-color: #fff;
    color: #000;
}
form button.btn.success{
    background-color: #fff;
    color: #000;
}
p, span{
    font-size: 18px;
    line-height: 1.22;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}
p b{
    font-weight: bold;
}
p a{
    color: #000;
}
.container{
    width: 100%;
    max-width: 1440px;
    padding: 0 39px 0 30px;
    margin: 0 auto;
}
h1{
    font-size: 120px;
    color: #494F43;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    margin-bottom: 54px;
}
h1 span{
    font-size: 92px;
    display: inline-block;
    padding-left: 122px;
    color: #494F43;
}
h1 img{
    display: inline-block;
    vertical-align: bottom;
    transform: translateX(-30px);
}
h2{
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 50px;
    line-height: 1.2;
    font-family: 'Cormorant', serif;
    margin: 0 auto 97px;
}
h2 span{
    position: absolute;
    width: 100%;
    left: 50%;
    top: 25px;
    transform: translate(-50%,-50%);
    color: rgba(180, 166, 152, 0.11);
    font-size: 121px;
    font-family: 'Cormorant', serif;
    text-transform: uppercase;
}
.flx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
a{
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}
.btn{
    padding: 11px 17px;
    font-size: 18px;
    color: #fff;
    background-color: #494F43;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}
.btn:hover{
    background-color: #B4A698;
    color: #000;
}
.btn.lg{
    padding: 25px 68px;
    font-size: 25px;
}
.burger{
    position: fixed;
    display: none;
    top: 35px;
    right: 35px;
    width: 40px;
    height: 29px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    background-image: url('../img/burger.svg');
    z-index: 13;
}
.mob_menu_box .mob_logo{
    position: relative;
}
.langs_mob{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}
.langs_mob::after{
    content: '';
    position: absolute;
    left: 56px;
    top: -6px;
    width: 1px;
    background-color: #000;
    height: 33px;
}
.langs_mob a{
    display: inline-block;
    color: #000;
    margin: 0 14px;
}
.langs_mob a.active{
    font-weight: bold;
}


  /* first */
header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 19px 0 21px;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(150%);
}
header ul li{
    display: inline-block;
    margin-left: 4px;
    transition: all 0.2s ease;
    padding: 11px 23px;
    border-radius: 50px;
    cursor: pointer;
}
header ul li:hover{
    background-color: rgba(180, 166, 152, 1);
}
header ul li.active{
    background-color: rgba(180, 166, 152, 1);
}
header .container{
    position: relative;
    z-index: 2;
}
header nav li{
    display: inline-block;
    position: relative;
}
header nav li.has{
    padding: 11px 39px 11px 23px;
    position: relative;
}

header nav li.has::after{
    content: '';
    position: absolute;
    right: 17px;
    top: 12px;
    width: 10px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/arrow_left_ico.svg');
    background-size: contain;
    transition: all 0.2s ease;
}
header nav li.has:hover:after{
    background-image: url('../img/arrow_left_ico_white.svg');
}
header nav li.has.active::after{
    transform: rotate(-90deg);
    background-image: url('../img/arrow_left_ico_white.svg');
}
header nav li a{
    font-size: 18px;
    color: #000;
    font-weight: 400;
}
header nav li:hover a{
    color: #fff;
}
header nav li.active a{
    color: #fff;
}
header .right{
    display: flex;
    align-items: center;
}
header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .langs{
    margin-left: 68px;
    position: relative;
    min-width: max-content;
}
header .langs::after{
    content: '';
    position: absolute;
    right: 41px;
    top: -7px;
    width: 1px;
    height: 33px;
    background-color: #090909;
}
header .langs a{
    color: #000;
    display: inline-block;
    transition: all 0.2s ease;
}
header .langs a:hover{
    font-weight: bold;
}
header .langs a:first-child{
    margin-right: 28px;
}
header .langs a.active{
    font-weight: bold;
}
.hidden_menu_box{
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    position: absolute;
    left: -110px;
    top: calc(100% + 68px);
    border-radius: 50px;
    background: #B4A698;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.20);
    width: 823px;
    padding: 41px 38px 46px 37px;
}
.hidden_menu_box .left_list{
    width: 100%;
    max-width: 421px;
    min-width: 421px;
    flex-grow: 1;
    margin-right: 28px;
    display: inline-block;
}
.hidden_menu_box .left_list .item{
    transition: all 0.2s ease;
    padding: 19px 37px 17px 17px;
    border: 1px solid #C3B2A2;
    border-radius: 15px;
    position: relative;
    margin-bottom: 9px;
}
.hidden_menu_box .left_list .item:last-child{
    margin-bottom: 0;
}
.hidden_menu_box .left_list .item:hover{
    background-color: #494F43;
}
.hidden_menu_box .left_list .item.active{
    background-color: #494F43;
}
.hidden_menu_box .left_list .item::after{
    position: absolute;
    right: 21px;
    content: '';
    top: 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow_right_white.svg');
    transition: all 0.2s ease;
    width: 26px;
    height: 14px;
    opacity: 0;
}
.hidden_menu_box .left_list .item:hover::after{
    transform: translateX(8px);
    opacity: 1;
}
.hidden_menu_box .left_list .item.active::after{
    transform: translateX(8px);
    opacity: 1;
}
.hidden_menu_box .left_list p.title{
    font-size: 25px;
    margin-bottom: 7px;
}
.hidden_menu_box .left_list p{
    color: #fff;
    font-size: 15px;
}
.hidden_menu_box .right_box{
    width: 100%;
    max-width: 293px;
    display: inline-block;
    vertical-align: top;
}
.hidden_menu_box .right_box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.hidden_menu_box .right_box p, .hidden_menu_box .right_box a{
    color: #fff;
    font-size: 15px;
}
.hidden_menu_box .right_box ul{
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}
.hidden_menu_box .right_box li{
    padding: 0;
    margin-bottom: 10px;
    display: block;
    position: relative;
    color: #fff;
}
.hidden_menu_box .right_box li a:hover{
    color: #B4A698;
}
.hidden_menu_box .right_box li::after{
    content: '';
    position: absolute;
    left: -21px;
    width: 13px;
    height: 13px;
    top: 2px;
    border-radius: 50%;
    background-color: #B4A698;
}
.hidden_menu_box .right_box li:hover{
    background: none;
}
.hidden_menu_box .right_box .box{
    display: none;
    background-color: #494F43;
    padding: 41px 41px 42px 40px;
    border-radius: 15px;
}
.hidden_menu_box .right_box .box.active{
    display: block;
}


.first{
    position: relative;
    padding-top: 39px;
    padding-bottom: 116px;
    padding-top: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../img/first_bg.svg');
    margin-bottom: 60px;
}
.first .main_img{
    position: absolute;
    right: 30px;
    top: 130px;
    width: 100%;
    max-width: 635px;
    height: 717px;
    object-fit: contain;
    z-index: 0;
}
.first .container{
    position: relative;
    z-index: 2;
}
.first p{
    font-size: 25px;
    margin-bottom: 49px;
    width: 100%;
    max-width: 623px;
}
.main_btn{
    border-radius: 50px;
    border: 2px solid #B4A698;
    width: 100%;
    max-width: 340px;
    min-width: fit-content;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    padding: 9px 9px 9px 37px;
    color: #494F43;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: all 0.2s ease;
}
.main_btn .arrow_btn{
    display: inline-block;
    width: 63px;
    min-width: 63px;
    height: 63px;
    background-color: #B4A698;
    border-radius: 50%;
    margin-left: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: initial;
    background-image: url('../img/arrow_right_white.svg');
}
.main_btn:hover{
    background-color: #B4A698;
    color: #fff;
    flex-direction: row-reverse;
    padding: 9px 37px 9px 9px;
}
.main_btn:hover span{
    background-color: #fff;
    background-image: url('../img/arrow_right_black.svg');
    margin-left: 0;
    margin-right: 20px;
}
.first .soc_list{
    display: flex;
    align-items: center;
}
.first .soc_list .wrapper{
    display: flex;
    align-items: center;
}
.first .soc_list a{
    display: inline-block;
    margin-left: 40px;
}
.first .soc_list a:hover svg path{
    fill: #494F43;
}


.video_sect .video_wrap{
    position: relative;
    width: 100%;
    max-width: 1371px;
    background-color: #B4A698;
    border-radius: 50px;
    margin: 0 auto;
    padding: 0 69px 79px 77px;
}
.video_sect .video_wrap video{
    width: 100%;
    margin-top: -80px;
    border-radius: 15px;
    object-fit: cover;
}
.video_btn{
    position: absolute;
    width: 362px;
    left: 134px;
    bottom: 121px;
    border-radius: 100px;
    border: 1px solid #494F43;
    backdrop-filter: blur(10px) saturate(150%);
    padding: 16px 41px 16px 16px;
    color: #000;
    font-family: Montserrat;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.video_btn .play_btn{
    display: inline-block;
    width: 77px;
    min-width: 77px;
    height: 77px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #494F43;
    background-image: url('../img/play_btn_ico.svg');
    margin-right: 21px;
}
.video_btn:hover{
    background-color: #B4A698;
    color: #fff;
}

.video_btn.active .play_btn{
    background-image: url('../img/pause_video_ico.svg')!important;
}


.format_list .item{
    border: 1px solid #B4A698;
    padding: 34px 34px 34px 40px;
    margin-bottom: 30px;
    border-radius: 50px;
    display: flex;
    align-items: stretch;
}
.format_list .item .main_btn{
    max-width: 300px;
    justify-content: space-between;
    border: none;
    background-color: #B4A698;
    margin-bottom: 0;
    margin-right: 110px;
    max-height: 80px;
    align-self: center;
    color: #fff;
}
.format_list .item .main_btn .arrow_btn{
    background-color: #fff;
    background-image: url('../img/arrow_right_black.svg');
}
.format_list .item .info{
    position: relative;
    width: 100%;
    max-width: 544px;
}
.format_list .item .hor_line{
    width: 1px;
    height: auto;
    background-color: #B4A698;
    position: relative;
    margin-right: 110px;
}
.format_list .item .hor_line::after{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #B4A698;
}
.format_list .item .hor_line::before{
    content: '';
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #B4A698;
}
.format_list .item ul{
    padding-left: 36px;
    width: 100%;
}
.format_list .item li{
    position: relative;
    margin-bottom: 13px;
    line-height: 1.3;
}
.format_list .item li::after{
    position: absolute;
    content: '';
    left: -35px;
    top: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #B4A698;
}


.intro_wrap{
    border-radius: 26px;
    background: #494F43;
    padding: 25px 0px 25px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 26px;
}
.intro_wrap .int_img{
    width: 100%;
    max-width: 473px;
    height: 838px;
    object-fit: contain;
}
.intro_wrap .info{
    width: 100%;
}
.intro_wrap .info p{
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.4;
}
.intro_wrap .info .line{
    width: 100%;
    max-width: 297px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 31px;
}
.intro_wrap .info .info_ul_box{
    margin-top: 10px;
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 30px;
}
.intro_wrap .info .info_ul_box ul{
    background-color: #30372A;
    padding: 22px 25px 37px 25px;
    border-radius: 24px;
}
.intro_wrap .info .info_ul_box p{
    margin-bottom: 15px;
}
.intro_wrap .info .info_ul_box li{
    color: #fff;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.intro_wrap .info .info_ul_box li::after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.intro_wrap .info .info_ul_box li:last-child{
    margin-bottom: 0;
}
.intro_wrap h3{
    text-align: left;
    color: #FFF;
    margin-bottom: 22px;
    font-family: Cormorant;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.intro_wrap .title{
    color: #FFF;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 52px;
}
.intro_wrap .text{
    padding: 22px 0 30px 49px;
    width: 100%;
    max-width: 651px;
    position: relative;
    border-left: 1px solid #fff;
    margin-bottom: 39px;
    margin-left: 20px;
}
.intro_wrap .text::after{
    content: '';
    position: absolute;
    left: -3px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
}
.intro_wrap .text::before{
    content: '';
    position: absolute;
    left: -3px;
    bottom: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
}
.intro_wrap .text p{
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 56px;
}
.intro_wrap .text p.ital{
    margin-bottom: 0;
    font-style: italic;
}
.intro_wrap .soc_box{
    display: flex;
    align-items: center;
}
.intro_wrap .soc_box .wrapper{
    display: flex;
    align-items: center;
}
.intro_wrap .soc_box .hor_line_mob{
    display: none;
}
.intro_wrap .soc_box .main_btn{
    margin-bottom: 0;
    border: 1px solid #fff;
    color: #fff;
    padding: 29px 32px 29px 29px;
    margin-right: 0;
    margin-left: 30px;
    display: flex;
    font-size: 18px;
    max-width: 360px;
}
.intro_wrap .soc_box .main_btn:hover{
    background-color: #fff;
    color: #090909;
    flex-direction: row;
}
.intro_wrap .soc_box a{
    display: inline-block;
    margin-right: 40px;
}
.soc_box a:hover svg path{
    fill: #B4A698;
}
.intro_wrap .soc_box .main_btn svg{
    margin-left: 20px;
}


.team_box{
    border: 1px solid #B4A698;
    border-radius: 50px;
    padding: 62px 119px 78px 86px;
    margin-bottom: 29px;
}
.vacan_box{
    display: flex;
    align-items: center;
    border: 1px solid #B4A698;
    border-radius: 50px;
    padding: 35px 68px 34px 86px;
    margin-bottom: 64px;
}
.team_box h3, .vacan_box h3{
    color: #000;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 49px;
}
.team_box .team_wrap{
    display: flex;
    align-items: center;
    margin-bottom: 64px;
}
.team_box .team_wrap img{
    width: 147px;
    height: 147px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 84px;
}
.team_box .team_wrap .text p{
    margin-bottom: 20px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.team_wrap .text p:last-child{
    margin-bottom: 0;
}
.green_btn{
    padding: 29px 32px 29px 29px;
    border-radius: 50px;
    background-color: #494F43;
    display: inline-flex;
    align-items: center;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.2s ease;
}
.green_btn .white_arr{
    display: inline-block;
    width: 55px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arr_white_ico.svg');
    margin-left: 25px;
}
.green_btn:hover{
    background-color: #B4A698;
}
.vacan_box .left{
    width: 100%;
    max-width: 678px;
    padding-right: 30px;
}
.vacan_box .left p{
    margin-bottom: 35px;
}
.vacan_box .right_list{
    width: 100%;
    max-width: 451px;
}
.vacan_box .right_list .item{
    width: 100%;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 14px;
    padding: 20px 26px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vacan_box .right_list .item.disabled{
    opacity: 0.3;
}
.vacan_box .right_list .item a{
    display: inline-block;
    border: 1px solid #000;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 19px 26px;
    border-radius: 100px;
    transition: all 0.2s ease;
    min-width: 200px;
}
.vacan_box .right_list .item a:hover{
    background-color: #000;
    color: #fff;
}
.feed_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.feed_btns a{
    padding: 28px 0;
    text-align: center;
    color: #fff;
    background-color: #B4A698;
    border-radius: 50px;
    display: block;
    width: 100%;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.feed_btns a:hover{
    background-color: #494F43;
}
.feed_btns a.result{
    background-color: transparent;
    color: #000;
    border: 2px solid #B4A698;
}
.feed_btns a.result:hover{
    background-color: #494F43;
    color: #fff;
    border: 2px solid #494F43;
}
.feeds_slider_wrap{
    background-color: #B4A698;
    border-radius: 50px;
}
.feeds_slider_wrap h3{
    display: none;
}


.slick-slide {
    margin: 0 25px;
}
.slick-list {
    margin: 0 -25px;
}
.slick-arrow{
    position: absolute;
    left: 0;
    top: 27px;
    color: transparent;
    font-size: 1px;
    width: 57px;
    height: 57px;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    background: transparent;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease;
}
.slick-arrow:hover{
    background-color: #B4A698!important;
    border: 1px solid #B4A698!important;
}
.slick-next{
    left: 118px;
    border: 1px solid #fff;
    background-color: #fff;
    background-image: url('../img/arrow-next.svg');
}
.slick-next:hover{
    background-image: url('../img/arrow-next-hover.svg');
}
.feeds_slider .slick-prev{
    background-image: url('../img/arrow_prev_white.svg');
}
.feeds_slider .slick-next{
    background-image: url('../img/arrow_next_black.svg');
}
.feeds_slider .slick-next:hover{
    background-color: #494F43!important;
    background-image: url('../img/arrow-next.svg');
}
.feeds_slider .slick-prev:hover{
    background-color: #fff!important;
    background-image: url('../img/arrow-prev.svg');
}
.feeds_slider .slick-slide img{
    width: 100%;
}
.slick-prev{
    left: 34px;
    background-image: url('../img/arrow-prev.svg');
}
.slick-dots li{
    margin-right: 9px;
}
.slick-dots li button{
    color: transparent;
    font-size: 1px;
    width: 11px;
    max-width: 11px;
    height: 11px;
    min-height: 11px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #fff;
    background: transparent;
}
.feeds_slider_box{
    margin-top: 69px;
    padding-top: 0;
}
.feeds_slider{
    background-color: #B4A698;
    border-radius: 50px;
    padding: 108px 34px 39px 34px;
}


.video_slider{
    padding-top: 100px;
}
.video_slider .slick-arrow{
    top: 0px;
    border: 1px solid #B4A698;;
}
.video_slider .slick-prev:hover{
    background-image: url('../img/arrow_prev_white.svg');
}
.video_slider .slick-next:hover{
    background-color: #494F43!important;
    background-image: url('../img/arrow-next.svg')!important;
}
.video_slider .slick-next{
    background-color: #B4A698;
}
.video_slider .slick-dots li button{
    border: 1px solid #B4A698;
}
.video_slider .slick-dots li.slick-active button{
    background-color: #B4A698;
}
.video_slider .slick-dots-container{
    top: 17px;
}
.video_slide{
    position: relative;
}
.video_slide .video_btn{
    max-width: 277px;
    padding: 13px 23px 13px 13px;
    color: #000;
    font-family: Montserrat;
    font-size: 19.13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}
.video_slide .video_btn .play_btn{
    width: 59px;
    height: 59px;
    min-width: 59px;
}
.video_slider_wrap{
    position: relative;
}
.all_feeds{
    position: absolute;
    right: 0;
    top: -5px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    border: 2px solid #B4A698;
    padding: 8px 8px 8px 45px;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #000;
    z-index: 3;
    max-width: 300px;
    width: 100%;
}
.all_feeds .arrow{
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: #B4A698;
    margin-left: 41px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow-next.svg');
}

.soc_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}
.soc_btns a{
    position: relative;
    border-radius: 100px;
    background: #494F43;
    color: #fff;
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 13px 35px;
    height: 80px;
    transition: all 0.2s ease;
}
.soc_btns a span{
    color: #fff;
    font-family: Montserrat;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.soc_btns a img,.soc_btns a svg{
    margin-right: 25px;
}
.soc_btns a::after{
    content: '';
    position: absolute;
    right: 31px;
    top: 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 21px;
    background-image: url('../img/soc_arrow.svg');
    transition: all 0.2s ease;
}
.soc_btns a:hover::after{
    transform: translateX(10px);
}
.soc_btns a:hover{
    background-color: #B4A698;
}
.about_soc{
    padding-bottom: 70px;
}

/* footer */
footer{
    margin-top: 100px;
    padding-bottom: 104px;
  }
  footer .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .to_top{
    width: 81px;
    min-width: 81px;
    height: 81px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    background-image: url('../img/to_top.svg');
    box-shadow: 0 4px 19px rgba(0,0,0,.11);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .to_top:hover{
    box-shadow: 0 4px 19px rgba(0,0,0,.22);
  }
  .footer_menu{
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 765px;
  }
  .footer_menu .col p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .footer_menu .col a{
    display: block;
    color: #000;
    margin-bottom: 15px;
    transition: all 0.2s ease;
  }
  footer a:hover{
    color: #B4A698!important;
  }
  .oferts li{
    display: inline-block;
  }
  .oferts li a{
    color: #000;
    font-size: 15px;
    margin-left: 50px;
  }
  footer .container.flx{
    padding-top: 47px;
    align-items: center;
  }
  footer .payments{
    display: flex;
    align-items: center;
    gap: 26px;
  }

.video_slider .video_wrap{
  height: 520px!important;
}
.video_slider .video_slide video, .video_slider .video_slide img{
    width: 300px;
    position: absolute;
    height: 300px;
    object-fit: cover;
    left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}
.video_slider .slick-slide{
    margin: 0 15px;
    background: #494F43;
    border-radius: 50px;
    height: 520px!important;
}
.main_img_mob{
    display: none;
}
.int_img.mob{
    display: none;
}
.result_mob_wrap{
    display: none;
}
.mob_menu_box{
    display: none;
}
.mob_menu_box{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 11;
    left: 0;
    top: 0;
    padding: 29px 33px;
    background-color: #B4A698;
}
.mob_menu_box p{
    margin-bottom: 15px;
}
.mob_menu_box p b{
    font-size: 20px;
    margin-bottom: 26px;
}
.burger.active{
    background-color: transparent;
    background-image: url('../img/burger_active.svg');
    box-shadow: none;
}
.mob_menu_box .mob_logo{
    text-align: left;
    margin-bottom: 35px;
}
.mob_menu_box .mob_menu li{
    display: block;
    background-color: #494F43;
    height: 70px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 6px;
    border-radius: 50px;
    text-align: center;
}
.mob_menu_box .mob_menu li a{
    color: #fff;
}
.mob_menu_box .mob_menu li.open_pop{
    background-color: #fff;
    color: #000;
    margin-bottom: 63px;
}
.mob_menu_box h4{
    font-size: 30px;
    text-align: center;
    margin-bottom: 43px;
    color: #000;
    font-family: Cormorant;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.mob_menu_box h5{
    color: #000;
    font-family: Cormorant;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mob_menu_formats{
    margin-bottom: 41px;
}
.mob_menu_formats a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #494F43;
    padding: 10px 10px 10px 41px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}
.mob_menu_formats a .arrow{
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    width: 51px;
    height: 51px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/arrow_right_black.svg');
}
.video_slide .video_btn {
	border-radius: 76.519px;
	border: 1.53px solid #494F43;
	background: rgba(180, 166, 152, 0.10);
	backdrop-filter: blur(11.477901458740234px);

}

.video_slide .video_btn .play_btn {
	background: url('../img/plnew.svg') no-repeat center;
	background-image: cover;
}

.video_slide .video_btn {
	color: #fff;
}

.dbone_bl {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
}

.dbone_bl .absltt {
	position: absolute;
	opacity: 0;
	z-index: -100;
	top: 0px;
	left: 0px;
}

@media (max-width:999px) {
	.dbone_bl {
		margin-bottom: 50px;
	}
}

.soc_btns a span {
	font-size: 23px;
}

.footer_menu .col a {
	display: flex;
	align-items: center;
}

.footer_menu .col a span {
	padding-left: 10px;
}

.feeds_slider .slick-slide img {
	border-radius: 20px;
}

.slick-slide {
	height: 0px !important;
}

.slick-slide.slick-active {
	height: 100% !important;
}

.about_us .det_box {
	border: 1px solid #B4A698;
	width: 100%;
	margin-bottom: 24px;
	border-radius: 50px;
	padding: 62px 10px 54px 86px;
}

.about_us .det_box h3 {
	font-size: 30px;
	margin-bottom: 52px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.about_us .team_list {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 41px 120px;
}

.about_us .team_list .item {
	flex: 1 1 45%;
	display: inline-flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.about_us .team_list .item .img_box {
	width: 99px;
	height: 99px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
}

.about_us .team_list .item .img_box img {
	width: 100%;
	object-fit: cover;
}

.about_us .team_list .item .name {
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 12px;
}

.about_us .team_list .item li {
	font-size: 14px;
	padding-left: 10px;
	position: relative;
}

.about_us .team_list .item li::after {
	position: absolute;
	content: '';
	left: 0;
	top: 8px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #000;
}

.det_box .read_all {
	padding: 28px 59px;
	border-radius: 50px;
	color: #fff;
	font-size: 20px;
	background-color: #494F43;
	display: inline-block;
	margin-top: 44px;
	width: 100%;
	max-width: 360px;
	text-align: center;
	transition: all 0.2s ease;
}

.det_box .read_all:hover {
	opacity: 0.8;
}

.intro_wrap .text p {
	margin-bottom: 20px;
}

.intro_wrap .text p:last-child {
	margin-bottom: 0px;
}

.first .main_img {
	max-width: 34%;
}

.first_suprovid .main_img{
    max-width: 100%;
}

.video_sect {
	margin-top: 160px;
}


.slick-dots li{
    display: inline-block;
    margin-right: 9px;
}
.slick-dots li button{
    color: transparent;
    font-size: 1px;
    width: 11px;
    max-width: 11px;
    height: 11px;
    min-height: 11px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #fff;
    background: transparent;
}
.slick-dots-container {
    position: absolute;
    left: 202px;
    top: 45px;
    width: 107px;
    overflow: hidden;
    display: block;
    padding: 5px 0;
  }
  
  .slick-dots-container > ul {
    padding: 0;
    display: flex;
    transition: all 0.25s;
    position: relative;
    margin: 0;
    list-style: none;
    transform: translateX(0);
    align-items: center;
    bottom: unset;
    height: 100%;
  }
  
  .slick-arrow.slick-disabled{
    opacity: 0.2;
  }
  .slick-dots-container > ul li {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.25rem;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  
  .slick-dots-container > ul li button {
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0;
  }
  
  .slick-dots-container > ul li.slick-active {
    transform-origin: center;
    background: #fff;
  }
  
  .slick-dots li button:before {
    display: none;
  }


@media(max-width:999px) {
	.det_box .team_list .item .img_box {
		margin-right: 0;
	}

	.det_box .team_list .item {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.det_box .team_list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.detailed_sect .det_box {
		padding: 39px 34px 52px 30px;
	}

	.about_us .det_box {
		padding-left: 10px;
	}

	.intro_wrap .title {
		margin-bottom: 0px;
	}
	.intro_wrap .int_img {
		position: relative;
		width: calc(100% + 80px);
		top: 0px;
		margin-left: -40px;
		margin-right: -40px;
		max-width: 1000px;
	}

	.main_img_mob {
		display: block;
		width: 100%;
		max-width: 280px;
		margin: 0 auto -40px;
		transform: translateX(10px);
		margin-bottom: 30px;
		max-width: 100%;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.about_us .det_box h3 {
		text-align: center;
	}

	.soc_btns a span {
		font-size: 16px;
	}

}



@media screen and (max-width: 1280px){
    .intro_wrap .int_img{
        max-width: 412px;
        object-fit: contain;
        top: initial;
        bottom: 0;
        height: auto;
    }
    .soc_btns a span{
        font-size: 18px;
    }
    .first .main_img{
        right: 0;
        max-width: 450px;
        top: 100px;
    }
    .first p{
        font-size: 20px;
    }
    h1{
        font-size: 100px;
    }
    header ul li{
        padding: 11px;
    }
    header .langs{
        margin-left: 30px;
    }
    .soc_btns a{
        padding: 13px 20px;
    }
    .soc_btns a::after{
        right: 20px;
    }
}
@media screen and (max-width: 1024px){
    .video_slider .slick-dots-container{
        top: 95px;
    }
    .slick-dots-container{
        left: 50%;
        transform: translateX(-50%);
        top: 105px;
    }
    .intro_wrap .info .info_ul_box{
        flex-direction: column;
    }
    .intro_wrap .int_img{
        height: 449px;
    }
    .intro_wrap .soc_box .wrapper{
        display: none;
    }
    .intro_wrap{
        flex-direction: column;
        align-items: center;
        padding-right: 20px;
    }
  .video_feeds h2{
    margin-bottom: 40px;
  }
  .slick-next, .slick-prev{
    left: 50%;
    transform: translateX(-50%);
  }
  .slick-prev{
    margin-left: -45px;
  }
  .slick-next{
    margin-left: 45px;
  }
    .feeds_slider, .video_slider{
      padding-top: 150px;
    }
    .first{
        padding-bottom: 0;
    }
    .first .soc_list .wrapper{
        margin-top: 36px;
    }
    .first .soc_list{
        flex-direction: column;
    }
    .burger{
        display: block;
    }
    header .right{
        display: none;
    }
    .first .main_img{
        display: none;
    }
    .main_img_mob{
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto -40px;
        transform: translateX(35px);
    }
    h1{
        font-size: 45px;
        margin-bottom: 30px;
        text-align: center;
    }
    .first p{
        max-width: 100%;
        text-align: center;
        max-width: 359px;
        margin: 0 auto 39px;
    }
    .main_btn{
        margin: 0 auto 41px;
    }
    .video_btn .play_btn{
        width: 63px;
        height: 63px;
        min-width: 63px;
    }
    h2{
        font-size: 35px;
    }
    h2 span{
        font-size: 52px;
    }
    .format_list .item{
        flex-direction: column;
    }
    .format_list .item .main_btn{
        margin: 0 auto 0px;
    }
    .format_list .item .info{
        max-width: 359px;
        text-align: center;
        margin: 0 auto;
    }
    .format_list .item ul{
        padding-left: 0;
    }
    .format_list .item li{
        margin-bottom: 0;
        padding-top: 50px;
    }
    .format_list .item .info p{
        padding-top: 50px;
    }
    .format_list .item li::after{
        display: none;
    }
    .format_list .item li::before{
        content: '';
        position: absolute;
        bottom: 60%;
        left: 50%;
        transform: translateX(-50%);
        width: 84px;
        height: 5px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        background-image: url('../img/format_list_hor.svg');
    }
    .intro_sect{
        padding-top: 20px;
    }
    .video_wrap .video_btn{
        max-width: 298px;
        font-size: 18px;
        left: 50%;
        color: #fff;
        transform: translateX(-50%);
    }
    .video_sect .video_wrap{
        padding: 0 32px 32px 32px;
    }
    .intro_wrap h3{
        font-size: 35px;
    }
    .intro_wrap .title{
        font-size: 25px;
        margin-bottom: 500px;
    }
    .intro_wrap .text{
        padding-left: 0;
        margin-left: 0;
        border: none;
    }
    .intro_wrap .text::before{
        display: none;
    }
    .intro_wrap .text::after{
        display: none;
    }

    .intro_wrap .soc_box{
        flex-direction: column-reverse;
    }
    .intro_wrap .soc_box .main_btn{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 26px;
        margin-left: 0;
        background-color: #fff;
        color: #000;
        z-index: 2;
    }
    .intro_wrap .soc_box .main_btn svg path{
        fill: #000;
    }
    .vacan_box,.team_box{
        flex-direction: column;
        padding: 34px 30px;
    }
    .team_box .team_wrap{
        flex-direction: column;
    }
    .team_box .team_wrap img{
        margin-right: 0;
        margin-bottom: 28px;
    }
    .team_box h3, .vacan_box h3{
        font-size: 25px;
        text-align: center;
        margin-bottom: 26px;
    }
    .vacan_box .green_btn, .team_box .green_btn{
        max-width: 284px;
        font-size: 13px;
        padding: 22px;
        width: 100%;
        display: flex;
        margin: 0 auto 25px;
        justify-content: space-between;
    }
    .green_btn .white_arr{
        width: 43px;
        margin-left: 0;
        background-size: contain;
    }
    .video_sect .video_wrap video{
        height: 550px;
    }
    .intro_wrap .soc_box .hor_line_mob{
        display: none;
    }
    .feed_btns{
        display: none;
    }
    .feeds_slider_wrap{
        padding-top: 44px;
    }
    .feeds_slider_box .container{
        padding: 0;
    }
    .format_list .item .hor_line::after{
        display: none;
    }
    .vacan_box .left{
        padding-right: 0;
    }
    .vacan_box .right_list .item{
        padding: 12px 16px;
    }
    .vacan_box .right_list .item p{
        font-size: 14px;
    }
    .vacan_box .right_list .item a{
        font-size: 11px;
        padding: 12px 16px;
    }
    .video_slide .video_btn{
        font-size: 18px;
    }
    .video_sect .container{
        padding: 0;
    }
    .format_list .item .hor_line::before{
        display: none;
    }
    .format_sect .container{
        padding: 0;
    }
    .intro_sect .container{
        padding: 0;
    }
    .feeds_slider_wrap h3{
        display: block;
        text-align: center;
        color: #fff;
        font-family: Montserrat;
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .result_mob_wrap{
        display: block;
        margin-top: 20px;
        border-radius: 50px;
        background-color: #B4A698;
        text-align: center;
        padding: 42px 32px;
    }

    .about_soc h2{
        margin-bottom: 49px;
    }
    .soc_btns{
        flex-direction: column;
        gap: 13px;
    }
    .soc_btns a{
        padding: 13px 35px;
    }
    .soc_btns a::after{
        right: 42px;
    }
    .all_feeds{
        display: flex;
        margin: 40px auto 0;
        position: initial;
        max-width: 459px;
    }
    .video_slider_wrap{
        display: flex;
        flex-direction: column-reverse;
    }

    /* footer_adaptive */
    footer{
        max-width: 366px;
        margin: 0 auto;
        padding-top: 56px;
        padding-bottom: 47px;
    }
    footer .container{
        flex-direction: column;
        position: relative;
    }
    footer .container.flx{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .footer_menu{
        margin-top: 48px;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer .payments{
        margin-top: 28px;
    }
    .oferts li{
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }
    .oferts li a{
        margin-left: 0;
        font-size: 15px;
    }
    .to_top{
        position: absolute;
        right: 34px;
        top: 0;
    }
}
