@charset "utf-8";
@import "reset.css?ver=1.0";
@import "font.css?ver=1.0";
@import "sub.css?ver=1.0";

/*-----------------------------------------
common
text
icons
buttons
slide
popup
card list
layout
header
footer
-----------------------------------------*/
/* common */
:root {
    --font-gil: 'Gilroy', AppleSDGothicNeo-Regular, sans-serif;

    --color-n: #0D2F78;
    --color-y: #F7CB00;
}

.fade-up {
    transform: translate(0px, 100px);
    opacity: 0;
}

.hidden {overflow: hidden !important;}
.text-l {text-align: left !important;}
.text-c {text-align: center !important;}
.text-r {text-align: right !important;}

.wrap{overflow: hidden;}

@media (min-width: 961px) {
    br.on960 {display: none;}
}

@media (max-width: 960px) {
    br.none960 {display: none;}
}

@media (min-width: 769px) {
    br.on768 {display: none;}
}

@media (max-width: 768px) {
    br.none768 {display: none;}
}

@media (min-width: 641px) {
    br.on640 {display: none;}
}

@media (max-width: 640px) {
    br.none640 {display: none;}
}

.m {font-weight: 500 !important;}
.b {font-weight: 700 !important;}

.color-y {color: var(--color-y)!important;}
.color-n {color: var(--color-n)!important;}

.pdb0 {padding-bottom: 0 !important;}

.mgt20 {margin-top: 20px !important;}
.mgt30 {margin-top: 30px !important;}
.mgt50 {margin-top: 50px !important;}
.mgt60 {margin-top: 60px !important;}
.mgt80 {margin-top: 80px !important;}
.mgt100 {margin-top: 100px !important;}
.mgt120 {margin-top: 120px !important;}

@media (max-width: 768px) {
    .mgt30 {margin-top: 40px !important;}
    .mgt50 {margin-top: 40px !important;}
    .mgt60 {margin-top: 40px !important;}
    .mgt80 {margin-top: 60px !important;}
    .mgt100 {margin-top: 60px !important;}
    .mgt120 {margin-top: 60px !important;}
}

/* text */
.tit01 {
    font-size: 86px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.3;
}

@media (max-width: 1400px) {
    .tit01 {
        font-size: 68px;
    }
}

@media (max-width: 960px) {
    .tit01 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .tit01 {
        font-size: 40px;
    }
}

.tit02 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.3;
}

@media (max-width: 1400px) {
    .tit02 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .tit02 {
        font-size: 36px;
    }
}

.tit03 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .tit03 {
        font-size: 26px;
    }
}

.txt01 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.txt02 {
    font-size: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .txt02 {
        font-size: 16px;
    }
}

.txt03 {
    font-size: 16px;
    line-height: 1.5;
}

.tit-badge {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 8px 16px;
    border-radius: 5px;
    background-color: #242424;
    color: #fff;
    display: inline-block;
}

@media (max-width: 768px) {
    .tit-badge {
        font-size: 14px;
    }
}

.tit-line {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-n);
    padding-bottom: 5px;
    border-bottom: 1.5px solid var(--color-n);
    margin-bottom: 20px;
}

.tit-sm {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-n);
}

@media (max-width: 768px) {
    .tit-sm {
        font-size: 16px;
    }
}

.tit-sm.line {
    margin-top: 32px;
}

.tit-sm.line:before {
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--color-n);
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .tit-sm.line:before {
        width: 60px;
    }
}

.tit-sm + .tit02 {
    margin-top: 10px;
}

.tit02 + .txt02 {
    margin-top: 42px;
}

@media (max-width: 768px) {
    .tit02 + .txt02 {
        margin-top: 32px;
    }
}

/* icons */
.ico {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle;
}

.ico.wh {background-position: bottom;}

.ico-h-search {
    width: 16px;
    height: 16px;
    background-image: url(../img/ico-h-search.svg);
}

@media (max-width: 960px) {
    .ico-h-search {
        width: 22px;
        height: 22px;
    }
}

.ico-arrow-toggle:after,
.ico-arrow-toggle:before {
	content: "";
	width: 8px;
	height: 1.5px;
	background-color: var(--color-n);
	float: right;
	transform: rotate(45deg);
	transition: transform 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
}

