@charset "UTF-8";
@import url("reset.css");
@import url("krc_common.css");

html, body {
  font-size: 16px;
}
body.active {
  position: fixed;
}

header {
  position: absolute;
  width: 100%;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
header .logo {
  width: 240px;
  padding: 23px 0 0 0;
  margin: 0;
  font-size: 10px;
}
header .moMenu {
  display: none;
}

header nav {
  width: 800px;
  height: 90px;
  overflow: hidden;
  background-color: #fff;
  transition: height 0.3s;
}
header nav:hover {
  height: 240px;
}
header nav:hover ul.gnb > li::after,
header nav:hover ul.gnb > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #dedede;
}
header nav:hover ul.gnb > li::after {
  left: 0;
}
header nav:hover ul.gnb > li:last-child::before {
  right: 0;
}
header nav ul.gnb {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  height: 100%;
}
header nav ul.gnb > li {
  flex: 1;
  position: relative;
  text-align: center;
  transition: 0.3s;
}
header nav ul.gnb > li:hover {
  background-color: #fafafa;
}
header nav ul.gnb > li > a {
  display: block;
  width: 100%;
  line-height: 90px;
  font-weight: 500;
  font-size: 19px;
  color: #222;
}
header nav ul.gnb > li > ul > li > a {
  display: block;
  padding: 6px 0;
  margin: 0 15px;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #eee;
}
header nav ul.gnb > li.on {
  border-top: 4px solid red;
}

main {
  padding: 90px 0 0 0;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

/* s: main-page */
.mainTop {
  position: relative;
}
.mainTop .m-visual {
  height: 640px;
  background: url(../images/m-visual.png) no-repeat center center;
  background-size: cover;
}
.mainTop .m-visual .m-text {
  position: absolute;
  top: 90px;
  width: 100%;
  font-family: "Giants-Regular";
  font-size: 25px;
  text-align: center;
  letter-spacing: -0.1rem;
}
.mainTop .m-visual .m-text strong {
  font-size: 40px;
  font-weight: normal;
}
.mainTop .m-visual .m-text > p {
  margin-top: 15px;
}

.mainTop .mTop-boxs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: absolute;
  left: 50%;
  top: 230px;
  transform: translateX(-50%);
  width: 1200px;
  z-index: 1;
}
.mainTop .mTop-boxs > div {
  flex: 1;  
  background-color: #366aff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 3px 3px 20px rgba(0,0,0,.1);
}
.mainTop .mTop-boxs > div h3 {
  font-size: 1.85rem;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}
.mainTop .mTop-boxs > div > ul > li {
  padding: 3px;
}
.mainTop .mTop-boxs > div > ul > li > a {
  position: relative;
  display: block;
  color: #fff;
  line-height: 55px;
  background-color: rgba(0,0,0,0.1);
  border:1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  padding: 0 20px;
  transition: .3s;
}
.mainTop .mTop-boxs > div > ul > li > a::before {
  content: url(../images/m-arrow.svg);
  position: absolute;
  top: 5px;
  right: 20px;  
  width: 25px;
  opacity: .4;
}

.mainTop .mTop-boxs > div > ul > li > a:hover {
  background-color: rgba(0,0,0,0.2);
}
.mainTop .mTop-boxs > div.m_research {
  background-color: #6f4ee8;
}
.mainTop .mTop-boxs > div.m_support {
  background-color: #2291b1;
}

.boardArea {
  display: flex;
  justify-content: space-between;
}
.boardArea > div {
  width: 30%;
  padding: 50px 0 60px;
}
.boardArea > div:nth-child(2) {
  width: 40%;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}
