@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Sen:wght@400;700&display=swap');
@font-face{
	font-family:'evr';
	src:url('fonts/Everett-Regular.eot');
	src:local(※),
	url('fonts/Everett-Regular.woff') format('woff');
}
@font-face{
	font-family:'evm';
	src:url('fonts/Everett-Medium.eot');
	src:local(※),
	url('fonts/Everett-Medium.woff') format('woff');
}

/* Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
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, font, 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 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: 400;
	margin: 0;
	padding: 0;
	line-height: 1;
}
ol, ul, nav, li {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	height: auto;
	max-width: 100%;
	width: 100%;
	display: block;
}
a img {
	border: none;
}
a {
	color: #00f;
	text-decoration: none;
}
a:hover {
	color: #f00;
	text-decoration: none;
}
textarea, input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}
figure {
	margin: 0;
}
button {
	outline: none;
	border: none;
}

/*  common
------------------------------------------------------------------------ */
.nice { transition: all 300ms; }
.nice:hover { transition: all 300ms; }
.nices { transition: all 150ms; }
.nices:hover { transition: all 150ms; }
.ctw { transform: translate(-50%, 0%); }
.cth { transform: translate(0%, -50%); }
.cent { transform: translate(-50%, -50%); }
.cent-item {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.zero { font-size: 0; letter-spacing: 0; word-spacing: 0; }
::selection {
	background-color: #000;
	color: #624B09;
}
.off {
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.2,  0.8, 0.4, 1);
}
.on {
	opacity: 1 !important;
	transition: opacity 2s cubic-bezier(0.2,  0.8, 0.4, 1);
}
.ellipsis {
	width: 100%;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	word-wrap: normal !important;
	display: block;
}
.ellipsismx {
	display: -webkit-box;
	display: -ms-flexbox;
	display: box;
	margin-top:1px;
	max-height:80px;
	overflow:hidden;
	vertical-align:top;
	text-overflow: ellipsis;
	word-break:break-all;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
}
.btn {
	padding: 10px;
	text-align: center;
	display: inline-block;
	font-size: 15px;
	letter-spacing: 0.5px;
	border: 1px solid #f00;
	box-sizing: border-box;
}
.btn:hover { background-color: #f00; }
.under::before {
	content: "";
	width: 0%;
	height: 1px;
	background-color: #f00;
	position: absolute;
	bottom: -3px;
	transition: all 300ms;
}
.under:hover::before {
	width: 100%;
	background-color: #f00;
	transition: all 200ms;
}
.boxs { box-sizing: border-box; }
.mo {
	display: none !important;
}
.po {
	display: block !important;
}
/* module 
------------------------------------------------------------------------ */
/* dot */
.dot li {
	position: relative;
	padding-left: 12px;
}
.dot li::before {
	display: block;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #f00;
	position: absolute;
	top: 12px;
	left: 0;
}
/* end dot */
/* pagination */
.pagination {
	margin-top: 48px;
	text-align: center;
}
.pagination .current, 
.pagination a {
	font-size: 18px;
	line-height: 1;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}
.pagination .current {
	color: #f00;
}
/* end pagination */
/* layout
------------------------------------------------------------------------ */
body {
	position: relative;
	width: 100%;
	height: 100%;
    box-sizing: border-box;
	line-height: 1.7;
	word-break: keep-all;
	text-rendering: optimizeLegibility;
	font-size: 16px;
	color: #777774;
	font-family:
		'evr',
		'sen',
		'Noto Sans KR',
		sans-serif;
}
/* header 
------------------------------------------------------------------------ */
#hamberger {
	display: none;
	position: fixed;
	bottom: 12px;
	left: 50%;
	z-index: 11;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #efe7d3;
}
#hamberger span {
	width: 4px;
	height: 24px;
	background-color: #676767;
	display: block;
	position: absolute;
	top: 12px;
	transform: rotate(0deg);
	transition: 300ms;
}
#hamberger span:nth-child(1) {
	left: 12px;
}
#hamberger span:nth-child(2) {
	left: 50%;
	width: 16px;
	height: 2px;
	transform: translate(-50%, 0);
}
#hamberger span:nth-child(3) {
	left: auto;
	right: 12px;
	bottom: 0;
}
#hamberger.open span:first-child {
	left: 22px;
	width: 3px;
	transform: rotate(45deg);
}
#hamberger.open span:nth-child(2) {
	opacity: 0;
}
#hamberger.open span:last-child {
	width: 3px;
	right: 22px;
	transform: rotate(-45deg);
}
header {
	width: 100%;
	height: auto;
	position: fixed;
	bottom: 28px;
	z-index: 5;
	mix-blend-mode: difference;
}
header.act {
}
header section {
	position: relative;
	margin: 0 auto;
	height: 100%;
}
#logom {
	position: fixed;
	left: 50%;
	top: 12px;
	overflow: hidden;
	z-index: 99999;
	mix-blend-mode: difference;
}
#logom a img {
	width: 128px;
}
#logo {
	position: absolute;
	left: 50%;
	bottom: 0%;
	overflow: hidden;
}
#logo a {
	display: block;
}
#logo a img {
	width: 160px;
}
#nav {
	width: 100%;
	position: absolute;
	left: 50%;
	bottom: 0%;
	z-index: 9;
}
.gnb {
	width: 38%;
	display: inline-block;
}
.gnb li {
	width: 50%;
	text-align: center;
	display: inline-block;
}
#gnb-r {
	margin-left: 24%;
}
.gnb li a {
	font-size: 17px;
	text-transform: uppercase;
	color: #777774;
	position: relative;
	transition: all 300ms;
	line-height: 1;
}
.gnb li a::before {
	content: "";
	width: 0%;
	height: 1px;
	background-color: #555;
	position: absolute;
	bottom: -3px;
	transition: all 300ms;
}
.gnb li a:hover::before {
	width: 100%;
	background-color: #555;
	transition: all 300ms;
}
/* footer 
------------------------------------------------------------------------ */
footer {
	letter-spacing: 0.02em;
	width: 100%;
	margin-top: 0px;
	padding: 60px 40px 180px;
}
footer .sect-footer-wrap {
	margin: 0;
	width: 100%;
}
.sect-footer-wrap ul {
	vertical-align: top;
	display: inline-block;
	width: 50%;
}
.sect-footer-wrap ul li b {
	margin-right: 16px;
	font-weight: normal;
}
.sect-footer-wrap ul li {
	font-size: 16px;
}
/* content 
------------------------------------------------------------------------ */
.cont {
	width: 100%;
	min-height: 500px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
}
@media all and (min-width: 1441px) and (max-width: 9999px) {
.cont {
	padding: 0;
}
}
/* galley 
------------------------------------------------------------------------ */
#mogall {
	width: 100%;
	height: 130vh;
	overflow: hidden;
}
#mogall::before {
	background-position: center top;
	background-size: cover;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	animation: breath2 30s alternate infinite;
	background-image: url(images/moneogall.jpg);
}
@keyframes breath2 {
	0% { 
transform: scale(1);
	}
	50% {
transform: scale(1.2)
	}
	100% { 
transform: scale(1);
	}
}
#sect-about {
	position: relative;
	background-image: url(images/bg-beige6.jpg);
	padding: 120px 0 100px;
	height: 80vh;
}
#sect-about div img#mo {
	position: absolute;
	z-index: -1;
	right: 0;
	top: 0;
	width: auto;
	height: 100%;
}
#sect-about div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	height: 64vh;
}
#sect-about div article {
	width: 60%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#sect-about h2 {
	font-size: 36px;
	text-align: left;
	color: #777774;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}
