@import url('font.css');
@import url('reset.css');

/* ================================
   ai 질문

================================ */

	/* ai 질문하기 */
		.jumping-image {
			height: auto;
			animation: softHop 2.3s ease-in-out infinite;
		}

		@keyframes softHop {

			0%,
			100% {
				transform: translateY(0);
			}

			50% {
				transform: translateY(-3px);
			}
		}

		.ask-gpt-modal {
			color: #000;
			cursor: pointer;
		}

		.ask-gpt-modal:hover,
		.ask-gpt-modal:focus {}

		.gpt-modal-overlay {
			position: fixed;
			inset: 0;
			background: rgba(0, 0, 0, 0.75);
			display: none;
			align-items: center;
			justify-content: center;
			z-index: 9999;
		}

		.gpt-modal-overlay.gpt-open {
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.gpt-modal-dialog {
			background: #fff;
			width: 400px;
			max-width: 90vw;
			border-radius: 8px;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
			display: flex;
			flex-direction: column;
		}

		.gpt-modal-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 10px 14px;
			border-bottom: 1px solid #eee;
			background: #f5f5f5;
		}

		.gpt-modal-header h3 {
			margin: 0;
			font-size: 16px;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
		}

		.gpt-modal-close {
			border: none;
			background: transparent;
			font-size: 18px;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
			line-height: 1;
			cursor: pointer;
		}

		.gpt-modal-body {
			padding: 10px 14px;
		}

		.gpt-modal-body label {
			display: block;
			font-size: 16px;
			margin-bottom: 10px;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
		}

		#gptPromptInput {
			width: 100%;
			min-height: 90px;
			resize: vertical;
			padding: 6px 8px;
			font-size: 16px;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
			border: 1px solid #ccc;
			box-sizing: border-box;
		}

		.gpt-modal-hint {
			margin-top: 0px;
			font-size: 16px;
			color: #555;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
		}

		.gpt-modal-footer {
			padding: 8px 14px 10px;
			border-top: 1px solid #eee;
			display: flex;
			justify-content: flex-end;
			gap: 8px;
		}

		.gpt-btn {
			border: 1px solid #ccc;
			background: #f5f5f5;
			font-size: 16px;
			padding: 1px 10px 0px;
			cursor: pointer;
			font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
			border-radius: 3px;
		}

		.gpt-btn.primary {
			background: #0066cc;
			border-color: #0066cc;
			color: #fff;
		}

		.gpt-toast {
			position: fixed;
			bottom: 20px;
			right: 20px;
			max-width: 260px;
			padding: 10px 12px;
			background: rgba(0, 0, 0, 0.85);
			color: #fff;
			font-size: 12px;
			border-radius: 6px;
			opacity: 0;
			pointer-events: none;
			transition: opacity .25s ease;
			z-index: 10000;
		}

		.gpt-toast.show {
			opacity: 1;
		}



/* ================================
   ai 질문

================================ */


header h1 {
	display: block;
}

header {
	position: relative;
}

footer {
	background-color: #1c1a3f;
}

/* ================================
   이벤트 배너 시작
================================ */
.event-fixed-banner {
	position: fixed;
	right: 0px;
	/* 왼쪽 고정이면 left: 20px 로 변경 */
	top: 50%;
	/* 원하는 높이 조절 */
	z-index: 2;
	/* 최상단 */
}

.event-fixed-banner img {
	width: 120px;
	/* 원하는 크기 */
	height: auto;
	display: block;
	cursor: pointer;
	transition: transform .3s ease;
}

.event-fixed-banner img:hover {
	transform: scale(1);
}

/* ================================
   이벤트 배너 끝
================================ */


/* ================================
   전체메뉴 오버레이
================================ */
.fullmenu-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(20, 20, 80, 0.95);
	/* 처음엔 화면 위에 숨겨두기 */
	transform: translateY(-100%);
	opacity: 0;
	transition: transform .45s cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity .45s cubic-bezier(0.22, 0.61, 0.36, 1);
	pointer-events: none;
	/* 안 열려 있을 땐 클릭 안 먹게 */
	z-index: 9999;
	overflow-y: auto;
}

/* 열려 있는 상태 */
.fullmenu-overlay.active {
	transform: translateY(0);
	/* 아래로 스르륵 내려오기 */
	opacity: 1;
	/* 점점 선명해지기 */
	pointer-events: auto;
}

/* 닫기(X) 버튼 */
.fullmenu-close {
	position: absolute;
	top: 40px;
	right: 40px;
	background: none;
	border: none;
	cursor: pointer;
}

.fullmenu-close span {
	position: absolute;
	width: 37px;
	height: 5px;
	background: #ffffff;
	transform-origin: center;
}

.fullmenu-close span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.fullmenu-close span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}


.fullmenu-left img {
	width: 328px;
	border-radius: 8px;
}


.fullmenu-col h3 {
	font-size: 30px;
	color: #fcffb5;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 8px;
	text-align: center;
	font-family: "Paperlogy5", "Malgun Gothic", "sans-serif";
	letter-spacing: 0em;
	text-align: center;
	width: fit-content;
	margin: 0 auto 25px;
}



/* 항목 호버 */
.fullmenu-col a:hover {
	background: #ffffff;
	color: #1a1a40;
	width: inherit;
}


/* ================================
   전체메뉴 하단 이메일 구독 폼
================================ */
.fullmenu-subscribe-area {
	max-width: 1300px;
	margin: 40px auto 0px;
	/* 상하 여백 조절 */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 10001;
}

