:root {
	/* color */
	--color-primary: #5CB6CA;
	--color-p-dark: #324B50;
	--color-p-light: #80cbc4;
	
	/* size */
	--padding: 5px; /* calc(var(--padding) * 3) = 15px */
	--margin: 5px;
}

/* 폰트 - 구글 나눔고딕 */
body, h1, h2, h3, h4, h5, h6 {font-family: 'Noto Sans KR', sans-serif}

/* 편집 버튼 */
.btn-edit-admin {
    z-index: 990;
    position: fixed;
    top: 120px;
    right: -1px;
    width: 130px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 1px rgba(0, 0, 0, .3);
}
.btn-edit-mode-wrap {
    position: relative;
    z-index: 20 !important;
    width: 100%
}
.btn-edit-mode {
    display: none;
    z-index: 5;
    position: absolute;
    width: 100%
}
.btn-edit-mode a {
    display: inline-block !important;
    width: auto;
    padding: 1px 8px !important;
    color: #fff !important
}

/* ::: common ::: */
body.modal-open {
    padding: 0 !important
}
.clear-after:after {
    content: "";
    display: block;
    clear: both
}
p, li {
    word-break: keep-all
}
ul {
    margin-bottom: 0
}
.transition-03 {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.color-primary {
	color: var(--color-primary);
}
.l-en {
	font-family: 'Montserrat', sans-serif;
}
/* 버튼 스타일 */
.btn-more a {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding: 8px 25px;
    color: #333;
    border-width: 0 2px 2px 2px;
    border-style: solid;
    border-color: #333
}
.btn-more a:before,
.btn-more a:after {
    content: "";
    position: absolute;
    top: 0;
    height: 2px;
    background: #333
}
.btn-more a:before {
    left: 0;
    width: 7%;
}
.btn-more a:after {
    right: 0;
    width: 83%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease
}
.btn-more a:hover:after {
    width: 100%
}
.btn-more.btn-wht a {
    border-color: #fff;
    color: #fff
}
.btn-more.btn-wht a:before,
.btn-more.btn-wht a:after {
    background: #fff
}
@media(max-width:767px) {
    .btn-more a {
        padding: 5px 20px;
        font-size: 11px
    }
}

.wrapper {
	position: relative;
	overflow: hidden;
	background-color: #eee;
}
.wrapper-inner {
	background-color: #fff;
}

.wrapper-inner.box-layout {
	max-width: 1320px;
	margin: 0 auto;
}

/* ::: Header ::: */
.header .header-inner {
	display: flex;
	flex-wrap: wrap;
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: .3s;
}
#header-fixed .header:hover {
	background-color: var(--color-primary);
}
#header-fixed .header.header-fixed-trans {
	position: fixed;
	background-color: var(--color-primary);
	box-shadow: 1px 3px 6px rgb(0 0 0 / 32%);
}
@media (min-width:992px){
	.header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	.header .header-inner {
		justify-content: space-between;
	}
}

/* header logo */
.header-logo {
	margin: 17px 0;
}
.header-logo a {
	display: block;
}
.header-logo a img {
	display: block;
	max-height: 20px;
}
.header-logo span {
	display: block;
	line-height: 20px;
	color: #fff;
}
@media (min-width:992px){
	.header-logo {
		margin: 25px 0;
	}
	.header-logo a img {
		max-height: 25px;
	}
	.header-logo span {
		line-height: 25px;
	}
}

