@charset "utf-8";

/* 기본프로그램 사용자모듈 메뉴 - PC */
.all_m_btn {
	padding: 10px;
	background: #323337;
}

.all_m_btn img {
	position: absolute;
	top: 28%;
	left: 15px;
	width: 10%;
	max-width: 40px;
	cursor: pointer;
}

.all_m_btn .mutit {
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	color: #fff;
}

.pro_m_wrap {
	display: none;
	font-family: 'Nanum Gothic', sans-serif;
	transition: all 0.3s linear;
}

.pro_m_wrap .m_menu {
	width: 200px;
}

.pro_m_wrap .bg_black {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}


/* 기본프로그램 사용자모듈 메뉴 - MOBILE */
.pro_m_wrap .subleftmenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pro_m_wrap .subleftmenu li {
	border-bottom: 1px solid #515155;
	background: #323337;
}

.pro_m_wrap .subleftmenu a {
	display: block;
	color: #b5b2b2;
	font-size: 14px;
	padding: 11px 5px 11px 15px;
	font-family: 'Noto Sans KR';
}

.sub_title_m {
	font-size: 28px !important;
	font-weight: bold;
	color: #fff !important;
	padding: 12px 5px 12px 15px !important;
}

.pro_m_wrap .subleftmenu a:hover {
	background: #307dd4;
	color: #fff;
}

.sub_title_m:hover {
	background: #323337 !important;
	cursor: default;
}

@media all and (max-width:999px) {
	.pro_m_wrap {
		display: block;
		position: absolute;
		left: -100%;
		top: 0;
		z-index: 999;
	}

	.pro_m_wrap.view {
		left: 0;
	}
}

/* basic */
.inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

@media all and (max-width:1400px) {
	.inner {
		width: 93.75%;
	}
}


/* 햄버거 메뉴 */
#header .m_btn {
	width: 140px;
	margin: 0 auto;
	text-align: right;
	cursor: pointer;
}

#header .m_btn i {
	display: inline-block;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	background: #000;
	transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
	width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
	margin: 11px 0 -2px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
	width: 0;
	margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
	margin: 0 0 11px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}


@media all and (max-width:1024px) {
	#header .gnb {
		display: none;
	}

	/* #header .m_btn{display: inline-block;} */
}


/* 사이드 메뉴 */
:root {
	--m_meun1_color: #FF8B8B;
	--m_meun2_color: #FFAE4D;
	--m_meun3_color: #61C0BF;
	--m_meun4_color: #95D0F6;
	--m_meun5_color: #BDB2FF;
	--m_meun6_color: #FBC0D7;
}

/* #m_menu : 전체 메뉴 박스 */
#m_menu {
	margin-top: 70px;
	z-index: 98;
	position: fixed;
	top: -100%;
	width: 100%;
	height: 500px;
	background-color: #fff;
	box-sizing: border-box;
	transition: top 0.5s ease;
	overflow-y: auto;
}

#m_menu.on {
	top: 0;
}


/* #m_menu .top_box : 닫기 버튼 */
#m_menu .top_box {
	position: relative;
	padding: 10px;
	box-sizing: border-box;
}

#m_menu .top_box .close_btn {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	cursor: pointer;
}

#m_menu .top_box .close_btn i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
}

#m_menu .top_box .close_btn i:first-of-type {
	transform: rotate(45deg);
}

#m_menu .top_box .close_btn i:last-of-type {
	transform: rotate(-45deg);
}


/* #m_menu .login_box : 로그인 링크 */
#m_menu .login_box {
	padding: 15px 0;
	background-color: #292929;
	text-align: center;
}

#m_menu .login_box a {
	position: relative;
	padding: 0 20px;
	font-size: 16px;
	color: #fff;
	letter-spacing: -0.04em;
}

#m_menu .login_box a:first-of-type:before {
	content: '';
	position: absolute;
	right: -1px;
	top: 50%;
	width: 1px;
	height: 14px;
	background-color: #fff;
	transform: translateY(-50%);
}

/* #m_menu .gnb_box : 1뎁스 메뉴 */
#m_menu .gnb_box {
	border-top: 1px solid #ddd;
	display: flex;
	justify-content: center;
}

#m_menu .gnb_box>ul>li {
	width: calc(100% / 6);
	border-radius: 999px;
	border: 2px solid;
	border-right: 1px solid #ddd;
	display: flex;
	justify-content: center;
	height: 100%;
}