.ico-arrow-toggle.lg:after,
.ico-arrow-toggle.lg:before {
	width: 10px;
	height: 3px;
}

footer#footer .family-wrap .ico-arrow-toggle:after,
footer#footer .family-wrap .ico-arrow-toggle:before {
    background-color: #fff;
}

.ico-arrow-toggle.sm:after,
.ico-arrow-toggle.sm:before {
	width: 8px;
}

.open .ico-arrow-toggle:after {
	transform-origin: center center;
	transform: rotate(-45deg);
}

.ico-arrow-toggle:before {
	transform: rotate(-45deg);
	margin-left: -3.5px;
}

.ico-arrow-toggle.lg:before {
	margin-left: -4px;
}

.open .ico-arrow-toggle:before {
	transform-origin: center center;
	transform: rotate(45deg);
}

.ico-arrow-left {
    width: 28px;
    height: 14px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.ico-arrow-left:before {
    content: "";
    width: 8px;
    height: 14px;
    background-image: url(../img/ico-arrow-left.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.ico-arrow-left:after {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: #242424;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.ico-arrow-right {
    width: 28px;
    height: 14px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.ico-arrow-right:before {
    content: "";
    width: 8px;
    height: 14px;
    background-image: url(../img/ico-arrow-right.svg);
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.ico-arrow-right.wh:before {
    background-position: bottom;
}

@media (hover: hover) {
    .btn-ico:hover .ico-arrow-right.wh:before {
        background-position: top;
    }
}

.ico-arrow-right:after {
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: #242424;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.ico-arrow-right.wh:after {
    background-color: #fff;
}

@media (hover: hover) {
    .btn-ico:hover .ico-arrow-right.wh:after {
        background-color: #242424;
    }
}

.ico-plus {
	width: 26px;
	height: 26px;
	position: relative;
	display: inline-block;
}

a .ico-plus,
button .ico-plus {
	transition: transform .3s ease;
}

.ico-plus:before,
.ico-plus:after {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--color-n);
}

.ico-plus.wh:before,
.ico-plus.wh:after {
	background-color: #fff;
}

.ico-plus:after {
	transform: translate(-50%, -50%) rotate(90deg);
}

@media (hover: hover) {
	a:hover .ico-plus,
	button:hover .ico-plus {
		transform: rotate(90deg);
	}
}

.ico-close {
	width: 20px;
	height: 20px;
	position: relative;
	display: inline-block;
	transform: rotate(45deg);
}

.ico-close.sm {
    width: 12px;
    height: 12px;
}

.layer-close .ico-close {
	transition: transform .3s ease;
}

.ico-close:before,
.ico-close:after {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
    border-radius: 10px;
	transform: translate(-50%, -50%);
	background-color: #808080;
}

.ico-close.sm:before,
.ico-close.sm:after {
	height: 1.5px;
}

.ico-close.wh:before,
.ico-close.wh:after {
	background-color: #fff;
}

.ico-close:after {
	transform: translate(-50%, -50%) rotate(90deg);
}

@media (hover: hover) {
	.layer-close:hover .ico-close {
		transform: rotate(135deg);
	}
}

.ico-history-prev {
    width: 34px;
    height: 44px;
    background-image: url(../img/ico-history-prev.svg);
}

.ico-history-next {
    width: 34px;
    height: 44px;
    background-image: url(../img/ico-history-next.svg);
}

@media (max-width: 960px) {
    .ico-history-prev,
    .ico-history-next {
        width: 27px;
        height: 35px;
    }
}

.ico-medal {
    width: 18px;
    height: 21px;
    background-image: url(../img/ico-medal.svg);
}

.ico-search {
    width: 19px;
    height: 19px;
    background-image: url(../img/ico-search.svg);
}

.ico-noresult {
    width: 34px;
    height: 34px;
    background-image: url(../img/ico-noresult.svg);
}

.ico-share {
    width: 20px;
    height: 21px;
    background-image: url(../img/ico-share.svg);
}

.ico-refresh {
    width: 15px;
    height: 15px;
    background-image: url(../img/ico-refresh.svg);
}

.ico-down {
    width: 16px;
    height: 20px;
    background-image: url(../img/ico-down.svg);
}

.ico-video {
    width: 24px;
    height: 14px;
    background-image: url(../img/ico-video.svg);
}

.ico-youtube {
    width: 22px;
    height: 22px;
    background-image: url(../img/ico-sns-youtube.svg);
}

.ico-blog {
    width: 22px;
    height: 22px;
    background-image: url(../img/ico-sns-blog.svg);
}

.ico-ask {
    width: 16px;
    height: 14px;
    background-image: url(../img/ico-ask.svg);
}

.ico-list {
    width: 19px;
    height: 19px;
    background-image: url(../img/ico-list.svg);
}

.ico-list-card {
    width: 19px;
    height: 19px;
    background-image: url(../img/ico-list-card.svg);
}

/* buttons */
.btn-wrap.multi {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-wrap.multi.r {
    justify-content: flex-end;
}

.btn-line {
    display: inline-block;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 28px;
    border: 1.5px solid #242424;
    /* background-color: #F5F5F5; */
    text-align: center;
}

@media (hover: hover) {
    .btn-line:hover {
        background-color: var(--color-y);
    }
}

@media (max-width: 960px) {
    .btn-line.full-960 {
        width: 100%!important;
    }
}

@media (max-width: 768px) {
    .btn-line {
        width: 100%!important;
        font-size: 16px;
    }
}

.btn-line.wh {
    border-color: #fff;
    color: #fff;
}

@media (hover: hover) {
    .btn-line.wh:hover {
        border-color: #242424;
        color: #242424;
    }
}

.btn-line.fix {
    width: 274px;
}

.btn-line.btn-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.more-btn {
    font-weight: 700;
    font-size: 18px;
    color: #808080;
    position: relative;
    margin-top: 30px;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .more-btn {
        padding-bottom: 4px;
    }
}

.more-btn:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #808080;
    position: absolute;
    bottom: 0;
    left: 0;
}

.more-btn i {
    position: relative;
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-right: 10px;
    transition: transform .3s ease;
}

@media (hover: hover) {
    .more-btn:hover i {
        /* transform: rotate(90deg); */
    }
}

.more-btn i:before,
.more-btn i:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #808080;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.more-btn i:after {
    transform: translate(-50%, -50%) rotate(90deg) ;
}

.open + .more-btn i:after {
    transform: translate(-50%, -50%) rotate(00deg) ;
}

/* slide */
.slide-wrap {
	position: relative;
}

.slide {
	opacity: 0;
	visibility: hidden;
}

.slide.slick-initialized {
	visibility: visible;
	opacity: 1;
}

.slide-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .slide-control {
        justify-content: center;
    }
}

.slide-control .count p {
    font-family: var(--font-gil);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    display: inline-block;
}

.slide-control .count .slash {
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #242424;
    margin: 0 6px;
    vertical-align: bottom;
    transform: rotate(22deg);
}

.slide-control .arrow {
    margin-top: -5px;
}

.slide-control .arrow .slide-btn {
    width: 30px;
    height: 15px;
    background-size: cover;
}

.slide-control .arrow .slide-btn.slick-disabled {
    pointer-events: none;
    opacity: .2;
}

.slide-control.wh .arrow .slide-btn {
    background-position: bottom;
}

.slide-control .arrow .slide-btn.prev {
    background-image: url(../img/ico-slide-prev.svg);
}

.slide-control .arrow .slide-btn.next {
    background-image: url(../img/ico-slide-next.svg);
}

.slide-control .arrow .slash {
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #242424;
    opacity: .5;
    margin: 0 12px;
    vertical-align: bottom;
    transform: rotate(22deg);
}

.slide-control.wh .arrow .slash {
    background-color: #FFFFFF;
}

/* popup */
.layer-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

.layer-wrap .layer-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #242424;
	opacity: 0.5;
}

.layer {
	background-color: #F5F5F5;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 30px;
	transform: translate(-50%, -50%);
	width: calc(100% - 56px);
	max-width: 780px;
	border-radius: 10px;
}

.layer-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 20px;
}