.subscribe-label {
	display: inline-block;
	background-color: #fff;
	color: #111;
	font-weight: 800;
	padding: 8px 15px;
	margin-right: 15px;
	font-family: 'Paperlogy5', sans-serif;
	font-size: 18px;
	vertical-align: middle;
}

/* 폼 컨테이너 (라벨과 폼을 가로로 배치하려면 flex 사용) */
.fullmenu-subscribe-area {
	flex-direction: row;
	/* 가로 배치 */
}

.subscribe-form {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 5px;
	border-radius: 5px;
	width: 100%;
	max-width: 500px;
	/* 인풋 박스 전체 너비 제한 */
}


.subscribe-input::placeholder {
	color: #999;
}



.subscribe-btn:hover {
	background-color: #1d4ed8;
}

.subscribe-btn:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
}

/* 상태 메시지 (성공/실패 텍스트) */
.subscribe-status {
	transform: translateX(-50%);
	white-space: nowrap;
}


/* 모바일 대응 */
@media (max-width: 767px) {
	.fullmenu-subscribe-area {
		flex-direction: column;
		gap: 15px;
		width: 90%;
		margin-bottom: 40px;
	}

	.subscribe-label {
		margin-right: 0;
	}

	.subscribe-form {
		width: 100%;
	}
}

/* ===== 이메일등록 사이드 끝 ===== */


/* ===== 상단 우측 고정 전체메뉴 버튼 ===== */
.global-menu-toggle {
	display: none;
}

/* 햄버거 3선 바 */
.global-menu-toggle span {
	display: block;
	width: 40px;
	height: 4px;
	background: #ffffff;
	border-radius: 2px;
}

/* 마우스 올렸을 때만 색상 반전 */
.global-menu-toggle:hover {
	background: #ffffff;
}

.global-menu-toggle:hover span {
	background: #ff2d7a;
}

/* 키보드 포커스용 – 색은 그대로 두고 테두리만 */
.global-menu-toggle:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 3px;
}



.line {
	text-decoration: underline;
	text-underline-offset: 7px;
}



.volArea {
	position: fixed;
	left: -6%;
	bottom: 45%;
	transform: rotate(-90deg);
	z-index: 2;
}


.volArea .volNum {
	font-family: "Paperlogy4", "Malgun Gothic", "sans-serif";
	font-size: 20px;
	color: #b2b2b2;
	letter-spacing: 0.03em;
}


.bor {
	border-radius: 5px;
}

section.theme .container {
	position: relative;
	width: 1300px;
}

#hover-img {}

#hover-img:hover {
	filter: brightness(70%);
	transition-duration: 0.5s;
}

.cover_title {
	font-size: 17px;
	font-weight: 400;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -0.08em;
	color: #a2a2a2;
}


.stext {
	font-size: 17px;
	color: #636363;
	line-height: 1.55em;
}



/* Bootstrap */

.container {
	padding: 0;
	width: 100%;
	/* max-width: 1840px; */
}

/* Etc */


a {
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: 0px;
}

p {
	font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
	;
}

a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
}

a.top {
	position: fixed;
	right: 2%;
	bottom: 100px;
	display: none;
	width: 68px;
	height: 68px;
	background-image: url(../img/common/goto_top.png);
	background-size: 68px 68px;
	z-index: 9999;
}

img {
	max-width: 100%;
}

body {
	font-size: 18.5px;
	line-height: 1.75em;
	text-align: justify;
	letter-spacing: -0.02em !important;
	color: #000000;
}

@media screen and (max-width:767px) {
	body {
		margin: 0;
		font-size: 17px;
		line-height: 1.7em;
		text-align: justify;
		letter-spacing: -0.03em !important;
		color: #000000;
	}
}

#include-header-section {
	height: 95px;
	position: fixed;
}


header > div {
	position: relative;
	padding: 0;
	width: 100%;
}

header h1 {
	position: absolute;
	top: 0;
	margin: 0;
}

header .main .m {
	display: none;
}


header.fixed {
	position: fixed;
	top: 0;
}


/* header.fixed{position: relative;} */
header.fixed nav > ul > li {
	width: 16%;
	transition: .6s;
}

/* header .wrapper{width: 95%;} */
header.fixed nav > ul > li .sns_share {
	margin-top: -1px;
}


@media screen and (max-width: 1600px) {
	header.fixed .wrapper {
		width: 95%;
	}
}

@media screen and (max-width:1300px) {
	header.fixed nav > ul > li {
		width: 13%;
	}

	header.fixed nav > ul > li a {
		font-size: 15px;
	}
}

@media screen and (min-width:950px) {

	header.main_header h1 {
		width: 0;
		opacity: 0;
		transition: .7s;
	}

	header.fixed h1 {
		width: auto;
		opacity: 1;
	}
}

@media screen and (max-width:750px) {
	#include-header-section {
		height: 60px;
	}



}


header nav > ul {
	display: flex;
	height: 95px;
	justify-content: flex-end;
	align-items: center;
}

header nav > ul > li {
	width: 15%;
	text-align: center;
	height: 95px;
	position: relative;
	transition: .4s;
}

header nav > ul > li:last-child {
	margin-right: 0%;
}


.nav_bg {
	width: 100%;
	height: 0;
	background: rgba(255, 255, 255, 0.97);
	position: absolute;
	top: 95px;
	transition: 0.5s;

}

header nav > ul > li > ul > li,
header nav > ul > li > ul > li:focus,
header nav > ul > li > ul > li:focus-within {
	height: 0;
	overflow: hidden;
	opacity: 1;
	transition: .3s;
	background: #ffffff;
	color: #ffffff;
}

