:root{
	--brand:#7b4b2a;
	--paper:#fffdf9;
}
html, body {
	margin:0;
	padding:0;
}
body{
	font-family:system-ui,-apple-system,Noto Sans KR,sans-serif;
	background:var(--paper);
}
.navbar {
	background-color:rgba(255,255,255,0);
	transition: all 0.3s;
	margin:0 25px 0 25px;
}
.navbar.active {
	background-color:rgba(0,0,0,0.5);
	margin:0 25px 0 25px;
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;
	transition: all 0.3s;
}
.navbar-brand {
	color:#ffffff;
}
.navbar .nav-link {
	color:#ffffff;
}
.navbar.active .nav-link {
	color:#ffffff;
}
.navbar-brand small{
	font-size:.85rem; 
	opacity:.7;
}
.navbar-brand img{
	max-width:80px;
}
.hero{
	position:relative;
	height:80vh;
	overflow:hidden;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
}
.hero img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
	opacity:0;
	transition:opacity 2s ease;
}
.hero img.active{
	opacity:1;
}
.hero-overlay{
	position:absolute;
	inset:0;
	background:rgba(0,0,0,0.5);
	z-index:1;
}
.hero-content{
	position:relative;
	z-index:2;
}
section{
	padding:80px 0;
}
.card-soft{
	border:1px solid #eee;
	box-shadow:0 6px 20px rgba(0,0,0,.05);
}
.bg-stripe{
	background:linear-gradient( to right, rgba(123,75,42,.06), rgba(123,75,42,.02) );
}
.bg-stripe .card span {
	font-size:36px;
	margin-bottom:10px;
}
@media (max-width: 720px) {
	.navbar {
		margin:0;
	}
	.navbar.active {
		margin:0;
		border-bottom-left-radius:0;
		border-bottom-right-radius:0;
	}
	.navbar-brand img{
		max-width:50px;
	}
	.hero{
		height:100vh;
	}
}

.business-div i {
	font-size:46px;
}
.business-div .card .fw-semibold span {
	display: block;
	padding-top:5px; 
}

footer img {
	max-width:120px;
}