.layer-body {
    overflow-y: auto;
    max-height: calc(100dvh - 170px);
}

/* -- 그래프 다운로드 팝업 */
.layer-body .graph-wrap {
    padding: 40px;
    border: 1.5px solid #DEDEDE;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .layer-body .graph-wrap {
        padding: 20px;
    }
}

.layer-body .graph-wrap .year {
    font-size: 16px;
    font-weight: 500;
    color: #808080;
}

.layer-body .graph-wrap .tit {
    margin-top: 5px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .layer-body .graph-wrap .tit {
        font-size: 26px;
    }
}

.layer-body .graph-wrap .graph {
    padding: 20px;
    padding-bottom: 0;
    background-color: #F5F5F5;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.layer-body .graph-wrap .label-wrap {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-right: 0;
}

.layer-body .graph-wrap .copy {
    font-size: 14px;
    font-weight: 700;
    color: #CCCCCC;
}

.layer-body .graph-wrap .logo-wrap {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

@media (max-width: 768px) {
    .layer-body .graph-wrap .logo-wrap {
        position: static;
        margin-top: 20px;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .layer-body .graph-wrap .logo-wrap img {
        height: 40px;
    }
}

/* card list */
.card-slide-wrap.list-style {
    display: none;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.card-slide-wrap.list-style.active {
    display: flex;
}

@media (max-width: 960px) {
    .card-slide-wrap.list-style {
        gap: 10px 16px;
    }
}

.card-slide-wrap.board-style {
    display: none;
    flex-wrap: wrap;
}

.card-slide-wrap.board-style.active {
    display: flex;
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style {
        gap: 10px 16px;
    }
}

.card-slide-wrap .card-slide-item {
    position: relative;
    width: 368px;
    height: 309px;
    margin: 0 16px;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--color-n);
    overflow: hidden;
}

@media (max-width: 768px) {
    .card-slide-wrap .card-slide-item {
        width: 288px;
        height: 269px;
        margin: 0 10px;
    }
}

.card-slide-wrap .card-slide-item.all-item {
    background-color: transparent;
    border-radius: 0;
    /* padding: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.card-slide-wrap .card-slide-item.all-item span {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background-color: rgba(13, 47, 120, 0.25);
    border: 1.5px solid var(--color-n);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .card-slide-wrap .card-slide-item.all-item:hover span {
        background-color: var(--color-y);
    }
}

.card-slide-wrap .card-slide-item.all-item.wh span {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #CCCCCC;
}

.card-slide-wrap .card-slide-item.all-item p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-n);
}

.card-slide-wrap .card-slide-item.all-item.wh p {
    color: #fff;
}

.card-slide-wrap.list-style .card-slide-item {
    width: calc(25% - 24px);
    height: 295px;
    margin: 0;
    padding: 20px;
}

@media (max-width: 960px) {
    .card-slide-wrap.list-style .card-slide-item {
        width: calc(33.3333% - 10.6666px);
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.list-style .card-slide-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 640px) {
    .card-slide-wrap.list-style .card-slide-item {
        width: 100%;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 30px 60px 30px 30px;
        border-radius: 6px;
        background: transparent;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    @media (hover: hover) {
        .card-slide-wrap.board-style .card-slide-item:hover {
            background-color: #EAEAEA;
        }
    }

    .card-slide-wrap.board-style .card-slide-item + .card-slide-item {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item {
        width: calc(50% - 8px);
        height: 295px;
        margin: 0;
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .card-slide-wrap.board-style .card-slide-item {
        width: 100%;
        height: 200px;
    }
}

.card-slide-wrap .card-slide-item .badge {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-size: cover;
    z-index: 100;
}

.card-slide-wrap .card-slide-item .badge.new {
    background-image: url(../img/ico-new.svg);
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .badge.new {
        right: auto;
        margin-left: 10px;
        top: 50%;
        transform: translateY(-50%);
        background-position: bottom;
    }
}

.card-slide-wrap .card-slide-item .badge.pin {
    background-image: url(../img/ico-pin.svg);
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .badge.pin {
        position: static;
        display: block;
        background-position: bottom;
    }
}

.card-slide-wrap .card-slide-item .badge.new + .pin {
    right: 55px;
}

.card-slide-wrap .card-slide-item .slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.card-slide-wrap .card-slide-item .back {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease;
}

@media (hover: hover) {
    .card-slide-wrap .card-slide-item:hover .back {
        z-index: 1;
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .back {
        display: none;
    }
}

.card-slide-wrap .card-slide-item .back:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(13,47,120,1) 20%,rgba(24,57,127,1) 50%,rgba(103,127,179,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d2f78', endColorstr='#00677fb3',GradientType=0 );
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .num-wrap {
        width: 30px;
    }

    .card-slide-wrap.board-style .card-slide-item .num-wrap .num {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .num-wrap .num {
        display: none;
    }
}

.card-slide-wrap .card-slide-item .cate {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-n);
    padding: 10px 14px;
    border-radius: 18px;
    display: inline-block;
}

.card-slide-wrap .card-slide-item .cate.NOTICE {
    background-color: var(--color-y);
}

.card-slide-wrap .card-slide-item .cate.INSIGHT {
    background-color: #fff;
}

.card-slide-wrap .card-slide-item .cate.PRESS {
    background-color: #fff;
}

.card-slide-wrap .card-slide-item .cate.FEATURE {
    background-color: #31BAB0;
}

.card-slide-wrap .card-slide-item .cate.STRATEGY {
    background-color: #F28200;
}

.card-slide-wrap .card-slide-item .cate.BEST {
    background-color: var(--color-y);
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .cate {
        position: absolute;
        right: 180px;
        top: 50%;
        transform: translateY(-50%);
    }

    .card-slide-wrap.board-style .card-slide-item .tit-wrap {
        width: calc(100% - 493px);
        padding-right: 34px;
    }
}

@media (max-width: 960px) {
    .card-slide-wrap.board-style .card-slide-item .tit-wrap {
        width: calc(100% - 300px);
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .tit-wrap {
        width: 100%;
        margin-top: 52px;
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .cate {
        position: absolute;
        top: 20px;
        right: auto;
        left: 20px;
        transform: translateY(0);
        z-index: 100;
    }
}

.card-slide-wrap .card-slide-item .tit {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .tit {
        margin-top: 0;
        font-size: 22px;
        font-weight: 500;
        color: #242424;
        -webkit-line-clamp: 1;
        display: -webkit-inline-box;
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .tit {
        margin-top: 0;
        position: relative;
        z-index: 100;
    }
}

.card-slide-wrap .card-slide-item .date {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .date {
        color: #242424;
        left: auto;
        right: 60px;
        bottom: 50%;
        transform: translateY(50%);
        font-size: 18px;
        letter-spacing: -0.03em;
    }
}

@media (max-width: 768px) {
    .card-slide-wrap.board-style .card-slide-item .date {
        bottom: 20px;
        left: 20px;
        z-index: 100;
    }

    .card-slide-wrap.board-style .card-slide-item.CERTIFY .date,
    .card-slide-wrap.board-style .card-slide-item.BP .date,
    .card-slide-wrap.board-style .card-slide-item.INSIGHT .date {
        color: rgba(255, 255, 255, 0.5);
    }
}

/* layout */

/* header */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 9999;
    border-bottom: 1.5px solid rgba(255,255,255,0.1);
    transition: background-color .4s ease, top .4s ease;
}

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




header#header.hide {
    top: -100px;
}


header#header.slide-open,
header#header.search-open,
header#header.scroll {
    background-color: #fff;
}