.boardArea > div .mBox-layout {
  height: 100%;
}
.boardArea > div .mBox-layout h4 {
  display: inline-block;
  font-size: var(--sbigFont);
  color: var(--color-deepblue);
  padding-bottom: 15px;
  border-bottom: 4px solid var(--point-color);
}
.boardArea > div .mBox-layout ul {
  padding-top: 15px;
  margin-top: 17px;
}
.boardArea > div .mBox-layout ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.boardArea > div .mBox-layout ul.pd li {
    padding: 7px 0;
}
.boardArea > div .mBox-layout ul li a,
.boardArea > div .mBox-layout ul li span {
  display: block;
}
.boardArea > div .mBox-layout ul li a {
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.boardArea > div .mBox-layout ul li span {
  display: block;
  font-size: var(--smFont);
  color: var(--color-grey);
}
.boardArea > div .mBox-layout ul li span.m-label {
  display: inline-block;
  color: #fff;
  background-color: #727e97;
  padding: 1px 7px 1px 5px;
  margin-right: 3px;
  border-radius: 5px;
}

.boardArea > div .mBox1 {
  margin-right: 40px;
}
.boardArea > div .mBox2 {
  margin: 0 40px;
}
.boardArea > div .mBox3 {
  margin-left: 40px;
}

.boardArea > div .mBox3 .m-banner {
    display: flex;
    align-items: center;
    height: 280px;
    color: #fff;
    background-color: #00ACB7;
    border-radius: 10px;
    padding: 0 20px;
    transition: .3s;
}
.boardArea > div .mBox3 .m-banner:hover {
    background-color: #006A71;
}
.boardArea > div .mBox3 .m-banner .ebook {
    color: #fff;
}
.boardArea > div .mBox3 .m-banner p.smTxt {
    font-size: 14px;
    margin-top: 8px;
}
.boardArea > div .mBox3 .m-banner p.smTxt > span {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 10px 20px;
    margin-top: 20px;
}
/*
.boardArea > div .mBox3 .m-banner {
  display: flex;
  align-items: center;
  height: 140px;
  color: #fff;
  background-color: #e5e7ec;
  border-radius: 10px;
  padding: 0 20px;
  transition: .3s;
}
*/
.boardArea > div .mBox3 .m-banner.customer {
  background-color: #3f65ac;
  margin-top: 20px;
}
.boardArea > div .mBox3 a:hover .m-banner {
  background-color: #3a4963;
}
.boardArea > div .mBox3 a:hover .m-banner.customer {
  background-color: #17469e;
}
.boardArea > div .mBox3 .m-banner dl {
  display: flex;
  align-items: center;
  gap: 20px;
}
.boardArea > div .mBox3 .m-banner dl dt {
  width: 80px;
  text-align: center;
}
.boardArea > div .mBox3 .m-banner dl dt > img {
  height: 90px;
}
.boardArea > div .mBox3 .m-banner dl dd {
  flex: 1;
}
.boardArea > div .mBox3 .m-banner dl dd h3 {
  font-size: var(--sbigFont);
  margin-bottom: 5px;
}
.boardArea > div .mBox3 .m-banner dl dd .go {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 2px 10px 3px;
  margin-top: 5px;
}
.boardArea > div .mBox3 .m-banner .btn_ebook {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    padding: 10px 7px;
    margin-top: 14px;
    margin-right: 5px;
    background: #0d6efd;
    border-radius: 6px;
    transition: .3s;
}
.boardArea > div .mBox3 .m-banner .btn_ebook:hover {
    background: #0b499e;
}
.boardArea > div .mBox3 .m-banner .btn_ebook.prev {
    background: #505d70 ;
}
.boardArea > div .mBox3 .m-banner .btn_ebook.prev:hover {
    background: #515151;
}
.colBlack {
    color: var(--color-deepblue);
}
.m-sp-box {
    display: flex;
    gap: 20px;
}
.m-sp-box img {
    border:1px solid #ccc;
    width: 76px;
}
.m-sp-box .title {
    font-size: var(--mdFont);
    font-weight: 500;
    width: 100%;
}
.m-sp-box .detail {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 8px 0;
}
.m-sp-box .date {
    font-size: var(--smFont);
    color: #747474;
}


.moreBtn {
  position: absolute;
  top: 7px;
  right: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.moreBtn::before {
  content: "\e145";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 44px;
  font-weight: 200;
}
.withMore {
  position: relative;
  border-bottom: 1px solid #eee;
}
.bdNone {
  border:none;
}

.m-links {
  text-align: center;
  background-color: #f0f0f0;
  border-top: 1px solid #ddd;
  padding: 40px 0;
}
.slideWrap {
    position: relative;
    padding-right: 100px;
}
/*좌우컨트롤*/
.bx-controls-direction {
    position: absolute;
    top: 8px;
    right: 0;
}
.bx-controls-direction .bx-prev,
.bx-controls-direction .bx-next,
.bx-controls-auto .bx-start,
.bx-controls-auto .bx-stop {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-indent: -999em;
}
.bx-controls-direction .bx-prev {
    background: url("/images/btn-left.svg") no-repeat center center;
    margin-right: 40px;
}
.bx-controls-direction .bx-next {
    background: url("/images/btn-right.svg") no-repeat center center;
}
.bx-controls-auto {
    position: absolute;
    top: 8px;
    right: 20px;
}
.bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
}
.bx-controls-auto .bx-start {
    background: url("/images/btn-play.svg") no-repeat center center;
}
.bx-controls-auto .bx-stop {
    background: url("/images/btn-pause.svg") no-repeat center center;
}

    /*멀티슬라이드*/
.multiple_slider li img {
    height: 38px;
    border: 1px solid #ccc;
}
.multiple_slider li {
    width: auto !important;
}

/*활성화슬라이드*/
.active_slider h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #111;
    color: #fff;
    opacity: 0;
}
.active_slider li img {
    width: 100%;
    /*height: auto;*/
}
.active_slider li.active h3 {
    animation: moveUp 0.5s forwards;
}
@keyframes moveUp {
    from {
        opacity: 0;
        margin-top: 40px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}

/* e: main-page */

.giants {
  font-family: "Giants-Bold";
}

footer {
  text-align: center;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 0;
}
footer .inner {
  display: flex;
  justify-content: space-between;
}
footer .inner .bottomMenu > ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 메인팝업 */
.mainPopup {
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 999;
}
.mainPopup .mpopup-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
}
.mainPopup .mpopup-box .mpopup-inner {
    padding: 30px;
}
.mainPopup .mpopup-box .noview {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    padding: 6px 20px 10px;
}
.mainPopup .mpopup-box .close {
    display: block;
    position: absolute;
    left: 101%;
    top: 0;
    width: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    background: #0d6efd;
    border-radius: 10px;
    transition: .3s;
}
.mainPopup .mpopup-box .close:hover {
    background: #0b499e;
}