header nav > ul > li:hover,
header nav > ul > li:focus,
header nav > ul > li:focus-within {
	background: #ffffff;
}




header nav > ul > li:hover > ul > li,
header nav > ul > li:focus > ul > li,
header nav > ul > li:focus-within > ul > li {
	height: 48px !important;
	opacity: 1;
}



header nav > ul > li > a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22.5px;
	letter-spacing: 0.02em;
	transition: .5s;
	font-family: "Paperlogy5", "Malgun Gothic", "sans-serif";
	color: #000000;
}


header nav > ul > li.active {
	background: #000000;
}

header nav > ul > li.active > a {
	color: #000000;
}



header nav > ul > li:hover > ul {
	position: relative;
	z-index: 100;
}



/* header nav > ul > li:hover > ul > li:hover{} */
header nav > ul > li:hover > ul > li:hover > a:focus,
header nav > ul > li:hover > ul > li:hover > a:focus-within,
header nav > ul > li:hover > ul > li:hover > a {
	background: #fff;
	color: #000000;
}


header nav > ul > li > ul > li.active > a {
	background-color: #ffffff !important;
	color: #985bb0;
}


footer .wrapper_footer .footer_pc {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 40px;
}

footer .wrapper_footer .footer_pc .footer_left .footer_left_top {
	display: flex;
	align-items: center;
}

footer .wrapper_footer .footer_pc .footer_left .footer_left_top .footer_logo {
	margin-right: 15px;
}

footer .wrapper_footer .footer_pc .footer_right .footer_sns {
	display: flex;
	margin-top: 0px;
	margin-right: 20px;
}


footer .wrapper_footer .footer_pc .footer_right .footer_sns li {
	margin-right: 7px;
}

footer .wrapper_footer .footer_pc .footer_left .footer_sns {
	display: flex;
	margin-top: 0px;
	margin-right: 0px;
	/* 기존 오른쪽 여백 제거 (세로 배치가 되었으므로 불필요) */
	margin-bottom: 10px;
	/* [추가] 글씨와의 간격 확보 */
	gap: 10px;
}

footer .wrapper_footer .footer_pc .footer_left .footer_left_top .copy {
	display: flex;
	flex-direction: column;
	/* 세로 정렬 (아이콘을 위로, 글씨를 아래로) */
	align-items: flex-start;
	/* 왼쪽 정렬 */
	justify-content: center;

	/* 기존 스타일 유지 */
	margin-left: 20px;
	/* margin-top: 10px;  <-- 기존에 중복된 속성이 있어 정리했습니다 */
	margin-top: 0;
	/* 로고와 높이 균형을 위해 상단 여백 제거 혹은 조절 */

	font-size: 16px;
	letter-spacing: -0.00em;
	line-height: 1.4em;
	color: #ffffff;
	font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
}




footer .wrapper_footer .prev .selectPrev ul > li:hover > a {
	background-color: #333;
	color: #fff;
	border: 0px;
}


footer .wrapper_footer .prev .selectPrev.open {
	display: block;
	background-color: #444172;
	border: 0px;
	transition: background-color .5s, color .5s;
}

footer .wrapper_footer .prev .selectPrev.open ul {
	display: block;
	width: 165px;
	margin-left: 4px;

}


footer .wrapper_footer .prev .selectPrev ul > li > a {
	display: block;
	padding: 9px 10px;
	color: #000;
	transition: background-color .3s, color .3s;
	font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
}

footer .wrapper_footer .prev .selectPrev ul > li > a:hover {

	background-color: #90c2dd;

}



footer .wrapper_footer .prev {
	position: relative;
	border-radius: 5px;
}

footer .wrapper_footer .prev:after {
	display: block;
	content: '';
	border-left: 5px solid #f9f9f9;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
}

footer .wrapper_footer .prev .selectPrev {
	width: 139px;
	height: 44px;
	position: relative;
	padding: 11px 36px 8px 16px;
	border: 0;
	background-color: #444172;
	color: #ffffff;
	appearance: none;
	-webkit-appearance: none;
	font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
	font-size: 17px;
	outline: none;
	cursor: pointer;
	border-radius: 3px;
}



footer .wrapper_footer .prev .selectPrev ul {
	display: none;
	width: 100%;
	padding: 0;
	list-style-type: none;
	position: absolute;
	background-color: #ffffff;
	border: 1px solid #eee;
	left: 0;
	bottom: 44px;
	margin: 0;

	/* 스크롤 추가 및 높이값 조정 */
	overflow-y: auto;
	height: 380px;
}