@media (max-width: 768px) {
    header#header.hide {
        top: -80px;
    }
}

header#header:before {
    content: "";
    width: 100%;
    height: 0;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 1.5px solid rgba(13, 47, 120,0.2);
    opacity: 0;
    transition: height .4s ease, opacity .4s ease;
}

@media (max-width: 960px) {
    header#header:before {
        display: none;
    }
}
header#header .header-logo {
    background-image: url(../img/logo.svg);
    background-size: cover;
    width: 200px;
    height: 18px;
    position: absolute;
    left: 54px;
    top: 50%;
    transform: translateY(-50%);
}

.header-logo:hover {
    background-image: url(../img/other_logo.svg); /* 다른 이미지 경로로 변경 */
}

@media (max-width: 1700px) {
    header#header .header-logo {
        left: 28px;
    }
}

@media (max-width: 768px) {
    header#header .header-logo {
        width: 200px;
        height: 18px;
    }
}

header#header .header-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

header#header .header-inner {
    width: 100%;
    max-width: 1248px;
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 960px) {
    header#header .header-inner {
        max-width: 100vw;
        height: 100vh;
        position: fixed;
        left: 100%;
        background-color: #fff;
        padding-top: 50px;
        transition: left .3s ease;
    }
}

@media (max-width: 960px) {
    header#header.slide-open .header-inner {
        left: 0;
    }
}