/* nav-bar */
.gnb-wrap .gnb .gnb-nav {
	padding: 0;
	list-style: none;
}
/* gnb - mobile */
@media (max-width:991px){
	.gnb-wrap .gnb {
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 2;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		width: 85%;
		height: 100vh;
		background-color: #fff;
		box-shadow: 1px 3px 6px rgb(0 0 0 / 32%);
		transition: .3s ease-out;
	}
	.gnb-wrap .gnb.act {
		right: 0;
	}
	.gnb-wrap .gnb .mobile-box {
		padding: 20px 30px 0;
		margin-bottom: 15px;
	}
	.gnb-wrap .gnb .mobile-box .btn-close {
		position: absolute;
		top: 15px;
		right: 20px;
	}
	.gnb-wrap .gnb .mobile-box .btn-close a {
		display: block;
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 17px;
		text-align: center;
	}
	.gnb-wrap .gnb .mobile-box .login-box ul {
		padding: 0 0 15px;
		list-style: none;
		border-bottom: 2px solid var(--color-primary);
	}
	.gnb-wrap .gnb .mobile-box .login-box ul li {
		margin-right: 20px;
	}
	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child {
		margin-right: 0;
	}
	.gnb-wrap .gnb .mobile-box .login-box ul li a {
		display: block;
		position: relative;
		font-size: 12px;
	}
	.gnb-wrap .gnb .mobile-box .login-box ul li a:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: -12px;
		width: 4px;
		height: 4px;
		margin-top: -2px;
		background-color: #ccc;
		border-radius: 50% !important;
	}
	.gnb-wrap .gnb .mobile-box .login-box ul li:last-child a:after {
		display: none;
	}
	
	.gnb-wrap .gnb .mobile-box .search-box input[type="text"] {
	    width: 100%;
	    padding: 6px;
	    border: 0 none !important;
	    border-bottom: 2px solid #f00 !important;
	    color: #909090;
	    height: 50px;
	    font-size: 13px
	}
	.gnb-wrap .gnb .mobile-box .search-box .button {
	    position: absolute;
	    right: 1px;
	    top: 0;
	    padding: 0 15px;
	    height: 50px;
	    line-height: 50px;
	    font-size: 15px;
	    color: #f00;
	    background: none;
	    border: 0 none
	}
	.gnb-wrap .gnb .mobile-box .search-box .button input {
	    position: absolute;
	    top: 0;
	    right: 0;
	    padding: 0;
	    font-size: 12px;
	    line-height: 40px;
	    opacity: 0;
	    cursor: pointer
	}

	.gnb-wrap .gnb .gnb-nav > li:last-child {
		border-bottom: 0 none;
	}
	.gnb-wrap .gnb .gnb-nav > li > a {
		display: block;
		padding: 8px 30px;
		font-size: 16px;
		font-weight: 700;
	}
	.gnb-wrap .gnb .gnb-nav > li.active > a {
		color: var(--color-p-dark);
		background: none;
	}
	.gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open {
		position: absolute;
		top: 1px;
		right: 20px;
		width: 38px;
		height: 38px;
		line-height: 38px;
		margin: 0;
		padding: 0;
		text-align: center;
		border: 0 none;
		z-index: 9
	}
	.gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open:before {
		content: "\f067";
		font-family: 'Font Awesome\ 5 Free';
		font-weight: 900;
		color: #656565
	}
	.gnb-wrap .gnb .gnb-nav > li > .cate-dropdown-open:hover {
		border-top: 0
	}
	.gnb-wrap .gnb .gnb-nav > li.open > .cate-dropdown-open:before {
		content: "\f068";
		font-family: 'Font Awesome\ 5 Free';
		font-weight: 900;
		color: #000
	}
	.gnb-wrap .gnb .gnb-nav > li > ul {
		float: none;
		position: relative;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0 none;
		box-shadow: none;
		background-color: #eee;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li {
		border-bottom: 1px solid #fff;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li:last-child {
		border-bottom: 0 none;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a {
		padding: 10px 20px 10px 30px;
		font-size: 13px;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {
		color: var(--color-p-dark);
		background: none;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul {
		display: block !important;
		float: none;
		position: relative;
		width: 100%;
		padding: 0 30px 10px;
		margin: 0;
		border: 0 none;
		box-shadow: none;
		background: none;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {
		position: relative;
		padding: 3px 10px 3px 15px;
		font-size: 12px;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 2px;
		transform:translateY(-50%);
		width: 7px;
		height: 7px;
		border-left: 1px solid #bbb;
		border-bottom: 1px solid #bbb;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover, .gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {
    	color: var(--color-primary);
		background: none;
	}
}

/* gnb - pc */
@media (min-width:992px){
	.gnb-wrap {
		display: flex;
		flex-wrap: wrap;
	}
	.gnb-wrap .gnb .mobile-box {
		display: none;
	}
	.gnb-wrap .gnb .gnb-nav {
		display: flex;
		flex-wrap: wrap;
	}
	.gnb-wrap .gnb .gnb-nav > li {
		padding: 0 20px;
	}
	.gnb-wrap .gnb .gnb-nav > li > a {
		display: block;
		line-height: 75px;
		font-size: 18px;
		color:#fff;
		transition: .3s;
	}
	.gnb-wrap .gnb .gnb-nav > li > a:hover, .gnb-wrap .gnb .gnb-nav > li.active > a {
		color:var(--color-p-dark)
	}
	.gnb-wrap .gnb .gnb-nav > li > ul {
	    display: block;
	    left: 50%;
	    opacity: 0;
	    visibility: hidden;
	    min-width: 200px;
	    padding: 5px 30px;
	    margin: 0 0 0 -100px;
	    border: 0 none;
	    background-color: var(--color-primary);;
	    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
	    -webkit-transform: translateY(20px);
	    -moz-transform: translateY(20px);
	    -o-transform: translateY(20px);
	    -ms-transform: translateY(20px);
	    transform: translateY(20px);
	    -webkit-transition: all 0.25s ease;
	    -moz-transition: all 0.25s ease;
	    -o-transition: all 0.25s ease;
	    -ms-transition: all 0.25s ease;
	    transition: all 0.25s ease
	}
	.gnb-wrap .gnb .gnb-nav > li.open > ul {
	    opacity: 1;
	    visibility: visible;
	    -webkit-transform: translateY(0);
	    -moz-transform: translateY(0);
	    -o-transform: translateY(0);
	    -ms-transform: translateY(0);
	    transform: translateY(0);
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li {
	    position: relative
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a {
	    padding: 10px 0;
	    font-size: 14px;
	    color: #eee;
	    background: none;
		transitoin: .3s;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li:last-child > a {
	    border: 0 none
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a:hover,
	.gnb-wrap .gnb .gnb-nav > li > ul > li.active > a {
	    color: #fff;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > a .sub-caret {
	    position: absolute;
	    right: 10px;
	    top: 50%;
	    transform: translateY(-50%);
	    color: #909090
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul {
	    display: block !important;
	    position: relative;
	    top: inherit;
	    left: inherit;
	    min-width: 100%;
	    padding: 0 10px 5px;
	    margin-bottom: 10px;
	    border: 0 none;
	    border-left: 1px solid #ddd;
		background: none;
	    box-shadow: 0 0 0 #fff
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a {
	    padding: 5px 0 0;
	    font-size: 13px;
	    color: #eee;
	    background: none;
		transition: .3s;
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li:last-child > a {
	    border-bottom: 0 none
	}
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li > a:hover,
	.gnb-wrap .gnb .gnb-nav > li > ul > li > ul > li.active > a {
	    color: #fff;
	}    
}
@media (min-width:1200px){
	.gnb-wrap .gnb .gnb-nav > li {
		padding: 0 30px;
	}
}

/* top bar */
.top-bar {
	margin-left: auto;
}
.top-bar .top-bar-list {
	display: flex;
	flex-wrap: wrap;
	margin: 17px 5px 0 0;
}
.top-bar .top-bar-list li {
	position: relative;
	margin-left: 20px;
}
.top-bar .top-bar-list li a {
	display: block;
	line-height: 20px;
	font-size: 13px;
	color: #fff;
	transition: .3s ease-out;
}
.top-bar .top-bar-list li.mobile-nav-trigger  a {
	font-size: 20px;
}
@media (min-width:992px){
	.top-bar {
		margin-left: 0;
	}
	.top-bar .top-bar-list {
		margin-top: 25px;
	}
	.top-bar .top-bar-list li:after {
		content: "";
		display: block;
		opacity: .7;
		position: absolute;
		top: 50%;
		left: -12px;
		width: 4px;
		height: 4px;
		margin-top: -2px;
		background-color: #fff;
		border-radius: 2px !important;
	}
	.top-bar .top-bar-list li:first-child:after {
		display: none;
	}
	.top-bar .top-bar-list li a {
		line-height: 25px;
	}
	.top-bar .top-bar-list li a:hover {
		color: var(--color-p-dark);
	}
}

/*---------- Modal ----------*/
.contents-modal .modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    margin: 0;
    background: #fff
}
.contents-modal .modal-box .modal-content {
    position: relative;
    padding: 30px;
    box-shadow: 0 0 0 #fff
}
.contents-modal .modal-box .modal-content h4 {
    position: relative;
    margin: 10px 0 30px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #707070
}
.contents-modal .modal-box .modal-content h4 img {
    display: block;
    max-height: 60px;
    width: auto;
    margin: 0 auto 15px
}
/* --- 검색 모달 --- */
/* 입력창 */
.contents-modal .input-button {
    position: relative
}
.contents-modal .input-button input[type="text"] {
    width: 100%;
    padding: 6px 12px;
    border: 0 none !important;
    border-bottom: 1px solid #909090 !important;
    color: #909090;
    height: 60px;
    font-size: 18px
}
.contents-modal .input-button .button {
    position: absolute;
    right: 1px;
    top: 10px;
    padding: 0 20px;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    background: none;
    border: 0 none
}
.contents-modal .input-button .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 12px;
    line-height: 40px;
    opacity: 0;
    cursor: pointer
}
/* bottom */
.contents-modal .modal-box .contnets-bottom {
    margin-top: 30px;
    padding-bottom: 10px;
    text-align: center
}
.contents-modal .modal-box .contnets-bottom button {
    border: 0 none;
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 8px 25px;
    letter-spacing: 2px;
    color: #333;
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: #333;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease
}
.contents-modal .modal-box .contnets-bottom button span {
    position: relative;
    z-index: 1;
}
.contents-modal .modal-box .contnets-bottom button:hover {
    color: #fff;
    background-color: #333;
}
@media(max-width:767px) {
    .contents-modal .modal-box {
        width: 300px;
    }
    .contents-modal .modal-box .modal-content {
        padding: 10px
    }
    .contents-modal .modal-box .modal-content h4 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px
    }
    .contents-modal .input-button input[type="text"] {
        height: 50px;
        font-size: 16px
    }
    .contents-modal .input-button .button {
        font-size: 20px
    }
    .contents-modal .modal-box .contnets-bottom {
        margin-top: 20px
    }
}
/* --- 멤버 모달 --- */
.contents-modal .modal-box .member-list {
    display: flex;
    justify-content: center
}
.contents-modal .modal-box .member-list li {
    margin: 0 10px;
    text-align: center
}
.contents-modal .modal-box .member-list li a {
    display: block;
    width: 80px;
    padding-bottom: 10px;
    background: #eee
}
.contents-modal .modal-box .member-list li a i {
    display: block;
    padding: 20px 0;
    margin-bottom: 5px;
    font-size: 20px;
    background-color: var(--color-primary);
    color: #fff;
    transition: 0.3s ease
}
.contents-modal .modal-box .member-list li a span {
    font-size: 11px;
    color: #333
}
.contents-modal .modal-box .member-list li a:hover i {
    background-color: var(--color-p-dark);
}
@media(max-width:767px) {
    .contents-modal .modal-box .member-list li a {
        width: 70px;
    }
}

/* ::: footer ::: */
.footer {
	padding: 30px 0;
	background-color: var(--color-p-dark);
}
.footer-top .footer-top-inner {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-top .footer-top-inner h4 {
	margin: 0 0 5px;
	font-size: 15px;
	color: #fff;
}
.footer-top .footer-top-inner ul {
	display: flex;
	padding: 0;
	list-style: none;
}
.footer-top .footer-top-inner ul li {
	margin-right: 10px;
}
.footer-top .footer-top-inner ul li a {
	font-size: 11px;
	color: #ddd;
}
@media (min-width:992px){
	.footer {
		padding: 50px 0;
	}
	.footer-top .footer-top-inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding-bottom: 20px;
		margin-bottom: 35px;
	}
	.footer-top .footer-top-inner h4 {
		margin: 0 30px 0 0;
		font-size: 20px;
	}
	.footer-top .footer-top-inner ul li a {
		font-size: 14px;
		transition: .3s;
	}
	.footer-top .footer-top-inner ul li a:hover {
		text-decoration: underline;
		color: #fff;
	}
}

.footer-mid .footer-info-content {
	margin-bottom: 10px;
}
.footer-mid .footer-info-content address {
	margin-bottom: 5px;
	color: #fff;
}
.footer-mid .footer-info-content > div {
	margin-top: 5px;
	color: #ddd;
}
.footer-mid .footer-info-content > div span {
	margin-left: 10px;
	color: #fff;
}
.footer-mid .footer-info-content > div a {
	color: var(--color-primary);
	transition: .3s;
}
.footer-mid .sns-list {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
}
.footer-mid .sns-list li {
	margin-right: 10px;
}
.footer-mid .sns-list li a {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-size: 13px;
	color: var(--color-p-dark);
	background-color: #fff;
	transition: .3s;
}
.footer-btm .copyright {
	margin: 20px 0 0;
	font-size: 11px;
	font-weight: 300;
	color: #fff;
}
@media (min-width:992px){
	.footer-mid .footer-info-content address {
		margin-bottom: 10px;
		font-size: 15px;
	}
	.footer-mid .footer-info-content > div span {
		font-size: 15px;
	}
	.footer-mid .footer-info-content > div a:hover {
		color: var(--color-p-light);
	}
	.footer-mid .sns-list {
		justify-content: flex-end;
	}
	.footer-mid .sns-list li {
		margin: 0 0 0 10px;
	}
	.footer-mid .sns-list li a:hover {
		color: #fff;
		background-color: var(--color-primary)
	}
	.footer-btm .copyright {
		font-size: 13px;
	}
}

/* ::: Board Title % submenu ::: */
/* board title */
.board-title {
    position: relative;
}
.board-title-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}
.board-title-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center
}
.board-title-caption h2 {
    position: relative;
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px
}
.board-title-caption .breadcrumb {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: none;
    color: #ddd
}
.board-title-caption .breadcrumb li,
.board-title-caption .breadcrumb a {
    font-size: 13px;
    color: #eee
}
.board-title-caption .breadcrumb a:hover {
    color: #ffa421
}
@media(min-width:992px) {
	.board-title-image {
	    height: 300px;
    }
    .board-title-caption h2 {
        font-size: 28px
    }
}
/* submenu */
.submenu {
    position: relative;
    padding-left: 45px;
    margin-bottom: 40px;
    border: 1px solid #E5E5E5;
    background-color: #fff
}
.submenu .sub-home-link a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    background: #1b1b1b;
    color: #fff
}
.submenu .sub-home-link a:hover {
    background-color: var(--color-p-dark);
}
.submenu .submenu-title {
    position: relative;
    min-width: 200px;
    padding: 0 20px;
    cursor: pointer
}
.submenu .submenu-title:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #e5e5e5
}
.submenu .submenu-title:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999
}
.submenu .submenu-title h2 {
    margin: 0;
    height: 45px;
    line-height: 45px;
    font-size: 15px
}
.submenu .list-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #fff
}
.submenu .list-submenu li {
    margin: 0
}
.submenu .list-submenu li a {
    display: block;
    padding: 10px 20px
}
.submenu .list-submenu li a:hover {
    color: #ffa421
}
@media(max-width:767px) {
    .submenu {
        border-width: 1px 1px 0 0
    }
    .submenu .sub-home-link {
        position: absolute;
        top: 0;
        left: 0
    }
    .submenu .submenu-title {
        border-bottom: 1px solid #e5e5e5
    }
    .submenu .submenu-title:before {
        left: 0
    }
}
@media(min-width:768px) {
    .submenu {
        display: flex;
        padding-left: 0;
    }
    .submenu .sub-home-link a {
        width: 60px;
        height: 60px;
        line-height: 60px
    }
    .submenu .submenu-title:before {
        right: 0
    }
    .submenu .submenu-title.submenu-title-second {
        margin-left: -1px
    }
    .submenu .submenu-title h2 {
        height: 60px;
        line-height: 60px
    }
    .submenu .list-submenu li a {
        padding: 15px 20px
    }
}

/* ::: index ::: */
.section-3 {
	margin: 40px 0;
}
@media (min-width:992px){
	.section-3 {
		margin: 60px 0;
	}
}

/* ::: basic body ::: */
.sub-basic-body {
	padding: 30px 0;
}
@media (min-width:992px){
	.sub-basic-body {
		padding: 40px 0;
	}
}

/* fake loader */
.page-loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	transition: .6s ease-out;
}
.page-loader.loaded {
	opacity: 0;
	z-index: -1;
}
.page-loader img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 60px;
	width: auto;
}