@charset "utf-8";

/*#########################################################
* SBaLp01Frame
*##########################################################
* Bootstrap Customizing
* Bootstrap Added
* Common Layout
* -Header
* -Nav
* -Main Cover
* -Footer
* -Back To Top
* Common Contents
* -Heading
* Popup
*========================================================*/
.CSS주석표기법 {
  /*제외*/
  /* 설명 */
}

/*=========================================================
* Bootstrap Customizing
*========================================================*/
html {
  font-size: 14px;
}

body {
  font-family: 'Noto Sans KR', '맑은 고딕', 'Malgun Gothic', 'Apple SD Gothic Neo', '돋움', Dotum, sans-serif;
  font-size: 1em;
  color: #444;
  font-weight: normal;
  letter-spacing: -0.06px;
  line-height: 1.5;
  overflow-x: hidden;
  word-break: keep-all;
  word-wrap: break-word;
  white-space: normal;
}

a {
  -webkit-transition: 0.5s, ease;
  -o-transition: 0.5s, ease;
  transition: 0.5s, ease;
  color: #444;
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  /*color: #005099 !important;*/
}

p,
ul,
ol,
dl {
  font-family: 'Noto Sans KR', '맑은 고딕', 'Malgun Gothic', 'Apple SD Gothic Neo', '돋움', Dotum, sans-serif;
  color: #444;
  line-height: 1.5;
}

ul {
  padding-left: 0;
}

dt,
dd {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans KR', '맑은 고딕', 'Malgun Gothic', 'Apple SD Gothic Neo', '돋움', Dotum, sans-serif;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  letter-spacing: -0.8px;
}

@media screen and (max-width: 768px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.2;
  }
}

/*-------------------------------------------------------*/
b {
  font-weight: normal;
  /* !<b class="word"></b> 단어를 묶는 용도로 대체하여 사용한다. */
}

.word {
  /* <b class="word"></b> */
  font-style: normal;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .word {
    display: block;
  }
}

.lang-en {
  font-size: 1.125em;
  /* en은 kr보다 +2px크게한다. */
  letter-spacing: -0.5px;
  line-height: 1.34;
}

/*-------------------------------------------------------*/
.table {}

.table-responsive {}

.table-striped {}

.table-bordered {}

.table-hover {}

.table-condensed {}

.table-title-top thead th {
  border-top: 2px solid #555 !important;
  border-bottom: 1px solid #777 !important;
}

.table-title-top tbody td {
  border-bottom: 1px solid #eee !important;
}

.table-title-left {
  border-top: 2px solid #555;
}

.table-title-left tbody th {
  width: 20%;
  text-align: center;
}

.table-title-left tbody th {
  border-right: 1px solid #777;
}

.table-title-left tbody th,
.table-title-left tbody td {
  border-bottom: 1px solid #eee !important;
}

/*-------------------------------------------------------*/
::-webkit-selection {
  color: #fcfcfc;
  background: #4484ce;
}

::-moz-selection {
  color: #fcfcfc;
  background: #4484ce;
}

::selection {
  color: #fcfcfc;
  background: #4484ce;
}

/*=========================================================
* Bootstrap Added
*========================================================*/
/*---------------------------------------------------------
* Callout
*--------------------------------------------------------*/
.bs-callout {
  /* <div class="bs-callout bs-callout-default"></div> */
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}

.bs-callout p:last-child {
  margin-bottom: 0;
}

.bs-callout code {
  border-radius: 3px;
}

.bs-callout+.bs-callout {
  margin-top: -5px;
}

.bs-callout-primary {
  border-left-color: #007bff;
}

.bs-callout-primary h4 {
  color: #007bff;
}

.bs-callout-secondary {
  border-left-color: #6c757d;
}

.bs-callout-secondary h4 {
  color: #6c757d;
}

.bs-callout-success {
  border-left-color: #28a745;
}

.bs-callout-success h4 {
  color: #28a745;
}

.bs-callout-info {
  border-left-color: #17a2b8;
}

.bs-callout-info h4 {
  color: #17a2b8;
}

.bs-callout-warning {
  border-left-color: #ffc107;
}

.bs-callout-warning h4 {
  color: #ffc107;
}

.bs-callout-danger {
  border-left-color: #dc3545;
}

.bs-callout-danger h4 {
  color: #dc3545;
}

/*=========================================================
* Common Layout
*========================================================*/
.section-bg {
  background: #f7f7f7;
}

.section-bgcolor-gray {
  background-color: rgba(0, 0, 0, 0.04);
}

/*---------------------------------------------------------
* Header
*--------------------------------------------------------*/
#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 #01315f;
  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);
  }
}

/*-------------------------------------------------------*/
#wrapper {
  overflow-x: hidden;
  position: relative;
}

/*---------------------------------------------------------
* Header
*--------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(187, 187, 187, 0.9);
  padding: 30px 0 0 0;
  /*height: 90px;*/
  transition: all 0.5s;
}

#header #logo img {
  padding: 0;
  margin-top: -8px;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }
}