#sect-about div h3 {
	font-size: 15px;
	color: #777774;
	text-transform: uppercase;
	line-height: 1.4;
	margin-top: 16px;
}
#sect-about div ul li b {
	margin-right: 12px;
	display: inline-block;
}
#sect-about div ul li {
	font-size: 14px;
	color: #777774;
	line-height: 1.75;
}
#sketch {
	padding: 120px 0 40px;
	background: #F5F1E7;
}
#sketch h3 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
	text-transform: uppercase;
}
#sketch .slick-slide img {
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#mockup {
}
#mockup {
	padding: 120px 0 100px;
	background: #F5F1E7;
}
#mockup ul {
	width: calc(100% - 80px);
	margin: 0 auto 80px;
	text-align: center;
}
#mockup ul li.one {
	width: 60%;
}
#mockup ul li {
	margin: 0 1% 2%;
	width: 48%;
	height: 45vh;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	position: relative;
}
#mockup ul li::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	background-position: center;
	background-size: cover;
}
#mockup ul li.c1::before { background-image: url(images/a.jpg); }
#mockup ul li.c2::before { background-image: url(images/b.jpg); }
#mockup ul li.c3::before { background-image: url(images/c.jpg); }
#mockup ul li.c4::before { background-image: url(images/d.jpg); }
#mockup ul li.c5::before { background-image: url(images/e.jpg); }

