
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Apple SD Gothic Neo';
  color: #fff;
  background:#0c0c0c;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

h1, h2{
  font-family:  "San Francisco Display Semibold", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

img {
	pointer-events: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #57aae1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 900;
  transition: all 0.5s;
  padding: 22px 0;
  background-color:transparent;
  background-image: linear-gradient(to bottom, #0c0c0c, transparent);
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: -apple-system, 'San Francisco Display Medium', BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 36px;
}

#header .wrap {
	width:100%;
}

#header .share {
	font-size:1.1rem;
}

@media (max-width: 768px) {
	#header .logo {
		padding-left:14%;
	}
	#header .logo img {
	  max-height: 30px;
	}

	#header .wrap {
		/*justify-content:space-evenly !important;*/
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-left:-5%;
  align-self:center;
}

.navbar b {
	font-weight:900;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 1.2rem;
  font-family: "San Francisco Display Light", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-shadow: 2px 2px 3px #333;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 1rem;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  /*color: #3498db;*/
  font-weight:900;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  /*background: #4aa3df;*/
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

.mobile-nav-toggle2 {
  position: absolute;
  top: 25px;
  right: 5%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index:1200;
}


.pc-nav-toggle {
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: block;
  line-height: 0;
  transition: 0.5s;
}

.pc-toggle {
	display:flex;
}

.mobile-toggle {
	display:none;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .pc-nav-toggle {
    display: none;
}

.pc-toggle {
	display:none;
}

.mobile-toggle {
	display:flex;
}

  .navbar ul {
    display: none;
  }
  
  .justify-content-evenly {
    justify-content:space-between!important;
	padding-left:1em;
	padding-right:1em;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  z-index: 1100;
  height:100%;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}


.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 5%;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #333333aa;
  overflow-y: auto;
  transition: 0.3s;
  width:100%;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 2rem;
  color: #ffffff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #cccccc;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3498db;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0;
  overflow: hidden;
}

.section {
	overflow:hidden;
}
/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

#main .logo {
	position:fixed;
	z-index:800;
    left: 50%;
    top: 50%;
    transform: translate(-40%,-50%);
}
#main .logo img {
	width:75%;
}



.intro img {
		height:100vh
}

@media (min-device-aspect-ratio: 21/10){
	.intro img {
		width:100%;
	}
}

