/* sub css */
.parallax {
	position:relative;
	margin-top: 100px;
	height: 530px;
	overflow:hidden;
}

.parallax .bg {
	position:absolute;
	background-image:url('../img/sub/parallax_bg.jpg');
	height: 530px;
	background-position:center;
	background-size:cover;
	width: 100%;
	animation: zoomOut 4.8s .2s ease both;
}

@keyframes zoomOut {
	0% {
		transform:scale3d(1.08, 1.08, 1.08);
	}

	100% {
		transform:scale3d(1, 1, 1);
	}
}

.parallax .text__ {
	color:#fff;
	position:absolute;
	left: 50%;
	top: 50%;
	transform:translate(-50%, -50%);
	font-size:30px;
	text-align:center;
	animation: sub-text 1.5s .2s ease-in-out both;
}

.parallax .text__ h2 {
	font-family:'Montserrat-Regular';
	font-size:65px;
}

.parallax .text__ h3 {
	font-family:'NotoSansKR-Light';
	font-size:25px;
	margin-top: -10px;
}

/*.parallax .row {
	position:relative;
	height:100%;
}

.parallax p {
	position:absolute;
	left: 50%;
	top: 50%;
	transform:translate(-50%, -50%);
	animation: sub-text 1.5s ease-in-out both;
}*/

@keyframes sub-text {
	0% {
		clip:rect(0,500px,0,0);
	}

	100% {
		clip:rect(0,500px,150px,0);
	}
}

.overflow {
	position:absolute;
	width: 1100px;
	left: 50%;
	bottom: 0;
	margin-left: -550px;
	z-index: 99;
	max-width:1100px;
	background-color: #fff;
	text-align:center;
	height: 60px;
	/* overflow: hidden; */
}

.overflow ul.route {
	display:flex;
	position:relative;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
}

.overflow ul.route li {
	position:relative;
	white-space: normal;
	padding: 0 25px;
}

.overflow ul.route li::after {
	position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background-color: #6b6b6b;
    top: 50%;
    margin-top: -5px;
    right: 0;
}

.overflow ul.route li:last-child::after {
	display:none;
}

.overflow ul.route li a {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: #000;
	transition-duration: 400ms;
}

.overflow ul.route li a:hover,
.overflow ul.route li a.active {
	color:#c20413;
}

.route_menu_wrap {
	position:relative;
	background-color: #197999;
}

.route_menu {
	position:relative;
	max-width:1100px;
	margin: auto;
	display:flex;
	z-index: 99999;
}

.route_menu > li {
	position:relative;
	width: calc((100% - 70px) / 2);
}

.route_menu > li:last-child {
	!margin-left: -1px;
}

.route_menu > li.rmenu {
	position:relative;
	max-width: 300px;
}

.route_menu > li.rmenu::after {
	position:absolute;
	content:'';
	display:block;
	width: 1px;
	height: 100%;
	background-color:#7fafbf;
	top: 50%;
	right: 0;
	transform:translateY(-50%);
}

.route_menu > li.rmenu > a {
	display:block;
	line-height:70px;
	padding-left: 30px;
	cursor:pointer;
	font-size:18px;
	color:#fff;
	width: 100%;
	font-family:'NotoSansKR-Regular';
}

.route_menu > li.rmenu.off > a {
	cursor:default;
}

.route_menu > li.rmenu.off span {
	display:none;
}

.route_menu > li.rmenu .arrow {
	position:absolute;
	top: 50%;
	transform:translateY(-50%);
	right: 20px;
	transition:all 300ms;
	width: 10px;
	height: 14px;
	background-image:url('../img/sub/icon_arrow.png?new');
	background-size:100%;
	background-position:center;
}

.route_menu > li.rmenu .arrow img {
	opacity: 0;
}

.route_menu > li.rmenu.active .arrow {
	transform:rotate(180deg)translateY(50%);
}

.route_menu > li.rmenu .rsub_menu {
	display:none;
	background-color:#197999;
	color: #fff;
	width: 100%;
	position:absolute;
	font-size:16px;
	z-index: 99999;
	border-top:1px solid #7fafbf;
	!margin-left: -1px;
}