#mockup ul li:hover::before {
	animation: breath2 12s alternate infinite;
}
#mockup ul li img {
	width: 100%;
	display: none;
}
#mockup ul li div {
	padding-left: 12px;
	padding-right: 12px;
	position: absolute;
	box-sizing: border-box;
	bottom: 4px;
	width: 100%;
	left: 0;
	color: #DBCEB1;
}
#mockup ul li h5,
#mockup ul li h4 {
	font-size: 16px;
	text-transform: uppercase;
	width: 50%;
	clear: none;
	float: left;
	text-align: left;
}
#mockup ul li h5 {
	float: right;
	text-align: right;
}
#master {
	padding: 120px 40px 40px;
	background: #FAF8F3;
}
#master article {
	position: relative;
	border-bottom: 1px solid #DDD8CA;
	padding-bottom: 48px;
	margin-bottom: 48px;
}
#master article div {
	width: 50%;
	position: absolute;
	bottom: 48px;
}
#master article h5 {
	font-size: 15px;
	line-height: 1.5;
	position: absolute;
	top: 0;
}
#master article h4 {
	font-size: 24px;
	text-align: center;
	line-height: 1.5;
}
#master article div p {
	font-size: 15px;
}
#master article img {
	vertical-align: top;
	width: 45%;
	margin-left: 55%;
	height: auto;
	display: inline-block;
}
/* brand 
------------------------------------------------------------------------ */
#brand-intro {
	width: 100%;
	height: 100vh;
	position: relative;
}
.page-template-brand .cont h1.title {
	color: #444646;
}
.main-video {
	position: absolute;
	right: 0;
	bottom: 0;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	background-color: black; /* in case the video doesn't fit the whole page*/
	background-image: /* our video */;
	background-position: center center;
	background-size: contain;
	object-fit: cover; /*cover video background */
	z-index:1;

	min-height: 100%;
	min-width: 100%;
	width: 100%;
	display: block;
}
#meaning {
	background: #F5F1E7;
	position: relative;
	height: 360px;
	padding: 120px 0px 80px;
}
#meaning div {
	width: calc(100% - 80px);
}
#meaning div::before {
	width: 100%;
	height: 1px;
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	background: #777774;
}
#meaning div h4 {
	width: 30%;
	display: inline-block;
	line-height: 1.4;
	vertical-align: middle;
	text-align: center;
	background:#F5F1E7;
	font-size: 19px;
}
#meaning div img {
	width: 260px;
	padding-right: 40px;
	margin-right: calc(35% - 260px);
	display: inline-block;
	vertical-align: middle;
	background:#F5F1E7;
}
#meaning #eng {
	margin-left: calc(35% - 260px);
	padding-right: 0px;
	padding-left: 40px;
	margin-right: 0;
}
#meaning span {
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	width: 80%;
	text-transform: uppercase;
	position: absolute;
	bottom: 80px;
	left: 50%;
}
#feature {
	position: relative;
	background: #111;
	padding: 120px 0 100px;
	background-image: url(images/bg-g.jpg);
}
#feature article {
	width: 80%;
	margin: 48px auto;
}
#feature article p {
	width: calc(50% - 16px);
	font-size: 16px;
	color:#90897D;
	display: inline-block;
	vertical-align: top;
}
#feature article p:last-child {
	margin-left: 32px;
}
#feature #module {
	width: 64%;
	margin: 0 auto 48px;
}
#feature #module p {
	width: 100%;
	margin-left: 0;
	margin-top: 24px;
}
#feature .slick-dots li button {
	background: #333;
	border-color: #222;
}
#feature .slick-dots li.slick-active button {
	background-color: #777774;
	border-color: #777774;
}
.dark h2, 
.dark span {
	color: #777774 !important;
}
span.subtitle2 {
	letter-spacing: 0.04em;
	text-align: center;
	font-size: 24px;
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #DBCEB1;
}
#fgs {
	margin-top: 100px;
}
#facadeg {
	height: 64vh;
	width: 100%;
	background-size: 100%;
	background-position: center;
	background-attachment: fixed;
}
#element {
	background: #FAF8F3;
	padding: 100px 40px;
}
#element div h3 {
	font-size: 40px;
	color: #777774;
	width: 50%;
	float: left;
}
#element div h3 p {
	font-size: 16px;
	width: 50%;
	float: left;
}
#element h4 {
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	margin: 60px 0 12px;
}
#element .key-slide .slick-list, 
#element .key-slide .slick-slide {
	padding: 0 60px !important;
}
/* eterno-cheongdam 
------------------------------------------------------------------------ */
.page-template-eterno-cheongdam {
	background-color: #F5F1E7;
}
.page-template-eterno-cheongdam .cont {
	position: relative;
	overflow: hidden;
}	
.cont h1.title {
	z-index: 3;
	font-size: 50px;
	color: #777774;
	text-align: center;
	position: absolute;
	width: 100%;
	top: 48px;
	text-transform: uppercase;
}
.cont h1.title span {
	font-size: 20px;
	display: block;
	line-height: 1.4;
}
.cont h1.wh {
	color: #F5F1E7;
}
.ec-img {
	position: relative;
	width: 90%;
	margin: 0 auto;
	transform: translate(0, 50vh);
	margin-top: 30vh;
	z-index: -1;
}
.ec-img.act {
	transform: translate(0, 0vh);
	transition: all 1800ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
#facade {
	width: 100%;
}
#cloud1 {
	position: absolute;
	top: 150px;
	left: -15%;
	width: 50%;
	animation: doong 8s 0s infinite linear;
}
#cloud2 {
	position: absolute;
	top: 800px;
	width: 40%;
	right: -10%;
	animation: doong 8.5s 0s infinite linear;
}
@keyframes doong {
	0% {
transform: translate(0, 0px);
	}
	50% {
transform: translate(10px, 20px);
	}
	100% {
transform: translate(0, 0px);
	}
}
section.copy {
	width: 100%;
	background: #F5F1E7;
	margin: 0 auto;
	padding: 100px 40px 80px;
	overflow: auto;
	border-top: 1px solid #ccc;
}
section.copy h2 {
	font-size: 36px;
	line-height: 1.2;
	float: right;
	clear: none;
	width: 60%;
	text-transform: uppercase;
	text-align: right;
}
section.copy h2:first-child {
	font-size: 36px;
	line-height: 1.2;
	float: left;
	width: 30%;
	text-align: left;
}
section.copy span {
	font-size: 15px;
	line-height: 1.7;
	width: 40%;
	clear: both;
	float: left;
	text-transform: uppercase;
}
h2.sect-title {
	text-transform: uppercase;
	font-size: 40px;
	text-align: center;
	margin: 0 auto 36px;
}
.concept {
	background-image: url(images/bg-beige6.jpg);
	padding: 120px 0 100px;
}
.concept ul {
	width: calc(100% - 80px);
	margin: 0 auto 80px;
	text-align: center;
}
.concept ul li.one {
	width: 60%;
	height: 52vh;
}
.concept ul li {
	margin: 0 1% 2%;
	width: 48%;
	height: 45vh;
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	position: relative;
}
.concept ul li::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	background-position: center;
	background-size: cover;
}
.concept ul li.c1::before { background-image: url(images/c11.jpg); }
.concept ul li.c2::before { background-image: url(images/c12.jpg); }
.concept ul li.c3::before { background-image: url(images/c13.jpg); }
.concept ul li.c4::before { background-image: url(images/c4.jpg); }
.concept ul li.c5::before { background-image: url(images/c5.jpg); }
.concept ul li.c6::before { background-image: url(images/c6.jpg); }
.concept ul li.c7::before { background-image: url(images/c7.jpg); }
.concept ul li.c8::before { background-image: url(images/c8.jpg); }
.concept ul li.c9::before { background-image: url(images/c1.jpg); }
.concept ul li.c10::before { background-image: url(images/c2.jpg); }
.concept ul li.c11::before { background-image: url(images/c3.jpg); }
.concept ul li.c12::before { background-image: url(images/c9.jpg); }
.concept ul li.c13::before { background-image: url(images/c10.jpg); }

