.hero-banner{
	min-height: clamp(400px, 55vh, 560px);
	background-color: var(--color-dark);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.newhead .hero-banner h2{
	font-size: var(--font-size-h2);
	color:var(--color-white);
	font-family: 'Playfair Display', Georgia, serif;
}
.hero-banner .container{
	display: flex;
	width: 100%;
}
.hero-banner .container .col{
	height: auto;
	padding: 48px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.hero-banner h1{
    margin: 0 0 36px;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--color-white);
    font-weight: 500;
    font-family: 'Playfair Display', Georgia, serif;
    padding-bottom: 0;
    letter-spacing: 0.01em;
    line-height: 1.08;
    text-align: center;
}

.hero-banner .inner{
	position: relative;
	padding: 0;
	width: min(920px, 88vw);
	margin: 0 auto;
	text-align: center;
}
.hero-banner .inner .quote-circle{
	position: absolute;
	right: -124px;
	top: 50%;
	transform: translate(0, -50%);
}
.hero-banner .row{
	width: 100%;
}
.hero-banner p{
	width: auto;
	color: rgba(255,255,255,0.9);
	font-size: 16px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	line-height: 1.75;
	padding: 0;
	margin: 0;
	text-align: center;
}

.hero-banner p.call{
	font-size: 1.4rem;
	color:var(--color-white);
	font-weight: 500;
	font-family: 'Playfair Display', Georgia, serif;
	padding: 10px 0px;
	line-height: 1.4;
}

@media (max-width: 992px){
	.hero-banner .inner .quote-circle{
		position: relative;
		right: 0;
		top: 0;
		transform: initial;
	}
	.hero-banner .container{
		padding: 0;
	}
}
@media (max-width: 767px){
	.hero-banner .container{
		padding:0;
	}
}