footer .wrapper_footer {
	/* display: flex;*/
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

footer .wrapper_footer .footer_right {
	display: flex;
	align-items: center;
}





footer .wrapper_footer .footer_mo .footer_top ul {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
}

footer .wrapper_footer .footer_mo .footer_top ul li a img {
	width: 79.5px;
}

footer .wrapper_footer .footer_mo .footer_bottom ul.footer_sns {
	display: flex;
	justify-content: space-between;
	padding: 0 50.5px;
	margin-top: 45px;
}

footer .wrapper_footer .footer_mo .footer_bottom ul.footer_sns li {
	margin-left: 2px;
}

footer .wrapper_footer .footer_mo .footer_bottom ul.footer_sns li:last-child {
	margin-left: 0;
}

footer .wrapper_footer .footer_mo .footer_bottom {
	text-align: center;
}

footer .wrapper_footer .footer_mo .footer_bottom .footer_logo {
	width: 200px;
	margin: 0 auto;
	margin-top: 40px;
}

footer .wrapper_footer .footer_mo .footer_bottom .footer_left_bottom {
	font-size: 15px;
	padding: 10px 0 30px;
	letter-spacing: -0.02em;
	line-height: 1.65em;
	color: #ffffff;
	font-family: "NanumSquareNeo", sans-serif;
	text-align: center;
}


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

	footer .footer_wa {
		margin-top: 10%;
		margin-left: 30%;
		margin-right: 30%;
	}

	footer .wrapper_footer .footer_mo .footer_bottom .footer_logo {
		width: 200px;
		margin: 0 auto;
		margin-top: 35px;
	}
	footer .wrapper_footer .footer_mo .footer_bottom .prev {
      	width: 139px;
        margin: 30px auto 20px;
        display: block;
    }
	
	footer .wrapper_footer .prev .selectPrev {
    width: 135px;
    height: 40px;
    position: relative;
    padding: 10px 27px 7px 17px;
    border: 0;
    background-color: #444172;
    color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
    font-size: 16px;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
}


}


header .story > a {
	display: block;
	height: 100px;
	padding-left: 220px;
	background-image: url('../img/common/logo.png');
	background-position: left center;
	background-repeat: no-repeat;
}

header h1 .vol {
	display: block;
	font-size: 16px;
	line-height: 19px;
	color: #595a5c;
	padding-top: 41px;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -0.2px;
}

header .title {
	margin: 0;
	font-size: 20px;
	text-align: center;
	padding-top: 38px;
	color: #000000;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

header .cover-nav {
	float: right;
	margin-right: 90px;
	list-style-type: none;
	margin-top: 43px;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

header .cover-nav > li {
	float: left;
}

header .cover-nav > li > a {
	display: block;
	position: relative;
	font-weight: 400;
	padding: 0 90px;
	font-size: 21px;
	cursor: pointer;
}


header .cover-nav > li > a:before {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 2px;
	height: 18px;
	border-right: 1px solid #595a5c;
}

header .cover-nav > li:last-child > a:before {
	display: none;
}

header .btn-toggle-nav {
	display: block;
	width: 35px;
	height: 20px;
	background-image: url('../img/common/btn_nav.png');
	background-size: contain;
	position: absolute;
	right: 1.5rem;
	top: 30px;
	cursor: pointer;
}
.top-title {
	position: absolute;
    top: 125px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    padding: 6px 8px 4px;
    font-family: "Paperlogy4", "Malgun Gothic", "sans-serif";
    font-size: 19px;
    line-height: 1.0em;
    letter-spacing: 0.02em;
    color: #000000;
}


#side-nav {
	/*
    display:none;
    position:fixed;

    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    z-index:1000;
    */
}

#side-nav > .wrap {
	position: fixed;
	width: 600px;
	height: 100%;
	right: -600px;
	top: 0;
	background-color: #fff;
	animation-delay: 1s;
	transition: right .3s;
	z-index: 1000;
	padding: 60px 0 60px 0;
	overflow-y: scroll;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

#side-nav > .wrap .btn-toggle-nav-close {

	width: 30px;
	height: 30px;
	position: absolute;
	right: 12px;
	top: 19px;
	background-image: url('../img/common/btn_nav_close.png');
	cursor: pointer;
}

#side-nav > .wrap .logo {
	margin: 0 0 30px 32px;
	padding-left: 150px;
	padding-top: 3px;
	height: 45px;
	background-image: url('../img/common/logo_side.png');
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}

#side-nav > .wrap .logo .vol {
	color: #000;
	font-weight: 500;
	display: block;
	line-height: 19px;
	margin-left: 10px;
	margin-top: -5px;
}

@media screen and (min-width:767px) {

	.lSSlideOuter .lightSlider,
	.lSSlideOuter .lSPager {
		padding: 0 !important;
	}
}

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

	.top-title {
		position: absolute;
		z-index: 1;
		color: #000;
		pointer-events: none;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgba(255, 255, 255, 0.7);
		left: 50%;
		transform: translateX(-50%);
		border-radius: 3px;
		padding: 6px 8px 6px;
	}

	.top-title2 {
		position: absolute;
		z-index: 501;
		top: 110px;
		z-index: 1;
		font-size: 18px !important;
		font-weight: 400;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		color: #000;
		pointer-events: none;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgba(255, 255, 255, 0.7);
		left: 50%;
		transform: translateX(-50%);
		border-radius: 5px;
	}


	.top-title {
		top: 80px;
	}

	#side-nav > .wrap .logo .vol {
		color: #000;
		font-weight: 500;
		display: block;
		line-height: 19px;
		margin-left: -14px;
		margin-top: 17px;
	}
}

#side-nav > .wrap .logo .vol h1,
#side-nav > .wrap .logo .vol h2 {
	/* display: inline-block; */
	font-size: 16px;
}

#side-nav > .wrap .logo .vol h1 {
	padding-right: 15px;
	margin-right: 10px;
}


#side-nav > .wrap .logo .vol h2 b {
	font-size: 22px;
}

#side-nav > .wrap .nav-content {
	margin-bottom: 30px;
}

#side-nav > .wrap .nav-content h3 {
	margin: 0 0 7px 32px;
	padding-bottom: 10px;

	font-family: "Paperlogy7", "Malgun Gothic", "sans-serif";
	font-size: 21px;
	border-bottom: 1px solid #e5e5e5;
	color: #ffffff;
}


#side-nav > .wrap .nav-content ul {
	margin: 0;
	list-style-type: none;
	padding-left: 0;
}

