@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
}

body{
	margin-left: 75;
	margin-right: 75;
	background-size: cover;
	background-attachment: fixed;
	min-height: 100vh;
}

h1{
	animation: type 3s steps(57);
	overflow: hidden;
	white-space: nowrap;
	color: black;
	border-right: 4px solid black;
	width: 57ch;
}

.footerhref{
	color: #000;
	size: 10px;
}

@keyframes type {
	0%{
		width: 0ch;
	}
	100%{
		width: 57ch;
	}
}


.footbox{
	margin: 0;
	width: 100%;
	padding-bottom: 30px;
	padding-top: 100px;
}

.buttonnav {
  background-color: #d1ded4;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 4px 2px;
  border-radius: 12px;
}

.buttonnav:hover {
  background-color: grey;
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 4px 2px;
  border-radius: 12px;
}






section .box{
	position: relative;
	float: left;
	margin: 10px;
	width: 100%;
	max-width: 100%;
	padding: 50px;
	overflow: hidden;
	color: #000;
	border-radius: 25px 25px 25px 25px;
}

section .box:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #d1ded4;
}

section .box h2{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 38px;
	z-index: 2;
}

section .box p{
	position: relative;
	margin: 0 0 20px;
	padding: 0;
	font-size: 18px;
	z-index: 2;
}


section .box2{
	position: relative;
	width: 100%;
	float: left;
	margin: 10px;
	max-width: 100%;
	padding: 50px;
	overflow: hidden;
	color: #000;
	border-radius: 25px 25px 25px 25px;
}

section .box2:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #d1ded4;
}

section .box2 h2{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 38px;
	z-index: 2;
}

section .box2 p{
	position: relative;
	margin: 0 0 20px;
	padding: 0;
	font-size: 18px;
	z-index: 2;
}

section .box3{
	position: relative;

	width: 100%;
	float: left;
	margin: 10px;
	max-width: 100%;
	padding: 50px;
	overflow: hidden;
	color: #000;
	border-radius: 25px 25px 25px 25px;
}

section .box3:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #d1ded4;
}

section .box3 h2{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 38px;
	z-index: 2;
}

section .box3 p{
	position: relative;
	margin: 0 0 20px;
	padding: 0;
	font-size: 18px;
	z-index: 2;
}

section .box4{
	position: relative;
	width: 100%;
	float: left;
	margin: 10px;
	max-width: 100%;
	padding: 50px;
	overflow: hidden;
	color: #000;
	border-radius: 25px 25px 25px 25px;
}

section .box4:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #d1ded4;
}

section .box4 h2{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 38px;
	z-index: 2;
}

section .box4 p{
	position: relative;
	margin: 0 0 20px;
	padding: 0;
	font-size: 18px;
	z-index: 2;
}

section .box5{
	position: relative;
	width: 100%;
	margin: 10px;
	max-width: 100%;
	padding: 50px;
	overflow: hidden;
	color: #000;
	border-radius: 25px 25px 25px 25px;
}

section .box5:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background-color: #d1ded4;
}

section .box5 h2{
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 38px;
	z-index: 2;
}

section .box5 p{
	position: relative;
	margin: 0 0 20px;
	padding: 0;
	font-size: 18px;
	z-index: 2;
}

div {
	margin: auto;
 	opacity: 0.85;
}

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.6s;
	padding: 0px 100px;
	z-index: 100000;
}

header.sticky{
	padding: 0px 100px;
	background: #F2F5F2;
}

header .logo{
	position: relative;
	transition: 0.6s;
}

header ul{
	position: relative;
	display: flex;
	width: 30%;
	justify-content: center;
	align-items: center;
}

header ul li{
	position: relative;
	list-style: none;
	justify-content: center;
	width: 100%;

}

header ul li a{
	position: relative;
	margin: 0 15px;
	text-decoration: none;
	color: #fff;
	letter-spacing: 2px;
	font-weight: 500px;
	transition: 0.6s;
}
header ul li a:hover{
	text-decoration: none;
}

.banner{
	margin: auto;
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
}

header.sticky ul li a{
	color: #fff;
}




.container .input{
	border: none;
	outline: none;
	color: #8b7d77;
}

.search_wrap{
	width: 500px;
	margin: 38px auto;
}

.search_wrap .search_box{
	position: relative;
	width: 500px;
	height: 60px;
}

.search_wrap .search_box .input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10px 20px;
	border-radius: 3px;
	font-size: 18px;
}

.search_wrap .search_box .btn{
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	background: #3da938;
	z-index: 1;
	cursor: pointer;
}

.search_wrap .search_box .btn:hover{
	background: #696969;	
}

.search_wrap .search_box .btn.btn_common .fas{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 20px;
}


.search_wrap.search_wrap_6 .search_box .input{
	border-radius: 50px;
}



.search_wrap.search_wrap_6 .search_box .btn{
	width: 125px;
	height: 45px;
	top: 8px;
	right: 5px;
	border-radius: 3px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search_wrap.search_wrap_6 .search_box .btn{
	border-radius: 25px;
}


.search_wrap.search_wrap_6 .search_box .input{
	padding-right: 145px;
}

.cool-link::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: black;
	transition: width .3s
}

.cool-link:hover::after{
	width: 100%;
	transition: width .3s
}

li {
	display: inline-block;
}

li a {
	text-decoration: none;
	display: inline-block;
	color: black;
	font-weight: lighter;
	font-size: 16px;
	padding: 0 20px
}