.route_menu > li.rmenu > a.line2 {
	line-height: 130%;
	margin-top: 11px;
	margin-bottom: 12px;
}

.route_menu > li.rmenu .rsub_menu li a {
	display:block;
	color:#fff;
	padding: 15px 0;
	padding-left: 30px;
	border:1px solid #7fafbf;
	border-top:0px;
	font-family:'NotoSansKR-Regular';
}

.route_menu > li.rmenu .rsub_menu li a:hover {
	font-family:'NotoSansKR-Bold';
}

.route_menu > li.rmenu .rsub_menu li a.active {
	display:none;
}

.route_menu .home {
	width: 70px;
}

.route_menu .home a {
	display:block;
	background-color:#023e7a;
	width: 70px;
	height: 70px;
	line-height:70px;
	text-align:center;
}

.container {
	padding: 80px 0;
	text-align:center;
}

.container .row {
	max-width:1240px;
	margin: auto;
	padding: 0 20px;
	text-align:center;
}

.container .row > h6 {
	font-size:50px;
	margin-bottom: 100px;
	position:relative;
}

.container .row > h6::after {
	position:absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 40px;
	content:'';
	display:block;
	width: 40px;
	height: 2px;
	background-color:#000;
}

.sub_f {
	margin-top: 30px;
	font-size: 14px;
	color: #2f2f2f;
	text-align: left;
	background-color:#f4f4f4;
	padding: 40px;
	padding-left: 150px;
	background-image:url('../img/sub/sub_f_img.png?new');
	background-position: 40px center;
	font-family:'NotoSansKR-Regular';
}
@media screen and (max-width: 720px) {
	.sub_f {
		font-size: 12px !important;
		padding-left: 128px;
	}
}

.sub_f dl {
	margin-bottom: 3px;
	display:flex;
}

.sub_f dt {
	padding-right: 5px;
}

.news-zone {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}

.news-zone li {
	max-height: 435px;
	margin-bottom: 40px;
}

.news-zone li {
	position:relative;
	width: 31%;
	margin-right: 2%;
	text-align:left;
}

.news-zone li a:hover {
	
}

.news-zone li a .inner:hover {
	border:1px solid #2c3d47; 
	-webkit-transform: scale(1.03); 
	transform: scale(1.03); -webkit-transition: all 0.2s ease-out; 
	transition: all 0.2s ease-out; -webkit-box-shadow: 20px 30px 50px 8px black; 
	box-shadow: 0px 20px 30px 8px rgba(0,0,0,.1);}
}


.news-zone li:nth-child(3n) {
	margin-right: 0;
}

.news-zone li a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.news-zone li .thumbnail img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
}

.news-zone li .thumbnail {
	width: 100%;
	height: 190px;
	max-height: 190px;
	flex: 1;
}

.news-zone li .content {
	width: 100%;
	height: 245px;
	max-height: 245px;
	flex: 1;
	padding: 30px;
	letter-spacing:-1px;
	border:1px solid #d5d5d5;
}

.news-zone li .content .news-title {
	font-size:20px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 55px;
	margin-bottom: 20px;
	line-height:140%;
	color: #5f5e5e;
}

.news-zone li .content .news-content {
	font-size:14px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 65px;
	margin-bottom: 20px;
}

.news-zone li .news-info {
	display: flex;
	justify-content: space-between;
	font-size:13px;
}

.indicator {
	display:flex;
	justify-content: center;
	margin-bottom: 20px;
}

.indicator ul { display:flex;}

.indicator li { margin:0 2px}
.indicator li a { 
	display:flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	font-weight: normal;
}

.indicator li a:hover, .indicator li a.active {
	background-color: #006a8e;
	border: 1px solid #006a8e;
	color: #fff;
}

/* .tab {
	margin-bottom: 60px;
}

.tab li {
	display:inline-block;
}

.tab li a {
	display:inline-block;
	width: 200px;
	text-align:center;
	height: 70px;
	line-height:70px;
	border:1px solid #AC6A3A;
	color:#AC6A3A;
	cursor:pointer;
	font-size:25px;
}

.tab li.on a,
.tab li a:hover {
	background-color:#AC6A3A;
	color:#fff;
} */


