.common-heading {
	display: flex;
	justify-content: center;
}
.heading-wrapper {
	margin: 0 auto;
}
.common-heading h2 {
	margin: 1.5em auto 0.5em;
	padding: 0 1.5em;
	font-size: clamp(1.5rem, 1.232rem + 0.714vw, 1.875rem); /* min 24px max 30px | min 600px max 1440px */
	font-weight: 700;
	line-height: 1.4;
	color: #0099cc;
	text-align: center;
	position: relative;
}
.common-heading h2 span {
	padding: 0 0.3em;
	background: #f1f1f1;
	display: inline-block;
	position: relative;
	z-index: 2;
}
.common-heading h2:before {
	content: '';
	width: 70%;
	height: 1px;
	background: #0099cc;
	display: block;
	top: 50%;
	left: 15%;
	position: absolute;
	z-index: 1;
}

/* hero */
.hero {
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
}
.hero-image {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	overflow: hidden;
}
.hero-image img {
	width: 100%;
	height: 100%;
	max-width: auto;
	object-fit: cover;
}
.hero-content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
	position: relative;
}
h1.hero-title {
	margin: 0;
	font-size: clamp(1.875rem, 0rem + 6vw, 4.5rem);
	font-weight: 400;
}
h2.hero-tag {
	margin: 0 0 1rem;
	font-size: clamp(1.25rem, 0.536rem + 2.286vw, 2.25rem);
	font-weight: 400;
	line-height: 1.4;
}
.hero-btn a {
	background-color: #fa951f;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	height: 60px;
	padding: 0 55px;
	display: inline-flex;
	align-items: center;
	border-radius: 4px;
	text-decoration: none;
	margin-top: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
	transition: all .3s;
}
.hero-btn a:hover,
.hero-btn a:focus {
	transform: scale(110%);
}
@media (max-width: 500px) {
	.hero {
		min-height: 440px;
	}
	.hero-image img {
		object-position: top 0 right -300px;
	}
}
/* end hero */

#MiniViewHome {
	min-height: 420px;
}
.typical-btn {
	padding: 0.75rem 3rem;
    border: none;
    background-color: #fa951f;
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    outline: none;
    transition: all .3s;
}
.typical-btn:hover,
.typical-btn:focus {
	background-color: #fa5d1f;
}
.typical-btn-lg {
	font-size: 24px;
}
.new-home p {
	line-height: 1.6;
}
.new-home .main {
	padding: 0;
	max-width: none;
}
.typical-section {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.typical-row {
	margin: 0 auto;
	width: 100%;
	max-width: 1450px;
	display: flex;
}
.row-vertical-center {
	align-items: center;
}
.typical-col {
	margin: 1rem;
}
.col-50 {
	padding: 1rem;
	width: 50%;
}
.col-33 {
	padding: 1rem;
	width: 33.333%;
}
.col-20 {
	padding: 1rem;
	width: 20%;
}


.guaranteed {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.guaranteed::before,
.guaranteed::after {
	content: '';
	width: 100%;
	height: 1px;
	background: rgb(0,153,204);
	background: linear-gradient(90deg, rgba(0,153,204,0) 0%, rgba(0,153,204,1) 45%, rgba(0,153,204,1) 55%, rgba(0,153,204,0) 100%);
	display: block;
	top: calc(50% - 1.6em);
	position: absolute;
}
.guaranteed::after {
	top: calc(50% + 1.6em);
}
.guaranteed img {
	width: 140px;
	position: relative;
	z-index: 2;
}
.guaranteed h3 {
	margin: 0;
	padding: 1em;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #0099cc;
}
.intro-video {
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
}
.intro-section,
.why-section {
	background: #fff;
}
.intro-section .common-heading h2 span,
.why-section .common-heading h2 span {
	background: #fff;
}
.intro-section .typical-row,
.why-section .typical-row {
	max-width: 1350px;
}
.intro-section .typical-row .typical-col {
	margin: 0 2rem;
}
.intro-icon {
	padding: 0 0 1.2rem;
	display: flex;
	justify-content: center;
}
.intro-icon img {
	margin: 0 auto;
	width: 100px;
}
.intro-hr {
	padding: 1.5rem 0 2rem;
	text-align: center;
}
.intro-hr hr {
	margin: 0 auto;
	width: 40%;
	border-top: 1px solid #0099cc;
}
.intro-text {
	margin: 0 auto;
	padding: 1rem 3rem;
	max-width: 1100px;
}

.news-section .typical-row {
	max-width: 1350px;
}
.news-section .col-20 {
	padding: 0;
}
.news-section a {
	color: #000;
	line-height: 1.3;
}
.news-image {
	padding-top: 68%;
	margin-bottom: 1rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.why-icon {
	padding-bottom: 2rem;
	font-size: 50px;
	color: #fff;
}
.why-icon span {
	margin: 0 auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	/*background: #0099cc;*/
	background: #fa951f;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 850px) {
	.typical-row {
		flex-wrap: wrap;
	}
	.col-50,
	.col-33,
	.col-20 {
		width: 100%;
	}
	.news-section .col-20 {
		padding: 1rem;
	}
}
@media (max-width: 700px) {
	.guaranteed img {
		width: 90px;
	}
	.guaranteed h3 {
		font-size: 20px
	}
}
@media (max-width: 700px) {
	.guaranteed img {
		width: 70px;
	}
	.guaranteed h3 {
		font-size: 16px
	}
}
@media (max-width: 500px) {
	.col-50,
	.col-33,
	.col-20 {
		margin: 1rem 0;
		padding: 0;
	}
	.intro-section .typical-row .typical-col {
	    margin: 0;
	}
	.intro-text {
		padding: 1rem 0;
	}
}