@media (max-width: 768px) {
  #header #logo img {
    max-height: 40px;
  }
}


/*---------------------------------------------------------
* Nav
*--------------------------------------------------------*/
.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;
}

.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-menu-container {
  float: right;
  margin: 0;
}

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 1.286em;
  text-transform: uppercase;
  outline: none;
}

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

.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: #444;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

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

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

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

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

#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: 1em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
}

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

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

/*#mobile-nav ul li.menu-active a {
  color: #005099;
}*/

#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: #005099;
}

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

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

#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;
}

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

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

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

@media (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}


/*---------------------------------------------------------
* Main Cover
*--------------------------------------------------------*/
#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.1);
  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: 0px;
  font-size: 5.4em;
}

#intro h4 {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro h4 a {
  color: #005099 !important;
}

#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;
}

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

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

@media (max-width: 768px) {
  #intro h2 {
    font-size: 2.2em;
  }

  #intro br {
    display: none;
  }
}

/*---------------------------------------------------------
* Footer
*--------------------------------------------------------*/
footer {
  font-size: 0.875em;
}

#footer-info .wz08g-social-icons>a {
  padding: 4px 10px;
}

#footer-info .wz08g-social-icons>a i {
  font-size: 1.625em;
}

#footer-info .wz08g-social-icons>a:hover, .wz08g-social-icons>a:focus, .wz08g-social-icons>a:active {
  text-decoration: none;
}

#footer-info {
  background: #222;
  padding: 40px 0;
}

#footer-info p {
  color: #fff;
  text-align: center;
}

#footer-info p a {
  color: rgba(255, 255, 255, 0.5) !important;
}

#footer-info p a:hover, #footer-info p a:active, #footer-info p a:focus {
  color: rgba(255, 255, 255, 0.9) !important;
}

#footer-info ul {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  text-align: center;
}

#footer-info ul li {
  display: inline-block;
  list-style: none;
}

#footer-info ul li:after {
  content: '|';
  padding-left: 11px;
  margin-right: 4px;
}

#footer-info ul li:last-child:after {
  content: '';
}

@media screen and (max-width: 768px) {
  #footer-info .wz08g-social-icons {
    text-align: left;
  }

  #footer-info ul {
    float: none;
    text-align: left;
  }

  #footer-info ul li {
    display: block;
  }

  #footer-info ul li:after {
    content: ' ';
  }
}

#footer-copyright {
  background: #0a0a0a;
  padding: 10px 0;
}

#footer-copyright p {
  margin-bottom: 0;
}

/*---------------------------------------------------------
* Back To Top
*--------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  background: #012e58;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 1.143em;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  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;
  }
}

/*=========================================================
* Common Contents
*========================================================*/
/*---------------------------------------------------------
* Heading
*--------------------------------------------------------*/
.section-header h3 {
  font-size: 2.286em;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #01315f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #444;
}

/*=========================================================
* popup
*========================================================*/
.modal {
  display: none;
  position: fixed;
  z-index: 50000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #005099;
  margin: 15% auto;
  padding: 20px;
  border: 20px solid rgba(255, 255, 255, 0.8);
  width: 30%;
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .modal-content {
    margin: 45% auto;
    width: 90%;
  }
}

.modal-content .fa-user-tie:before {
  font-size: 2em;
}

.modal-content h2 {
  font-size: 3em;
  color: #fff;
  text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}

.modal-content a:hover, .modal-content a:visited, .modal-content a:active, .modal-content a:focus {
  color: #fff !important;
}

#modal-close {
  padding: 20px 0;
}

#modal-close input {
  margin: 8px 0 0 4px;
}

.close {
  display: inline-block;
  padding: 5px 0 5px 5px;
  font-size: 1em;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);gwanghwa0713@gmail.com
  color: #444;
  opacity: 1;
}



.sns_link {position: fixed;right: 0;top:50%;transform: translateY(-50%);box-shadow: 0 0 20px rgba(0,0,0,0.05); z-index: 10}
.sns_link ul {list-style: none;border-radius: 10px 0 0 10px;overflow: hidden;}
.sns_link ul li {list-style: none;text-align: center;}
.sns_link ul li a {display: block;text-decoration: none;padding: 10px 5px;}
.sns_link ul li.link_kakao {background:#f3d900;}
.sns_link ul li.link_phone {background:#643B3B;}
.sns_link ul li.link_email {background:#f6f6f6;}
.sns_link ul li.link_kakao i {color:#341c1c ;font-size: 1.2em;}
.sns_link ul li.link_phone i {font-size:0.9em;color:#fff}
.sns_link ul li.link_email i {font-size:1.2em;color:#000;}
.sns_link ul li span {display: block;margin-top: 2px;font-size:11px;font-weight: 700;color:#000;}
.sns_link ul li.link_phone span {color:#fff}

@media screen and (max-width:768px){
  .section-header h3 {font-size: 1.86em;}
  #consult h3 {font-size: 1.6em;}
}