#side-nav > .wrap .nav-content ul > li > a {
	display: block;
	padding: 5px 0 5px 32px;
	color: #141414;
	background-color: #fff;
	transition: background-color .3s, color .3s;
}

#side-nav > .wrap .nav-content ul > li > a small {
	display: inline-block;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 500;
	font-size: 14pt;
	padding-bottom: 1px;
	border-bottom: 1px solid;
	background-color: transparent;
	color: #000;
	transition: color .3s;
}

#side-nav > .wrap .nav-content ul > li > a span {
	display: block;
	font-size: 18px;
	background-color: transparent;
	color: #000;
	transition: color .3s;
	margin-top: 8px;
	margin-bottom: 5px;
	letter-spacing: -0.02em;
	font-family: "NanumSquareNeoBold", "Malgun Gothic", "sans-serif";
}

#side-nav > .wrap .nav-content ul > li:hover > a span,
#side-nav > .wrap .nav-content ul > li:hover > a small {
	color: #fff;
}

#side-nav > .wrap .nav-content ul > li.active > a span,
#side-nav > .wrap .nav-content ul > li.active > a small {
	color: #fff;
}





#side-nav > .wrap .nav-content:nth-child(2) ul > li.active > a,
#side-nav > .wrap .nav-content:nth-child(2) ul > li:hover > a {
	background-color: #ffffff;
	color: #fff;
}






#side-nav > .wrap .btn-wrap {
	border-top: 1px solid #e5e5e5;
	padding-top: 50px;
	margin-left: 30px;
}

#side-nav > .wrap .btn-wrap > .row {
	margin: 0;
}

#side-nav > .wrap .btn-x {
	position: relative;
	display: inline-block;
	width: 175px;
	height: 48px;
	line-height: 40px;
	padding: 3px 20px;
	margin-right: 15px;
	background-color: #eeeeee;
	border: 1px solid #e5e5e5;
	color: #000;
	cursor: pointer;
	font-family: "NanumSquareNeoBold", "Malgun Gothic", "sans-serif";
	border-radius: 3px;
}

#side-nav > .wrap .btn-x ul {
	display: none;
	width: 175px;
	padding: 0;
	list-style-type: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #eee;
	left: -1px;
	bottom: 46px;
	margin: 0;
	height: 400px;

	overflow-y: auto;
}

#side-nav > .wrap .btn-x.open ul {
	display: block;
}

#side-nav > .wrap .btn-x ul > li > a {
	display: block;
	padding: 10px 13px;
	color: #222;
	transition: background-color .3s, color .3s;
	font-family: "NanumSquareNeo", "Malgun Gothic", "sans-serif";
	font-size: 16px;
}

#side-nav > .wrap .btn-x ul > li:hover > a {
	background-color: #90c2dd;
	color: #fff;
}

#side-nav > .wrap .btn-x.btn-newsstand:after {
	display: block;
	content: '';
	border-left: 6px solid #363636;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 10px;
	top: 45%;
	margin-top: -5px;
}

#side-nav > .wrap .btn-x.btn-prev:after {
	display: block;
	content: '';
	border-left: 5px solid #000;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
}

body.nav-open {
	overflow: hidden;
	font-family: "nanum-square-r", "Malgun Gothic", "sans-serif";
}

body.nav-open #side-nav {
	display: block;
}

body.nav-open #side-nav:before {
	display: block;
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 500;
}

body.nav-open #side-nav > .wrap {
	right: 0;
}





.article-list a .text-wrapper {
	overflow: hidden;
	position: absolute;
	bottom: 60%;
	left: 0%;
	width: 100%;
	text-align: center;
	transition: all 0.3s;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 500;
}

.article-list a .text-wrapper .title {
	position: relative;
	font-size: 20px;
	color: #fff;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: auto;
	font-weight: bold;
	line-height: 1.3;
	/*display: inline-block;*/
	display: block;
	text-align: left;
	padding: 10px 0 0;
	white-space: nowrap;
}

.article-list a .text-wrapper .desc {
	font-size: 18px;
	line-height: 24px;
}

.article-list a .text-wrapper .desc::before {
	content: "";
	width: 30px;
	height: 1px;
	background-color: white;
	display: block;
	margin: 0;
	opacity: 0;
	transition: opacity 0.3s, margin 0.3s 0.3s;
}

.article-list a .text-wrapper .desc::before {
	/*opacity: 1;*/
	/*margin-top: 10px;*/
	/*margin-bottom: 10px;*/
	/*transition: margin 0.1s, opacity 0.3s 0.3s;*/
}

.article-list a .text-wrapper .desc {
	box-sizing: border-box;
	width: 100%;
	display: block;
	position: relative;
	left: 0;
	/* font-size: 14px; */
	color: #fff;
	margin-bottom: -10px;
	height: 40px;
	max-height: 0;
	white-space: nowrap;
	transition: max-height 0.6s;
	z-index: 9;
	word-break: keep-all;
}

