@charset "UTF-8";

/* font */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto&family=Rowdies:wght@700&display=swap");
@import url("http://fonts.googleapis.com/earlyaccess/notosanskr.css");

* {
    font-family: 'Noto Sans KR', sans-serif !important;
    word-break: keep-all;
    
    transition: all 0.3s ease-out;
    transition: all 0.3s ease-in;

}
a, a:hover {
    color: #000;
    text-decoration: none;
}
.tac {
  text-align: center;
}
.pb-20 {
  padding-bottom: 20px;
}
 

/* ========== header ========== */
#header,
#footer {
  display: block;
  width: 100%;
  z-index: 9;
  /* height: 90px !important; */
  text-align: center;
  color: #f2f2f2;
  /* padding: 20px 0 0 0; */
  overflow: hidden;
}

#header {
    height: 100px;
    top: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    z-index: 100;
}
#header.header-hover:hover {
  border-bottom: 1px solid  #e9e9e9;
}
#header .navbar a.logo {
  width: 170px;
  height: 42px;
  float: left;
  margin: 23px 0 23px 30px;
}
.logo_basic {
  background: url("../img/common/logo.png") no-repeat;
}

.logo_section3 {
  background: url("../img/common/logo_002.png") no-repeat;
  display: none;
}

#header .navbar {
    line-height: 70px;
    position: relative;
}
#header > .header_menu {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: #00000094;
}
#header div#navbarsExample06 {
    margin-right: 130px;
}
#header > .header_menu {
  background: none;
}
#header .nav-item a {
    font-size: 18px;
    line-height: 75px;
}
#header li.nav-item {
    margin-right: 20px;
}
#header .navbar .navbar-nav li.nav-item a:hover {
  color: #166ce3 !important;
}
#header .navbar-dark .navbar-nav .nav-link {
  color: white;
}

/* hamburger */
    .hamburger {
        position: absolute;
        top: 42px;
        right: 25px;
        /* width: 50px; */
        height: 50px;
        cursor: pointer;
        z-index: 10;
    }
    .hamburger img {
      display: block;
    }
    .hamburger .black {
      display: none;
    }
    
    /* .hamburger span {
        position: relative;
        display: block;
        width: 20px;
        height: 5px;
        background: white;
        transition: all 0.4s;
    }
    .hamburger span:before, .hamburger span:after {
        content: '';
        display: block;
        height: 5px;
        right: 0;
        background: inherit;
        position: absolute;
        transition: all 0.4s;
        -webkit-animation: gradientbgAnim 49s ease infinite;
        -moz-animation: gradientbgAnim 49s ease infinite;
        -o-animation: gradientbgAnim 49s ease infinite;
        animation: gradientbgAnim 49s ease infinite;
    }
    .hamburger span:before {
        top: -15px;
        width: 40px;
    }
    .hamburger span:after {
        bottom: -15px;
        width: 30px;
    }
    .hamburger:hover span {
        width: 40px;
    }
    .hamburger:hover span:before {
        width: 40px;
    }
    .hamburger:hover span:after {
        width: 40px;
    }
    .hamburger {
        transform: translate(0, -90%);
    }
    .hamburger.close span {
        width: 0px;
        background: black;
    }
    .hamburger.close span:before {
        top: 0;
        width: 50px;
        transform: rotate(45deg);
    }
    .hamburger.close span:after {
        bottom: 0;
        width: 50px;
        transform: rotate(-45deg);
    } */
    /* end hamburger */

    /* hamburger box */
    .hamburger-box {
      display: none;

    }
    .hamburger-box.active {
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        background-color: rgb(255,255,255);
        overflow-x: hidden;
        transition: 0.5s;
        display: block;
    }
    .hamburger-box .container {
      position: relative;
    }
    .hamburger-box .container .close_btn {
      position: absolute;
      top: 7px;
      right: 0;
      cursor: pointer;
    }

    .hamburger-content {
        display: none;
    }
    .active .hamburger-content {
        position: relative;
        top: 25%;
        width: 100%;
        text-align: center;
        /* margin-top: 30px; */
        display: block;
        height: 88vh;
    }

    .active.hamburger-box a {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: #000;
        display: block;
        transition: 0.3s;
    }

    .active.hamburger-box a:hover {
        color: #166ce3;
    }
    .hamburger-box .hamburger-content .cont-box {
        float: left;
        color: #000;
        width: 270px;
        text-align: left;
        padding-left: 30px;
        border-left: 1px solid #ccc;
        padding-top: 70px;  
        height: 100%;
    }
    .hamburger-box .hamburger-content .cont-box:last-child {
        border-right: 1px solid #ccc;
    }
    .hamburger-box .hamburger-content .cont-box .menu-title {
        font-size: 28px;
        font-weight: 800;
        padding-bottom: 40px;
    }
    .hamburger-box .hamburger-header {
        border-bottom: 1px solid #ccc;
    }
    .hamburger-box .hamburger-header .hamburger-logo {
        background-image: url(../img/common/logo_002.png);
        width: 170px;
        height: 42px;
        margin: 31px 0 23px 1px;
    }
    .active.hamburger-box .hamburger-content .cont-box .menu-txt a {
        font-size: 20px;
        line-height: 35px;
        font-weight: 500;
    }
    .cont-box:hover {
        background-color: #f5f5f5;
    }
    #hamburger2-box .hamburger-content {
      height: auto;
    }
    #hamburger2-box .hamburger-content .cont-box {
      padding-top: 10px;
      width: 100%;
      border-bottom: 1px solid #ccc;
      border-left: none;
      cursor: pointer;
    }
    #hamburger2-box .hamburger-content .cont-box .menu-box {
      padding-bottom: 10px;
    }
    #hamburger2-box .hamburger-content .cont-box .menu-title {
      padding-bottom: 5px;
      line-height: 50px;
    }
    #hamburger2-box .hamburger-content .cont-box .menu-txt .menu-txt-2 {
      color: #777;
      padding-left: 20px;
    }
    #hamburger2-box .hamburger-content .cont-box .menu-txt a {
      line-height: 25px;
    }
    #hamburger2-box .hamburger-content .cont-box:last-child {
      border-right: none;
    }

    /* end hamburger box */