header#header .depth-wrap {
    margin-left: -35px;
}

@media (max-width: 960px) {
    header#header .depth-wrap {
        margin-left: 0;
    }
}

@media (max-width: 1700px) {
    header#header .depth1 {
        display: flex;
        justify-content: end;
    }
}


@media (max-width: 960px) {
    header#header .depth1 {
        flex-direction: column;
        text-align: center;
    }
}

header#header .depth1 > li {
    position: relative;
    display: inline-block;
}



.ready header#header .depth1 .depth1-btn {
    transition: padding .5s ease;
}

header#header .depth1 .depth1-btn {
    font-family: var(--font-gil);
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.02em;
    padding: 40px 45px;
    display: inline-block;
    width: 200px;
}


@media (max-width: 960px) {
    header#header .depth1 .depth1-btn {
        font-family: var(--font-gil);
        font-size: 18px;
        letter-spacing: 0.02em;
        padding: 30px;
        width: 100%;
    }
}

@media (max-width: 960px) {

header#header .depth1 .depth1-btn {
    font-size: 3vh;
}
}


@media (max-width: 960px) {

    header#header .depth1 .depth1-btn:after {
        transform: rotate(-90deg);
        transition: transform .2s ease;
    }

    header#header .depth1 .open .depth1-btn:after {
        transform: rotate(0deg);
    }

    header#header .depth1 li:last-child .depth1-btn:before,
    header#header .depth1 li:last-child .depth1-btn:after {
        display: none;
    }
}



