#title{
  width: 100%;
  height: 400px;
  background-image: url(../img/Q.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#title h1{
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 3px;
}

.cont1{
  width: 80%;
  height: 100%;
  position: relative;
  margin: 20px auto 100px;
  background-color: #fff;
  padding: 50px 100px;
  box-shadow: 5px 5px 10px #babebc;
  border-radius: 20px;
}
.cont1-inner{
  display: flex;
  flex-direction: row;
}

.cont1-img{
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cont1-img .cont-logo{
  height: 35px;
  margin-bottom: 20px;
}
.cont1-img .cont-logo img{
  height: 100%;
}

.cont1-img .cert-img{
  height: 150px;
}
.cont1-img .cert-img img{height: 100%;}



.cont1-text{
  text-align: center;
  width: 80%;
  height: 100%;
  min-height: 300px;
}
.cont1-text h2{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.cont1-text span{
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  padding-bottom: 80px;
  display: block;
}

.cert-badge{
  width: 80%;
  float: right;
  text-align: center;
}
.cert-badge a{
  background-color: #1D3273;
  border: 2px solid #1d3273;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s;
  box-shadow: 5px 5px 10px #babebc;
}
.cert-badge a:hover{
  color: #000;
  background-color: #fff;
}

/*popup*/
.popup_layer{
	display: none;
	position:fixed;
	top:0;
	left:0;
	z-index: 10000; 
	width: 100%; 
	height: 100%; 
	background-color: rgba(0, 0, 0, 0.4);
}
/*팝업 박스*/
.popup_box{
	position: relative;
	top:50%;
	left:50%; 
	overflow: auto; 
	height: auto; 
	width: 400px;
	transform:translate(-50%, -50%);
	z-index:1002;
	box-sizing:border-box;
	background:#fff;
	box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.35);
  border-radius: 20px;
}
.popup_box .x-box {
	position: absolute;
  right: 20px;
  top: 20px;
}
.popup_box .x-box > a > img{
	width: 20px;
	height: 20px;
}
/*컨텐츠 영역*/
.popup_box .popup_cont {
	padding:50px 0;
	line-height:1.4;
	font-size:20px;
	margin: 0 20px;
	/* height: 430px; */
}
.popup_box .popup_cont p{ 
	padding: 15px 0;
	display: flex;
  align-items: center;
  justify-content: center;
	margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}



/*오버레이 뒷배경*/
.popup_overlay{
	position:fixed;
	top:0px;
	right:0;
	left:0;
	bottom:0;
	z-index:1001;
	background:rgba(0,0,0,0.5);
}