.article-list a:hover .text-wrapper .desc {
	max-height: 100px;
	transition: max-height 0.8s;
}



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


	body {
		/* padding-top: 64px; */
	}

	.container {
		/* padding: 0 10px; */
	}

	header {
		height: 64px;
	}

	header .main .vol {
		line-height: 14px;
		font-size: 13px;
		color: #000;
		font-weight: 500;
		padding-top: 25px;
		margin-left: -10px;
	}

	header .main .vol small {
		font-size: 11px;
		color: #000;
	}

	header .sub .only-logo > a {
		background-size: 78px 33px;
		margin-top: 10px;
		background-image: url(../img/common/logo_mobile.png);
		height: 39px;
	}

	header .sub .only-logo .vol {
		display: none;
	}

	header .title {
		padding-top: 22px;
		font-weight: 600;
	}

	header .cover-nav {
		display: none;
	}

	header .btn-toggle-nav {
		top: 53%;
		margin-top: -12px;
	}

	#side-nav > .wrap {
		width: 85%;
		padding-top: 20px;
	}

	#side-nav > .wrap .logo {
		margin-left: 20px;
		padding-left: 150px;
		background-size: contain;
		height: 82px;
		margin-right: 15px;
	}

	#side-nav > .wrap .logo .vol h1,
	#side-nav > .wrap .logo .vol h2 {
		font-size: 13px;
		margin-top: 5px;
	}

	#side-nav > .wrap .btn-toggle-nav-close {
		right: 80%;
		top: 23px;
	}

	#side-nav > .wrap .nav-content h3 {
		margin-left: 20px;
	}

	#side-nav > .wrap .nav-content ul > li > a {
		padding-left: 20px;
	}

	#side-nav > .wrap .btn-wrap {}

	#side-nav > .wrap .btn-x {
		margin: 6px 0;
	}
}

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

	section,
	#include-header,
	#include-footer {
		width: 100%;
	}

	.container {
		margin: 0;
		width: auto;
	}

	header {
		width: 100%;
	}

	header h1 .vol {
		display: block;
		font-size: 19pt;
		font-weight: 500;
		line-height: 19px;
		color: #000;
		padding-top: 40px;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
	}

	section.theme {
		padding: 0 13px;
	}

	.top-title.main {
		display: none;
	}

	.top-title2.main {
		display: none;
	}


	.top-title.section2 > h1 {
		font-size: 17px;
		font-family: 'Paperlogy5';
	}
}

.wrapper {
	width: 88%;
	margin: 0 auto;
}

.wrapper_menu {
	width: 78%;
	margin: 0 auto;
}

.wrapper_footer {
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width:1600px) {
	.wrapper {
		width: 1580px;
	}

	footer .wrapper_footer {
		width: 95%;
		margin: 0 auto;
	}

	footer .wrapper_footer .footer_pc .footer_left .footer_left_bottom {
		margin-left: 0;
		font-size: 12px;
		line-height: 1.4;
	}
}


@media screen and (max-width:1300px) {
	.wrapper {
		width: 850px;
	}

}

@media screen and (min-width:950px) {
	header .btn-toggle-nav {
		display: block;
	}

	.sec_con_wrap .sec_tit_mo {
		display: none;
	}
}

@media screen and (min-width:1200px) {
	header .btn-toggle-nav {
		display: none;
	}
}


@media screen and (max-width:1200px) {
	header nav > ul {
		display: none;
	}
}

@media screen and (max-width:950px) {
	.wrapper {
		width: 720px;
		padding: 0 30px;
		box-sizing: border-box;
	}
	header nav > ul {
		display: none;
	}

	footer .wrapper_footer .footer_pc .footer_left .footer_left_bottom {
		font-size: 10px;
		line-height: 1.6;
	}

}

@media screen and (min-width:750px) {
	footer .wrapper_footer .footer_mo {
		display: none;
	}
}

@media screen and (max-width:750px) {
	.wrapper {
		width: 443px;
		padding: 0 15px;
	}

	.wrapper_menu {
		width: 100%;
		padding: 0 15px;
	}

	footer .wrapper_footer {
		width: 360px;
		padding: 0 15px;
	}

	footer .wrapper_footer .footer_pc {
		display: none;
	}
}

@media screen and (max-width:480px) {
	.wrapper {
		width: 360px;
		padding: 0 15px;
	}
}

@media screen and (max-width:767px) {
	html {
		font-size: 10px;
	}
}


/* 2. 왼쪽 이미지 영역 */
.fullmenu-left {
	flex: 0 0 auto;
	/* 이미지 크기 고정 */
}

.fullmenu-left img {
	display: block;
	width: 210px;
	border-radius: 0px;
}

/* 3. 오른쪽 그룹 (메뉴 + 이메일) 세로 배치 */
.fullmenu-right-group {
	flex: 1;
	/* 남은 공간 모두 차지 */
	display: flex;
	flex-direction: column;
	/* 위아래 배치 */
	justify-content: space-between;
	/* 메뉴는 위, 이메일은 아래 끝으로 밀기 */
}

/* (A) 메뉴 영역 스타일 */
.fullmenu-menus {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 50px;
}

.fullmenu-col {
	flex: 1;
	min-width: 140px;
}


/* 모바일 반응형 (필요시) */
@media (max-width: 1024px) {
	.fullmenu-inner {
		flex-direction: column;
		gap: 40px;
		display: flex;
		justify-content: center;
		align-items: stretch;
		margin: 60px auto 80px;
		padding: 0 5%;
		gap: 60px;
	}

	.fullmenu-right-group {
		width: 100%;
		gap: 40px;
	}
}

header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 95px;
	background-color: transparent;
	/* 초기: 흰색 배경 */
	transition: background-color 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
	z-index: 1000;
}

/* 2. 로고 컨테이너 (.main) - 화면 정중앙 배치 */
header .main {
	position: absolute !important;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto !important;
	margin: 0 !important;
	height: 60px;
	transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 100;
}

