@charset "UTF-8";
@charset "iso-8859-15";

/* ==========================================================================
Reset
========================================================================== */

body , .all-wrap{background:#222222;}
img {border:none;max-width:100%;} 

/* ==========================================================================
Typography
========================================================================== */

*:focus {outline: none;}
::selection { background:#333333; color:#fff; }
::-moz-selection { background:#333333; color:#fff; }
a , a:foucus, a:active{outline:none;}
textarea,input,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
     border:1px solid #999999;
     font-size:15px;
}
select{
	border: 1px solid #999999; 
	border-radius: 0px; /* iOS 둥근모서리 제거 */
}
/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand { 
  display: none;
}
p {
  font-size: 14px;
  line-height: 1.4;
  color:#666;
  font-weight:normal;
}
h1, h2, h3, h4,h5,h6,p,span,address{
	font-family:'Lato','Noto Sans',tahoma, verdana, sans-serif;
}

h1 {
	font-size: 77px; 
	font-weight: 300;  
	letter-spacing:-3px;
}
h2 {
	font-size: 55px;
	color: #3D4351; 
	font-weight:400;
}
h3 {
	font-size: 40px;
	margin-bottom: 20px;
	line-height:1.2;
	color: #3D4351; 
	font-weight:400;	
}
h4 {
	font-size: 36px; 
	font-weight:300;
}
h5 {
	font-size: 21px;
	margin:25px 0;  
	color: #3D4351;
  	font-weight: 500; 
}  
.btn {
	font-size: 16px;
	color:#fff;
	border: solid 1px #FFF;
	display: inline-block;
	border-radius:0;
	background:transparent;
	background:rgba(255,255,255,.1);
}
dt,dd {
	line-height:1.3;
}

.btn:hover, .btn:focus {
  color: #fff;
}
.btn:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}
.btn-default:hover, 
.btn-default:focus, 
.btn-default.focus, 
.btn-default:active, 
.btn-default.active, 
.open>.dropdown-toggle.btn-default{
	background-color:transparent;
}
.btn-default:hover{
	border-color:#ffffff;
}
.btn:active, 
.btn.active{
	box-shadow:none;	
}
.open>.dropdown-toggle.btn-default{
	color:#fff;
}
.dropdown-menu{
	border-radius:0px;
}
.dropdown-menu>.active>a, 
.dropdown-menu>.active>a:hover, 
.dropdown-menu>.active>a:focus{
	background:#666666;
}
.dropdown-menu>li>a:hover {
	background:#f0f0f0;
}
.btn-white {
  font-size: 13px;
  border: solid 2px;
  border-radius: 40px;
  display: inline-block;
  border-color: #fff; }

.btn-white:hover, .btn-white:focus {
  color: #FF5274;
  border-color: #FF5274; }

.btn-fill {
  color: #fff;
  border: solid 2px #FF5274;
  border-radius: 40px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #FF5274; }

.btn-fill:hover, .btn-fill:focus {
  color: #fff;
  background-color: #D7405D;
  border-color: #D7405D; }

.btn-small {
  padding: 8px 40px; }

.btn-large {
  padding: 15px 40px; }

.btn-margin-right {
  margin-right: 20px; }
  
.btn-down{
	display:inline-block;
	min-width:260px;
	margin-right:20px;	
	padding:10px;
	color:#ffffff;
	text-align:center;
	background:#333333;
	line-height:1.5;
	transition:all 0.2s ease;
}
.btn-down .fa {
	margin-right:5px;
}
.btn-down:hover{
	background:#888888;
	color:#ffffff;
	}
.btn-down:last-child{
	margin-right:0;
}
.btn-down >span {
	display:block;
}

/************* Forms - Input Checkbox *******************/
.chk {
    display:inline-block;
    cursor:pointer;
    vertical-align:middle;
    padding:2px 0 2px 25px;
    position:relative;
    min-height:22px;
    line-height:1.5;
    font-size:14px;
    -webkit-user-select: none;
}
/*
.chk + .chk {
    margin-left:10px;
}
*/
.chk input {
    display:none;
}
.chk > span {
    display:block;
    white-space:nowrap;
    font-weight:400;
    color:#888888; 
}
.chk > span:before{
    content:"";
    width:17px;
    height:17px;
    position:absolute;
    left:0;
    bottom:4px;
    background-color:#fff;
    border:1px solid #ababab;
}
.chk span:after{
    content:"\f00c";
    display:inline-block;
    font-family: "FontAwesome";
    color:#fff;
    font-size:15px;
    line-height:1;
    position:absolute;
    font-weight:normal;
    text-align:center;
    width:17px;
    height:17px;
    left:0;
    bottom:4px;
    background-color:#333333;
    border-radius:3px;
    
    -webkit-transform:scale(0);
       -moz-transform:scale(0);
         -o-transform:scale(0);
            transform:scale(0);

    -webkit-transition:-webkit-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
       -moz-transition:-moz-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
         -o-transition:-o-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
            transition:transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}
.chk input:checked + span {
    color:#414141;
}
.chk input:checked + span:after{
    -webkit-transform:scale(1);
       -moz-transform:scale(1);
         -o-transform:scale(1);
            transform:scale(1);
}
.chk input[disabled] + span,
.chk input[readonly] + span {
    opacity:0.65;
}
.chk input[disabled] + span:after,
.chk input[readonly] + span:after {
   background-color:#6e6e6e;
}
.chk.hide_txt {
    padding-left:17px;
    min-height:19px;
}
.chk.hide_txt > span {
    font-size:0;
}
/* clearfix:Start */
.clearfix:after {  /* Firefox, IE8, Opera, Safari, etc. */
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size:0px;
}
* + html .clearfix { /* for IE7 */
    display: inline-block;
}
* html .clearfix { /* for IE6 */
	height: 1%;
}

/* ==========================================================================
Global Styles
========================================================================== */
.group:after {
  content: "";
  display: table;
  clear: both; 
  }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

a {
  color: #333333;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-property: color, border-color, background-color;
  transition-property: color, border-color, background-color; }

a:hover, a:focus {
  color: #888888;
  text-decoration: none; }

body {
  font-family: 'Lato','Noto Sans', sans-serif;
  font-weight: 300;
  color:#666666;
  -webkit-text-size-adjust: 100%; }

.section {
  padding: 60px 0; 
}
.section-fullimg{
	padding:60px 0;
	min-height:350px;
	background-color:#666666;
	background-repeat:no-repeat;
	background-size:cover;	
}
.section-fullimg h3, 
.section-fullimg h4, 
.section-fullimg p{
	color:#fff;
}
.section-fullimg h4{
	margin:10px 0;
}
.section-fullimg p{
	max-width:80%;
	font-size:16px;
	margin:0 auto;
}
.ico_require {
    position: absolute;
    display: inline-block;
    width: 5px;
    height: 5px;
    top: 6px;  
    left:0px;  
    text-indent: -5000px;
    background-color: #b72026;
    border-radius: 5px;
}

.mo-text{
	display:none;
}
.section-title {
	position:relative;
	text-align:center;
	margin:40px 0 20px;
}
.section-title h3{
	font-family:"bad script";
	margin-bottom:10px;
	font-weight:500;
	font-size:50px;
}
.section-title h3 > span{
	display:inline-block;
	margin-left:5px;
	color:#999999;
}
.page-gallery-detail .section-title{
	margin:30px 0 50px;
}
.page-gallery-detail .section-title h4{
	font-size:40px;
	color:#222222;
	font-weight:500;
}
.page-gallery-detail .section-title p{
	margin-top:40px;
	font-size:16px;
}
.page-gallery-detail .section-title p > span{
	display:block;
	margin-top:8px;
}
.section-title .btn_group{
	margin:30px 0 10px;	
}
.section-title p {
	padding:0 40px;
	font-size:20px;
	line-height:1.3;
	font-weight:300;
	color:#777777;
}


.vidbg-container:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 100000;
	position: absolute;
	opacity: 0.3;
 }

.container{
	position:relative;
	z-index:100;
}
.detail-contents img{
	margin-bottom:30px;
}

/* ==========================================================================
Animations
========================================================================== */
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	25% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	100% { opacity: 1 }
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
	25% {
	    opacity: 0;
	    transform: scale(1.1);
	}
	100% { opacity: 0 }
}

.pulse2 {
  -webkit-animation-name: pulse2;
          animation-name: pulse2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; }

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.floating-arrow {
  -webkit-animation-name: floating-arrow;
          animation-name: floating-arrow;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; }

@-webkit-keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  65% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px); }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

@keyframes floating-arrow {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  65% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px); }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }
.floating-logo {
  -webkit-animation-name: floating-logo;
          animation-name: floating-logo;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; }