header#header .header-search {
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1700px) {
    header#header .header-search {
        right: 28px;
    }
}

@media (max-width: 960px) {
    header#header .header-search {
        right: 70px;
        border: 0;
        width: 26px;
        height: 26px;
    }
}

header#header .header-search i {
    background-position: bottom;
}

@media (min-width: 961px) {
    @media (hover: hover) {
        header#header .header-search:hover i {
            background-position: bottom!important;
        }
    }
}

header#header .search-wrap {
    width: 100%;
    height: 0;
    display: flex;
    overflow: hidden;
    transition: height .4s ease;
}

@media (max-width: 960px) {
    header#header .search-wrap {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    header#header .search-wrap {
        margin-top: 80px;
    }
}

header#header.search-open .search-wrap {
    height: 220px;
}

@media (max-width: 960px) {
    header#header.search-open .search-wrap {
        height: 100px;
    }
}

header#header .search-wrap input {
    width: 100%;
    padding: 20px 54px;
    background-color: #F5F5F5;
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--color-n);
}

@media (max-width: 1700px) {
    header#header .search-wrap input {
        padding: 20px 28px;
    }
}

@media (max-width: 960px) {
    header#header .search-wrap input {
        padding: 32px 28px;
        font-size: 24px;
    }
}

header#header .search-wrap input:-ms-input-placeholder {
    color: rgba(13, 47, 120, 0.2);
}

header#header .search-wrap input::-moz-placeholder {
    color: rgba(13, 47, 120, 0.2);
}

header#header .search-wrap input::placeholder {
    color: rgba(13, 47, 120, 0.2);
}

header#header .search-wrap .btn-search {
    height: 100%;
    padding: 0 54px;
    background-color: var(--color-n);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 1700px) {
    header#header .search-wrap .btn-search {
        padding: 0 28px;
    }
}

@media (hover: hover) {
    header#header .search-wrap .btn-search:hover {
        background-color: var(--color-y);
        color: var(--color-n);
    }
}