#m_menu .gnb_box>ul>li>a {
	position: relative;
	display: block;
	padding: 15px 20px;
	font-size: clamp(15px, 1.8vw, 18px);
	font-weight: bold;
	color: #222;
	letter-spacing: -0.04em;
	box-sizing: border-box;
	margin-top: 0;
}

/* #m_menu .depth2 : 2뎁스 메뉴 */
#m_menu .gnb_box .depth2 {
	display: block;
	padding: 1rem 0;
	background: none;
	box-shadow: none;
	border: none;
	width: 100%;
	font-size: 16px;
}


@media (max-width:1024px) {
	#m_menu .gnb_box .depth2 {
		display: none;
	}
}

#m_menu .gnb_box .depth2 li {
	margin-bottom: 10px;
	box-shadow: none;
}

#m_menu .gnb_box .depth2 li a {
	display: block;
	font-size: 16px;
	color: #514e4e;
	text-align: center;
	padding: 6px 0;
	border-bottom: 1px solid transparent;
	transition: color 0.3s, border-color 0.3s;
	margin-top: 0;
}

#m_menu .gnb_box .depth2 li a.active {
	color: #ff8b8b;
	font-weight: 600;
	border-bottom: 1px solid #ff8b8b;
}


/* #m_menu .gnb_list : 메뉴 묶음 박스 */
#m_menu .gnb_list {
	display: flex;
	gap: 36px;
	justify-content: center;
	align-items: flex-start;
	padding-top: 60px;
	max-width: 1920px;
	width: 100%;
}


/* #m_menu 컬러 세트 */
#m_menu .gnb_box>ul>li:nth-child(1) {
	border: 2px solid var(--m_meun1_color);
}

#m_menu .gnb_box>ul>li:nth-child(1)>a {
	color: var(--m_meun1_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(1)>ul>li:nth-child(1)>a {
	color: var(--m_meun1_color);
	text-decoration: underline;
}

#m_menu .gnb_box>ul>li:nth-child(3) {
	border: 2px solid var(--m_meun2_color);
}

#m_menu .gnb_box>ul>li:nth-child(3)>a {
	color: var(--m_meun2_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(3)>ul>li:nth-child(1)>a {
	color: var(--m_meun2_color);
	text-decoration: underline;
}

#m_menu .gnb_box>ul>li:nth-child(5) {
	border: 2px solid var(--m_meun3_color);
}

#m_menu .gnb_box>ul>li:nth-child(5)>a {
	color: var(--m_meun3_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(5)>ul>li:nth-child(1)>a {
	color: var(--m_meun3_color);
	text-decoration: underline;
}

#m_menu .gnb_box>ul>li:nth-child(7) {
	border: 2px solid var(--m_meun4_color);
}

#m_menu .gnb_box>ul>li:nth-child(7)>a {
	color: var(--m_meun4_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(7)>ul>li:nth-child(1)>a {
	color: var(--m_meun4_color);
	text-decoration: underline;
}

#m_menu .gnb_box>ul>li:nth-child(9) {
	border: 2px solid var(--m_meun5_color);
}

#m_menu .gnb_box>ul>li:nth-child(9)>a {
	color: var(--m_meun5_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(9)>ul>li:nth-child(1)>a {
	color: var(--m_meun5_color);
	text-decoration: underline;
}

#m_menu .gnb_box>ul>li:nth-child(11) {
	border: 2px solid var(--m_meun6_color);
}

#m_menu .gnb_box>ul>li:nth-child(11)>a {
	color: var(--m_meun6_color) !important;
}

#m_menu .gnb_box>ul>li:nth-child(11)>ul>li:nth-child(1)>a {
	color: var(--m_meun6_color);
	text-decoration: underline;
}

