/* 기본 노말라이징 */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
}

/* 옵션 */
.con {
    margin: 0 auto;
    max-width: 1200px;
}

.img-box>img {
    width: 100%;
    display: block;
}

.k-cell::after {
    content: "";
    display: block;
    clear: both;
}

.cell {
    float: left;
    box-sizing: border-box;
}

.cell-right {
    float: right;
    box-sizing: border-box;
}

.block {
    display: block;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.xy-middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.x-middle {
    left: 50%;
    transform: translateX(-50%);
}

.y-middle {
    top: 50%;
    transform: translateY();
}

.text-bold {
    font-weight: bold;
}

.noto-sans {
    font-family: 'Noto Sans KR', sans-serif;
}

body.active {
    overflow: hidden;
}

/*옵션 반응형*/
@media (max-width:1250px) {
    .con {
        padding: 0 20px;
    }
}

/*@@@@@@@@@@메인 탑바 / 메인 비주얼@@@@@@@@@@*/
.main-visual-box {
    width: 100%;
}

/*pc-탑바*/
.main-visual-box .pc-top-bar-box {
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100px;
}

.main-visual-box .pc-top-bar-box .logo-box {
    width: 200px;
    height: 100%;
    cursor: pointer;
}

.main-visual-box .pc-top-bar-box .menu-box {
    width: 40%;
}

.main-visual-box .pc-top-bar-box .menu-box li {
    text-align: center;
}

.main-visual-box .pc-top-bar-box .menu-box>li {
    width: 25%;
    height: 100%;
    line-height: 100px;
    position: relative;
}

.main-visual-box .pc-top-bar-box .menu-box li>a {
    font-size: 18px;
    color: #fff;
}

.main-visual-box .pc-top-bar-box .menu-box li ul {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.main-visual-box .pc-top-bar-box .menu-box li ul li {
    width: 100%;
}

.main-visual-box .pc-top-bar-box .menu-box li ul li a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    color: #fff;
}

.main-visual-box .pc-top-bar-box .menu-box li ul li a:hover {
    color: coral;
}

/*mb-탑바*/
.main-visual-box .mb-top-bar-box {
    width: 100%;
    height: 60px;
    background: #fff;
    display: none;
}

.main-visual-box .mb-top-bar-box .logo-box {
    width: 150px;
    margin-top: 15px;
}

.main-visual-box .mb-top-bar-box .menu-btn {
    width: 23px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-top: 19px;
}

.main-visual-box .mb-top-bar-box .menu-btn div {
    width: 100%;
    height: 15%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.main-visual-box .mb-top-bar-box .menu-btn div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.main-visual-box .mb-top-bar-box .menu-btn div:nth-child(3) {
    top: auto;
    bottom: 0;
}

.main-visual-box .mb-top-bar-box .menu-box {
    position: fixed;
    z-index: 5;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100%;
    background: #fff;
    transition: all 0.5s;
}

.main-visual-box .mb-top-bar-box .menu-box.active {
    right: 0;
}

.main-visual-box .mb-top-bar-box .menu-box .top-area {
    height: 60px;
}

.main-visual-box .mb-top-bar-box .menu-box .top-area .x-btn {
    width: 23px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-top: 19px;
}

.main-visual-box .mb-top-bar-box .menu-box .top-area .x-btn div {
    width: 100%;
    height: 15%;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.main-visual-box .mb-top-bar-box .menu-box .top-area .x-btn div:nth-child(1) {
    transform: rotate(45deg);
}

.main-visual-box .mb-top-bar-box .menu-box .top-area .x-btn div:nth-child(2) {
    transform: rotate(-45deg);
}

/*mb버전 메뉴*/
/* Accordion Container */
.container {
    width: 100%;
    position: relative;
}

.mb-top-bar-box .accordion {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: white;
    border-radius: 3px;
}

.accordionTitle {
    padding: 20px;
    position: relative;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #333;
    transition: ease-in-out 0.2s all;
    cursor: pointer;
}

.accordionTitle:hover {
    padding-left: 25px;
}

/* Accordion Item line */
.accordionTitle:before,
.accordionTitle:after {
    content: '';
    position: absolute;
    height: 2px;
    border-radius: 50px;
    transition: ease-in-out 0.6s all;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordionTitle:before {
    width: 100%;
    background-color: #c9d6df;
}

.accordionTitle:after {
    background-image: linear-gradient(90deg, #52616b, #c9d6df);
    width: 0%;
}

.accordionTitle:hover::after {
    width: 100%;
}

/* Accordion Item line - Active */
.accordionTitleActive:after {
    content: '';
    position: absolute;
    height: 2px;
    border-radius: 50px;
    transition: ease-in-out 0.6s all;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.accordionTitleActive:after {
    background-image: linear-gradient(90deg, #52616b, #c9d6df);
    width: 100%;
}


/* Accordion Item Icon  */
.accIcon {
    float: right;
    width: 30px;
    height: 30px;
    display: flex;
    margin-top: -3px;
    align-items: center;
    justify-content: center;
}

.accIcon:before,
.accIcon:after {
    content: '';
    position: absolute;
    border-radius: 50px;
    background-color: #c9d6df;
    transition: ease 0.3s all;
}

.accIcon:before {
    width: 2px;
    height: 20px;
}

.accIcon:after {
    width: 20px;
    height: 2px;
}

.accordionTitle:hover .accIcon:before,
.accordionTitle:hover .accIcon:after {
    background-color: #52616b;
}

.accIcon.anime.accIcon:before {
    transform: rotate(90deg);
}

/* Text Content */
.accordion .item .text {
    opacity: 0;
    height: 0;
    padding: 0px 20px;
    position: relative;
    line-height: 24px;
    font-size: 14px;
    font-weight: 200;
    transition: all 0.6s cubic-bezier(.42, .2, .08, 1);
    overflow: hidden;
    background-color: #f1f1f1;
    letter-spacing: 0.5px;
}

.accordion .item .text li a {
    padding: 10px 0;
    color: #555;
}

/* Text Content - Class for JS to hide and show */
.accordion .item .text.show {
    opacity: 1;
    height: auto;
    padding: 0 25px;
    position: relative;
    z-index: 0;
    border-radius: 0px 0px 3px 3px;
}

@media (max-width:980px) {
    .main-visual-box .pc-top-bar-box {
        display: none;
    }

    .main-visual-box .mb-top-bar-box {
        display: block;
    }
}

/*1차 메뉴 bg*/
.main-visual-box .menu-box-bg {
    width: 100%;
    height: 280px;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    top: 0;
    left: 0;
    z-index: 3;
}

.main-visual-box .menu-box-bg .gap {
    width: 100%;
    height: 100px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.5);
}

@media (max-width:980px) {
    .main-visual-box .menu-box-bg {
        display: none;
    }
}

/*mb 메뉴 bg*/
.main-visual-box .mb-menu-box-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    top: 0;
    left: 0;
    z-index: 4;
    position: fixed;
}

.main-visual-box .mb-menu-box-bg.active {
    display: block;
}

/*메인 비주얼*/
.main-visual-box .main-visual-img {
    height: 500px;
    width: 100%;
    background: url(../img/sub-main-img.jpg) no-repeat center center/cover;
}

.main-visual-box .main-visual-img .infor-text {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 500px;
    text-align: center;
}

@media (max-width:980px) {
    .main-visual-box .main-visual-img {
        height: 300px;
    }

    .main-visual-box .main-visual-img .infor-text {
        font-size: 30px;
        line-height: 300px;
    }
}

@media (max-width:768px) {
    .main-visual-box .main-visual-img {
        height: 200px;
    }

    .main-visual-box .main-visual-img .infor-text {
        font-size: 25px;
        line-height: 200px;
    }
}

/*서브 메뉴바*/
.sub-meun-bar-box {
    width: 100%;
    border-bottom: 2px solid #dfdfdf;
    overflow: hidden;
}

.sub-meun-bar-box .sub-menu-bar-in {
    width: 100%;
}

.sub-meun-bar-box .sub-menu-bar-in .text-box {
    width: 100%;
    margin: 0 auto;
}

.sub-meun-bar-box .sub-menu-bar-in .text-box .text {
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: #999;
    font-weight: 900;
    padding: 20px 0;
}

.sub-meun-bar-box .sub-menu-bar-in .text-box .text:hover {
    color: #333;
}

.sub-meun-bar-box .sub-menu-bar-in .text-box .text.active {
    color: #333;
}

@media (max-width:1250px) {
    .sub-meun-bar-box .sub-menu-bar-in {
        padding: 0;
    }
}

@media (max-width:768px) {
    .sub-meun-bar-box .sub-menu-bar-in .text-box .text {
        font-size: 15px;
    }
}

/*메뉴 경로*/
.menu-navi-box {
    width: 100%;
    padding: 20px 0;
}

.menu-navi-box .menu-navi-in {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
}

.menu-navi-box .menu-navi-in .home-ico {
    width: 20px;
    height: 20px;
    background: url(../img/home-ico.png) no-repeat center center/cover;
    margin-top: 3px;
}

.menu-navi-box .menu-navi-in .next-ico {
    position: relative;
    margin-left: 10px;
    padding-left: 25px;
    margin-top: 4px;
}

.menu-navi-box .menu-navi-in .next-ico::before {
    position: relative;
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
}

@media (max-width:768px) {
    .menu-navi-box .menu-navi-in {
        font-size: 14px;
    }

    .menu-navi-box .menu-navi-in .home-ico {
        width: 15px;
        height: 15px;
        margin-top: 4px;
    }

    .menu-navi-box .menu-navi-in .next-ico::before {
        width: 5px;
        height: 5px;
    }

    .menu-navi-box .menu-navi-in .next-ico {
        padding-left: 20px;
    }
}

/*컨텐츠*/
.content-box {
    width: 100%;
    padding: 80px 0;
}

.content-box .content-box-in .img-box {
    background: url(../img/ceo-bg.jpeg) no-repeat center center/cover;
    width: 100%;
    height: 600px;
}

.content-box .content-box-in .img-box .img-text-box {
    padding: 50px 0;
    position: relative;
    display: inline-block;
}

.content-box .content-box-in .img-box .img-text-box::after {
    content: "";
    display: block;
    position: absolute;
    width: 120%;
    height: 1px;
    background: #fff;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.content-box .content-box-in .img-box .img-text-box::before {
    content: "";
    display: block;
    position: absolute;
    width: 120%;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.content-box .content-box-in .img-box .img-text-box .text {
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 10px;
    line-height: 40px;
    text-align: center;
}

.content-box .content-box-in .text-box {
    width: 70%;
    background: #fff;
    margin-top: -100px;
}

.content-box .content-box-in .text-box .text-box-in {
    color: #333;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 27px;
    font-weight: 500;
    padding: 50px 30px;
}

.content-box .content-box-in .company-name-box {
    width: 100%;
}

.content-box .content-box-in .company-name-box .line-box {
    width: 70%;
    height: 4px;
    background: #90a4d2;
    margin-left: 30px;
    margin-top: 36px;
}

.content-box .content-box-in .company-name-box .company-name {
    color: #333;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 37px;
}

.content-box .content-box-in .company-name-box .company-name span {
    font-size: 35px;
    letter-spacing: 10px;
}

@media (max-width:1130px) {
    .content-box .content-box-in .text-box {
        width: 100%;
        margin-top: 0;
    }

    .content-box .content-box-in .text-box .text-box-in .gap {
        display: none;
    }
}

@media (max-width:980px) {
    .content-box {
        padding: 50px 0;
    }

    .content-box .content-box-in .text-box {
        width: 100%;
        margin-top: 0;
    }

    .content-box .content-box-in .company-name-box .line-box {
        width: 60%;
    }
}

@media (max-width:768px) {
    .content-box {
        padding: 30px 0;
    }

    .content-box .content-box-in .img-box .img-text-box {
        padding: 30px 0;
    }

    .content-box .content-box-in .img-box .img-text-box .text {
        font-size: 15px;
        letter-spacing: 5px;
        line-height: 30px;
    }

    .content-box .content-box-in .img-box .img-text-box::before {
        width: 115%;
    }

    .content-box .content-box-in .img-box .img-text-box::after {
        width: 115%;
    }

    .content-box .content-box-in .img-box {
        height: 400px;
    }

    .content-box .content-box-in .text-box .text-box-in {
        font-size: 14px;
        line-height: 23px;
        padding: 30px 10px;
    }

    .content-box .content-box-in .company-name-box .company-name {
        font-size: 14px;
        line-height: 30px;
    }

    .content-box .content-box-in .company-name-box .company-name span {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .content-box .content-box-in .company-name-box .line-box {
        display: none;
    }
}

/*@@@@@@@@@@푸터@@@@@@@@@@*/
.footer-box {
    width: 100%;
    padding: 50px 0;
    background: #333;
}

.footer-box .menu-box>li {
    font-size: 16px;
    font-weight: bold;
    padding-right: 40px;
    color: #fff;
    cursor: pointer;
}

.footer-box .menu-box>li ul {
    padding-top: 7px;
}

.footer-box .menu-box>li li {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.8;
    padding-top: 8px;
}

.footer-box .logo-box {
    width: 200px;
}

.footer-box .logo-box img {
    margin-top: 20px;
}

.footer-box .text-box {
    text-align: right;
    line-height: 25px;
}

.footer-box .text-box .company {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.footer-box .text-box .company span {
    font-size: 17px;
}

.footer-box .text-box .text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.footer-box .text-box .text-1 {
    margin-top: 13px;
}

.footer-box .text-box .copyright {
    color: #fff;
    opacity: 0.8;
    font-size: 13px;
}

@media (max-width:980px) {
    .footer-box .menu-box {
        display: none;
    }

    .footer-box .logo-box {
        display: none;
    }

    .footer-box .cell-right {
        float: inherit;
    }

    .footer-box .text-box {
        text-align: center;
    }
}

@media (max-width:768px) {
    .footer-box .text-box .company {
        font-size: 17px;
    }

    .footer-box .text-box .company span {
        font-size: 15px;
    }

    .footer-box .text-box .text {
        font-size: 13px;
    }

    .footer-box .text-box .copyright {
        font-size: 11px;
    }

    .footer-box .text-box {
        line-height: 23px;
    }

    .footer-box {
        padding: 40px 0;
    }
}