header#header .search-wrap.disable .btn-search {
    background-color: #B3B3B3;
    pointer-events: none;
}

header#header .search-wrap .btn-search i {
    background-position: bottom;
}

@media (hover: hover) {
    header#header .search-wrap .btn-search:hover i {
        background-position: top;
    }
}

header#header .search-wrap .btn-search span {
    font-family: var(--font-gil);
    color: #F5F5F5;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

@media (max-width: 960px) {
    header#header .search-wrap .btn-search span {
        display: none;
    }
}

header#header .ask-btn {
    position: absolute;
    right: 112px;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
}

@media (max-width: 1700px) {
    header#header .ask-btn {
        right: 86px;
        right: 28px;
    }
}

@media (max-width: 960px) {
    header#header .ask-btn {
        position: fixed;
        bottom: 50px;
        top: auto;
        right: auto;
        left: 100%;
        width: calc(100% - 56px);
        font-size: 16px;
        font-weight: 700;
        color: var(--color-n);
        border-radius: 38px;
        border: 1.5px solid var(--color-n);
        padding: 14px;
        text-align: center;
        transform: translateY(0);
        transition: left .3s ease;
    }

}


header#header .ask-btn span {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1.5px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

@media (hover: hover) {
    header#header .ask-btn:hover span {
        background-color: var(--color-n);
        border-color: var(--color-n);
    }
}

@media (max-width: 960px) {
    header#header .ask-btn span {
        display: none;
    }
}



header#header .ask-btn span .ico {
    background-position: bottom;
}

@media (hover: hover) {
    header#header .ask-btn:hover span .ico {
        background-position: bottom!important;
    }
}



header#header .ham-btn {
    display: none;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
}

@media (max-width: 960px) {
    header#header .ham-btn {
        display: block;
    }
}

header#header .ham-btn i {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

header#header .ham-btn i span {
    width: 22px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 10px;
    border-bottom: 2px solid #333;
    transition: top .3s cubic-bezier(0.7, 0.1, 0.3, 1.4), transform .3s cubic-bezier(0.7, 0.1, 0.3, 1.4), left .3s cubic-bezier(0.7, 0.1, 0.3, 1.4), opacity .3s cubic-bezier(0.7, 0.1, 0.3, 1.4);
}



header#header .ham-btn i span:nth-child(1) {
    top: calc(50% - ((5px)) + -3px);
}

header#header.slide-open .ham-btn i span:nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% - (1px));
}

header#header .ham-btn i span:nth-child(2) {
    top: calc(50% - ((5px)) + 4px);
}

header#header.slide-open .ham-btn i span:nth-child(2) {
    left: 2px;
    opacity: 0;
}

header#header .ham-btn i span:nth-child(3) {
    top: calc(50% - ((5px)) + 11px);
}

header#header.slide-open .ham-btn i span:nth-child(3) {
    transform: rotate(-45deg);
    top: calc(50% - (1px));
}

/* footer */
footer#footer {
    padding: 60px 54px;
    background-color: #000;
    position: relative;
    z-index: 4000;
}

@media (max-width: 1700px) {
    footer#footer {
        padding: 60px 28px;
    }
}

footer#footer .top-btn {
    padding: 14px;
    height: 44px;
    border-radius: 100%;
    background-color: #00aa2d;
    position: fixed;
    bottom: 50px;
    right: 50px;
    opacity: 0;
    transition: height .3s ease, opacity .8s .5s cubic-bezier(0.4, 0, 0.2, 1);
}



@media (max-width: 1700px) {
    footer#footer .top-btn {
        right: 28px;
    }
}

@media (max-width: 960px) {
    footer#footer .top-btn {
        bottom: 120px;
    }
}

@media (max-width: 960px) {
    .noLnb footer#footer .top-btn {
        bottom: 20px;
    }
}

.ready footer#footer .top-btn {
    opacity: 1;
}

footer#footer .top-btn.fixed {
    position: absolute !important;
}

footer#footer .top-btn i {
    width: 15px;
    height: 20px;
    display: inline-block;
    position: relative;
    transition: height .3s ease;
}



footer#footer .top-btn i:before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1.8px solid #fff;
    border-right: 1.8px solid #fff;
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

