/* main css */
body::-webkit-scrollbar,
.section-wrap::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body,
.section-wrap {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.mousescroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    text-align: center;
    color: #3baced;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 11px;
    transition: all 250ms;
}

.mousescroll.fixed {
	position:fixed;
}

.mousescroll .mouse {
    width: 25px;
    height: 45px;
    border-radius: 20px;
    border: 4px solid #3baced;
    position: relative;
    margin: auto;
    z-index: 100;
}


.mousescroll .mouse .wheel {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3baced;
    top: 5px;
    left: 50%;
    margin-left: -3px;
    animation: wheel 1s ease-out infinite;
}

@keyframes wheel {
	0% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	50% {
		transform: translate3d(0, 10px, 0);
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

.mousescroll .mouse::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background-color: rgba(59, 172, 237, 0.61);
    position: absolute;
    left: 50%;
    margin-left: -.5px;
    top: 60px;
}

.mousescroll.b .mouse::after {
	background-color:#641741;
}

.vertical-section {
  !height: 100vh;
  !display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-container {

}



.section01 {
	position: relative;
	display: flex;
	padding-top: 100px;
	justify-content: center;
	height: 100vh;
}
.sec01_left {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 50px;
	background-image: url("../img/main/sec01_left_n.png");
	width: 1920px;
	height: calc(100vh - 100px);
}
.sec01_bottom {
	position: absolute;
	bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	gap: 0;
}
.sec01_bottom > div {
	width: 319px;
	height: 182px;
}



section .row {
	max-width:1040px;
	margin: auto;
	padding: 100px 20px;
	text-align:center;
}

section .row > h6 {
	!display:inline-block;
	font-size:50px;
	margin-bottom: 80px;
	position:relative;
}

section .row > h6::after {
	position: absolute;
	content: '';
	display: inline-block;
	width: 40px;
	height: 4px;
	background-color: #5ea9ea;
	top: 100px;
	left: 50%;
	margin-left: -20px;
}

.sub_f {
	margin-top: 30px;
	font-size: 13px;
	color: #858585;
	text-align: left;
}

.sub_f dl {
	margin-bottom: 3px;
	!font-family:'NotoSansKR-Light';
}

.sub_f dt {
	width: 20px;
	text-align: center;
}

.sub_f dd {
	width: 90%;
	-webkit-width: calc( 100% - 20px );
	-moz-width: calc( 100% - 20px );
	width: calc( 100% - 20px );
	float: left;
}


















/* Layer Popup 메인화면 팝업입니다. 삭제금지*/
.layerPopup .layerBox a { display: block}
.modal-today { display: flex; align-items: center; padding: 10px 20px; background: #fff}
.modal-today .checkboxSet { display: flex; align-items: center}
.modal-today .checkboxSet input[type=checkbox] { margin-top: 2px}
.modal-today .checkboxSet label { display: block; font-size: 14px; color: #666; margin-left: 5px; cursor: pointer}
.modal-today .modalClose { font-size: 14px; color: #666; margin-left: auto}


@media screen and (max-width: 750px) {
	.nav-wrap {
		display: none !important;
	}
	.section01 {
		flex-direction: column;
		padding-top: 125px;
	}
	.sec01_left {
		width: 100vw;
		height: calc(100vh - 125px);
		background-size: cover;
		background-position: center;
		padding-top: 100px;
	}
	.sec01_bottom {
		bottom: 0;
		padding-bottom: 40px;
		width: 100vw;
		flex-wrap: wrap;
		background: linear-gradient(
				to top,
				rgba(0, 0, 0, 1) 0%,
				rgba(0, 0, 0, 0) 100%
		);
		gap: 15px;
	}
	.sec01_bottom > div {
		width: 300px;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}