@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Light.eot');
    src: url('../fonts/Jost-Lightd41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Jost-Light.woff2') format('woff2'),
        url('../fonts/Jost-Light.woff') format('woff'),
        url('../fonts/Jost-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.eot');
    src: url('../fonts/Jost-Regulard41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Jost-Regular.woff2') format('woff2'),
        url('../fonts/Jost-Regular.woff') format('woff'),
        url('../fonts/Jost-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumMyeongjo';
    src: url('../fonts/NanumMyeongjo.eot');
    src: url('../fonts/NanumMyeongjod41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NanumMyeongjo.woff2') format('woff2'),
        url('../fonts/NanumMyeongjo.woff') format('woff'),
        url('../fonts/NanumMyeongjo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
	--c1: #F2F1ED;
	--c2: #DCCBB3;
	--c3: #141414;
	--c4: #152621;
	--c5: #F3EAE1;
	
	--g1: linear-gradient(180deg, #152621 0%, #000 99.48%);
	--g2: linear-gradient(180deg, #152621 18.75%, #000 99.48%);

	--h1: max(40px, 128rem);
	--h2: max(32px, 96rem);
	--high: max(32px, 96rem);
	--sub: max(16px, 18rem);
	--btn: max(16px, 20rem);
	--body: max(16px, 18rem);

	--p1: max(16px, 40rem);

	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: var(--c4);
	font-size: 0.052vw;
}
body{
	min-height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--c1);
	font-size: var(--body);
	font-weight: 300;
	font-family: 'Jost', Arial, Helvetica, sans-serif;
	line-height: 130%;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Jost', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	padding: 0 var(--p1);
}
h1 {
	text-align: center;
	font-family: 'NanumMyeongjo';
	font-size: var(--h1);
	font-weight: 400;
	line-height: 93.5%;
	letter-spacing: -3.84rem;
}
h2 {
	text-align: center;
	font-family: 'NanumMyeongjo';
	font-size: var(--h2);
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2.88px;
}
a {transition: color .3s linear, background .3s linear;}
p {margin: 0 0 28px;}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-flex;
	padding: 11rem 38rem;
	color: var(--c2);
	font-size: max(14px, 16rem);
	font-weight: 400;
	line-height: 106%;
	letter-spacing: 1.6px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 0px;
	background: transparent;
	border: 1px solid var(--c2);
	transition: color .3s linear, background .3s linear;
}
.button:hover {
	color: var(--c4);
	background: var(--c2);
}
::selection {
	background-color: #8A7960;
}
/************************* form-block *************************/
.input-item {
	margin: 0 0 max(24px, 80rem);
}
.input-item input {
	display: block;
	width: 100%;
	height: max(30px, 40rem);
	padding: 0 0 max(11px, 15rem);
	margin: 0;
	font-size: max(14px, 16rem);
	font-weight: 400;
	color: var(--c1);
	text-transform: uppercase;
	background: transparent;
	border-radius: 0;
	border-bottom: 0.5px solid var(--c1);
}
.textarea {
	display: block;
	width: 100%;
	height: 170px;
	padding: 10px 11px;
	margin: 0 0 40px;
	font-size: 16px;
	resize: vertical;
	color: rgba(0, 0, 0, 0.9);
	background: transparent;
	border-radius: 4px;
	border: 1px solid rgba(0, 0, 0, 0.56);
}
::-webkit-input-placeholder {color: rgba(242, 241, 237, 0.3);}
:-moz-placeholder {color: rgba(242, 241, 237, 0.3); opacity: 1;}
::-moz-placeholder {color: rgba(242, 241, 237, 0.3); opacity: 1;}
:-ms-input-placeholder {color: rgba(242, 241, 237, 0.3);}
.form-button {
	text-align: center;
}
/************************* wrapper *************************/
body::before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	height: 56%;
	max-height: 1227px;
	background: var(--g1);
}
#wrapper {
	position: relative;
	padding: 110rem 0 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