/* #m_menu 반응형 : 테블릿 이하 */
@media (max-width:1024px) {
	#m_menu .gnb_box>ul {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	#m_menu .gnb_box>ul>li {
		width: calc(100% / 2 - 20px);
		flex-direction: column;
		align-items: center;
		padding-bottom: 20px;
		border: none;
		border-right: none;
	}

	#m_menu .gnb_list {
		flex-wrap: wrap;
	}

	#m_menu {
		height: 100%;
	}

	#m_menu .gnb_box .depth2 {
		position: static;
		display: none;
		padding: 1rem 0;
		border-radius: 12px;
		width: 100%;
	}

	#m_menu .gnb_box li.on .depth2 {
		display: block;
	}

	#m_menu .gnb_box>ul>li:nth-child(1),
	#m_menu .gnb_box>ul>li:nth-child(3),
	#m_menu .gnb_box>ul>li:nth-child(5),
	#m_menu .gnb_box>ul>li:nth-child(7),
	#m_menu .gnb_box>ul>li:nth-child(9),
	#m_menu .gnb_box>ul>li:nth-child(11) {
		border: none;
	}

	#m_menu .gnb_box>ul>li:nth-child(1)>a {
		border: 2px solid var(--m_meun1_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .gnb_box>ul>li:nth-child(3)>a {
		border: 2px solid var(--m_meun2_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .gnb_box>ul>li:nth-child(5)>a {
		border: 2px solid var(--m_meun3_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .gnb_box>ul>li:nth-child(7)>a {
		border: 2px solid var(--m_meun4_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .gnb_box>ul>li:nth-child(9)>a {
		border: 2px solid var(--m_meun5_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .gnb_box>ul>li:nth-child(11)>a {
		border: 2px solid var(--m_meun6_color);
		border-radius: 999px;
		width: 100%;
		text-align: center;
	}

	#m_menu .depth2 {
		display: none;
	}
}

@media (max-width:768px) {
	#m_menu .gnb_box>ul>li {
		width: 100%;
	}
}


/*========================================================================
	Header Layout CSS
========================================================================*/

/* 색상 변수 */
:root {
	--header-bg: #ffffff;
	--header-border: #eaeaea;
	--gnb-text: #333333;
	--gnb-hover: #ff6b6b;
	--util-text: #777777;
	--btn-color: #ff6b6b;
}

/* Header Layout */
.header {
	width: 100%;
	/* border-bottom: 1px solid var(--header-border); */
	background: var(--header-bg);
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.header_inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	box-sizing: border-box;
}

/* Logo */
.logo img {
	height: clamp(24px, 2vw, 40px);
	display: block;
}

/* 기본프로그램 사용자모듈 메뉴 */
.all_m_btn {
	padding: 10px;
	background: #323337;
}

.all_m_btn img {
	position: absolute;
	top: 28%;
	left: 15px;
	width: 10%;
	max-width: 40px;
	cursor: pointer;
}

.all_m_btn .mutit {
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	color: #fff;
}

.pro_m_wrap {
	display: none;
	font-family: 'Nanum Gothic', sans-serif;
	transition: all 0.3s linear;
}

.pro_m_wrap .m_menu {
	width: 200px;
}

.pro_m_wrap .bg_black {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

/* 모바일 메뉴 */
.pro_m_wrap .subleftmenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pro_m_wrap .subleftmenu li {
	border-bottom: 1px solid #515155;
	background: #323337;
}

.pro_m_wrap .subleftmenu a {
	display: block;
	color: #b5b2b2;
	font-size: 14px;
	padding: 11px 5px 11px 15px;
	font-family: 'Noto Sans KR';
}

.sub_title_m {
	font-size: 28px !important;
	font-weight: bold;
	color: #fff !important;
	padding: 12px 5px 12px 15px !important;
}

.pro_m_wrap .subleftmenu a:hover {
	background: #307dd4;
	color: #fff;
}

.sub_title_m:hover {
	background: #323337 !important;
	cursor: default;
}

@media (max-width:999px) {
	.pro_m_wrap {
		display: block;
		position: absolute;
		left: -100%;
		top: 0;
		z-index: 999;
	}

	.pro_m_wrap.view {
		left: 0;
	}
}

/* =============================== GNB =============================== */
.gnb {
	display: flex;
	gap: clamp(24px, 3.8vw, 72px);
}

.gnb_list {
	display: flex;
	align-items: end;
	justify-content: center;
	gap: clamp(16px, 1.9vw, 36px);
	height: 100%;
	flex-wrap: nowrap;
	white-space: nowrap;
	min-width: min-content;
}

.gnb_list>li {
	position: relative;
	height: 100%;
	align-items: center;
	display: flex;
}

.gnb_list>li>a {
	display: inline-block;
	font-size: clamp(14px, 0.94vw, 18px);
	line-height: 1;
	color: #514E4E;
	font-family: Pretendard;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s;
}

/* 1Depth */
.depth1 {
	cursor: pointer;
}

.depth1 a {
	color: #514E4E;
	font-family: Pretendard;
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 500;
	line-height: normal;
	text-decoration: none;
	transition: color 0.3s;
	margin-top: 15px;
}

.depth1:nth-child(1):hover>a {
	color: var(--m_meun1_color);
}

.depth1:nth-child(2):hover>a {
	color: var(--m_meun2_color);
}

.depth1:nth-child(3):hover>a {
	color: var(--m_meun3_color);
}

.depth1:nth-child(4):hover>a {
	color: var(--m_meun4_color);
}

.depth1:nth-child(5):hover>a {
	color: var(--m_meun5_color);
}

.depth1:nth-child(6):hover>a {
	color: var(--m_meun6_color);
}

/* 2Depth */
.depth2 {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #eaeaea;
	min-width: clamp(120px, 9vw, 160px);
	padding: clamp(6px, 0.5vw, 10px) 0;
	display: none;
	flex-direction: column;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	white-space: normal;
}

.depth2 li:nth-child(1) {
	box-shadow: inset 0 8px 8px -8px rgba(0, 0, 0, 0.25);
}

.depth2 li a {
	display: block;
	padding: clamp(6px, 0.6vw, 10px) clamp(10px, 1vw, 15px);
	font-size: 18px;
	color: #999;
	font-family: Pretendard;
	font-weight: 500;
	text-decoration: none;
	line-height: normal;
	transition: background 0.3s, color 0.3s;
}

.gnb_list>li:hover .depth2 {
	display: flex;
	padding: 0;
}

/* hover color */
.depth1:nth-child(1) .depth2 li a:hover {
	color: var(--m_meun1_color) !important;
	text-decoration: underline;
}

.depth1:nth-child(2) .depth2 li a:hover {
	color: var(--m_meun2_color) !important;
	text-decoration: underline;
}

.depth1:nth-child(3) .depth2 li a:hover {
	color: var(--m_meun3_color) !important;
	text-decoration: underline;
}

.depth1:nth-child(4) .depth2 li a:hover {
	color: var(--m_meun4_color) !important;
	text-decoration: underline;
}

.depth1:nth-child(5) .depth2 li a:hover {
	color: var(--m_meun5_color) !important;
	text-decoration: underline;
}

.depth1:nth-child(6) .depth2 li a:hover {
	color: var(--m_meun6_color) !important;
	text-decoration: underline;
}

/* Util */
.util {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.8vw, 72px);
	font-size: clamp(12px, 0.73vw, 14px);
	height: 100%;
	justify-content: center;
}

.util a {
	color: var(--util-text);
	text-decoration: none;
	transition: color 0.3s;
	white-space: nowrap;
}

.util .divider {
	color: #ccc;
}

@media (max-width:500px) {
	.util a {
		font-size: 10px;
	}
}

/* 햄버거 버튼 */
.btn_menu {
	width: clamp(80px, 7.3vw, 140px);
	height: 100%;
	background-color: #FF8B8B;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_right__box {
	height: clamp(24px, 2vw, 40px);
	display: flex;
	align-items: end;
}

@media (max-width:1024px) {
	.gnb_list {
		display: none;
	}

	.btn_menu {
		display: flex;
	}
}




/*========================================================================
	Footer Layout CSS
========================================================================*/

.footer {
	background: #FAE3EC;
	border-top-right-radius: clamp(80px, 20vw, 400px);
	padding-top: clamp(56px, 7.5vw, 144px);
	padding-right: clamp(24px, 10.94vw, 210px);
	padding-bottom: clamp(28px, 3.75vw, 72px);
	padding-left: clamp(24px, 10.94vw, 210px);
}

.footer_inner {
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer_top__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: clamp(12px, 2vw, 32px);
}

.footer_logo img {
	height: clamp(56px, 4.58vw, 88px);
}

.privacy {
	font-size: clamp(12px, 0.68vw, 13px);
	text-decoration: none;
}

.privacy h4 {
	color: #514E4E;
	font-family: Pretendard;
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: 700;
	text-align: right;
	text-decoration: underline;
	padding-bottom: clamp(8px, 0.94vw, 18px);
	margin-bottom: 0;
}

.footer_bottom__box {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: clamp(16px, 1.98vw, 36px);
}

.footer_info {
	max-width: 600px;
	font-size: clamp(13px, 0.73vw, 14px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: clamp(16px, 1.88vw, 36px);
	line-height: 200%;
}

.footer_info p {
	color: #514E4E;
	font-family: Pretendard;
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0.8rem;
}

.footer_info p:last-child {
	margin-bottom: 0;
}

.text_bar {
	padding: 0 clamp(6px, 0.47vw, 9px);
	color: #99999933;
}

.copy_text {
	color: #999;
	text-align: start;
	font-family: Pretendard;
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: 400;
	line-height: normal;
}

.footer_right_box {
	flex: 1;
}

.footer_box {
	display: flex;
	gap: clamp(16px, 2.08vw, 40px);
	padding: clamp(16px, 1.56vw, 30px) clamp(20px, 2.60vw, 50px);
	background: #FF8B8B;
	border-radius: clamp(10px, 0.83vw, 16px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	min-height: clamp(160px, 11.25vw, 216px);
	position: relative;
}

.footer_box::after {
	background: rgba(255, 255, 252, 0.20);
	content: '';
	width: 2px;
	height: 75%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	position: absolute;
}


.footer_box .footer_section {
	flex: 1 1 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
} 

/* .footer_box .footer_section:first-child {
	border-right: 1px solid #fff;
} */

.footer_icon img {
	width: clamp(28px, 2.08vw, 40px);
	height: clamp(28px, 2.08vw, 40px);
}

.footer_text {
	text-align: center;
}

.footer_text strong {
	display: block;
	color: rgba(255, 255, 252, 0.6);
	font-family: Pretendard;
	font-size: clamp(16px, 1.04vw, 20px);
	font-weight: 900;
	margin-top: clamp(6px, 0.47vw, 9px);
}

.footer_text ul {
	margin: 0;
	padding: clamp(10px, 0.94vw, 18px) 0 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(6px, 0.94vw, 9px);
}

.footer_text ul li {
	color: #FFFFFC;
	font-family: Pretendard;
	font-size: clamp(15px, 3.2vw, 20px);
	font-weight: 700;
	line-height: normal;
	display: flex;
}

.footer_text p {
	width: 80px;
	text-align: left;
}

/* Responsive */
@media (max-width:1200px) {
	.footer_top__box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer_bottom__box {
		flex-direction: column;
		gap: clamp(16px, 2.5vw, 24px);
	}

	.footer_box {
		flex-direction: column;
		gap: clamp(12px, 2vw, 20px);
		text-align: center;
	}

	.footer_box .footer_section {
		flex: 1 1 100%;
	}

	.footer_box .footer_section:first-child {
		border-right: 0;
		border-bottom: 1px solid #fff;
		padding-bottom: clamp(8px, 1.2vw, 12px);
	}
}

@media (max-width:480px) {
	.footer_logo img {
		height: clamp(48px, 13.3vw, 64px);
	}
}

@media (max-width:344px) {
	.footer_logo img {
		height: clamp(44px, 16.2vw, 56px);
	}
}

/* Mobile depth hover */
#m_menu .depth1:nth-child(1) .depth2 li a:hover {
	color: var(--m_meun1_color) !important;
	text-decoration: underline;
}

#m_menu .depth1:nth-child(3) .depth2 li a:hover {
	color: var(--m_meun2_color) !important;
	text-decoration: underline;
}

#m_menu .depth1:nth-child(5) .depth2 li a:hover {
	color: var(--m_meun3_color) !important;
	text-decoration: underline;
}

#m_menu .depth1:nth-child(7) .depth2 li a:hover {
	color: var(--m_meun4_color) !important;
	text-decoration: underline;
}

#m_menu .depth1:nth-child(9) .depth2 li a:hover {
	color: var(--m_meun5_color) !important;
	text-decoration: underline;
}

#m_menu .depth1:nth-child(11) .depth2 li a:hover {
	color: var(--m_meun6_color) !important;
	text-decoration: underline;
}

/* Divider */
.m_menu_divider {
	height: 350px;
	border-left: 1px solid rgba(153, 153, 153, 0.2);
}

.footer_text ul {
	height: 123px;
}

@media (max-width:1024px) {
	.m_menu_divider {
		display: none;
	}
}


@media all and (max-width:1500px) {
	.footer_text ul li {
		font-size: 15px;
	}

}

@media all and (max-width:1300px) {
	.footer_box::after {
		display: none;
	}
}

@media all and (max-width:1200px) {

.footer_text ul {
	height: fit-content;
}
}