@media (min-width: 1200px) {
    /* 헤더 드롭다운 */
    .dropdown_wrap {
    /* width: 900px; */
    /* margin: 0 auto; */
    float: right;
    overflow: hidden;
    z-index: 999;
    right: 0;
    }

    .dropdown_wrap > ul {
    /* width: 920px;
    min-width: 920px; */
    margin: 0 auto;
    overflow: hidden;
    }

    .dropdown_category {
    float: left;
    width: 130px;
    }

    .dropdown_category > a {
    position: relative;
    display: block;
    height: 90px;
    line-height: 90px;
    font-size: 18px;
    /* color: #000; */
    text-align: center;
    }

    .dropdown_sub_category {
    text-align: left;
    display: none;
    }

    #header .dropdown_wrap .dropdown_sub_category > a:first-child {
    margin-top: 30px;
    }

    #header .dropdown_wrap .dropdown_sub_category > a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #555;
    line-height: 22px;
    padding-left: 23px;
    margin-top: 8px;
    }
    #header .dropdown_wrap .dropdown_sub_category.procast > a {
      padding-left: 25px;
    }

    #header .dropdown_wrap .dropdown_sub_category > div {
    height: auto;
    padding-top: 10px;
    margin-top: 0px;
    padding-left: 28px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    }

   #header .dropdown_wrap .dropdown_sub_category > div a {
    display: block;
    font-size: 15px;
    margin-top: 6px;
    color: #555 !important;
    line-height: 20px;
    }

    #header .dropdown_wrap .dropdown_sub_category > div a:first-child {
    margin-top: 0;
    margin-bottom: 0;
    }

    #header:hover .dropdown_wrap .dropdown_sub_category {
    display: inline;
    }

    #header .dropdown_wrap .dropdown_wrap li:hover > a {
    border-bottom: 2px solid #166ce3;
    }

    #header .dropdown_wrap .dropdown_sub_category_project > a {
    padding-left: 25px;
    }

    #header .dropdown_wrap .dropdown_sub_category_contact > a {
    padding-left: 14px;
    }

    .header-hover:hover > .header_menu {
    border-bottom: 1px solid #cccccc;
    }

    .header-hover:hover {
    height: 410px !important;
    background-color: #fff;
    border: 1px solid;
    }
    #header .header_wrap {
        height: 99px;
    }
    #header .header_wrap:hover {
    border-bottom: 1px solid rgb(204, 204, 204);
    } 

    body #header:hover .dropdown_sub_category > a,
    body #header:hover .dropdown_category > a {
    color: #000 !important;
    }
    body #header:hover .hamburger span {
        background: #000;
    }
}
@media (max-width: 767.9px) {
  #hamburger2-box .hamburger-content .cont-box .menu-title {
    font-size: 16px;
    line-height: 35px;
  }
  #hamburger2-box .hamburger-content .cont-box .menu-txt a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 360px) {
    #header .navbar a.logo {
        margin: 28px 0 23px 10px;
    }
    .logo_basic {
        background-size: 140px;
    }
    .header_bg {
        background-position: center center;
    }
    body .header_bg .bg_txt {
        font-size: 45px;
        width: 100%;
        text-align: center;
        margin-top: 210px;
    }
} 
/* ========== end header ========== */