.concept ul li:hover::before {
	animation: breath2 12s alternate infinite;
}
.concept ul li img {
	width: 100%;
	display: none;
}
.concept ul li div {
	padding-left: 12px;
	padding-right: 12px;
	position: absolute;
	box-sizing: border-box;
	bottom: 4px;
	width: 100%;
	left: 0;
}
.concept ul li h5,
.concept ul li h4 {
	font-size: 16px;
	text-transform: uppercase;
	width: 50%;
	clear: none;
	float: left;
	text-align: left;
	color: #F5F1E7;
}
.concept ul li h5 {
	float: right;
	text-align: right;
}
.r-phi {
	background: #121212;
	background-image: url(images/bg-g.jpg);
}
.r-phi .phi-item {
	vertical-align: top;
	width: 50%;
	display: inline-block;
}
.r-phi .phi-item:nth-child(4) {
	border-bottom: none !important;
}
.r-phi .phi-item h3, 
.r-phi .phi-item p {
	color: #DBCEB1 !important;
}
#e-phi {
	padding: 100px 40px 80px;
}
#e-phi .phi-item {
	padding: 24px 0;
	text-align: center;
	border-bottom: 1px solid #D3CEC0;
}
#e-phi .phi-item:first-child {
	border-top: 1px solid #D3CEC0;
}
#e-phi .phi-item:last-child {
	border-bottom: none;
}
#e-phi .phi-item span {
	font-size: 15px;
	border: 2px solid;
	padding: 1px 5px;
	display: inline-block;
	margin: 0 auto 6px;
	color: #928D7F;
}
#e-phi .phi-item h3 {
	text-transform: uppercase;
	margin: 4px 0;
	font-size: 24px;
	color: #444646;
}
#e-phi .phi-item p {
	font-size: 17px;
	color: #444646;
}
section.copy {
	padding: 140px 40px 120px;
}
section.copy span, 
section.copy h2 {
	color: #d6c8ae;
}
section.copy h2#r {
	width: 40%;
}
.landscape {
	display: none;
	padding: 100px 0 80px;
	background: #F8F5ED;
	overflow: auto;
}
.slick-slide {
	padding: 0 60px;
}
ul.tabs {
	margin: 40px 0 10px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-align: center;
}
ul.tabs li {
	width: auto;
	color: #777774;
	overflow: hidden;
	border: 1px solid #777774;
	padding: 4px 8px;
	position: relative;
	display: inline-block;
	margin: 0 5px;
	line-height: 1.1;
	letter-spacing: 0;
}
ul.tabs li:hover {
	color: #444;
}
ul.tabs li.act {
	color: #fff;
	border: none;
	background: #777774;
}
.tab-cont .slick-slide {
	position: relative;
}
.landscape .tab-cont span {
	position: absolute;
	font-size: 16px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	text-align: center;
	color: #fff;
	letter-spacing: 0.05em;
}
.tab-wrap {
	clear: both;
	float: left;
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 16px;
}
.tab-wrap .hidein {
	padding-bottom: 32px;
	opacity: 1;
	top: 0;
	z-index: 1;
}
.tab-cont {
	padding: 0px;
	width: 100%;
	height: auto;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 20px;
	z-index: -1;
}
/* home 
------------------------------------------------------------------------ */
.home {
	background-image: url(images/bg-beige6.jpg);
}
#home-wrap .section {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#sect-main {
	width: 100%;
	height: 100vh;
	position: relative;
}
#main-img1 {
	width: 30%;
	height: 70%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
}
#sect-img.act #main-img1 {
	width: 100%;
	height: 100%;
	transition: 1s;
}
#sect-img h4 {
	font-size: 16px;
	color: #DBCEB1;
	line-height: 1.5;
	text-align: center;
	position: absolute;
	top: 80px;
	left: 50%;
	opacity: 0;
}
#sect-img.act h4 {
	opacity: 1;
	transition: 1s;
}
#main-slogan.act {
	color: #DBCEB1;
	transition: 1s;
}
#main-slogan.bye {
	opacity: 0;
	visibility: hidden;
	transition: 1s;
}
#main-slogan {
	color: #624B09;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.04em;
	font-size: 50px;
	width: 100%;
	top: 50%;
	left: 50%;
	position: absolute;
	transition: 1s;
}
/*
#sect-ceo {
	background-color: #F5F1E7;
}
#sect-ceo h3 {
	position: absolute;
	font-size: 48px;
	color: #444646;
	top: 60px;
	text-transform: uppercase;
	left: 50%;
	transform: translate(-50%, 0);
}
#sect-ceo img {
	width: 40%;
	max-width: 800px;
	position: absolute;
	left: 70%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#sect-ceo p {
	width: 40%;
	position: absolute;
	left: 25%;
		  text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
}
*/
#sect-philosophy {
	background-color: #F5F1E7;
}
#sect-philosophy h3 {
	position: absolute;
	font-size: 48px;
	color: #444646;
	top: 60px;
	text-transform: uppercase;
	left: 40px;
}
#sect-philosophy #by {
	left: auto;
	right: 40px;
}
#sect-philosophy #rafael {
	top: auto;
	left: auto;
	bottom: 120px;
	right: 40px;
}
#sect-philosophy img {
	width: 40%;
	position: absolute;
	left: 35%;
	top: 50%;
	mix-blend-mode: multiply;
}
.fp-controlArrow.fp-prev {
	left: 0 !important;
	border: none;
	background: transparent;
	width: 50% !important;
	height: 100%;
	top: 0;
}
.fp-controlArrow.fp-next {
	right: 0 !important;
	border: none;
	background: transparent;
	width: 50%;
	height: 100%;
	top: 0;
}
#sect-message h3 {
	border-top: 1px solid #888;
	position: absolute;
	top: 0;
	font-size: 48px;
	width: 100%;
	text-align: center;
	color: #444646;
	background-color: #F5F1E7;
	text-transform: uppercase;
}
#sect-message .slide div {
	position: absolute;
	width: calc(100% - 80px);
	left: 40px;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 0;
}
#sect-message .slide div h5 {
	font-size: 17px;
	width: 30%;
	color: #F5F1E7;
	vertical-align: middle;
	line-height: 1.6;
	display: inline-block;
}
#sect-message .slide div h6 {
	font-size: 17px;
	display: inline-block;
	vertical-align: middle;
	width: 70%;
	text-align: right;
	color: #F5F1E7;
	line-height: 1.6;
}
#sect-message .slide {
	position: relative;
	overflow: hidden;
}
#sect-message .slide::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(images/slide1.jpg);
	background-size: cover;
	animation: breath 30s alternate infinite;
}
@keyframes breath {
	0% { 
transform: scale(1);
	}
	50% {
transform: scale(1.2)
	}
	100% { 
transform: scale(1);
	}
}
#sect-message #slide2::before {
	background-image: url(images/slide2.jpg);
}
#sect-message #slide3::before {
	background-image: url(images/slide3.jpg);
}
#sect-message #slide4::before {
	background-image: url(images/slide4.jpg);
}
span.subtitle {
	position: absolute;
	top: 24px;
	left: 50%;
	letter-spacing: 0.04em;
	text-align: center;
	font-size: 18px;
	color: #DBCEB1;
}
#sect-moneo {
	background-color: #161617;
}
#sect-moneo div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 64vh;
}
#sect-moneo div article {
	width: 45%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#sect-moneo h2 {
	font-size: 50px;
	text-align: left;
	width: 100%;
	position: absolute;
	color: #DDD8CA;
	letter-spacing: 0.04em;
	z-index: 9;
}
#sect-moneo div h3 {
	font-size: 15px;
	color: #777774;
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: 20px;
}
#sect-moneo div h5 {
	font-size: 14px;
	color: #777774;
	line-height: 1.5;
}
#sect-moneo div img#la {
	width: 100%;
}
#sect-moneo div img#mo {
	position: absolute;
	z-index: -1;
	right: 0;
	top: 0;
	width: auto;
	height: 100%;
}
#sect-moneo-video {
	background-color: #000;
}
#sect-moneo-video #ico {
	width: 56px;
	height: auto;
	display: none;
}
#sect-moneo-video img {
	position: absolute;
	opacity: 1;
	left: 50%;
	top: 50%;
	width: auto;
	height: 64%;
	display: none;
}
#sect-moneo-video iframe {
	opacity: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80%;
	height: auto;
}
#sect-moneo-video.act iframe {
	opacity: 1;
	z-index: 9;
}
#sect-moneo-video.act img {
	opacity: 0 !important;
}
#sect-moneo-video #ico:hover {
	opacity: 1;
}
#sect-moneo-sketch {
	background-color: #000;
}
#sect-moneo-sketch div {
	position: absolute;
	opacity: 1;
	left: 50%;
	top: 50%;
	width: 80%;
	height: 64%;
	mix-blend-mode: hard-light;
	background-size: cover;
	background-position: center;
}
#sect-moneo-sketch div h5 {
	font-size: 14px;
	position: absolute;
	bottom: 12px;
	left: 12px;
	color: #aaa;
}
#sect-moneo-sketch div h5:last-child {
}
#sect-map {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #e4e4dc;
}
#sect-map h3 {
	text-align: center;
	font-size: 40px;
	margin-bottom: 24px;
}
#sect-map div {
	position: absolute;
	width: 80%;
	top: 48px;
	left: 50%;
}
#sect-map ul {
	vertical-align: top;
	display: inline-block;
	width: 33.3333%; 
	text-align: center;
}
#sect-map ul li b {
}
#sect-map ul li {
	text-align: center;
	font-size: 16px;
	line-height: 1.3;
}
.sect-footer-wrap {
	margin: 60px auto 180px;
	width: calc(100% - 80px);
}
.sect-footer-wrap ul {
	vertical-align: top;
	display: inline-block;
	width: 50%;
}
.sect-footer-wrap ul li b {
	margin-right: 16px;
	font-weight: normal;
}
.sect-footer-wrap ul li {
	font-size: 16px;
}
.sect-footer-wrap ul li.rf {
	font-size: 12px;
	letter-spacing: -0.02em;
	margin-top: 12px;
}
.sect-footer-wrap ul li.last {
	margin-top: 0;
}
#family {
	vertical-align: top;
	display: inline-block;
	width: 40%;
	margin-left: 10%;
	position: relative;
}
#family a.accordion {
	border: none;
	border: 1px solid #aaa;
	display: block;
	height: 100%;
	font-size: 16px;
	padding: 8px 16px;
	color: #787878;
}
#family a.accordion span i {
	-ms-transform: rotate(0deg); /* IE 9 */
	-webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
	transform: rotate(0deg);
}
#family div.panel {
	padding: 12px;
	position: absolute;
	top: 44px;
	margin-bottom: 0;
	width: 100%;
	height: 0;
	border: 1px solid #aaa;
	display: block;
	opacity: 0;
	transition: 0.3s;
}
#family div.panel.open {
	opacity: 1;
	height: 114px;
	transition: 0.3s;
}
#family div.panel ul li {
	font-size: 13px;
}
#family a.accordion span.chg i:last-child {
	opacity: 0;
}
#family div.panel ul li a:hover {
	color: #1A7C65;
}
#family a.accordion span i:last-child  {
	transform: rotate(90deg);
	left: 0;
}
a.accordion span.chg i {
	transform: rotate(135deg);
	transition: all 120ms;
}
a.accordion span.chg i:last-child {
	transform: rotate(-135deg);
}
a.accordion span {
	float: right;
	width: 10px;
	height: 28px;
	position: relative;
}
a.accordion span i {
	bottom: 50%;
	position: absolute;
	left: 0;
	background-color: #787878;
	width: 14px;
	height: 2px;
	display: block;
	transform: rotate(45deg);
	transition: all 120ms;
}
a.accordion span i:last-child {
	left: auto;
	right: 0;
	transform: rotate(-45deg);
}
div.panel {
	margin-bottom: 10px;
	display: none;
	color: #777;
	box-sizing: border-box;
	padding: 30px 0;
	line-height: 1.7;
}
#circle_cursor {
	opacity: 0.9;
}
/* popup 
   ------------------------------------------------------------------------ */
.pop {
	z-index: 9;
	position: fixed;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	background-color: #013efd;
	background-color: #000;
}
.pop div {
	box-sizing: border-box;
	padding: 32px 0;
	width: calc(100% - 80px);
	margin: 0 auto;
	overflow: auto;
}
.pop p {
	width: 80%;
	float: left;
	color: #fff;
	font-size: 14px;
	text-align: left;
}
.btn-pop {
	width: 20%;
	float: right;
	text-align: right;
	text-align: center;
	font-size: 13px;
	border: 1px solid #fff;
	background-color: #013efd;
	background-color: #000;
	cursor: pointer;
	color: #fff;
	width: 80px;
	padding: 4px 0;
}
.bth-pop:hover {
	background-color: #fff;
	color: #013efd;
	color: #000;
}
.pop a {
	color: #fff;
	border-bottom: 1px solid;
}