/* 3. 로고 이미지 (a 태그) - 기본 로고 */
header .main > a {
	display: block;
	background-image: url('../img/common/logo.png') !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: contain !important;
	padding-left: 0 !important;
	width: 450px;
	/* 로고 크기 */
	height: 60px;
	margin-top: 3px !important;
	transition: all 0.5s ease;
}

/* 4. 메뉴 (.nav) - 초기 숨김 상태 */
header nav.nav {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.4s ease;
}


header.scrolled {
	background-color: rgb(147 43 171 / 93%) !important;
	border-bottom: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .main {
	left: 6% !important;
	height: 60px;
	transform: translate(0, -50%);
}

/* 로고 이미지: 흰색 로고로 교체 */
header.scrolled .main > a {
	width: 182px !important;
	min-width: 182px !important;
	max-width: 182px !important;
	height: 60px !important;
	background-image: url('../img/common/logow.png') !important;
	background-position: left center !important;
	background-size: 182px 60px !important;
	filter: none !important;
	transform: translateZ(0);
}

/* 메뉴: 나타나기 */
header.scrolled nav.nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header.scrolled nav.nav > ul > li > a {
	color: #ffffff !important;
}

footer {
	position: relative;
	z-index: 60;
}

footer .wrapper_footer .prev .selectPrev ul {
	z-index: 100 !important;
}

header nav > ul > li:hover {
	background-color: #ffffff !important;
}

header.scrolled nav.nav > ul > li:hover > a {
	color: #000000 !important;
}


header nav > ul > li > ul {
	background-color: transparent;
	border: 0px solid transparent;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	box-sizing: border-box;
	display: block;
	width: 100%;
	transition: none !important;
}

header nav > ul > li > ul > li {
	background-color: #ffffff !important;
}

header nav > ul > li > ul > li > a {
	display: flex !important;
	align-items: flex-start;
	justify-content: center;
	text-decoration: none;
	color: #000000 !important;
}

/* 4. 형광펜 효과 (span 태그 대상) */
header nav > ul > li > ul > li > a span {
	position: relative;
	z-index: 1;
	display: inline-block;
	line-height: 1.2;
	padding: 0 10px;
	background-image: linear-gradient(#fffd7c, #fffd7c);
	background-repeat: no-repeat;
	background-position: 0% 80% !important;
	background-size: 0% 90% !important;
	transition: background-size 0.4s ease-in-out;
	font-family: "Paperlogy5", "Malgun Gothic", "sans-serif";
	font-size: 19px;
	letter-spacing: 0.03em;
}

header nav > ul > li > ul > li:nth-child(1) {
	margin-top: 0 !important;
	transition: none !important;
}

header nav > ul > li:hover > ul > li:nth-child(1) {
	margin-top: 25px !important;

}

header nav > ul > li > ul > li:hover > a span {
	background-size: 100% 70% !important;
	color: #2c72dc;
}


header nav > ul > li {
	position: relative !important;
}

header nav > ul > li::before {
	content: '';
	position: absolute;
	bottom: 0;
	/* 하단에 딱 붙임 */
	left: 0;
	width: 100%;
	height: 0%;
	background-color: #ffffff;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #000000;
	border-radius: 10px 10px 0 0;
	box-sizing: border-box;
	transition: height 0.3s ease;
	z-index: 0;
	opacity: 0;
}

header nav > ul > li:hover::before {
	height: 95% !important;
	opacity: 1;
}

header nav > ul > li > a {
	position: relative !important;
	z-index: 10 !important;
}

header nav > ul > li:hover {
	background-color: transparent !important;
}

header nav > ul > li > ul > li {
	height: 0;
	overflow: hidden;
	opacity: 1;
	transition: none !important;
}

header nav > ul > li:hover > ul > li {
	height: 48px !important;
	opacity: 1;
	transition: height 0.3s ease !important;
	overflow: hidden;
}

header nav > ul > li::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background-color: #ffffff;
	border-width: 1px 1px 0 1px;
	border-style: solid;
	border-color: #8d8d8d;
	border-radius: 10px 10px 0 0;
	box-sizing: border-box;
	z-index: 0;
	opacity: 0;
	transition: none !important;
}

header nav > ul > li:hover::before {
	height: 95% !important;
	opacity: 1;
	transition: height 0.3s ease, opacity 0.3s ease !important;
}

header nav > ul > li:hover > ul {
	background-color: #ffffff;
	border: 1px solid #8d8d8d !important;
	border-radius: 0 0 10px 10px !important;
	display: block;
}
header nav > ul > li > ul > li.active > a span {
	background-size: 100% 70% !important;
	color: #2c72dc !important;
}

@media screen and (max-width: 767px) {
	.global-menu-toggle {
		position: fixed;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		background: #3e6aa0;
		border: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		cursor: pointer;
		z-index: 500;
	}

	.global-menu-toggle span {
		display: block;
		width: 35px;
		height: 3px;
		background: #ffffff;
		border-radius: 2px;
	}

	header {
		height: 60px;
	}

	/* 1. 기존 Flexbox 강제 정렬 해제 및 애니메이션 준비 */
	header h1,
	header h1.main {
		display: block !important;
		/* Flex 제거 */
		position: absolute !important;
		/* 좌표 이동 가능하게 변경 */
		top: 50% !important;
		margin: 0 !important;
		padding: 0 !important;
		width: auto !important;
		/* 100% 너비 해제 */
		justify-content: normal !important;
		/* 정렬 해제 */
		align-items: normal !important;
		transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
		z-index: 100;
	}

	/* 2. [초기 상태: 스크롤 전] 화면 정중앙 배치 */
	header:not(.scrolled) h1.main {
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		/* 정중앙 보정 */
	}

	/* 초기 로고 이미지 (검정) */
	header:not(.scrolled) h1.main > a {
		display: block !important;
		width: 270px !important;
		height: 60px !important;
		padding-left: 0 !important;
		background-image: url(../img/common/logo.png) !important;
		background-size: contain !important;
		background-position: center center !important;
		background-repeat: no-repeat !important;
		transition: all 0.3s ease !important;
		margin-top: 9px !important;
	}

	/* 3. [스크롤 후] 좌측 이동 및 배경색 변경 */
	header.scrolled {
		background-color: rgb(30 29 93 / 95%) !important;
		/* 남색 배경 */
		transition: background-color 0.4s ease;
	}

	header.scrolled h1.main {
		left: 0px !important;
		/* 좌측으로 이동 */
	
	}

	header .main .vol,
	header h1 .vol {
		display: none !important;
	}

	.global-menu-toggle {
		display: none !important;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	header.scrolled .global-menu-toggle {
		display: flex !important;
		opacity: 1;
	}
}


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

	.fullmenu-inner {
		padding: 80px 20px 40px !important;
		display: block !important;
		overflow-y: auto !important;
		height: 100% !important;
	}

	.fullmenu-right-group {
		width: 100% !important;
		display: block !important;
	}

	.fullmenu-menus {
		display: flex !important;
		flex-direction: column !important;
		gap: 40px !important;
		margin-top: 0 !important;
	}

	.fullmenu-col {
		width: 100% !important;
		min-width: auto !important;
		text-align: center !important;
		padding-bottom: 0px !important;
	}

	/* 마지막 컬럼은 구분선 제거 */
	.fullmenu-col:last-child {
		border-bottom: none !important;
		padding-bottom: 0 !important;
	}

	.fullmenu-col h3 {
		font-size: 21px !important;
		margin-bottom: 15px !important;
		display: inline-block !important;
	}

	.fullmenu-col a {
		font-size: 19px !important;
		padding: 5px 0 !important;
		display: block !important;
		border-radius: 3px;
		margin-bottom: 3px;
		font-family: "Paperlogy5", "Malgun Gothic", "sans-serif";
		transition: background .25s, color .25s;
		text-align: center;
		color: #d7d7e7;
	}
	.fullmenu-subscribe-area {
		margin-top: 50px !important;
		width: 100% !important;
		padding-bottom: 50px !important;
	}

	.subscribe-form {
		width: 100% !important;
	}

	.fullmenu-overlay {
		overflow: hidden !important;
	}

	.fullmenu-mobile-logo {
		display: block !important;
        /* position: absolute; */
        top: 30px;
        /* left: 20px; */
        z-index: 10002;
        margin: 25px auto;
        text-align: center;
	}

	.fullmenu-mobile-logo img {
		width: 170px;
		height: auto;
	}
	.fullmenu-close {
		position: absolute !important;
		top: 40px !important;
		right: 40px !important;
		z-index: 10002;
	}

	.fullmenu-inner {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		height: 100% !important;
		padding-top: 20px !important;
		padding-bottom: 50px !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch;
	}

	.fullmenu-menus {
		margin-top: 0 !important;
		margin-bottom: 100px;
	}
}

.hover-swap-btn {
	display: block;
	position: relative;
	width: 90px;
	height: 87px;
}

.hover-swap-btn img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.2s ease;
}

