
body {
  background: #fff;
  color: #666666;
  font-family: 'Noto Sans KR', sans-serif;
}

a {
  color: #666;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0085cf;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}



/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #0085cf;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}


@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 10px;
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  background-color: #162736;
  z-index: 997;
}

#header > div{max-width: 1280px;}

#header #logo {
  float: left;
}

#header #logo h1 {
  margin: 0;
  padding: 0;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 76px;  
  font-family: "Gugi", sans-serif;
  font-weight: 400;
  font-style: normal;  
}

#intro p {
  width: 80%;
  margin: 10px auto 20px auto;
  color: #fff;
  line-height: 46px;
  font-size: 26px;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 54px;
  display: inline-block;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #f5ebeb;
  background: linear-gradient(0deg, #5201ff,#1ca1fc);
  width: 240px;
  height: 54px;
  box-shadow: 2px 2px 5px 1px #222031;
}

#intro .btn-get-started:hover {
  background: linear-gradient(110deg, #5201ff,#1ca1fc);
  color: #fff;
}
.carousel-indicators .active{background-color: #1e8ff3 !important;} 


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
  line-height: 40px;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 16px;
  text-decoration: none;
  display: inline-block;
  color: #cccccc;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  outline: none;
  
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #fff;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #18d26e;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 10px;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: #18d26e;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: #0085cf;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #18d26e;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #18d26e;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# sco
--------------------------------------------------------------*/
.himg_area{max-width: 1280px; margin: 0 auto; margin-top: 100px; margin-bottom: 50px; position: relative;}
.himg_area img{width: 100%; padding: 0 20px;}
.himg_txtarea{position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; flex-direction: column;}
.himg_txtarea p{font-size: 40px; color: #fff; font-weight: bold; margin: 0;}
.himg_txtarea span{font-size: 24px; color: #f6f6f6; font-weight: 400; letter-spacing: 2px;}

.cso_area{max-width: 1200px; margin: 0 auto; padding-bottom: 100px;}
.cso_content{padding: 10px 30px; }
.cso_content li{padding: 2px 5px;}
.cso_area .cso_content h3{font-weight: bold; font-size: 24px;}
.cso_content .cso_h3list{font-size: 16px; font-weight: 500; color: #222; line-height: 30px;}

.cso_img1{display: flex; align-items: center;}
.cso_img1 > div{width: 50%;}
.cso_img2{display: flex; align-items: center; flex-direction: row-reverse;}
.cso_img2 > div{width: 50%;}
/*--------------------------------------------------------------
// # history
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #2e3240;
  padding: 50px 0 30px;
  color: #eee;
  font-size: 14px;
  text-align: center;
}

#footer P:nth-child(1){
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  margin: 0; 
  padding-bottom: 10px;
  letter-spacing: 1px;
}

#footer P:nth-child(2){
  font-size: 14px;
  color: #dbdbdb;
  font-weight: 400;
}
#footer span{
  font-size: 12px;
  color: #949494;
  font-weight: 400;
}
.footerbr{display: none;}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 1200px) {
  #intro h2{font-size: 40px;}
  #intro p{font-size: 16px;line-height: 26px;}
  .nav-menu a{padding: 0 10px; }
  #header #logo img{width: 130px;}
  .cso_img1 img ,.cso_img2 img{display: none;}
  .cso_img1 ,.cso_img2{display: inherit;}
  .cso_img1 > div ,.cso_img2 > div{width: 100%;}
}


@media (max-width: 1024px){
  .himg_area{margin-top: 90px;}
  .himg_txtarea p{font-size: 36px;}
  .himg_txtarea span {font-size: 20px;}
  
}


@media (max-width: 992px){
  #intro .btn-get-started {font-size: 18px; line-height: 48px; height: 48px; width: 220px;}

  
}

@media (min-width: 992px) {
  
}

@media (max-width: 768px) {
  .back-to-top {bottom: 15px;}
  #header #logo h1 {font-size: 28px;}
  #header #logo img {max-height: 40px;}
  #nav-menu-container {display: none;}
  #mobile-nav-toggle {display: inline;}
  .himg_area{margin-top: 90px;}
  .himg_txtarea p{font-size: 30px;}
  .himg_txtarea span {font-size: 16px;}
  
}
@media (max-width: 600px){
  .footerbr{display: block;}
}

@media (max-width: 500px){
  .himg_txtarea p{font-size: 20px;}
  .himg_txtarea span {font-size: 14px;}
  .himg_area{margin-top: 60px; margin-bottom: 20px;}
  .cso_area .cso_content h3{font-size: 20px;}
  .cso_content .cso_h3list{font-size: 15px; padding-left: 20px;}
}
@media (max-width: 425px){
  
}

