header{
	position:sticky;
	top:0;
	z-index:50;
	background:#fff;
	border-bottom:0px solid #ddd;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
.nav-wrap{
	height:72px;
	display:flex;
	align-items:center;
	gap:55px
}
.brand img{
	max-width:145px;
	max-height:52px;
	object-fit:contain
}
.main-nav{
	display:flex;
	gap:50px;
	align-items:center;
	margin-left:auto;
	font-size: clamp(14px,1.6vw,16px);
}
.main-nav a{
	height:72px;
	display:flex;
	align-items:center;
	border-bottom:2px solid transparent;
	color:#26363a;
	text-transform:uppercase;
	font-family:"MONTSERRAT-REGULAR";
}
.main-nav a.ic{
	display:flex;
	align-items:center;
}
.main-nav a.ic i{
	line-height:30px;
	font-size:24px;
	margin-right:5px;
	color:var(--teal);
	transform:translateY(-1px);
}
.main-nav a.active,.main-nav a:hover{
	color:var(--teal);
	border-color:var(--teal)
}
.menu-toggle{
	display:none;
	margin-left:auto;
	background:transparent;
	border:0;color:var(--teal);
	font-size:30px
}
.section:nth-of-type(odd) {
	background: #fff
}
.section-title {
	text-align: center;
	margin: 0 auto 40px
}
.section-title h2 {
	font-size: clamp(20px,3.6vw,42px);
	line-height: 1.15;
	margin: 0 0 12px;
	font-family:"MONTSERRAT-REGULAR";
	letter-spacing: -.032em
}
.section-title p {
	font-size: 16px;
	color: var(--muted);
	margin: 0 auto;
	font-weight:300;
	max-width:1000px
}
@media (max-width:1440px){
	.section-title h2 {
		font-size: clamp(20px,2.4vw,42px);
		margin: 0 0 10px;
		letter-spacing:0
	}
	.section-title p {
		font-size: 14px;
		max-width:850px
	}
}
@media(max-width:992px) {
	.main-nav {
		position:fixed;
		width:100%;
		height:calc(100% - 45px);
		display:none;
		top:45px;
		left:0;
		background:#fff;
		border-top:2px solid var(--teal);
		padding:0px 0px;
	}
	.brand img {
		max-width: 145px;
		max-height: 35px;
	}
	.menu-toggle {
		display: flex;
		flex-direction:column;
		justify-content:space-between;
		width:30px;
		height:30px;
		padding:6px 4px;
		position:relative;
	}
	.menu-toggle i{
		height:2px;
		width:100%;
		background:var(--teal);
		transition:transform .3s;
	}
	.menu-toggle.on i{
		position:absolute;
		width:calc(100% - 8px);
		top:50%;
		margin-top:-1px;
		left:4px;
	}
	.menu-toggle.on i:nth-of-type(1){
		transform:rotate(45deg);
	}
	.menu-toggle.on i:nth-of-type(3){
		transform:rotate(-45deg);
	}
	.menu-toggle.on i:nth-of-type(2){
		opacity:0;
	}
	.nav-wrap {
		height: 45px;
		gap: 55px;
	}
	.nav-cta {
		display: none
	}
	.main-nav a {
		height: auto;
		padding: 15px 15px;
		border-bottom:1px solid #ddd;
	}
	.section-title {
		margin: 0 auto 20px
	}
	.section-title p {
		font-size: 12px;
		max-width:1000px;
		line-height:16px;
	}
	.section-title h2 {
		font-size: clamp(18px,2vw,42px);
		margin-bottom:6px;
	}
}