/* 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;}

/* Reset */
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;}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;
}
p, li, span, div, a{
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #000;
}
a{
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Cormorant', serif;
	font-weight: 600;
	line-height: 1.3;
}
.container{
	margin: 0 auto;
	padding: 0 39px 0 30px;
	width: 100%;
	max-width: 1371px;
}
.flx{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.btn{
	display: inline-block;
	width: 100%;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	border-radius: 50px;
	transition: all 0.2s ease;
}
input, textarea{
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 1.3;
	color: #000;
	padding: 10px 15px;
	border: none;
	border-radius: 30px;
}
input::placeholder{
	color: #AFAFAF;
}


/* header */
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;
}


/* team_main */
.soc_list{
	position: absolute;
	z-index: 2;
	right: 80px;
	top: 55%;
}
.soc_list ul{
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}
.team_main{
	height: 772px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-image: url('../img/team_main_img.png');
	position: relative;
	overflow: hidden;
}
.team_main h1{
	position: absolute;
	left: 0;
	bottom: -55px;
	color: #fff;
	z-index: 2;
	font-size: 284px;
	text-transform: uppercase;
	line-height: 1;
}

.team_main ul li img{
	width: 25px;
}
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;
}
.team_nut_sect{
	padding-top: 63px;
}
.team_tabs{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 63px;
	margin-bottom: 77px;
}
.team_tabs .member{
	font-size: 20px;
	border: 1px solid #494F43;
	border-radius: 100px;
	color: #AFAFAF;
	padding: 12px 41px;
	cursor: pointer;
}
.team_tabs .member.active{
	font-weight: bold;
	color: #fff;
	background-color: #494F43;
}

.team_container{
	display: none;
}
.team_container.active{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 91px;
}
.team_container .member_img{
	width: 100%;
	max-width: 479px;
}
.team_container .member_img img{
	width: 100%;
	object-fit: contain;
}
.team_container .member_info{
	width: 100%;
	padding-top: 28px;
}
.team_container .member_info h3{
	font-size: 35px;
	margin-bottom: 28px;
}
.team_container .line{
	position: relative;
	width: 100%;
	max-width: 363px;
	height: 1px;
	background-color: #B4A698;
	margin-bottom: 20px;
}
.team_container .line::after, .team_container .line::before{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #B4A698;
	top: -3px;
}
.team_container .line::after{
	left: -3px;
}
.team_container .line::before{
	right: -3px;
}
.team_container .edu{
	font-size: 26px;
	margin-bottom: 40px;
}
.team_container ul{
	padding-left: 50px;
	margin-bottom: 38px;
}
.team_container li{
	position: relative;
	margin-bottom: 20px;
	line-height: 2;
}
.team_container li::after{
	content: '';
	position: absolute;
	top: 13px;
	left: -35px;
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #000;
}
.team_container .power{
	padding: 8px 8px 8px 45px;
	border-radius: 50px;
	border: 1px solid #B4A698;
	width: 100%;
	max-width: 360px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.2s ease;
}
.team_container .power:hover{
	background-color: #B4A698;
	color: #fff;
}
.power .arrow_btn{
	width: 63px;
	height: 63px;
	border-radius: 50%;
	background-color: #B4A698;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../img/btn_arrow_right_wh.svg');
}
.team_pop{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 17;
	background-color: rgba(0,0,0,.6);
}
.team_pop .popup{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	max-width: 912px;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 50px;
	padding: 41px 72px 56px 52px;
}
.team_pop .popup .close_pop{
	position: absolute;
	right: 39px;
	top: 35px;
	width: 48px;
	height: 48px;
	border: 1px solid #000;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../img/close_pop.svg');
	cursor: pointer;
}
.team_pop .popup .title{
	font-weight: 600;
	margin-bottom: 44px;
}
.team_pop .text{
	position: relative;
	padding: 28px 10px 40px 55px;
	border-left: 1px solid #B4A698;
}
.team_pop .text::after, .team_pop .text::before{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #B4A698;
	left: -3.5px;
}
.team_pop .text::after{
	top: -3px;
}
.team_pop .text::before{
	bottom: -3px;
}
.team_pop .text p{
	margin-bottom: 20px;
	font-size: 20px;
}
.team_pop .text p:last-child{
	margin-bottom: 0;
}