body.is-loader {
	overflow: hidden;
}
.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
}
.loader::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 110%;
	content: '';
	background: url(../images/media/slide1.jpg) 50% 50% no-repeat;
	background-size: cover;
}
.loader-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/key-bg.svg) 50% 50% no-repeat;
	background-size: cover;
	transition: transform 2s ease-in;
}
.loader.animate .loader-bg {
	transform: scale(22);
}
.loader.hide {
	display: none;
}
.loader-box {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 120rem;
	width: max(350px, 440rem);
	text-align: center;
	font-size: var(--sub);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	transition: transform 2s ease-in;
}
.loader-key-wrap {
	overflow: hidden;
	margin: 40rem 0 0;
}
.loader-key {
	width: 126rem;
	height: 40rem;
	margin: 0 auto;
	background: url(../images/key.svg) 50% 50% no-repeat;
	background-size: contain;
	transition: transform 0.5s cubic-bezier(0.12, 0, 0.39, 0);
}
.line {
	overflow: hidden;
}
.line-inner {
	transition: transform 0.5s cubic-bezier(0.12, 0, 0.39, 0);
}
.loader.animate .line-inner,
.loader.animate .loader-key {
	transform: translateY(100%);
}
/************************* header *************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	padding: 36rem 0 0;
	transition: all 0.4s ease-out;
}
.header::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	content: '';
	height: 356rem;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 12.29%, rgba(0, 0, 0, 0.00) 77.62%);
	pointer-events: none;
}
.header-block {
	position: relative;
	min-height: 74rem;
}
.header-logo {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.header-logo img {
	height: 74rem;
}
.header-nav {
	display: flex;
	justify-content: space-between;
	padding: 4rem 0 0;
}
.header-nav-list {
	display: flex;
	gap: 36rem;
}
.header-nav-list:first-child {margin-right: auto;}
.header-phone {
	margin-left: 36rem;
}
.header-nav li {
	font-size: max(14px, 16rem);
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
.header-nav a {
	position: relative;
	color: var(--c1);
	text-decoration: none;
}
.header-nav a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -3rem;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--c1);
	transition: 1.1s var(--ease-out-expo);
	transform: scaleX(0);
	transform-origin: left;
}
.header-nav a:hover::before {
	transform: scaleX(1);
}
.header-nav .current-menu-item a {
	color: var(--c2);
}
.header-nav .current-menu-item a::before {display: none;}
.mob-nav-icon {
	position: absolute;
	top: 10px;
	right: 0px;
	z-index: 250;
	padding: 0 0 8px;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 32px;
    height: 1px;
    margin: 8px 0 0;
	background: var(--c1);
	transition: all .3s linear;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
	width: 19px;
    height: 1px;
    background: var(--c1);
	transition: all .3s linear;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 19px;
    height: 1px;
    background: var(--c1);
	transition: all .3s linear;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
	width: 32px;
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
	width: 32px;
}
/************************* main page *************************/
/************************* banner *************************/
.banner {
	margin-top: -110rem;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.banner-float {
	overflow: hidden;
	height: 100vh;
}
.banner-slide img {
	width: 100%;
	height: 110%;
	object-fit: cover;
}
.banner-slider::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: 10;
    content: '';
    height: 440rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 12.29%, rgba(0, 0, 0, 0.00) 77.62%);
    pointer-events: none;
}
.slick-arrow {
	position: absolute;
	bottom: 55rem;
	left: 50%;
	z-index: 20;
	display: block;
	width: 14px;
	height: 21px;
	font-size: 0;
	cursor: pointer;
	background: url(../images/arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	transition: all 0.3s linear;
}
.slick-arrow::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background: url(../images/arrow-hover.svg) 50% 50% no-repeat;
	background-size: contain;
	opacity: 0;
	transition: all 0.3s linear;
}
.slick-arrow:hover::after {
	opacity: 1;
}
.slick-prev {
	margin-left: -41rem;
	transform: scale(-1, 1);
}
.slick-next {
	margin-left: 27rem;
}
.banner-main {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100rem;
	z-index: 10;
}
.banner-block {
	display: flex;
	align-items: flex-end;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: transform 0.8s cubic-bezier(0.46,0.03,0.52,0.96), opacity 0.5s ease;
}
.banner-block.vis {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.banner-block h1 {
	text-align: left;
}
.banner-block .subheading {
	width: 430rem;
	margin: 0 30rem 7rem -161rem;
	text-align: left;
}
.banner-block .button {
	margin: 0 0 16rem;
}
/************************* main-wrap *************************/
.main-wrap {
	padding: 166rem 0 0;
}
.main-wrap .about-team {
    margin-bottom: 0;
	padding-bottom: 100rem;
}
.main-wrap .slogan {
	margin-bottom: 160rem;
}
.info {
	position: relative;
}
.info-bg {
	position: absolute;
	top: 0;
	right: -40rem;
	width: 834rem;
	height: 1078rem;
	min-height: 480px;
}
.info-bg img {width: 100%;}
.info-top {
	position: relative;
	max-width: 900rem;
	margin: 0 0 78rem;
}
.info-top h2 {
	margin: 0 0 16rem;
	text-align: left;
}
.info-top .subheading {
	text-align: left;
}
.info-content {
	position: relative;
}
.info-content .line-wrap {
    left: 215rem;
}
.info-block {
	position: relative;
	max-width: 900rem;
	margin: 0 auto 240rem;
}
.info-text {
	max-width: 430rem;
	margin: 0 0 36rem;
	opacity: 0.8;
}
.info-img {
	position: relative;
	max-width: 900rem;
	height: 627rem;
	min-height: 320px;
	margin: 0 auto 274rem;
}
.info-img img {
	width: 100%;
}
.main-wrap .invest-info {
    max-width: 1220rem;
	margin-bottom: 220rem;
}
.main-wrap .invest-info-text {
    max-width: 430rem;
}
.main-wrap .invest-info-img {
    height: 390rem;
    min-height: 240px;
}
.main-wrap .invest-info-img img {
	object-position: 50% 50%;
}
/************************* other pages *************************/
/************************* main *************************/
.main {
	padding: 115rem 0 0;
}
.top {
	max-width: 1140rem;
	margin: 0 auto 60rem;
}
.top h1 {
	margin: 0 0 24rem;
}
.top h1:last-child {margin: 0;}
.subheading {
	text-align: center;
	font-size: var(--sub);
	line-height: 150%;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	opacity: 0.8;
}
.img-float {
	overflow: hidden;
}
.img-float img {
	height: 120%;
	object-fit: cover;
}
.reveal {
	padding: 1px 0;
}
.reveal.holder {
	padding: 1px var(--p1);
}
.text-wrap {
	overflow: hidden;
	padding: 15px 0;
	margin: -15px 0;
}
.text-inner {
	transition: transform 0.8s cubic-bezier(0.46,0.03,0.52,0.96);
	transform: translateY(calc(100% + 20px));
}
.reveal.animate .text-inner {
	transform: translateY(0%);
}
.key-wrap {
	overflow: hidden;
	margin: 0 0 49rem;
}
.key {
	display: block;
    width: 82rem;
    height: 27rem;
    background: url(../images/key.svg) 50% 50% no-repeat;
    background-size: contain;
}
.reveal .key {
	transition: transform 0.8s cubic-bezier(0.46,0.03,0.52,0.96);
	transform: translateY(calc(100% + 20px));
}
.reveal.animate .key {
	transform: translateY(0%);
}
/************************* about *************************/
.about-top-img {
	max-width: 980rem;
	height: 356rem;
	margin: 0 auto 110rem;
}
.about-top-img img {
	width: 100%;
}
.about-top {
	position: relative;
	max-width: 1080rem;
	margin: 0 auto 160rem;
	padding-bottom: 74rem;
}
.about-top::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 82rem;
    height: 27rem;
    background: url(../images/key.svg) 50% 50% no-repeat;
    background-size: contain;
}
.about-top h2 {
	margin: 0 0 48rem;
	line-height: 120%;
}
.about-top-text {
	max-width: 650rem;
	margin: 0 auto;
	opacity: 0.8;
	text-align: center;
}
.about-team {
	max-width: 900rem;
	margin: 0 auto 330rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
}
.about-team-col {
	width: calc(50% - 20rem);
	margin: 0 0 60rem;
}
.about-team-col:last-child {
	margin-left: auto;
}
.about-team-col.img-float{
	height: 540rem;
	min-height: 360px;
}
.about-team-col img {
	width: 100%;
}
.about-team-text {
	width: 155%;
	margin: 0 0 36rem;
	opacity: 0.8;
}
.about-team-col h2 {
	width: 200%;
	position: relative;
	z-index: 10;
	margin: 0 0 16rem;
	text-align: left;
}
.about-team-col .subheading {
	text-align: left;
}
.history {
	display: flex;
	justify-content: space-between;
	margin: 0 0 230rem;
}
.history-col {
	position: relative;
	width: calc(50% - 40rem);
	padding: 0 0 78rem;
}
.history-col:first-child::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -20rem;
	content: '';
	width: 1px;
	background: var(--c1);
}
.history-title {
	position: sticky;
	top: 150rem;
	left: 0;
	z-index: 10;
}
.history-title::after {
	position: absolute;
	top: 42rem;
	right: -30rem;
	content: '';
	width: 20rem;
	height: 20rem;
	background: var(--c2);
	border-radius: 50%;
}
.history-title h2 {
	margin: 0 0 16rem;
	text-align: left;
}
.history-title .subheading {
	text-align: left;
}
.history-item {
	max-width: 430rem;
	margin: 0 0 460rem;
}
.history-item:last-child {margin: 0;}
.history-year {
	margin: 0 0 16rem;
	color: var(--c2);
	font-family: 'NanumMyeongjo';
	font-size: max(28px, 64rem);
	font-weight: 400;
	line-height: 130%;
}
.history-text {
	opacity: 0.8;
}
/************************* invest *************************/
.invest-top {
	max-width: 900rem;
	margin: 0 auto 80rem;
}
.invest-top-img {
	height: 356rem;
	min-height: 240px;
	margin: 0 0 60rem;
}
.invest-top-img img {
	width: 100%;
}
.invest-top-block {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.invest-top-col {
	position: relative;
	width: calc(50% - 20rem);
	padding-bottom: 160px;
}
.invest-top-col:last-child {
	padding-top: 140rem;
}
.invest-top-text {
	opacity: 0.8;
}
.invest-form {
	margin: 0 0 165rem;
}
.invest-form h2 {
	margin: 0 0 40rem;
}
.invest-info {
	max-width: 940rem;
	margin: 0 auto 165rem;
}
.invest-info-top {
	max-width: 900rem;
	margin: 0 auto 80rem;
}
.invest-info-top h2 {
    margin: 0 0 16rem;
	text-align: left;
}
.invest-info-top .subheading {
	text-align: left;
}
.invest-info-block {
	display: flex;
}
.invest-info-img {
	width: 50%;
	height: 550rem;
	min-height: 240px;
}
.invest-info-img img {
	width: 100%;
	object-position: 0 50%;
}
.invest-info-content {
	width: 50%;
	padding: 0 0 0 40rem;
}
.invest-info-text {
	margin: 0 0 36rem;
	opacity: 0.8;
}
.link-flash {
	position: relative;
	font-size: max(14px, 16rem);
	font-weight: 400;
	line-height: 106%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--c2);
	text-decoration: none;
}
.link-flash::before,
.link-flash::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -3rem;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--c2);
	transition: 1.1s var(--ease-out-expo);
}
.link-flash::before {
	transform: scaleX(0);
	transform-origin: left;
}
.link-flash::after {
	transform-origin: right;
	transition-delay: 0.25s;
}
.link-flash:hover::before {
	transform: scaleX(1);
	transition-delay: 0.25s;
}
.link-flash:hover::after {
	transform: scaleX(0);
	transition-delay: 0s;
}
.slogan {
	max-width: 1395rem;
	margin: 0 auto 165rem;
	position: relative;
}
.slogan-text {
	text-align: center;
	font-family: 'NanumMyeongjo';
	font-size: var(--high);
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -2.88rem;
}
.slogan-line {
	position: relative;
	white-space: nowrap;
	color: rgba(242, 241, 237, 0.10);
	display:inline-block;
}
.slogan-cover {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--c1);
	overflow: hidden;
	width: 0%;
}
.slogan-text.active .slogan-cover {
	width: 100%;
}
.line-mob {display: none;}
/************************* team *************************/
.box {
	display: flex;
	justify-content: space-between;
	position: relative;
	max-width: 980rem;
	margin: 0 auto 80rem;
}
.box-col {
	position: relative;
	width: calc(50% - 20rem);
}
.line-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
}
.line-dash {
	width: 1px;
	height: 0%;
	background: var(--c1);
	transition: height 1.5s cubic-bezier(0.46,0.03,0.52,0.96);
}
.line-dash.animate {
	height: 100%;
}
.box-img {
	margin: 0 0 24rem;
	height: 720rem;
	min-height: 425px;
}
.box-img img {width: 100%;}
.box-text {
	margin: 0 0 24rem;
	opacity: 0.8;
}
.box-text:last-child, .box-img:last-child {margin: 0;}
.team .box-col {
	padding-bottom: 156rem;
}
.invest-box .box-img {
	margin: 0 0 24rem;
	height: 470rem;
	min-height: 240px;
}
/************************* contacts *************************/
.contacts-info {
	max-width: 800rem;
	margin: 0 auto 48rem;
	color: var(--c2);
	text-align: center;
	font-size: var(--sub);
	line-height: 180%;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	opacity: 0.8;
}
.contacts .join-form {
	margin-bottom: 144rem;
}
.contacts-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 120rem;
}
.contacts-keyhole {
	width: 230rem;
	margin: 0 0 98rem;
}
.contacts-keyhole img {width: 100%;}
.contacts-bottom-text {
	max-width: max(320px, 430rem);
	text-align: center;
	font-size: var(--sub);
	line-height: 150%;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	opacity: 0.8;
}
/************************* join *************************/
.join {
	padding: 0 0 160rem;
}
.join h2 {
	margin: 0 0 35rem;
}
.join-form {
	position: relative;
	max-width: 900rem;
	margin: 0 auto;
}
.join-form .key-wrap {
	margin: 0 0 88rem;
}
.join-form .key {
	margin: 0 auto;
}
.input-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.input-box .input-item {
	width: calc(50% - 20rem);
}
/************************* 404 *************************/
.page-404 {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 165rem 0 15rem;
}
.page-404 .holder {width: 100%;}
.page-404-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-404-num {
	display: flex;
	margin: 0 0 40rem;
}
.page-404-num img:nth-child(1),
.page-404-num img:nth-child(3){
	width: 187rem;
}
.page-404-num img:nth-child(2){
	width: 148rem;
	margin: 0 20rem 0 30rem;
}
.page-404-text {
	margin: 0 0 60rem;
	text-align: center;
	font-size: var(--sub);
	line-height: 150%;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	opacity: 0.8;
}
/************************* thanks *************************/
.thanks {
	text-align: center;
}
.thanks h2 {
	margin: 0 0 16rem;
}
.thanks .subheading {
	margin: 0 0 80rem;
}
/************************* footer *************************/
.footer {
	margin: auto 0 0;
	padding: 0 0 35rem;
	font-weight: 400;
}
.footer-top {
	position: relative;
}
.footer-logo {
	width: 300rem;
	position: absolute;
	left: 0;
	top: 22rem;
}
.footer-logo img {
	width: 100%;
}
.footer-top {
	display: flex;
	justify-content: center;
	padding: 75rem 0 25rem;
}
.footer-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 900rem;
}
.footer-nav li {
	font-size: max(14px, 16rem);
	line-height: 150%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
.footer-nav a {
	position: relative;
	color: var(--c1);
	text-decoration: none;
}
.footer-nav a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -3rem;
	display: block;
	width: 100%;
	height: 1px;
	background: var(--c1);
	transition: 1.1s var(--ease-out-expo);
	transform: scaleX(0);
	transform-origin: left;
}
.footer-nav a:hover::before {
	transform: scaleX(1);
}
.footer-text {
	margin: 0 0 24rem;
	color: var(--c1);
	font-size: max(12px, 14rem);
	line-height: 110%;
	letter-spacing: 0.7px;
	opacity: 0.5;
}
.footer-text p {margin: 0 0 16rem;}
.footer-text p:last-child {margin: 0;}
.footer-bottom {
	display: flex;
	justify-content: space-between;
}
.footer-copy {
	color: var(--c1);
	font-size: max(14px, 16rem);
	line-height: 150%;
	opacity: 0.5;
}
.footer-studio {
	color: var(--c1);
	font-size: max(14px, 16rem);
	line-height: 150%;
}
.footer-studio a {
	color: var(--c1);
	text-decoration: none;
}
.footer-studio a:hover {color: var(--c2)}
.mob-hidden {display: none;}
/************************* popups *************************/
.popup {
	display: none;
	width: 524px;
	border-radius: 20px;
}
.popup.fancybox-content {
	padding: 72px 40px 48px;
	color: rgba(0, 0, 0, 0.82);
	background: #D4D4D4;
}
/************************* media *************************/
@media screen and (max-width: 1500px) {
	.banner-block .subheading {
		width: 460rem;
	}
	.button {
		padding: 13rem 38rem 11rem;
	}
}
@media screen and (max-width: 1399px) {
	.banner-block .subheading {
		width: 320px;
		margin: 0 30rem 7rem -161rem;
		text-align: left;
	}
}
@media screen and (max-width: 1299px) {
	.box,
	.invest-top, 
	.join-form,
	.invest-info,
	.about-top-img,
	.about-top,
	.about-team,
	.info-block,
	.info-img {
		max-width: 640px;
	}
	.about-top-img {
		min-height: 240px;
	}
	.about-top-text {
		max-width: 480px;
	}
	.history-item {
		max-width: 320px;
	}
	.about-team-text {
		width: 140%;
	}
	.info-text {
		max-width: 320px;
	}
	.main-wrap .invest-info-text {
		max-width: none;
	}

}
@media screen and (max-width: 1023px) {
	:root{
		--body: max(14px, 18rem);
		--sub: max(14px, 18rem);
	}
	#wrapper {
		padding: 60px 0 0;
	}
	.pinned-wrap {
		padding: 60px 0 0;
	}
	.header {
		padding: 24px 0 0;
		transition: all 0.4s ease-out;
	}
	.header::before {
		height: 155px;
	}
	.header-block {
		min-height: 36px;
	}
	.header-logo img {
		height: 36px;
	}
	.mob-nav-icon {
		display: block;
	}
	.header-nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--g2);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 60px 0 0;
	}
	.header-nav.vis {
		display: flex;
	}
	.header-nav-list {
		flex-direction: column;
		align-items: center;
		gap: 36px;
		position: relative;
	}
	.header-nav-list:first-child {margin: 0 0 36px;}
	.header-nav-list:nth-child(2) {
		padding: 0 0 75px;
	}
	.header-nav-list:nth-child(2)::after {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: '';
		width: 48px;
   		height: 15px;
		background: url(../images/key.svg) 50% 50% no-repeat;
		background-size: contain;
	}
	.header-nav li {
		font-family: 'NanumMyeongjo';
		font-size: 40px;
		font-weight: 400;
		line-height: 90%;
		letter-spacing: -1.2px;
		text-transform: capitalize;
	}
	.header-nav a {
		color: var(--c5);
	}
	.header-phone {
		display: none;
	}
	.page-404 {
		padding: 104px 0 80px;
	}
	.page-404-num {
		margin: 0 0 26px;
	}
	.page-404-num img:nth-child(1),
	.page-404-num img:nth-child(3){
		width: 110px;
	}
	.page-404-num img:nth-child(2){
		width: 87px;
		margin: 0 10px 0 17px;
	}
	.page-404-text {
		max-width: 280px;
		margin: 0 auto 110px;
	}
	.button {
		padding: 13px 38px;
		font-size: max(12px, 16rem);
		letter-spacing: 1.2px;
	}
	.footer {
		padding: 0 0 16px;
	}
	.footer-logo {
		width: 300px;
		margin: 0 auto 36px;
		position: relative;
		left: auto;
		top: auto;
	}
	.footer-top {
		flex-direction: column;
		padding: 0 0 16px;
	}
	.footer-nav {
		max-width: none;
	}
	.footer-nav li {
		font-size: max(12px, 16rem);
		letter-spacing: 1.2px;
	}
	.footer-text {
		margin: 0 0 17px;
		font-size: max(10px, 14rem);
		letter-spacing: 0.5px;
	}
	.footer-text p {margin: 0 0 11px;}
	.footer-text p:last-child {margin: 0;}
	.footer-bottom {
		flex-direction: column-reverse;
	}
	.footer-copy {
		font-size: max(12px, 16rem);
		line-height: 130%
	}
	.footer-studio {
		margin: 0 0 8px;
		font-size: max(12px, 16rem);
		line-height: 130%
	}
	.input-box .input-item {
		width: 100%;
	}
	.main {
		padding: 35px 0 0;
	}
	.top {
		max-width: none;
		margin: 0 0 24px;
	}
	.top h1 {
		margin: 0 0 16px;
	}
	.contacts-info {
		max-width: none;
		margin: 0 auto 16px;
	}
	.join-form {
		max-width: 480px;
		padding: 36px 0 0;
	}
	.contacts .join-form {
		margin-bottom: 45px;
	}
	.join-form::before {
		width: 48px;
		height: 15px;
	}
	.form-button {
		padding: 16px 0 0;
	}
	.contacts-bottom {
		margin: 0 0 60px;
	}
	.contacts-keyhole {
		width: 115px;
		margin: 0 0 37px;
	}
	.box {
		position: relative;
		flex-direction: column;
		margin: 0 auto 36px;
		padding: 0 0 190px;
	}
	.line-wrap {
		top: auto;
		height: 173px;
	}
	.box-col {
		width: 100%;
	}
	.box-col:first-child::after {
		display: none;
	}
	.box-img {
		margin: 0 0 28px;
	}
	.box-text {
		margin: 0 0 24px;
	}
	.team .box-col {
		padding-bottom: 0;
	}
	.team .box-col:not(:last-child) {
		margin: 0 0 28px;
		text-align: center;
	}
	.mob-hidden {display: block;}
	.mob-hide {display: none;}
	.join {
		padding: 0 0 80px;
	}
	.join h2 {
		margin: 0 0 16px;
	}
	.join .join-form {
		padding: 75px 0 0;
	}
	.invest-box {
		flex-direction: column-reverse;
	}
	.invest-box .box-col:first-child {
		margin: 0;
		text-align: left;
	}
	.invest-box .box-col:last-child {
		margin: 0 0 24px;
	}
	.invest-top {
		margin: 0 auto;
		padding: 0 0 96px;
	}
	.invest-top-img {
		position: relative;
		margin: 0 0 30px;
	}
	.line-mob {
		position: relative;
		overflow: hidden;
		display: block;
		width: 1px;
		height: 60px;
		margin: 0 auto 28px;
		background: rgba(242, 241, 237, 0.2);
	}
	.line-mob::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 1px;
		height: 0%;
		background: var(--c1);
		animation: line 1.5s infinite ease-in;
	}
	@keyframes line {
		0% {
			height: 0%;
		}
		45% {
			height: 100%;
		}
		55% {
			top: 0%;
			height: 100%;
		}
		100% {
			top: 100%;
			height: 100%;
		}
	}

	.invest-top-block {
		flex-direction: column;
	}
	.invest-top-col {
		width: 100%;
		padding-bottom: 0;
	}
	.invest-top-block .line-wrap {
		display: none;
	}
	.invest-top-col:last-child {
		padding-top: 0;
	}
	.invest-top-text {
		margin: 0 0 24px;
	}
	.invest-top-highliht {
		display: block;
		margin: 0 0 24px;
		text-align: center;
		font-family: 'NanumMyeongjo';
		font-size: 32px;
		font-weight: 400;
		line-height: 130%;
		letter-spacing: -0.96px;
	}
	.invest-form {
		margin: 0 0 80px;
	}
	.invest-form h2 {
		margin: 0 0 24px;
	}
	.invest-info {
		margin: 0 auto 80px;
	}
	.invest-info-top {
		max-width: none;
		margin: 0 auto 28px;
	}
	.invest-info-top h2 {
		margin: 0 0 12px;
	}
	.invest-info-block {
		flex-direction: column;
	}
	.invest-info-block .invest-info-img {
		display: none;
	}
	.invest-info-img {
		width: 100%;
		margin: 0 0 24px;
	}
	.invest-info-content {
		width: 100%;
		padding: 0;
	}
	.invest-info-text {
		margin: 0 0 36px;
	}
	.slogan {
		max-width: none;
		margin: 0 auto 80px;
	}
	.slogan-text {
		line-height: 130%;
		letter-spacing: -0.96px;
	}
	.about-top-img {
		position: relative;
		margin: 0 auto 28px;
		padding: 0;
	}
	.about-top {
		margin: 0 auto 80px;
		padding-bottom: 40px;
	}
	.about-top::before {
		width: 48px;
		height: 15px;
	}
	.about-top h2 {
		margin: 0 0 16px;
		line-height: 130%;
	}
	body {
		line-height: 140%;
	}
	h1 {
		line-height: 110%;
		letter-spacing: -1.2px;
	}
	h2 {
		letter-spacing: -0.96px;
		line-height: 110%;
	}
	.about-team {
		margin: 0 auto 80px;
		flex-direction: column;
		align-items: flex-start;
	}
	.about-team-col {
		width: 100%;
		margin: 0 0 28px;
	}
	.about-team-col:last-child {
		margin-left: auto;
	}
	.about-team-text {
		width: auto;
		margin: 0 0 36px;
	}
	.about-team-col h2 {
		width: auto;
		margin: 0 0 16px;
	}
	.about-team-text.mob-hidden {
		margin: 28px 0 0;
	}
	.history {
		flex-direction: column;
		margin: 0 0 80px;
	}
	.history-col {
		width: 100%;
		padding: 0 0 24px;
	}
	.history-col:first-child::after {
		display: none;
	}
	.history-title {
		position: relative;
		top: auto;
		left: auto;
	}
	.history-title::after {
		display: none;
	}
	.history-title h2 {
		margin: 0 0 16px;
	}
	.history-item {
		display: flex;
		justify-content: space-between;
		max-width: none;
		margin: 0;
		padding: 0 0 80px;
	}
	.history-item::after {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 46%;
		content: '';
		width: 1px;
		background: var(--c1);
	}
	.history-year {
		position: relative;
		width: calc(46% - 15px);
		margin: 0;
	}
	.history-year::after {
		position: absolute;
		top: 15px;
		right: -20px;
		z-index: 10;
		content: '';
		width: 9px;
		height: 9px;
		background: var(--c2);
		border-radius: 50%;
	}
	.history-text {
		width: calc(54% - 20px);
	}
	.banner {
		margin-top: -60px;
	}
	.banner-slider::before {
		height: 320px;
	}
	.slick-arrow {
		bottom: 65px;
		left: auto;
		right: 16px;
		width: 12px;
		height: 24px;
	}
	.slick-prev {
		margin-right: 70px;
		margin-left: 0;
	}
	.slick-next {
		margin-left: 0;
	}
	.banner-main {
		bottom: 52px;
	}
	.banner-block {
		flex-direction: column;
		align-items: flex-start;
	}
	.banner-block h1 {
		width: 103%;
		margin: 0 0 16px;
	}
	.banner-block .subheading {
		width: auto;
		margin: 0 0 34px;
	}
	.banner-block .button {
		margin: 0;
	}
	.main-wrap {
		padding: 48px 0 0;
	}
	.main-wrap .about-team {
		padding-bottom: 80px;
	}
	.key-wrap {
		margin: 0 0 16px;
	}
	.key {
		width: 48px;
		height: 15px;
	}
	.main-wrap .slogan {
		margin-bottom: 80px;
	}
	.info-bg {
		position: relative;
		top: auto;
		right: auto;
		width: auto;
		max-width: 640px;
		margin: 0 auto 24px;
	}
	.info-bg img {width: 100%;}
	.info-top {
		max-width: 640px;
		margin: 0 auto 28px;
	}
	.info-top h2 {
		margin: 0 0 12px;
	}
	.info-block {
		margin: 0 auto 80px;
	}
	.info-text {
		max-width: none;
		margin: 0 0 36px;
	}
	.info-img {
		margin: 0 auto 24px;
	}
	.main-wrap .invest-info {
		position: relative;
		max-width: 640px;
		margin-bottom: 36px;
		padding: 0 0 160px
	}
	.main-wrap .invest-info-text {
		max-width: none;
	}
	.info-content .line-wrap {
		left: 50%;
		height: 181px;
		top: auto;
	}
	.loader.animate .loader-bg {
		transform: scale(12);
	}
	.loader-box {
		bottom: 70px;
	}
	.loader-key-wrap {
		margin: 16px 0 0;
	}
	.loader-key {
		width: 48px;
		height: 15px;
	}
	.link-flash {font-size: max(12px, 16rem);}
	.input-item input {font-size: max(12px, 16rem);}
	.thanks h2 {
		margin: 0 0 16px;
	}
	.thanks .subheading {
		margin: 0 0 40px;
	}
	
}
@media screen and (max-width: 768px) {
	.loader::before {
		background: url(../images/media/slide1-mob.jpg) 50% 50% no-repeat;
		background-size: cover;
	}
}

@media screen and (max-width: 576px) {
	.contacts-info {
		max-width: 300px;
		margin: 0 auto 16px;
	}
	.about-top-img {
		min-height: 200px;
	}
	.about-team-col.img-float{
		min-height: 450px;
	}
	.invest-top-img {
		min-height: 200px;
	}
	.info-bg {
		min-height: 240px;
	}

}

.holder.min-holder {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content-privacy {
    margin-top: 50rem;
}

.content-privacy h3 {
    font-weight: 300;
    margin-bottom: 12rem;
    text-transform: uppercase;
}

.footer-copy {
    display: flex;
    gap: 10rem;
}

.privacy {
    display: flex;
    gap: 20px;
	margin-bottom: 100rem;
}

.privacy a {
    color: #fff;
}

@media (min-width:1024px) {
	.footer-copy {
		gap: 40rem;
	}
	.privacy {
		gap: 20rem;
	}
}

@media (max-width:1024px) {
	.footer-copy {
    flex-direction: column;
}
}