table{
margin-right: 15;
margin-left: 0;
 width: 100%; 
 z-index: 2;
 opacity: 0.75;
 border-collapse: collapse;
 border-spacing: 10;
 box-shadow: 0 0px 2px black;
 border-radius: 22px 22px 22px 22px;
 overflow: hidden;
 background-color: #fff;
}
td , th{
 padding: 15px 20px;
 text-align: left;
 width: 20%;

}
th{
	width: 100%;
 background-color: #d1ded4;
 font-family: 'Open Sans',Sans-serif;
 font-weight: 200;
 text-transform: uppercase;
 

}
tr{
 width: 100%;
 background-color: #dfdfdf00;
 font-family: 'Montserrat', sans-serif;
}
tr:first-child{
	border-top: 1px solid #878787;
}
tr:nth-child(even){
	width: 100%;
 background-color: #d1ded4;
 }

 @media(max-width: 500px){
 	.table thead{
 		display: none;
 	}

 	.table, .table tbody, .table tr, .table td{
 		display: block;
 		width: 100%;
 	}
	
 }
 @media(max-width: 1130px){
	 #mtable{
		 border: 1px solid #878787;
	 }
	.login-page{
		flex-direction: column-reverse;
	}

	.searchbg{
		background-image: none !important;
		background-color: #F2F5F2
	 }

	.footer-page{
		flex-direction: column;
	}

	.footer-left,
 	.footer-right{
		 padding-bottom: 30px;
		 text-align: center !important;
 	}


	.left,
 	.right{
		 padding-bottom: 30px;
 	}

	.footer-logo{
		border-left: none !important; 
		padding-left: 0px !important;
	}
   
}

 .table-wrapper{
	overflow-x: auto;
}
.wrapper{
	display: flex;
	align-items: center;
	flex-direction: column;
}
.locality-dropdown{
	width: 100%;
    border: 1px solid black;
    padding: 18.6px;
    border-radius: 30px;
	cursor: pointer;
	margin-left: 10px;
}
.locality-dropdown:active{
outline: none;
}
#clear-filter{
	cursor: pointer;
	border-radius: 50%;
    background: grey;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    position: relative;
    margin: 20px 10px;
}
.country-flag{
	width: 20px;
	margin-right: 10px;
}
 .country-div{
	 display: flex;
	 justify-content: center;
	 padding: 20px 0;
	 height: 100%;
 }
 .filter-wrapper{
	 display: flex;
	 align-items: center;
 }

 .login-page{
	 display: flex;
	 justify-content: space-between;
	 /* align-items: center; */
	 padding-top: 120px;
 }

 .searchbg{
	/* background-image: linear-gradient(to bottom, transparent 400px, #F2F5F2 850px),linear-gradient(to right, transparent , #F2F5F2), url(leinew.png);  */
	background-image: url(leinew.png);
	background-size: cover;
 }
 
 .left,
 .right{
	 flex: 1;
	 text-align: center;
	 margin: 0;
 }

 .footer-page{
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	padding-top: 120px;
}

 .footer-left,
 .footer-right{
	 flex: 1;
	 text-align: left;
	 margin: 0;
 }

 .footer-logo{
	border-left: solid lightgray 1px; 
	padding-left: 20px;
 }

 .form{
	 margin-top: 20px;
	 width: 500px;
	 padding: 40px;
	 border-radius: 20px;
	 background-color: white;
	 box-shadow: 0 2px 10px -3px #333;
 }
 .form input{
	 border: 0;
	 border-bottom: 1px solid black;
	 width: 100%;
	 font-size: 18px;
	 padding: 10px	;
	 margin: 20px 0;
 }
 .form input:focus{
	 outline: none;
 }
 .form .submit-btn, .modal-dialog .submit-btn{
	display: block;
    width: 100%;
    border-radius: 25px;
    border: 0;
    padding: 15px;
    margin-top: 20px;
    cursor: pointer;
	background-color: #3da938;
	color: white;
	font-size: 16px;
 }
 .form .submit-btn:hover{
	 background-color: #696969;
 }
 .form .checkbox-div input{
	 width: auto;
	 margin-right: 10px;
 }
 .form .checkbox-div{
	 display: flex;
	 align-items: center;
	text-align: left;
    padding-left: 10px;
 }
  .fields{
	  display: flex;
  }
  .fields input:first-child{
	  margin-right: 10px;
  }
  .forgot-wrapper{
	  text-align: right;
  }
  .country-dropdown{
	border: 0;
    border-bottom: 1px solid black;
    /* height: 66.5px; */
    width: 100%;
	font-size: 18px;
    padding: 10px;
    margin: 20px 0;
  }
  .forgot-wrapper .btn{
	background: transparent;
	color: black;
	border: 0;
	cursor: pointer;
	padding: 0;
	font-size: 14px;
  }
  .forgot-wrapper .btn:focus, .btn:active, .btn:focus:active{
	  background: transparent;
	  border: 0;
	  outline: none;
	  color: black;
	  box-shadow: none;
  }

  .modal .modal-dialog{
	  background: white;
	  top: 25%;
	  opacity: 1;
	  border-radius: 10px;
  }
  .modal .form{
	  box-shadow: none;
	  width: auto;
	  padding: 0;
	  width: 100%;
  }
  .modal .form input{
	  margin: 0;
  }
  .modal-dialog .submit-btn{
	width: auto;
    margin: 0;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 14px;
    position: relative;
    top: 2px;
  }
  #search-list-wrapper{
	  padding-top: 20px;
  }
  #search-list-wrapper .search-item{
	  font-size: 14px;
	  color: black;
	  padding-right: 10px;
  }
  .field-icon {
	float: right;
	/* margin-left: -25px; */
	/* margin-top: -25px; */
	position: relative;
	z-index: 2;
	top: -50px;
  }
 