/*관심고객등록*/
input[type=checkbox],
input[type=radio] {
   display: inline-block;
   width: 18px;
   height: 18px;
   border: 1px solid #aaa;
}

input[type=radio] {
   border-radius: 100%;
}

select {
   border: 1px solid #ccc;
   padding-left: 0.3em;
}

.reg_tit {
   font-size: 20px;
   letter-spacing: -1px;
}

 .reg_sub {
   margin-top: 10px;
   letter-spacing: -1px;
}

 label {
   display: inline-block;
   line-height: 18px;
}

 .hypen {
   display: inline-block;
   width: 15px;
   text-align: center;
   line-height: 35px;
}

 .inp {
   border: 1px solid #ccc;
   font-size: 16px;
}

 .reg_cont1 {
   margin-bottom: 20px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.15);
   text-align: left;
}

 .reg_cont2 {
   padding: 30px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

 .reg_cont3 {
   margin-top: 30px;
}

 .terms {
   margin-top: 30px;
   padding: 25px;
   overflow-y: scroll;
   background: #fff;
   color: #555;
   height: 266px;
   border: 1px solid #F2F0ED;
   letter-spacing: -0.09rem;
   text-align: left;
}

 .terms::-webkit-scrollbar {
   width: 6px;
   display: block !important;
}

 .terms::-webkit-scrollbar-thumb {
   height: 30%;
   background: #ccc;
   border-radius: 10px;
}

 .terms::-webkit-scrollbar-track {
   background: transparent;
}

 .terms .terms_box .terms_tit {
   color: #333;
   font-family:'NotoSansKR-Medium';
   margin: 10px 10px 10px 0;
}

 .terms .terms_box .terms_cont {
   letter-spacing: -0.5px;
   line-height: 21px;
   font-weight: 400;
}

 .terms_cont table {
   width: 100%;
   border-top: 1px solid #dbdbdb;
   border-bottom: 1px solid #dbdbdb;
}

 .terms_cont table th,  .terms_cont table td {
   padding: 15px 0;
   color: #121212;
   vertical-align: middle;
   text-align: center;
}

 .terms_cont table th + th,
 .terms_cont table td + td {
   border-left: 1px solid #dbdbdb;
}

 .terms_cont table thead th {
   background: #f7f7f7;
   font-weight: normal;
}

 .terms_cont table tbody td {
   border-top: 1px solid #dbdbdb;
}

 .reg_cont2 .aggreement {
	 letter-spacing: -1px;
 }

 .reg_cont2 .aggree,  .reg_cont2 .checks_box {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   margin-bottom: 7px;
}

 .reg_cont2 .aggree .checks_box .checks {
   margin-left: 15px;
}

 .reg_cont3 .table_wrap {
   width: 100%;
}

 .reg_cont3 .table_wrap form {
   width: 100%;
}

 .table_wrap table {
   width: 100%;
   border: 0;
   border-spacing: 0;
   border-collapse: collapse;
   table-layout: fixed;
}

 .table_wrap table tr:nth-of-type(1) {
   border-top: 1px solid #dbdbdb;
}

 .table_wrap table tr th {
   background: #fff;
   color: #000;
   width: 165px;
}

 .table_wrap table tr th,  .table_wrap table tr td {
   padding: 17px 30px;
   font-weight: 700;
   line-height: 150%;
   letter-spacing: -0.03em;
}

 .reg_cont3 .table_wrap table tr th {
   background: #f6f6f6 !important;
}

 .reg_cont3 .table_wrap table tr td {
   background-color: #fff;
   padding: 10px 20px;
}

 .reg_cont3 .table_wrap table tr:last-child p {
   margin-bottom: 8px;
}

 .reg_cont3 .table_wrap table tr td p {
   max-width: 540px;
   width: 100%;
   margin: 0;
}

 .reg_cont3 .table_wrap table tr td input,  .reg_cont3 .table_wrap table tr td select {
   font-weight: 400;
   border: none;
   outline: none;
   -webkit-box-sizing: border-box;
           box-sizing: border-box;
   display: inline-block;
   width: 100%;
   border: 1px solid #ccc;
   color: #000;
   padding: 9px 15px;
   vertical-align: middle;
}

 .reg_cont3 .table_wrap table tr td input::-webkit-input-placeholder {
   color: #000;
}

 .reg_cont3 .table_wrap table tr td input::-moz-placeholder {
   color: #000;
}

 .reg_cont3 .table_wrap table tr td input:-ms-input-placeholder {
   color: #000;
}

 .reg_cont3 .table_wrap table tr td input::-ms-input-placeholder {
   color: #000;
}

 .reg_cont3 .table_wrap table tr td input::placeholder {
   color: #000;
}

 .reg_cont3 .table_wrap table tr td #p1,  .reg_cont3 .table_wrap table tr td #p2,
 .reg_cont3 .table_wrap table tr td #p3 {
   max-width: 160px;
}

 .reg_cont3 .table_wrap form .phone,
 .reg_cont3 .table_wrap form .adress {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

 select#p1,  select.sel_host {
   -o-appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background: url(/assets/img/arrow_down.png);
   background-repeat: no-repeat;
   background-position: 90% 14px;
   background-size: 16px;
}

 select.sel_host {
   max-width: 160px;
}

 select#p1 option,  select.sel_host option {
   color: #000;
}

 .reg_cont3 .table_wrap form .adress {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

 .reg_cont3 .btn_wrapper {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   margin-top: 40px;
}

 .reg_cont3 .btn_wrapper #submit {
   cursor: pointer;
   padding: 15px 70px;
   color: #666;
   border: 1px solid #666;
   background-color: #fff !important;
   font-weight: 700;
}

 .reg_cont3 .btn_wrapper #cancle {
   cursor: pointer;
   padding: 15px 88px;
   color: #666;
   border: 1px solid #666;
   background-color: #fff !important;
   font-weight: 700;
   margin-left: 10px;
}

 .asreg_count2 .pl_type .acreage_box .checks input {
   width: auto;
}

 .reg_cont3 .table_wrap .acreage_box {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

 .reg_cont3 .table_wrap .acreage_box .checks {
   width: 20%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

 .reg_cont3 .table_wrap .acreage_box .checks:last-child {
   margin-left: 82px;
}

 .reg_cont3 .table_wrap .acreage_box .checks label {
   margin-left: 7px;
   font-weight: 300;
}

 .ori_txt {
   background-color: rgb(242, 240, 237);
   padding: 25px 30px;
}

 .ori_txt p {
   color: rgb(128, 124, 121);
   line-height: 150%;
   margin-bottom: 7px;
}

 .ori_txt p:last-child {
   margin-bottom: 0;
}

 .subscription_tabs li + li {
   border-left: 0;
}

 .board_write_form {
   width: 100%;
}

 .board_write_form .form_field {
   border-bottom: 1px solid #909090;
}

 .board_write_form .form_field th,  .board_write_form .form_field td {
   border-bottom: 1px solid #909090;
}

 .board_write_form .form_field th {
   width: 120px;
   text-align: left;
   padding: 20px;
   padding-left: 40px;
   vertical-align: middle;
}

 .board_write_form td.field {
   padding: 20px;
   text-align: left;
}

 .board_write_form td.field.type span,
 .board_write_form td.field.age span {
   display: inline-block;
   margin-right: 30px;
}

 .board_write_form td.field span label {
   cursor: pointer;
}

 .board_write_form .buttons {
   text-align: center;
   margin-top: 30px;
}

 .board_write_form .buttons a.confirm {
   background-color: #006B8E;
   color: #fff;
   display: inline-block;
   width: 220px;
   height: 66px;
   line-height: 66px;
   font-size: 20px;
}

 .board_write_form input[type=text],
 .board_write_form input[type=tel],
 .board_write_form select {
   height: 35px;
}

 .w120,
 .board_write_form select {
   width: 120px;
}

 .w500 {
   width: 500px;
}

 .board_write_form .form-group:nth-of-type(2) {
   margin: 5px 0;
}

 .wrap_slt {
   display: inline-block;
   margin-right: 2px;
}