@media (max-width: 768px) {
	.intro {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
	  
	.intro img {
		/*height:100vh*/
			height: 100%;
			object-fit: cover; // maintaining its original ratio.
	}
	
}

.home {
	width:100%;
	height:100%;
	clear:both;
	padding:10% 0;
	   display: flex;
    justify-content: center;
    align-items: center;
}


.home .thumbs{
    padding-top: 1em;
    clear: both;
	cursor:pointer;
}

.home .thumbs .left {
	transform:translateY(0);
}

.home .thumbs .right {
	transform:translateY(0);
}

.home .thumbs img{
	width:97%;
}

.home .left {
	float:left;
	width:50%;
	font-size:1.8rem;
    font-family:  "San Francisco Display Semibold", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	vertical-align: middle;
	text-align:center;
}

.home .left .subtitle{
}

.home-fir {
	margin-top:-35%;
}

.home-sec {
	margin-top:-22%;
}

.home .right {
	float:right;
	width:50%;
	font-size:1.2rem;
	font-weight:100;
	line-height:2.2;
	font-family: 'AppleSDGothicNeoT';
	
}

.goto {
	flex-direction: column;
}

.goabout {
	border:1px solid #ffffff;
	padding:0.2em 1em;
	width:max-content;
	cursor:pointer;
}

@media (max-width: 768px) {
	#main .logo img {
		width:85%;
	}

.home {
	flex-direction:column;
	/*text-align:center;*/
}

  .home .thumbs{
    padding-top: 3%;
  }	

.home-fir {
	margin-top:0;
}

.home-sec {
	margin-top:0;
}

  .home .left {
    float:none;
	width:100%;
	top:0;
    padding: 0% 5% 5%;
	font-size:1.2rem;
	transform: translateY(0);
	text-align:left;
  }
  .home .right {
    float:none;
	width:100%;
	top:0;
    padding: 0 5%;
	font-size:0.9rem;
   transform: translateY(0);
  }  
  .home .thumbs img{
	/*width:100%;*/
	width:auto;
	height:20vh;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.color-p {
	color:#cdccbb;
}
.color-s {
	color:#9999b9;
}
.color-f {
	color:#a5c5ac;
}
.color-w {
	color:#a0bdcd;
}

.head .title {
}

.gallery{
}

.gallery .head {
	padding:15% 0 5%;
	text-align:center;
	font-family: 'Apple SD Gothic Neo';
}

.gallery .head .title {
	font-size:1.4rem;
}

.gallery .head .descript {
	font-size:0.9rem;
	line-height:2;
}

.gallery .head .eng {
	font-size:3.6rem;
	font-weight:200;
    font-family:  "NY BI", -apple-system-ui-serif, ui-serif, 'Georgia', serif;
	padding:5% 0 5%;
}

 .below {  
  margin: 0 auto;
  width: 60%;
  height: 9em;
  position: relative;
}

.line:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid #ffffff;
  transform: translate(-50%);
}

.more {
	color:#ffffff;
	font-size:1.6rem;
    font-family:  "San Francisco Display Bold", -apple-system-ui-serif, ui-serif, 'Georgia', serif;
}

.more_txt {
	padding-top:4em;
	display:flex;
}

.more_txt div {
	font-size:1.7rem;
}

@media (max-width: 768px) {
	.head .title {
		padding-top:4em;
	}

	.gallery .head .title {
		font-size:1.3rem;
	}

	.gallery .head .eng {
		font-size:1.6rem;
		font-weight:900;
		font-family:  "NY BI", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
		padding:5% 0 5%;
	}

	.more {
		font-size:1.4rem;
	}

	.more_txt div {
		font-size:1.5rem;
	}

}


.cards {
	width:100%;
	clear:both;
	padding:10% 0 25%;
}

.cards:last-child {
	padding-top:3%;
}

.cards .photo {
	cursor:pointer;
}

.cards .photo {
  transition: all 0.8s ease-in-out; 
}

.cards .photo:hover {
  transform: scale(1.02);
-webkit-transform:scale(1.02); /* 크롬 */
-moz-transform:scale(1.02); /* FireFox */
-o-transform:scale(1.02); /* Opera */
}

.cards .thumbs{
    padding-top: 1em;
    clear: both;
}

.cards .thumbs div{
    width:32.5%;
	float:left;
	cursor:pointer;
}

.cards .thumbs .center{
    margin-left:1%;
    margin-right:1%;
}

.cards .thumbs img{
	width:97%;
}


.cards .descript {
    padding-top: 2em;
    clear: both;
}

.cards .left {
	float:left;
	width:70%;
	padding-left:3em;
	font-size:1.0rem;
	font-family: "San Francisco Display Light", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height:1.6;
}

.cards .left .title {
	color:#fff;
	font-size:1.4rem;
	font-weight:700;
    font-family:  "San Francisco Display Semibold", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.cards .left .eng {
	font-size:1.2rem;
}

.cards .right {
	float:right;
	width:30%;
	font-size:1.1rem;
	font-weight:300;
	line-height:2.2;
	font-family: 'AppleSDGothicNeoT';
}

.cards .right .title {
	font-weight:700;
	line-height:2.0;
	font-family: 'AppleSDGothicNeoB';
	padding-bottom:1em;
	display: block;
}
@media (max-width: 1024px) {
	.cards .thumbs img{
		width:100%;
	}
	.cards .left {
		padding-left:0;
		width:60%;
	}

	.cards .right {
		width:40%;
		font-size:1.1rem;
	}
}
@media (max-width: 768px) {
  .cards:last-child {
	margin-bottom:30%;
  }
  .cards .thumbs{
    padding-top: 0;
  }	
  .cards .left {
    float:none;
	width:100%;
    padding-top: 0.7em;
	padding-left:0;
	text-align:center;
  }
  .cards .left .title {
	font-size:1.3rem;
  }
  .cards .left .eng {
	font-size:1.1rem;
  }

  .cards .right {
    float:none;
	width:100%;
    padding-top: 2em;
	font-size:1rem;
	text-align:center;
  }  
	.cards .right .title {
		line-height:4.0;
	}
  .cards .thumbs img{
	width:100%;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
	height:100%;
	font-size:1.2rem;
	font-weight:100;
	line-height:2;
	clear:both;
	padding:10% 0% 5%;
	display:flex;
	/*justify-content: center;*/
    align-items: center;
}

.titles {
	height:90vh !important;
	display:table-cell;
	height:100%;
	vertical-align:middle;
}

.about .logos {
	width:100%;
	text-align:center;
}

.about .logos img{
	width:25%;
}
.about .sub .imgs img {
	width:100%;
}

.about b {
	font-size:1.4rem;
	font-family:"AppleSDGothicNeo";
}

.about .title {
	font-size:1.8rem;
    font-family:  "San Francisco Display Semibold", -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height:4;
}

.about .graphic {
	font-size:3.4rem;
    font-family:  "NY BI", -apple-system-ui-serif, ui-serif, 'Georgia', serif;
  display: inline-block;
}

.about .description {
	font-family:"AppleSDGothicNeoT"
	padding-bottom:3em;
}

.about .intro {
	height:100%;
	display:flex;
	justify-content: center;
    align-items: center;
}

.about .intro .left {
	float:left;
	width:40%;
	vertical-align: bottom;
	display:flex;
	flex-direction: column-reverse;
}

.about .intro .left .description{
  display: inline-block;
}

.about .intro .left div {
}

.about .intro .right {
	float:right;
	width:60%;
	vertical-align: middle;
}

.about .intro .right img {
	width:100%;
	height:auto;
}

.about .thumbs img {
	object-fit: contain; 
	width:100%;
}

.about .thumbs .middle{
	width:40%;
	float:right;
}

.about .thumbs .left{
	width:46%;
	float:left;
	margin-top:30%;
}

.about .thumbs .right{
	width:70%;
	float:right;
    padding-top: 3em;
	padding-bottom:3em;
}


@media (max-width: 1024px) {
	.about b {
		font-size:1.1rem;
	}

	.about .intro {
		flex-direction:column;
	}

	.about .intro img {
		height:auto;
	}

	.about .intro .left {
    float:none;
	width:100%;
	padding-bottom:2em;
	}
	
	.about .intro .right {
    float:none;
	width:100%;
	height:auto;
	}


  .about  .left {
    float:none;
	width:100%;
    padding-top: 0.7em;
  }
  .about  .middle {
    float:none;
	width:100%;
    padding-top: 1em;
  }    
  .about  .right {
    float:none;
	width:100%;
  }  
}

@media (max-width: 768px) {
	.about {
		font-size:1rem;
		/*height:100%*/
	}


	.about .logos img{
		width:50%;
	}
	
	.about .sub .imgs{
		overflow-x:hidden;
	}
	
	.about .sub .imgs img {
		width:auto;
		height:90vh;
	}
	.about .graphic {
		font-size:2rem;
		line-height:1;
	}
	.about .title {
		display:none;
	}
	
	.about b {
		font-size:1.1rem;
	}

	.about .intro {
		flex-direction:column;
	}

	.about .intro img {
		height:auto;
	}

	.about .intro .left {
    float:none;
	width:100%;
	padding-bottom:2em;
	}
	
	.about .intro .right {
    float:none;
	width:100%;
	height:auto;
	}


  .about  .left {
    float:none;
	width:100%;
    padding-top: 0.7em;
  }
  .about  .middle {
    float:none;
	width:100%;
    padding-top: 1em;
  }    
  .about  .right {
    float:none;
	width:100%;
  }  

  .about .thumbs {
	display:flex;
	flex-direction:column-reverse;
  }

  .about .thumbs img {
	width:100%;
  }

  .about .thumbs .left{
    float:none;
	width:100%;
	margin-top:0;
  }
  .about .thumbs .left img {
	width:60%	
  }

  .about .thumbs .middle img {
	width:70%;
  }

  .about .thumbs .middle{
    float:none;
	width:100%;
	text-align:right;
	padding:10%;
  }
  .about .thumbs .right{
    float:none;
	width:100%;
  }
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Gallery - Slide
--------------------------------------------------------------*/

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000cc;
 vertical-align:middle;
}

/* Modal Content */
.modal-contents {
  position: absolute;
  top:50%;
  background-color: #00000000;
  margin-top: -30%;
  padding: 0;
  width: 100%;
}

/* The Close Button */
.close {
  z-index:1000;
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 24px;
  font-weight: 500;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
  background:#000;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: 400;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  /*background-color: rgba(0, 0, 0, 0.8);*/
 color:#fff;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (min-width: 1300px) {
	.modal-contents {
		padding:0 15%;
		margin-top: -23%;
	}
	.next {
		right: 15%;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 10% 0 10%;
  color: #7d7d7d;
  font-size: 0.8rem;
}

#footer .container{
	height:auto;
}

#footer i {
	font-size:1.2rem;
	color:#7d7d7d;
}

#footer img{
	height:64px;
}

#footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #fff;
}
#footer .footer-links a {
  color: #fff;
  padding-left: 15px;
}
#footer .footer-links a:first-child {
  padding-left: 0;
}
#footer .footer-links a:hover {
  color: #fff;
}

#footer .copyright {
	font-size:0.7rem;
}