@media screen and (max-width: 1220px) {
  body {
    font-size: 14px;
  }
  body#main {
    background-color: #f9f9f9;
  } 
  header {
    width: 100%;
    height: 60px;
  }
  header .header-inner {
    width: 100%;
  }
  header .logo {
    position: absolute;
    left: 10px;
    top: 16px;
    padding: 0;
  }
  header .logo img {
    width: 190px;
  }
  header .moMenu {
    display: block;
    position: absolute;
    right: 10px;
    top: 16px;
    z-index: 101;
  }
  header .moMenu .btnMenu {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
  }
  header .moMenu .btnMenu::before {
    content: url("../images/mo-menu.svg");
  }
  header .moMenu .btnMenu.active {
    background: url(../images/btn-close.svg) no-repeat center center;
  }
    header .moMenu .btnMenu.active::before {
        display: none;
    }

  header nav,
  header nav:hover {
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 100vh;
    background-color: #4366e9;
    overflow-y: auto;
    z-index: 100;
    transition: 0.3s;
  }
  header nav.active,
  header nav.active:hover {
    left: 0;
    width: 100%;
  }
  header nav ul.gnb {
    flex-direction: column;
    height: auto;
  }
  header nav ul.gnb > li {
    text-align: left;
  }
  header nav ul.gnb > li > a {
    width: 100%;
    color: #fff;
    line-height: 50px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }  
  header nav ul.gnb > li > ul {
    margin-bottom: 10px;
  }
  header nav ul.gnb > li > ul > li > a {
    color: #fff;
    padding: 8px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  header nav ul.gnb > li > ul > li:first-child > a {
    border-top: none;
  }
    header nav ul.gnb > li.on {
        border-top:none;
    }

  main {
    padding: 60px 0 20px;
  }

  .mainTop {
    height: 920px;
  }
  .mainTop .m-visual {
    height: 930px;
  }
  .mainTop .m-visual .m-text {
    top: 50px;
    font-size: 16px;
  }
  .mainTop .m-visual .m-text strong {
    font-size: 30px;
  }

  .mainTop .mTop-boxs {
    flex-direction: column;
    top: 220px;
      gap: 0;
    width: 90%;
  }
  .mainTop .mTop-boxs > div {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 15px;
  }
    .mainTop .mTop-boxs > div h3 {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }
  .mainTop .mTop-boxs .inner-box {
    gap: 15px;
  }
    .mainTop .mTop-boxs > div > ul > li > a {
        line-height: 44px;
    }
  .mainTop .mTop-boxs .inner-box dl dd {
    padding-top:3px;
    font-size: 1em;
  }
  .mainTop .mTop-boxs .inner-box dl dd.date {
    font-size: var(--smFont);
  }
  .mainTop .mTop-boxs table th {
    width: 70%;
  }
  .mainTop .mTop-boxs table td {
    width: 30%;
  }

  .wrapper {
    width: 100%;
    padding: 15px 0;
  }
  .boardArea {
    flex-direction: column;
  }
  .boardArea > div {
    width: 100%;
      padding: 20px 14px;
      border-bottom: 1px solid #ddd;
  }
  .boardArea > div:nth-child(2) {
    width: 100%;
    border-left: none;
    border-right: none;
  }
  .boardArea > div .mBox-layout {
    height: 100%;
  }
    .boardArea > div .mBox-layout ul {
        margin-top:0;
    }
  .boardArea > div .mBox1,
  .boardArea > div .mBox2,
  .boardArea > div .mBox3 {
    margin: 5px 0;
  }

  .m-links {
    padding: 40px 10px;
  }
  .bx-controls-direction, .bx-controls-auto {
      top: -10px;
  }

    footer {position:relative; padding:10px 0 50px;}
    footer .inner {
    flex-direction: column;
    font-size: 12px;
  }
    footer .inner .bottomMenu li a {
        font-size: 16px;
    }
    footer .inner .logo {position: absolute; bottom:20px; left: 16px; display: none;}

    footer .inner .bottomMenu p {
        font-size: 14px;
        margin-top: 4px;
    }
    footer .inner .bottomLink {margin-top:12px;}
    footer .inner .logo img {width: 180px;}
    footer .inner .bottomLink img {height: 36px;}
}
/*팝업*/
.modalBox {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.modalBox .modal-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-1, .modal-2, .modal-3 {
    display: none;
}
.modal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 760px;
    height:auto;
    max-height:670px;
    font-size: 14px;
    background-color: #fff;
    padding:30px;
    border-radius: 10px;
    box-sizing: border-box;
    overflow-y: auto;
}
.modal-inner h3 {
    font-size: 20px;
    color: #222;
    border-bottom:1px solid #333;
    padding-bottom:15px;
}
.modal-inner .content {
    height: 90%;;
    margin-top: 10px;
    overflow-y: auto;
}
.modal-inner .btnClose {
    position:absolute;
    top:20px;
    right:30px;
    font-size: 30px;
}
.modal-inner .btnClose:hover {
    color: #0d6efd;
}
.modal-inner .check {
    padding-top: 10px;
    color: #ff5500;
}
.modal-inner .infoText {
    padding: 15px 0;
}
.modal-inner .infoText p {
    font-size: 13px;
    background: #f9f9f9;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
}
.modal-inner .infoText .email {
    display: block;
    color: #0b499e;
}
.modal-inner .detail h4 {
    font-size: 15px;
    padding: 20px 0 10px;
}
.modal-inner .detail h5 {
    font-size: 14px;
    padding-top: 5px;
}

.popup-content .detail {
    text-align: left;
}
/* /--팝업*/