/* ===== content 공통 ===== */
/* subheader */
.header_bg .bg_txt {
  font-size: 70px;
  width: 100vw;
  margin: 0 auto;
  margin-top: 160px;
  color: #fff;
  text-align: center;
}
.navbar-expand-md .navbar-toggler {
  border-right: 1px solid #e9e9e9;
  border-left: solid 1px #e9e9e9;
  padding: 9px 20px;
}

/* end subheader */

/* section 공통 */
.section .header_box .title{
  margin-bottom: 40px;
}

.section .header_box .article_txt {
  font-size: 20px;
  font-weight: 400;
  color: #7c7c7c;
  margin-top: 20px;
}

.section .header_box .title {
  margin-top: 100px;
  font-size: 45px;
  text-align: center;
  font-weight: 500;
}
.section .header_box {
    text-align: center;
}
.section {
  font-weight: 500;
}
.section1 .header_box {
    margin-bottom: 30px;
}
.text {
  font-size: 18px;
  font-family: "NotoSansKR";
  color: rgb(85, 85, 85);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
/* end section 공통 */

/* business 메뉴 공통 */
.navbar2 {
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: #ccc solid;
  border-width: 0.1px;
  overflow: hidden;
  text-align: center;
}
.navbar2 .row {
  margin-top: 15px;
  padding-left: 100px;
  overflow: hidden;
  display: inline-block;
}
.navbar2 a {
  font-size: 20px;
  padding-right: 80px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  overflow: hidden;
}
.navbar2 a:hover {
  color: #7c7c7c;
}
.navbar2 a.active {
    color: #166ce3;
}
.navbar2 a.active:after {
    content: "";
    display: block;
    width: 130px;
    border-bottom: solid #166ce3 4px;
    padding-top: 9px;
}
a.non-active:after {
    content: "";
    display: block;
    width: 130px;
    border-bottom: solid #fff 4px;
    padding-top: 9px;
}
@media (max-width:1200px) {
  .navbar2 {
    height: 100%;
  }
  .navbar2 .row {
    padding-left: 0;
  }
  .navbar2 {
    border: none;
  }
  .navbar2 a {
    overflow: initial;
    padding: 0;
    width: 130px;
  }
  .navbar2 a.active:after {
      display: none;
  }
  .navbar2 a.active {
    color: #fff;
    background: #166ce3;
    border-radius: 15px;
  }
  .navbar2 .col-3 {
    padding-left: 0;
  }
}
@media (max-width:768px) {
  .section .header_box .title {
    font-size: 25px;
  }
  .section .header_box .article_txt {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
/* end business 메뉴 공통 */
/* ===== end content 공통 ===== */


/* ========== footer ========== */
#footer{
    background: #333;
    height: auto !important;
}
#footer .fp-tableCell {
    height: 80px !important;
}
#footer .fp-tableCell:after{
    content: '';
    display: table;
    clear: both;
}
.main_footer {
  padding: 20px 0px;
}

#footer .footer_logo {
  float: left;
  padding-left: 30px;
}

#footer .copyright p {
  margin-bottom: 0;
}

.copyright {
  display: inline-block;
  float: left;
  padding-left: 50px;
  text-align: left;
  font-size: 15px;
}

.copyright_company {
  margin-top: 2px;
  font-size: 14px;
}

.copyright_text {
  font-size: 13px;
}

@media (max-width: 767.9px) {
    #footer .footer_logo{
        padding-left: 10px;
        margin-bottom: 5px;
    }
    #footer .copyright{
        padding-left: 10px;
    }
}
/* ========== end footer ========== */

/* top button */
#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */
#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#3498db;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#e74c3c;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
/* end top button */