@-webkit-keyframes floating-logo {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  50% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px); }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

@keyframes floating-logo {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
  50% {
    -webkit-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px); }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }
            
@-moz-keyframes sizer {
    0% { -moz-transform: scale(0,0); }
    100%   { -moz-transform: scale(1,1); }

}
            
/* ==========================================================================
Waypoinsts
========================================================================== */
.wp1, .wp2, .wp3, .wp4, .wp5, .wp6, .wp7, .wp8, .wp9 {
  visibility: hidden; }
  
.animated{
	-webkit-animation-duration:1.5s;
}
.wp2 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight, .bounceInDown {
  visibility: visible; }

/* ==========================================================================
Navigation
========================================================================== */
.nav{
	/*position:relative;*/
}
.nav-toggle {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 999999;
  padding: 0px 10px 10px 0;
  cursor: pointer;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 1px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:before {
  top: -10px;
}

.nav-toggle span:after {
  bottom: -10px;
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav-toggle.active span {
  background-color: transparent;
}

.nav-toggle.active span:before, .nav-toggle.active span:after {
  top: 0;
}

.nav-toggle.active span:before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-toggle.active span:after {
  top: 10px;
  -ms-transform: translatey(-10px) rotate(-45deg);
  -webkit-transform: translatey(-10px) rotate(-45deg);
  transform: translatey(-10px) rotate(-45deg);
}

.navicon {
	display:none;
	position: absolute;
	height: 26px;
	right: 10px;
	top: 35px;
	visibility: hidden;
	-webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.fa.mo-arrow {
	display:none;
	font-size:18px;s
	position:absolute;
	right:25px;
	top:14px;
	transition:0.2s ease-in-out;
}


.navigation {
  position: fixed;
  z-index: 9999; 
  top:0;
  width: 100%;
  -webkit-transition: all 300ms ease-in;
	transition: all 300ms ease-in;  
  border-bottom:1px solid #292928;
}

.fixed {
  position: fixed;
  /*background:rgba(0,0,0,0.3);*/
  z-index: 9999;
  width: 100%; 
}

header {
	padding:0;
	/*position: relative;*/
	z-index:1000;
	width: 1170px;
	margin: 0 auto;
	-webkit-transition: padding 300ms ease-in-out;
	        transition: padding 300ms ease-in-out; 
}

header a {
	color: #fff;
	/*text-transform: uppercase;*/
	font-size: 13px; 
	font-weight:400;
}

header a:hover{
	color:#fff;
}

header .header-content {
	position:relative;
	width:100%;
}

header .logo {
	display: inline-block; 
	position:relative;
	z-index:999;
	width:295px;
	transition:all 0.3s ease;
	-webkit- transition:all 0.3s ease;
}

header .logo > a {
	display:inline-block;
	padding:17px 0 0;
}

header .header-nav {
	display: inline-block; 
	width:100%;
	text-align:center;
}

.header-wrap {
	/*overflow:hidden;*/
	position:relative;
	width:100%;
	/*height:150px;*/
	background:rgba(0,0,0,0.8);
	/*box-shadow:inset -0px 40px 47px rgba(0,0,0,0.2);*/
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out; 
	text-align:center;
}

.fixed .navigation {
	top:0;
}

.fixed .header > .logo img{
	width:140px;
	height:auto;
}

.fixed .header-wrap {
	background:rgba(0,0,0,0.9);	
}

.header-wrap:after{
	content:'';
	display:block;
	position:absolute;
	z-index:0;
	top:0;
	left:0;
	width:100%;
	/*height:80px;*/

	/*background:rgba(0,0,0,0.2);*/
}

.mo_btn_close{
	display:none;
}

header ul.primary-nav {
	display:inline-block;
	padding: 0; 
}

header ul.primary-nav > li {
	display: inline-block;
	/*overflow:hidden;*/
	/*position:relative;*/
	float:left;
	width:160px;
	margin-bottom:-1px;
	text-align:center;
}

/*header ul.primary-nav > li:hover{
	background:#222222;		
	background:rgba(0,0,0,0.5);
}*/

header ul.primary-nav > li > a {
	display:inline-block;
	position:relative;
	width:125px;
	/*padding:20px 0 20px;*/
	padding:20px 0 20px 0;
	color: #fff;
	font-weight:300;
	font-size:15px;
}

header ul.primary-nav > li > a:after{
	content:'';
	position:absolute;
	display:block;
	width:80%;
	opacity:0;
	height:2px;
	bottom:0px;
	left:0;
	right:0;
	margin:0 auto 20px;
	text-decoration:none;
   /* -webkit-transition:all 0.5s ease-in-out;
    -moz-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
    -ms-transition:all 0.5s ease-in-out;
    transition:all 0.5s ease-in-out;  */
}

header ul.primary-nav > li.nav_active > a:after,
header ul.primary-nav > li.depth2-open > a:after{
	opacity:1;	
  margin:0 auto;
	background:#ffffff; 		   
}

header .select-lang {
	display:inline-block;
}

.down-arrow {
  color: #fff;
  font-size: 50px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  opacity:0.8;
  -webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%); 
}

.depth2 {
	display:block;
	overflow:hidden;
	position:absolute;
	top:162px;
	left:0;
	right:0;
	margin:0px auto 0;
	width:100%;
	height:0px;
	padding:0;
	line-height:30px;
	transition:all 300ms ease-in-out;
	-webkit-transition:all 300ms ease-in-out;
}

.fixed .depth2 {
	top:136px;
}

.depth2.open, 
.primary-nav > li.nav_active .depth2{
	width:100%;
	left:0;
	right:0;
	padding:0;
	height:45px;
	background:rgba(0,0,0,0.4);
}

.fixed .depth2.open, 
.fixed .primary-nav > li.nav_active .depth2{
	background:rgba(0,0,0,0.85);	
}

.depth2 li {
	display:inline-block;
	min-width:150px;
	padding:0px;
	text-align:center;
}

.depth2 li a {
	display:block;
	color:#dfdfdf;
	font-size:13px;
	font-weight:400;
	line-height:43px;
	/*padding:7px 0;*/
}

.depth2 li a:hover, .depth2 li.active a:hover {
	color:#ffffff;
}

.depth2 li.active > a > span {
	display:inline-block;
	line-height:42px;
	border-bottom:2px solid #ffffff;
}

.opt_mo_lang {
	display:none;
}

.select-lang {
	position:absolute;
	z-index:10000;
	right:50%;
	margin-right:-575px;
	/*padding:0 5px;*/	
	top:26px;
}

.select-lang .btn {
	position:relative;
	border: 1px solid #b3b3b3;
	font-size:12px;
	color: #f3f3f3;
	background:rgba(0,0,0,0.1);
	padding:4px 25px 4px 10px;		
}

.fixed .select-lang .btn {
	position:relative;
	border: 1px solid #666666;
	background:#222222;
	background:rgba(0,0,0,0.2);
}

.btn-group.open.select-lang .btn.dropdown-toggle{
	background:rgba(0,0,0,0.5);
	box-shadow:none;	
}

/* ==========================================================================
main visual
========================================================================== */
.mainvisual {
	margin-bottom:15px;
}

.mainvisual .flexslider .slide_img:after {
	content:'';
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index:999;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.05);
}

.mainvisual.section-slider .slides {
	padding:0;
	max-width:auto;
	height:800px;
}

.mainvisual.section-slider .slides > li {
	text-align:center;
}

.mainvisual.section-slider .slide_box {
	overflow:hidden;
}

.mainvisual.section-slider .slide_img {
	position:relative;
	height:100%;
	width:auto;
	max-width:none;
}

.mainvisual .flex-control-nav.flex-control-paging {
	display:none;
}

.mainvisual .slide_txt {
	display:block;
	position:absolute;
	z-index:999;
	width:100%;
	top:54%;
	margin-top:-100px;
}

.mainvisual .slide_txt h2 {
	position:relative;
	font-size:66px;
	color:#ffffff;
	font-weight:200;
	font-family:"Bad Script";	
}

.mainvisual .slide_txt .letter-container h2 > a > span{
	font-family:"Bad Script";
}

.letter-container{
	width:100%;
	text-align:center;
}

.mainvisual.section-slider p {
	width:48%;
	margin:28px auto 0;
	padding:0;
	font-size:30px;
	font-weight:300;
	color:#ffffff;
}

/*.mainvisual .slide_txt h2:before{
	position:absolute;
	content:'';
	width:85%;
	height:250px;
	margin-left:-40px;
	margin-top:-40px;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
}*/

.letter-container h2 a span {
	color: #fff;
   	opacity: 1;
   	text-shadow: 0px 0px 2px #fff, 1px 1px 4px rgba(0,0,0,0.7);
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
	-webkit-animation: sharpen 0.9s linear backwards;
	-moz-animation: sharpen 0.9s linear backwards;
	-ms-animation: sharpen 0.9s linear backwards;
	animation: sharpen 0.9s linear backwards;
}
.letter-container h2 a span:hover{
	text-shadow: 0px 0px 40px #fff;
}
.letter-container h2 a span:nth-child(1) {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	-ms-animation-delay: 0s;
	animation-delay: 0s;
}
.letter-container h2 a span:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	-ms-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.letter-container h2 a span:nth-child(3) {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-ms-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.letter-container h2 a span:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	-ms-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.letter-container h2 a span:nth-child(5) {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-ms-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.letter-container h2 a span:nth-child(6) {
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.letter-container h2 a span:nth-child(7) {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	-ms-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.letter-container h2 a span:nth-child(8) {
	-webkit-animation-delay: 0.7s;
	-moz-animation-delay: 0.7s;
	-ms-animation-delay: 0.7s;
	animation-delay: 0.7s;
}
.letter-container h2 a span:nth-child(9) {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-ms-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.letter-container h2 a span:nth-child(10) {
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-ms-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
.letter-container h2 a span:nth-child(11) {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	animation-delay: 1s;
}
.letter-container h2 a span:nth-child(12) {
	-webkit-animation-delay: 1.1s;
	-moz-animation-delay: 1.1s;
	-ms-animation-delay: 1.1s;
	animation-delay: 1.1s;
}
.letter-container h2 a span:nth-child(13) {
	-webkit-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	-ms-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.letter-container h2 a span:nth-child(14) {
	-webkit-animation-delay: 1.3s;
	-moz-animation-delay: 1.3s;
	-ms-animation-delay: 1.3s;
	animation-delay: 1.3s;
}
.letter-container h2 a span:nth-child(15) {
	-webkit-animation-delay: 1.4s;
	-moz-animation-delay: 1.4s;
	-ms-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.letter-container h2 a span:nth-child(16) {
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-ms-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.letter-container h2 a span:nth-child(17) {
	-webkit-animation-delay: 1.6s;
	-moz-animation-delay: 1.6s;
	-ms-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.letter-container h2 a span:nth-child(17) {
	-webkit-animation-delay: 1.6s;
	-moz-animation-delay: 1.6s;
	-ms-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.letter-container h2 a span:nth-child(18) {
	-webkit-animation-delay: 1.7s;
	-moz-animation-delay: 1.7s;
	-ms-animation-delay: 1.7s;
	animation-delay: 1.7s;
}
.letter-container h2 a span:nth-child(19) {
	-webkit-animation-delay: 1.8s;
	-moz-animation-delay: 1.8s;
	-ms-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.letter-container h2 a span:nth-child(20) {
	-webkit-animation-delay: 1.9s;
	-moz-animation-delay: 1.9s;
	-ms-animation-delay: 1.9s;
	animation-delay: 1.9s;
}
.letter-container h2 a span:nth-child(21) {
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	animation-delay: 2s;
}
.letter-container h2 a span:nth-child(22) {
	-webkit-animation-delay: 2.1s;
	-moz-animation-delay: 2.1s;
	-ms-animation-delay: 2.1s;
	animation-delay: 2.1s;
}
.letter-container h2 a span:nth-child(23) {
	-webkit-animation-delay: 2.2s;
	-moz-animation-delay: 2.2s;
	-ms-animation-delay: 2.2s;
	animation-delay: 2.2s;
}
.letter-container h2 a span:nth-child(24) {
	-webkit-animation-delay: 2.3s;
	-moz-animation-delay: 2.3s;
	-ms-animation-delay: 2.3s;
	animation-delay: 2.3s;
}
.letter-container h2 a span:nth-child(25) {
	-webkit-animation-delay: 2.4s;
	-moz-animation-delay: 2.4s;
	-ms-animation-delay: 2.4s;
	animation-delay: 2.4s;
}
.letter-container h2 a span:nth-child(26) {
	-webkit-animation-delay: 2.5s;
	-moz-animation-delay: 2.5s;
	-ms-animation-delay: 2.5s;
	animation-delay: 2.5s;
}
.letter-container h2 a span:nth-child(27) {
	-webkit-animation-delay: 2.6s;
	-moz-animation-delay: 2.6s;
	-ms-animation-delay: 2.6s;
	animation-delay: 2.6s;
}
.letter-container h2 a span:nth-child(28) {
	-webkit-animation-delay: 2.7s;
	-moz-animation-delay: 2.7s;
	-ms-animation-delay: 2.7s;
	animation-delay: 2.7s;
}
.letter-container h2 a span:nth-child(29) {
	-webkit-animation-delay: 2.8s;
	-moz-animation-delay: 2.8s;
	-ms-animation-delay: 2.8s;
	animation-delay: 2.8s;
}
.letter-container h2 a span:nth-child(30) {
	-webkit-animation-delay: 2.9s;
	-moz-animation-delay: 2.9s;
	-ms-animation-delay: 2.9s;
	animation-delay: 2.9s;
}
.letter-container h2 a span:nth-child(31) {
	-webkit-animation-delay: 3s;
	-moz-animation-delay: 3s;
	-ms-animation-delay: 3s;
	animation-delay: 3s;
}
.letter-container h2 a span:nth-child(32) {
	-webkit-animation-delay: 3.1s;
	-moz-animation-delay: 3.1s;
	-ms-animation-delay: 3.1s;
	animation-delay: 3.1s;
}
.letter-container h2 a span:nth-child(33) {
	-webkit-animation-delay: 3.2s;
	-moz-animation-delay: 3.2s;
	-ms-animation-delay: 3.2s;
	animation-delay: 3.2s;
}
@keyframes sharpen {
 0% {
   	opacity: 0;
   	text-shadow: 0px 0px 100px #fff;
   	color: transparent;
 }
 90% {
   	opacity: 0.9;
   	text-shadow: 0px 0px 10px #fff;
   	color: transparent;
 }
 100% {
    color: #fff;
   	opacity: 1;
   	text-shadow: 0px 0px 2px #fff, 1px 1px 4px rgba(0,0,0,0.7);
 }
}
@-moz-keyframes sharpen {
 0% {
   	opacity: 0;
   	text-shadow: 0px 0px 100px #fff;
   	color: transparent;
 }
 90% {
   	opacity: 0.9;
   	text-shadow: 0px 0px 10px #fff;
   	color: transparent;
 }
 100% {
    color: #fff;
   	opacity: 1;
   	text-shadow: 0px 0px 2px #fff, 1px 1px 4px rgba(0,0,0,0.7);
 }
}
@-webkit-keyframes sharpen {
 0% {
   	opacity: 0;
   	text-shadow: 0px 0px 100px #fff;
   	color: transparent;
 }
 90% {
   	opacity: 0.9;
   	text-shadow: 0px 0px 10px #fff;
   	color: transparent;
 }
 100% {
    color: #fff;
   	opacity: 1;
   	text-shadow: 0px 0px 2px #fff, 1px 1px 4px rgba(0,0,0,0.7);
 }
}
@-ms-keyframes sharpen {
 0% {
   	opacity: 0;
   	text-shadow: 0px 0px 100px #fff;
   	color: transparent;
 }
 90% {
   	opacity: 0.9;
   	text-shadow: 0px 0px 10px #fff;
   	color: transparent;
 }
 100% {
    color: #fff;
   	opacity: 1;
   	text-shadow: 0px 0px 2px #fff, 1px 1px 4px rgba(0,0,0,0.7);
 }
}
.grayscale {
	 background: url();
	 -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	 -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	 -webkit-filter: grayscale(100%);
	 filter: gray;
	 filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
.nongrayscale {
        background: url();
}	 
.section-fullimg{
	margin-bottom:15px;
}

.section-fullimg.main-rooms{
	background-position:50% 80%;
	/*background-image:url('http://temp.einet.co.kr/temp/images/home_room.jpg')  ;*/
	
	/*min-height:480px;*/
	
}
.section-fullimg.main-facilities{
	background-position:50% 80%;
	/*background-image:url('http://temp.einet.co.kr/temp/images/home_fac.jpg');*/
	/*min-height:480px;*/
}

.section-fullimg.main-service{
	background-position:50% 50%;
	/*background-image:url('http://temp.einet.co.kr/temp/images/home_service.jpg');*/
	/*	min-height:480px;*/
}



.section-fullimg.main-contact{
	background-position:50% 50%;
	background-image:url(../img/bg_main_contact.png);
	min-height:480px;
}
.section-fullimg.page-ourstory-03{
	background-position:50% 50%;
	background-image:url(../img/bg_story_s3.png);
	min-height:480px;
	padding:0;
}

.section-fullimg h3{
	font-family: "Bad Script";
	font-size:50px;
	font-weight:400;
	font-style:normal;
}


/* ==========================================================================
main_imgbox
========================================================================== */

.main-box {
	width:50%;
	margin-top:15%;
}
.main-box .mo-link{
	display:none;
}
.main-box > h3 {
	position:relative;
}
.main-box > h3:after {
	content:'';
	position:absolute;
	width:116px;
	height:2px;
	bottom:-10px;
	left:0;
	background:#ffffff;
}
.main-contact .main-box {
	margin-top:5%;
}
.main-contact .main-box > h3:after {
	left:50%;
	margin-left:-58px;
}

.main-box > p {
	margin-top:24px;
	font-family:'Lato';
	max-width:100%;
	font-size:22px;
	font-weight:300;
}

.main-ourworks .main-box {
	margin-left:50%;
}

.main-contact .main-box {
	width:100%;
	text-align:center;
}
.btn_line {
	display:inline-block;
	margin-top:40px;
	padding:14px 45px;
	height:48px;
	color:#ffffff;
	border:2px solid #ffffff;
	transition:all 0.3 ease;
	-webkit-transition:all 0.3 ease;
	-ms-transition:all 0.3 ease;
	-moz-transition:all 0.3 ease;
	cursor: pointer;
	background:rgba(0,0,0,0.5);
}
.btn_line:hover {
	background:rgba(0,0,0,0.7);
	border:2px solid #22222;
	color:#ffffff;	
}
/* ==========================================================================
Footer
========================================================================== */
footer {
	position: relative; 
	padding:20px 0 0;
	text-align:center;
}
footer .box_bottom_nav {
 	padding:20px 0 70px;	
}
footer .box_bottom_nav img{
	display:block;
	text-align:center;
	margin:0 auto 10px;
}
footer .nav_bottom {
	overflow:hidden;
	display:inline-block;
	margin:20px auto 0;
}
footer .nav_bottom > li {
	float:left;
	width:110px;
	margin-right:150px;
	text-align:left;
	text-transform: uppercase;
}
footer .nav_bottom > li:last-child{
	margin-right:0;
}
footer .nav_bottom li > a{
	display:block;
	padding:5px 0;
	position:relative;
	color:#ffffff;	
	margin-bottom:10px;
}
footer .nav_bottom li > a:after{
	content:'';
	width:37px;
	height:2px;
	background:#919191;
	position:absolute;
	bottom:0;
	left:0;
	
}
footer .nav_bottom > li > ul{
	color:#aaaaaa;
	width:100%;
}
footer .nav_bottom > li > ul > li{
	padding:5px 0;
}
footer .copyright{
	padding:30px 5%;
	border-top:1px solid #4e4e4e;
}


footer .copyright ul{
	color:#ffffff;
	font-size:14px;
	line-height: 1.2em;
	padding-bottom: 10px;
	
}


footer .copyright li{
	
	display: inline-block;
	padding-left: 20px;
}

footer .copyright a{
	color:#ffffff;
	font-size:14px;
	line-height: 1.2em;
	
}

footer .copyright a:hover{
	text-decoration: underline
	
}

footer .copyright a .b{
	font-weight:800;
	
}




footer .copyright > p{
	font-size:12px;
	text-transform: uppercase;
}


/****************************************sub ****************************/
.sub {
	padding:130px 0 0;	
	height:260px;
	background:#333333;	
	background-repeat:no-repeat;
	background-position:top center;
	background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	-webkit-background-size:cover;	
	
	background-attachment:fixed;
	
}
.sub-contents-wrap{
	background:#ffffff;
	padding:40px 0 80px;
}


.sub-section {
	margin:40px 0 0;
}
.sub-section:first-child{
	margin:0;
}
.page-header{
	position:relative;
	color:#FFFFFF;
	border-bottom-width:0px;
}
.sub h2{
	color:#FFFFFF;
	font-family: "Bad Script";
	font-size:50px;
	font-weight:400;
	font-style:normal;	
	text-align: center
}

.page-header > p{
	margin-top:24px;
	font-size:22px;
	color:#ffffff;
	font-weight:300;
}
.page-tab{
	border-bottom:1px solid #ebebeb;
}
.page-tab > div {
	width:100%;
	text-align:center;
}
.page-tab ul {
	display:inline-block;
	/*overflow:hidden;*/
	position:relative;
	z-index:100;
}
.page-tab ul > li {
	display:inline-block;
	float:left;
	padding:15px 30px;
	margin-right:10px;
	margin-bottom:-2px;
}
.page-tab ul > li:hover > a{
	color:#222222;
}
.page-tab ul > li > a {
	display:block;
	width:100%;
	height:100%;
	color:#999999;
	font-weight:400;
	font-size:16px;
}
.page-tab ul > li:last-child{
	margin-right:0;
}
.page-tab ul > li.active{
	border-bottom:3px solid #333333; 
}
.page-tab ul > li.active >a {
	color:#222222;
}
.section-imgbox-list{
	overflow:hidden;	
	padding-top:0;
}
.imgbox{
	background:url(../img/gallery/thumb_default.png) no-repeat center center;
	background-size:auto 100%;
}
.list_title{
	margin:20px 0 30px;
	color:#222;
	font-weight:300;
}
.imgbox figure figcaption > a {
	z-index: 998;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
	
	
}
.imgbox figure figcaption > a:hover {
	cursor: pointer;
	
}

.imgbox figure h3 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.imgbox figure h3 span {
	font-weight: 800;
}

.imgbox figure h3,
.imgbox figure p {
	margin: 0;
}

.imgbox figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/* Common style */
.grid a {
	display:block;
	width:100%;
	height:100%;
	position:relative;
	z-index:100;
}
.imgbox{
	height:300px;
}
.imgbox figure {
	position: relative;
	overflow: hidden;
	/*min-height: 360px;*/
	width: 100%;
	height:300px;
	background: #3085a3;
	text-align: center;
	cursor: default;
}

.imgbox figure img {
	position: relative;
	display: block;
	height: 100%;
	width: initial;
	max-width:none;
	opacity: 1;
}

.imgbox figure figcaption {
	padding: 2em;
	color: #fff;
	/*text-transform: uppercase;*/
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.imgbox figure figcaption::before,
.imgbox figure figcaption::after {
	pointer-events: none;
}

.imgbox figure figcaption,
.imgbox figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	
}


figure.effect-linebox {
	background: #e1e1e1;
	-webkit-transition:background 0.2s ease;	
	transition:background 0.2s ease;
}

figure.effect-linebox img {
	max-width:auto;
	opacity: 1;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}
figure.effect-linebox:hover{
	background:#000000;
}
figure.effect-linebox:hover img {
	opacity: 0.6;
}

figure.effect-linebox figcaption::before,
figure.effect-linebox figcaption::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-linebox figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

figure.effect-linebox figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	-mos-transform: scale(1,0);
	transform: scale(1,0);
}
figure.effect-linebox h3:before {
    position: absolute;
    content: '';
    background: rgba(45, 45, 45, 0.65);
    width: 200%;
    margin: -20px -100px;
    height: 50px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

figure.effect-linebox h3 {
	position:relative;
	z-index:99;
	font-size:16px;
	padding-top: 44%;
	color:#FFFFFF;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,30px,0);
	transform: translate3d(0,30px,0);
}

figure.effect-linebox p {
	padding: 8px 0.5em;
	font-size:14px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}
figure.effect-linebox p > span{
	display:block;
	color:#FFFFFF;
	font-size:14px;
}


figure.effect-linebox:hover figcaption::before,
figure.effect-linebox:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-linebox:hover h3:before {
	opacity:0;
}
figure.effect-linebox:hover h3{
	font-size:18px;
	font-weight:600;
	padding-top:20%
}
figure.effect-linebox:hover h3,
figure.effect-linebox:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


.flexslider:hover .flex-direction-nav .flex-next {
	top:-7px;
}
.section-slider.mainvisual .flexslider {
	margin:0;
}
.mainvisual .flex-direction-nav{
	display:none;
	width:100wh;
}
.box_fake {
    display: block;
    position: absolute;
    width: 90%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    /* height: 50%; */
    min-height: 300px;
    margin-top: -70px;
    /*border: 1px solid #fff;*/
}
.box_fake > span {
	width:100%;
	display:block;
	position:relative;
}
.box_fake > .fake_top{
	height:90px;
}
.box_fake > .fake_bottom{
	margin-top:100px;
	height:100px;
}
.box_fake > .fake_top:before{
	content:'';
	display:block;
	width:100%;
	height:100%;
	border-top:1px solid #ffffff;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;	
}
.box_fake > .fake_bottom:after{
	content:'';
	display:block;
	width:100%;
	height:100%;
	border-bottom:1px solid #ffffff;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;	
}
/* ==========================================================================
.section-slider
========================================================================== */
.section-slider {
	background:#222222;
	/*padding:70px 0 20px;*/
}

.section-slider h4{
	/*float:left;*/
	margin:30px 0;
	padding-left:5%;
	/*font-size:28px;*/
	color:#fff;
	text-align:left;
	width:90%;	
}
.section-slider p{
	width:90%;
	padding-left:5%;
}
.section-slider .slide_box {
	position:relative;
	/*max-width:1170px;*/
	margin:0 auto;
	/*padding:150px 0;*/
}
.section-slider .slide_img {
	position:absolute;
	height:auto;	
}
.flex-control-nav {
	/*position:relative;*/
	top:-30px;
}   
.slide_txt {
	display:table-cell;
	vertical-align:middle;
	text-align:center;
}
.flex-direction-nav{
	position:absolute;
	top:100px;
	width:100%;
}
.flex-control-paging li{
	zoom:0;
}
.flex-control-paging li a:hover {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.0);
}
.flex-control-paging li a.flex-active {
	background:#555555;		
	background: rgba(255, 255, 255, 0.2);
	border: none;
	cursor:pointer;
	line-height:50px;
}
.flex-control-paging li a {
  display: block;	
  width: 50px;
  height:50px;
  font-size:20px;
  line-height:50px;
  background: #5C5F6A;
  background: rgba(92, 95, 106, 0);
  cursor: pointer;
  text-indent: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #fff;
} 


/* story page */

.page-ourstory-01 {
}
.wrap-visual-story{
	position:relative;
}

.img-visual{
	
}
.img-visual.s-img01{
	/*position:absolute;*/
	overflow:hidden;
	float:left;
	width:53%;
	left:0;
	top:0;
	/*height:580px;*/
}
.img-visual.s-img01 > img{
	height:auto;
}
.visual-halfbox {
	display:inline-block;
	width:45%;
	float:left;
	padding:20px 0 0 40px;	
	max-width:535px;
}
.visual-halfbox .section-title{
	text-align:left;
	padding:0;
	margin:0;
}

.visual-halfbox .section-title > p{
	padding:0;
	font-size:22px;
	font-weight:300;
	line-height:1.2;
	margin:20px 0px 60px;
}

.sub-section.page-ourstory-03{
	margin:20px 0 -80px 0;
}
.sub-section.page-gallery{
	margin:0;
}
.page-ourstory-03 .info-box {
	margin:0 -15px;
	padding:50px 70px 90px;
	background:rgba(147,96,50,0.8);
	min-height:400px;
}
.section-fullimg .info-box p {
	font-size:22px;
	max-width:100%;
	margin-top:30px;
	font-weight:300;
}

.info-box > span {
	display:block;
	color:#ffffff;
	font-size:16px;
	margin-top:60px;
	font-weight:300;
}

/* Contact page*/

.list_contact{
	margin-top:60px;
	font-size:14px;
}
.list_contact dl{
	display:block;
}
.list_contact h4{
	font-weight:400;
	font-size:36px;
}
.list_contact h6{
	margin:30px 0 5px;
	font-weight:bold;
	color:#222222;
	font-size:20px;
	font-weight:400;
}
.list_contact dt,
.list_contact dd{
	/*display:inline;*/
	padding:3px 0;
	font-size:16px;
}
.list_contact dt{
	float:left;
}
.list_contact dt:after{
	content:':';
	margin:0 3px;
}
.list_contact p{
	font-size:16px;
}
.list_contact p > span {
	display:block;
	font-weight:300;
}
.page-contact .box-padding{
	text-align:right;
}
.page-contact .box-padding > img{
	margin-top:30px;
}
.map-google{
	width:100%;
	overflow:hidden;
	height:500px;
	margin:40px 0 0;	
}


/* ==========================================================================
Icon font (http://www.elegantthemes.com/blog/freebie-of-the-week/free-line-style-icons)
========================================================================== */
@font-face {
  font-family: 'et-line';
  src: url("../fonts/et-line.eot");
  src: url("../fonts/et-line.eot?#iefix") format("embedded-opentype"), url("../fonts/et-line.woff") format("woff"), url("../fonts/et-line.ttf") format("truetype"), url("../fonts/et-line.svg#et-line") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: 'et-line';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block; }

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
  font-family: 'et-line';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block; 
}

.icon-mobile:before {
  content: "\e000"; }

.icon-laptop:before {
  content: "\e001"; }

.icon-desktop:before {
  content: "\e002"; }

.icon-tablet:before {
  content: "\e003"; }

.icon-phone:before {
  content: "\e004"; }

.icon-document:before {
  content: "\e005"; }

.icon-documents:before {
  content: "\e006"; }

.icon-search:before {
  content: "\e007"; }

.icon-clipboard:before {
  content: "\e008"; }

.icon-newspaper:before {
  content: "\e009"; }

.icon-notebook:before {
  content: "\e00a"; }

.icon-book-open:before {
  content: "\e00b"; }

.icon-browser:before {
  content: "\e00c"; }

.icon-calendar:before {
  content: "\e00d"; }

.icon-presentation:before {
  content: "\e00e"; }

.icon-picture:before {
  content: "\e00f"; }

.icon-pictures:before {
  content: "\e010"; }

.icon-video:before {
  content: "\e011"; }

.icon-camera:before {
  content: "\e012"; }

.icon-printer:before {
  content: "\e013"; }

.icon-toolbox:before {
  content: "\e014"; }

.icon-briefcase:before {
  content: "\e015"; }

.icon-wallet:before {
  content: "\e016"; }

.icon-gift:before {
  content: "\e017"; }

.icon-bargraph:before {
  content: "\e018"; }

.icon-grid:before {
  content: "\e019"; }

.icon-expand:before {
  content: "\e01a"; }

.icon-focus:before {
  content: "\e01b"; }

.icon-edit:before {
  content: "\e01c"; }

.icon-adjustments:before {
  content: "\e01d"; }

.icon-ribbon:before {
  content: "\e01e"; }

.icon-hourglass:before {
  content: "\e01f"; }

.icon-lock:before {
  content: "\e020"; }

.icon-megaphone:before {
  content: "\e021"; }

.icon-shield:before {
  content: "\e022"; }

.icon-trophy:before {
  content: "\e023"; }

.icon-flag:before {
  content: "\e024"; }

.icon-map:before {
  content: "\e025"; }

.icon-puzzle:before {
  content: "\e026"; }

.icon-basket:before {
  content: "\e027"; }

.icon-envelope:before {
  content: "\e028"; }

.icon-streetsign:before {
  content: "\e029"; }

.icon-telescope:before {
  content: "\e02a"; }

.icon-gears:before {
  content: "\e02b"; }

.icon-key:before {
  content: "\e02c"; }

.icon-paperclip:before {
  content: "\e02d"; }

.icon-attachment:before {
  content: "\e02e"; }

.icon-pricetags:before {
  content: "\e02f"; }

.icon-lightbulb:before {
  content: "\e030"; }

.icon-layers:before {
  content: "\e031"; }

.icon-pencil:before {
  content: "\e032"; }

.icon-tools:before {
  content: "\e033"; }

.icon-tools-2:before {
  content: "\e034"; }

.icon-scissors:before {
  content: "\e035"; }

.icon-paintbrush:before {
  content: "\e036"; }

.icon-magnifying-glass:before {
  content: "\e037"; }

.icon-circle-compass:before {
  content: "\e038"; }

.icon-linegraph:before {
  content: "\e039"; }

.icon-mic:before {
  content: "\e03a"; }

.icon-strategy:before {
  content: "\e03b"; }

.icon-beaker:before {
  content: "\e03c"; }

.icon-caution:before {
  content: "\e03d"; }

.icon-recycle:before {
  content: "\e03e"; }

.icon-anchor:before {
  content: "\e03f"; }

.icon-profile-male:before {
  content: "\e040"; }

.icon-profile-female:before {
  content: "\e041"; }

.icon-bike:before {
  content: "\e042"; }

.icon-wine:before {
  content: "\e043"; }

.icon-hotairballoon:before {
  content: "\e044"; }

.icon-globe:before {
  content: "\e045"; }

.icon-genius:before {
  content: "\e046"; }

.icon-map-pin:before {
  content: "\e047"; }

.icon-dial:before {
  content: "\e048"; }

.icon-chat:before {
  content: "\e049"; }

.icon-heart:before {
  content: "\e04a"; }

.icon-cloud:before {
  content: "\e04b"; }

.icon-upload:before {
  content: "\e04c"; }

.icon-download:before {
  content: "\e04d"; }

.icon-target:before {
  content: "\e04e"; }

.icon-hazardous:before {
  content: "\e04f"; }

.icon-piechart:before {
  content: "\e050"; }

.icon-speedometer:before {
  content: "\e051"; }

.icon-global:before {
  content: "\e052"; }

.icon-compass:before {
  content: "\e053"; }

.icon-lifesaver:before {
  content: "\e054"; }

.icon-clock:before {
  content: "\e055"; }

.icon-aperture:before {
  content: "\e056"; }

.icon-quote:before {
  content: "\e057"; }

.icon-scope:before {
  content: "\e058"; }

.icon-alarmclock:before {
  content: "\e059"; }

.icon-refresh:before {
  content: "\e05a"; }

.icon-happy:before {
  content: "\e05b"; }

.icon-sad:before {
  content: "\e05c"; }

.icon-facebook:before {
  content: "\e05d"; }

.icon-twitter:before {
  content: "\e05e"; }

.icon-googleplus:before {
  content: "\e05f"; }

.icon-rss:before {
  content: "\e060"; }

.icon-tumblr:before {
  content: "\e061"; }

.icon-linkedin:before {
  content: "\e062"; }

.icon-dribbble:before {
  content: "\e063"; }



/*scroll_to_top*/

.scrollup {
    display: none;
    position: fixed;
    z-index:999;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 17px 5px;
    bottom: 30px;
    right: 10px;
    text-align:center;
    font-weight:bold;
    font-size: 13px;
    color:#fff;
    /*text-indent: -9999px;*/
    background-color: #222222;
    background-color: rgba(0,0,0, 0.7);
    border:1px solid #222222;
    box-shadow:0px 0px 2px rgba(0,0,0,0.1);
}

/*********** detail-anchor ************/

.detail-anchor{
    position: absolute;
    top: 138px;
    display: inline-block;
    width: 1px;
    height: 1px;
    background: #333;	
    opacity:0;	
}

.logo-title  { font-size:30px;  font-weight:800; padding:  0; color:#fff;  height: 30px;  }

.rooms-detail  { padding-bottom:  50px }

.rooms-detail  p {
	 font-size:16px;  font-weight:800; padding: 15px 0 0px 0; color:#222;  
}

.rooms-detail  .title {
	 font-size:16px;  font-weight:800; padding: 15px 0 0px 0; color:#222;  
}

.rooms-detail  li { font-size:14px;  padding: 4px 0; color:#444; font-weight:400; }







.h-re { min-height: 2500px ;  width: 100%;  }

.resevation-h   { height: 3000px;   }


@media screen and (max-width:991px) {
	
.resevation-h   { height: 1000px;  width: 90%;   }


}

.resevation-info-box  {  padding: 120px 0;   }
.resevation-info-box  li { padding-bottom:10px;  font-size: 14px;   font-weight:400;  line-height: 1.4em; color:#444; }
.resevation-info-box .title-info {  font-size:20px; color:#222; font-weight:800;  padding-bottom: 20px;  }

.resevation-info {  }


.resevation-info  li span {  color:#222; font-weight:800;  width: 100px; display: inline-block;   }

.resevation-info2  {    padding: 30px 0;  }

/*
.resevation-info2 li span { 
	color:#222;
	font-weight:800;
	width: 140px;
	display:block;
	padding-top: 30px;
}  
*/


.resevation-info2 li  strong  {
	font-weight:600;
	/*color:#a40101;*/
}


.refund-table { }
.refund-table table { width: 100%;  text-align: center }

.refund-table table thead td {
	padding: 10px;
	font-size: 14px;
	/*
	color:#666;
	font-size: 12px;
	*/
} 

.refund-table table tbody td {
	padding: 10px;
	font-size:14px;
	/*
	color:#222;
	font-weight:600;
	font-size: 14px;
	*/
} 

.btn-room {  color:#fff; text-decoration: underline  padding:7px 15px; border: 0px solid #fff; background: rgba(255,255,255,0.3);   margin: auto 0; margin-top: 20px; }

.btn-re {  padding: 0px 0 50px 0;  }
.btn-re a{ color:#fff;  padding:15px 30px;  background: #136bb5;   margin: auto 0; margin-top: 20px; display: inline-block;  text-align: center;   min-width:200px;   }
.btn-re a:hover {  background: #3e9eef;   }




.resevation-info2 .contents_text p {
	margin:0;
	padding:0;
	line-height:1.6;
}

.refund-table table td {
	border:1px solid #dfdfdf;
	vertical-align:middle !important;
}

@media (max-width:820px) {
	.refund-table {
		overflow-x:auto;
		overflow-y:hidden;
	}
}






























.firstSlider, .owl-carousel, .owl-stage-outer, .owl-stage, .owl-item { height: 100%; }
.firstSlider {
	position: relative;
	width: 100%; height: 100%;
}
.firstSlider .loader {
	width: 100%; height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.viewObj {
	position: absolute;
	right: 30px; bottom: 42px;
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	z-index: 10;
}
.viewObj i {
	padding:15px;
	cursor:pointer;
	color:rgba(255, 255, 255, 0.5);
}
.viewObj i.active {
	color:rgba(255, 255, 255, 1);
}
.viewObj i:hover {
	border-radius:50%;
	background-color:rgba(0, 0, 0, 0.5);
}
.pageObj {
	display:none;
	position: relative;
	margin-top:9px;
	width:100%;
    color: #666;
	font-family: 'Open Sans', sans-serif;
    font-size: 12px;
	text-align:center;
}
.pageObj .all:before {
	content: ' / ';
}

.owl-nav {
	position: absolute;
	top:37%;
	margin: auto;
	width: 100%;
}
.owl-nav .owl-prev {
	position: absolute;
	top: 0; left: 50px;
	transition: background 0.5s;
}
.owl-nav .owl-prev:hover {
	background-color:rgba(0, 0, 0, 0.2) !important;
}
.owl-nav .owl-next {
	position: absolute;
	top: 0; right: 50px;
	transition: background 0.5s;
}
.owl-nav .owl-next:hover {
	background-color:rgba(0, 0, 0, 0.2) !important;
}

.owl-dots {
	position:absolute;
	right:0; bottom:61px; left:0;
	width:600px;
	margin:auto;
	text-align:center;
}
.owl-dot {
	width:9px; height:9px;
	margin:3px 7px;
	background-color:rgba(255,255,255,1) !important;
	border-radius:30px;
	transition: width 0.5s;
}
.owl-dot.active {
	width:46px;
}


@media (max-width:1400px) {
	.firstSlider .owl-carousel .owl-item img {
		width: 100%;
		height: 100%;
		transition: width 0.3s;
	}
	.viewObj {
		bottom:43px;
		font-size: 18px;
	}
	.viewObj a {
		height: 32px;
		line-height: 34px;
	}
	.owl-nav {
		display:none;
	}
}

@media (max-width:820px) {
	.firstSlider {
		/*
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		height:30vh;
		margin: auto;
		*/
	}
	.firstSlider .owl-carousel .owl-item img {
		width: auto;
		object-fit: cover;
		object-position: center;
	}
	.viewObj {
		right:3px; bottom:-28px;
		text-align: center;
	}
	.viewObj i {
		padding:6px;
		color:rgba(147, 147, 147, 0.5);
	}
	.viewObj i.active {
		color:rgba(147, 147, 147, 1);
	}
	.viewObj i:hover {
		background-color:rgba(0, 0, 0, 0.2);
	}
	.owl-nav {
		bottom: 8.6%;
	}
	.owl-dots {
		width:calc(100% - 60px);
		margin:0;
		position:relative;
		top:0;right:0; bottom:0; left:0;
		padding:10px 0;
	}
	.owl-dot {
		width:5px; height:5px;
		margin:0px 5px;
		background-color:#ccc !important;
	}
	.owl-dot.active {
		width:23px;
	}
}



.section2 {
	height: 100vh;
}

@media ( max-width: 1400px ) {
	.section2 {
		height: 70vh;
	}

	.black-stone {
		height:100px;
	}
}
@media ( max-width: 820px ) {
	.section2 {
		height:35vh;
	}

	.black-stone {
		display:none;
	}
}



.icon_reserve  a {
	position: absolute;
	left:20px;
	top:20px;
	z-index: 100;  
	 width: 70px;
	height: 25px;
	border-radius: 2.5px;
	border: 1px solid #fff;
	line-height:22px;   
	padding: 0 9px;    
	background: rgba(0,0,0,0.7);
	font-weight: bold;
}


.icon_reserve  a:hover {  
	background: rgba(255,255,255,1);  
  color:#222; 
}
