/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #333;
}

a {
  color: #333;
  transition: 0.5s;
  text-decoration: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

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

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

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* 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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.blueColorText {
  color:#087cdb;
  font-weight: 600;
}
.col-md-05 {
  flex: 0 0 auto;
  width: 4.1666667%;
}
.solutionText1 {
  /* font-size: 11.5px !important; */
  /* margin-left: 3px; */
}
.solutionText2 {
  font-size: 20px !important;
  /* margin-left: 3px; */
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.9);
}

#header.header-transparent {
  background: rgba(255, 255, 255, 0.9);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.7);
  padding: 13px 0;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 40px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #333;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #194BAF;
  text-decoration: underline;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  color: #333333;
}

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

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 26px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #333;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #333333;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #18d26e;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #intro {
    height: 150vh;
  }
}

#intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0);
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 130px;
  left: 70px;
}

#intro .container {
  text-align: left;
}

#intro h2 {
  color: #000;
  margin-bottom: 15px;
  font-size: 70px;
  font-weight: 700;
  font-family: 'Titillium Web', sans-serif;
}

#intro h5 {
  color: #000;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 400;
  line-height: 35px
}

@media (max-width: 768px) {
  #intro .container {
    text-align: center;
  }
  #intro .carousel-container {
    top: 200px;
    left: 0px;
  }
  #intro h2 {
    font-size: 28px;
  }
  #intro h5 {
    font-size: 18px;
  }
}

#intro p {
  width: 80%;
  color: #000;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

#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;
  transform: translate3d(0, 0, 0);
}

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

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#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-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 40px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
  font-family: 'Titillium Web', sans-serif;
}

.section-header p {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  color: #194BAF;
  border-bottom: 2px solid #194BAF;
  margin-bottom: 40px
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 90px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #18d26e;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* Greetings Us Section
--------------------------------*/
#Greetings {
  background: url("../img/greetings-bg.png") center top no-repeat fixed;
  background-size: cover;
  padding: 200px 0 60px 0;
  position: relative;
}

#Greetings .box {
  margin-bottom: 60px;
}

#Greetings .description {
  font-size: 17px;
  margin-left: 60px;
  line-height: 40px;
  margin-bottom: 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
}

#Greetings .description b {
  font-weight: 600;
  font-size: 20px;
}
#Greetings .description img {
  padding-left: 50px;
  margin-top: -30px
}

@media (max-width: 768px) {
  #Greetings .description {
    font-size: 15px;
    margin-left: 0px;
  }
  #Greetings .description img {
    padding-left: 5px;
    margin-top: 10px
  }
}


/* About Us Section
--------------------------------*/
#Solution {
  padding: 60px 0 40px 0;
  position: relative;
}

#Solution::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#Solution .container {
  position: relative;
  z-index: 10;
}

#Solution .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  margin-bottom: 20px;
}

#Solution .about-col:hover {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

#Solution .about-col .img {
  text-align: center;
  position: relative;
}

#Solution .about-col .img img {
  border-radius: 4px 4px 0 0;
}


#Solution .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 0;
  margin: 20px 0 12px 0;
}

#Solution .about-col h2 a {
  color: #000;
}

#Solution .about-col h2 a:hover {
  color: #194BAF;
}

#Solution .about-col p {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  margin-bottom: 0;
  padding: 0 0 20px 0;
}

#Solution .about-col dd {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  text-align: center;
}

.Solution table {
  width: 100%;
  word-spacing: 0;
  margin-top: -40px
}

.Solution table thead th {
  font-size: 17px;
  background-color: #FAFAFA;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  border: 1px solid #DFDFDF
}
.Solution table tbody td{
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  padding: 12px 0;
  border: 1px solid #DFDFDF;
  text-align: center;
}
.Solution table tbody th{
  font-size: 17px;
  background-color: #FAFAFA;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  border: 1px solid #DFDFDF
}
.Solution table tbody td.Sotitle{
text-align: center;
color: #194BAF
}
.Solution table tbody td.SoCoLeft{
text-align: left;
padding-left: 20px;
}


/* History Section
--------------------------------*/
#History {
  background: url(../img/history-bg.png) fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.HistoryImg {
  text-align: center;
}
.HistoryImg object{
  width: 85%;
}
.HistoryImgM {
  text-align: center;
  display: none;;
}
.HistoryImgM object{
  width: 80%;
}

@media (max-width: 768px) {
  .HistoryImg {
    display: none;
  }
  .HistoryImgM {
    display: block;
  }
}


/* `Partners` Section
--------------------------------*/
#Partners {
  padding: 60px 0;
}

#Partners .member {
  text-align: center;
  margin: 30px 0;
  position: relative;
  border: 1px solid #e3e3e3;
}
#Partners .member img {
  height: 75px;
  max-width: 99%;
}


/* `Contact` Section
--------------------------------*/
.tab-pane img {
  width: 100%;
  padding-top: 20px;
}
.MapBgGray{
  background-color: #444444;
  margin: 0 1px;
}
.MapConA{
  margin: 20px 0 20px 20px;
}
.MapCon dt {
  color: #999;
  font-size: 13px;
  padding-bottom: 5px;
}
.MapCon dd {
  color: #fff;
  font-size: 13px;
  line-height: 14px;
  }
.MapConB{
  margin: 20px 0 20px 20px;
  border-left: 1px solid #999;
  padding-left: 20px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #E3E3E3;
  padding: 35px 0 45px 0;
  color: #999;
  font-size: 14px;
}
.footerImg img{
margin-top: 12px;  
width: 190px;
}
.footerCenter{
line-height: 25px;
margin-top: 14px;
}
.footerRight{
  text-align: right;
  font-size: 12px;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .footerImg {
  text-align: center;
  padding-bottom: 10px;
  }
  .footerRight{
    text-align: center;
      }
}