.invested_sect{
	padding-top: 69px;
}
.invested_sect .container{
	display: flex;
	align-items: flex-start;
	gap: 129px;
}
.invested_sect .left_side{
	padding-top: 78px;
}
.invested_sect .right_img{
	width: 100%;
	min-width: 530px;
	z-index: 2;
}
.invested_sect .right_img img{
	max-width: 100%;
	object-fit: contain;
}
.invested_sect .left_side h2{
	text-align: left;
	padding-left: 48px;
}
.invested_sect .left_side h2 span{
	left: 86%;
    top: 63%;
    line-height: 1;
    min-width: max-content;
}
.invested_sect .left_side .text{
	padding: 32px 10px 31px 48px;
	position: relative;
	border-left: 1px solid #B4A698;
	margin-bottom: 71px;
}
.invested_sect .left_side .text::after, .invested_sect .left_side .text::before{
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #B4A698;
	left: -3.5px;
}
.invested_sect .left_side .text::after{
	top: -3px;
}
.invested_sect .left_side .text::before{
	bottom: -3px;
}
.invested_sect .left_side .text p{
	font-size: 20px;
	margin-bottom: 20px;
}
.invested_sect .left_side .text p:last-child{
	margin-bottom: 0;
}
.invested_sect .invest_about{
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 50px;
	gap: 35px;
	background: #B4A698;
	color: #fff;
	font-size: 25px;
	padding: 8px 8px 8px 45px;
}
.invested_sect .invest_about .arrow_btn{
	width: 63px;
	min-width: 63px;
	height: 63px;
	border-radius: 50%;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('../img/arrow_btn_bk.svg');
}




/* 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;
}

.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{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 11;
    left: 0;
    top: 0;
    padding: 29px 33px;
	overflow-y: auto;
    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;
	position: relative;
}
.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');
}
.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;
}


@media screen and (max-width: 1280px){
	header ul li{
        padding: 11px;
    }
    header .langs{
        margin-left: 30px;
    }
	.team_tabs{
		gap: 40px;
	}
	.invested_sect .container{
		gap: 45px;
	}
	.team_container.active{
		gap: 50px;
	}
	.team_main{
		height: 600px;
	}
}
@media screen and (max-width: 1024px){
	.soc_list{
		top: 40%;
		right: 40px;
	}
	/* 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;
    }
	header{
		position: relative;
		padding-top: 29px;
		padding-bottom: 22px;
	}
	header .right{
		display: none;
	}
	header .container{
		justify-content: center;
	}
	.burger{
        display: block;
    }
	.team_main{
		background-image: url('../img/team_main_mob.png');
	}
	.team_main h1{
		display: none;
	}
	.team_container.active{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0 20px;
	}
	.team_container .member_img{
		max-width: 366px;
	}
	.team_tabs{
		gap: 8px;
		position: relative;
		overflow-x: auto;
	}
	.team_tabs_wrap{
		position: relative;
	}
	.team_tabs_wrap::after, .team_tabs_wrap::before{
		content: '';
		position: absolute;
		top: -50px;
		width: 73px;
		height: 10px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.team_tabs_wrap::after{
		background-image: url('../img/nut_left.svg');
		left: 30px;
	}
	.team_tabs_wrap::before{
		background-image: url('../img/nut_right.svg');
		right: 30px;
	}
	h2 span{
		display: none;
	}
	.team_nut_sect{
		padding-top: 38px;
	}
	.team_nut_sect h2{
		margin-bottom: 79px;
	}
	.team_container .member_info h3{
		font-weight: 400;
	}
	.invested_sect .container{
		flex-direction: column-reverse;
		align-items: center;
	}
	.invested_sect .right_img{
		min-width: initial;
		max-width: 365px;
	}
	.invested_sect .left_side{
		padding-top: 0;
	}
	.invested_sect .left_side h2{
		display: none;
	}
	h2{
		font-size: 45px;
	}
	.team_container .member_info{
		max-width: 366px;
		padding-top: 0;
	}
	.invested_sect .left_side{
		max-width: 365px;
	}
	.invested_sect .left_side .text{
		padding: 0;
		border-left: none;
	}
	.invested_sect .left_side .text::after, .invested_sect .left_side .text::before{
		display: none;
	}
	.invested_sect .invest_about .arrow_btn{
		display: none;
	}
	.invested_sect .invest_about{
		padding: 28px;
		font-size: 20px;
	}
	.team_container li{
		font-size: 16px;
	}
	.team_nut_sect .container{
		padding: 0;
	}
}
@media screen and (max-width: 768px){
	.team_main{
		height: 300px;
		background-size: 100%;
		background-position: center top;
	}
	.team_nut_sect{
		padding-top: 0;
	}
	.invested_sect .invest_about{
		width: 100%;
		justify-content: center;
		padding: 28px 10px;
	}
	.container{
		padding: 0 20px;
	}
	.team_pop .popup{
		padding: 30px 20px 30px 30px;
	}
	.team_pop .text{
		padding: 0;
		border-left: none;
	}
	.team_pop .text p{
		font-size: 14px;
	}
	.team_pop .text::after, .team_pop .text::before{
		display: none;
	}
	.team_pop .popup .close_pop{
		width: 23px;
		height: 23px;
		background-size: 15px;
	}
}
@media screen and (max-width: 480px){
	.soc_list{
		top: 25%;
		right: 20px;
	}
	.soc_list li img{
		width: 14px;
		height: 14px;
	}
	.soc_list ul{
		gap: 8px;
	}
}