/* 여기에 작업 또는 수정할 당신의 css style을 설정하세요. (customizations) */
@font-face {
	font-family: Pretendard;
	src: url("/theme/eb4_basic/font/Pretendard-ExtraBold.woff2");
}


.basic-body .container {
	width: 100%;
	max-width: unset;
}

.navbar-nav {
	justify-content: space-around;
}

.footer {
	display: none!important;
}

.page-title-wrap {
	width: calc(100% - 20px);
	background: #fec303d6;
	margin: 0 10px;
	margin-top: 10px;
	border-radius: 15px;
	box-shadow: 4px 5px 0px 2px black;
}

.page-title-wrap h2 {
	color: black;
	text-align: center;
}

.page-title-wrap .sub-breadcrumb {
	color: black;
}

.site-logo-txt {
	font-family: Pretendard;
	font-weight: 800;
	font-size: 26px;
	vertical-align: middle;
	margin-left: 10px;
	color: #febc03;
	text-shadow: 1px 1px 1px #0000000d;
}

@keyframes anim_pop {
	0% {
	  transform: translate(0px, -100px);
	  filter: brightness(0) opacity(0);
	}
	100% {
	  transform: translate(0px, 0px);
	  filter: brightness(1) opacity(1);
	}
  }
  .page-title-wrap {
	animation: anim_pop 0.3s;
  }