footer#footer .top-btn i:after {
    content: "";
    width: 1.5px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

footer#footer .footer-top {
    position: relative;
}

footer#footer .footer-logo {
    width: 152px;
    height: 33px;
    background-image: url(../img/logo-f.png);
    background-size: cover;
    position: absolute;
    top: 7px;
    left: 0;
}

@media (max-width: 1700px) {
    footer#footer .footer-logo {
        position: static;
    }
}

footer#footer .footer-inner {
    width: 100%;
    max-width: 1248px;
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

footer#footer .footer-flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-top: 30px;
}


@media (max-width: 1700px) {
    footer#footer .footer-inner {
        margin-left: 0;
        margin-top: 40px;
        padding: 0;
    }
    
    
}

footer#footer .add {
    font-size: 28px;
    font-weight: 700;
    color: #F5F5F5;
    line-height: 1.4;
}

@media (max-width: 768px) {
    footer#footer .add {
        font-size: 24px;
    }
    footer#footer .footer-flex {
        flex-flow: column wrap;
        margin-top: 30px;
    }
}

footer#footer .footer-info {
    display: flex;
    flex-flow: column wrap;
    gap: 8px 15px;
    margin-top: 20px;
    max-width: 50%;
}
footer#footer .mg50 {
    margin-left: 50px;
}

@media (max-width: 960px) {
    footer#footer .footer-info {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    footer#footer .footer-info {
        margin-top: 16px;
        max-width: 100%;
    }
    footer#footer .mg50 {
        margin-left: 0;
    }
    
}

footer#footer .footer-info p {
    font-size: 12px;
    letter-spacing: -0.02em;
    color: #9A9A9A;
    opacity: .8;
}

footer#footer .footer-info p span {
    color: #F5F5F5;
    margin-right: 5px;
}

footer#footer .footer-link {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 960px) {
    footer#footer .footer-link {
        position: static;
        margin-top: 40px;
    }
}

footer#footer .family-wrap {
    width: 230px;
    position: relative;
    z-index: 1000;
}

@media (max-width: 960px) {
    footer#footer .family-wrap {
        width: 100%;
    }
}

footer#footer .family-wrap .fam-btn {
    position: relative;
    width: 100%;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
    padding: 14px 20px;
    color: #F5F5F5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

@media (max-width: 960px) {
    footer#footer .family-wrap .fam-btn {
        font-size: 16px;
    }
}

footer#footer .family-wrap .fam-btn .ico {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scaleY(-1);
}

.family-wrap .family-list {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    bottom: calc(100% + 8px);
    max-height: 105px;
    overflow-y: auto;
    display: none;
}

@media (max-width: 960px) {
    .family-wrap .family-list {
        max-height: 110px;
    }
}

.family-wrap .family-list li a {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    background-color: #808080;
}

@media (hover: hover) {
    .family-wrap .family-list li a:hover {
        background-color: #CCCCCC;
    }
}

@media (max-width: 960px) {
    .family-wrap .family-list li a {
        font-size: 16px;
    }
}

footer#footer .sns-wrap {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 960px) {
    footer#footer .sns-wrap {
        justify-content: flex-start;
        margin-top: 25px;
    }
}

footer#footer .footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1.5px solid rgba(245, 245, 245, 0.1);
    display: flex;
    justify-content: space-between;
}
footer#footer .footer-bottom span{
    color: #00aa2d;
}

@media (max-width: 960px) {
    footer#footer .footer-bottom {
        flex-direction: column-reverse;
        gap: 40px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    footer#footer .footer-bottom {
        gap: 30px;
    }
}

footer#footer .copy {
    font-size: 14px;
    font-weight: 700;
    color: rgba(245, 245, 245, 0.5);
}

footer#footer .util-wrap {
    display: flex;
    gap: 20px;
}

@media (max-width: 960px) {
    footer#footer .util-wrap {
        flex-direction: column;
    }
}

footer#footer .util-wrap a {
    font-size: 18px;
    font-weight: 700;
    color: rgba(245, 245, 245, 0.5);
}

footer#footer .util-wrap .on a {
    color: #00aa2d;
}