.hover-swap-btn .img-default {
	opacity: 1;
}

.hover-swap-btn .img-hover {
	opacity: 0;
}

.hover-swap-btn:hover .img-default {
	opacity: 0;
}

.hover-swap-btn:hover .img-hover {
	opacity: 1;
}

.footer-nav-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	/* 버튼 높이 확보 */
	min-height: 60px;
	margin-bottom: 100px;
}

/* SNS 아이콘 영역을 강제로 우측 끝으로 보냄 */
.footer-nav-wrapper .sns-wrap {
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	float: none !important;
	margin: 0 !important;
	height: auto;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (max-width: 767px) {
	.footer-nav-wrapper {
		flex-direction: column;
		height: auto;
		margin-bottom: 50px;
	}

	.footer-nav-wrapper .sns-wrap {
		position: static !important;
		transform: none;
		width: 100%;
		justify-content: center;
		margin-top: 20px !important;
	}


}

@media screen and (max-width: 767px) {
    
    /* 1. H1 컨테이너 (위치 잡기) */
    header h1,
    header h1.main,
    header.scrolled h1.main,
    header:not(.scrolled) h1.main {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important; /* 정확한 정중앙 배치 */
        
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 100;
    }

    /* 2. 내부 a태그 (배경 이미지 위치) */
    header h1.main > a,
    header.scrolled h1.main > a,
    header:not(.scrolled) h1.main > a {
        display: block !important;
        margin: 0 auto !important;
        padding: 0 !important; /* 기존 padding-left 제거 */
        background-position: center center !important; /* 이미지 가운데 정렬 */
        background-repeat: no-repeat !important;
        background-size: contain !important;
    }

    /* 3. 스크롤 전 (검은색 로고) 크기 조정 */
    header:not(.scrolled) h1.main > a {
        width: 175px !important;
        /* height: auto !important; */
        margin-top: 5px !important;
    }

    /* 4. 스크롤 후 (흰색 로고) 크기 조정 */
    header.scrolled h1.main > a {
        width: 115px !important; 
        height: 40px !important;
        margin-top: 0 !important;
        background-image: url('../img/common/logows.png') !important; 
    }
}