@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    margin: 0; padding: 0;
    scroll-behavior: smooth;
    font-family: 'Noto Sans', sans-serif;
	background: #e0e0e0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
}

header {
    padding: .5rem 2rem;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	background: rgba(255,255,255,.95);
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-height: 100px;
}

.logo-wrap {
    min-width: 400px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-wrap picture {
  margin-right: 1rem;

}


.logo-wrap picture img {
  width: 65px;
}

.logo-wrap h1 {
    padding:0;
    margin: 0;
    color: #004672;
    text-transform: uppercase;
    letter-spacing: .15rem;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}

.logo-wrap h1 span {
    color: #60a0a5;
    display: block;
    font-size: 1.10rem;
}
header nav {
	
}
header nav > a {
	display: inline-block;
	margin: 0 .5rem;
	padding: .5rem .75rem;
	text-decoration: none;
	color: #4b9a25;
	font-size: .95rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: .3s all ease-in-out;
	border-radius: 0.625rem;
}
header nav > a.active {
	
    
}
header nav > a:not(.phone)::after {
	content:'';
	display: block;
	width: 0;
	height: 3px;
	background-color: transparent;
	transition: .3s all ease-in-out;
	margin: .35rem auto 0;
}
header nav > a.active:not(.phone)::after {
	width: 100%;
	background-color: #4b9a25;
}
header nav a.phone {
	background: #4b9a25;
    color: #fff;
    font-size: 1.1rem;
    padding: .75rem 1.5rem;
	font-weight: bold;
	text-shadow: 1px 1px 2px #000;
}


main {
	
}
main .feature {
	width: 80vw;
	background: #fff;
	border-radius: 10px;
	padding: 2rem;
	margin: 0 auto 2rem;
	box-sizing: border-box;
}
.splash-video {
	width: 100%;
	height: 100vh;
	position: fixed;
}


@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		padding: .5rem 0 0;
		overflow: hidden;
		max-height: initial;
		min-height: 110px;
	}
	
	.logo-wrap {
		flex-wrap: nowrap;
		width: 100%;
		justify-content: center;

	}
	.logo-wrap picture img {
		width: 50px;
	}
	.logo-wrap h1 {
		font-size: .85rem;
	}

	.logo-wrap h1 span {
		font-size: .75rem;
		margin-top: .15rem;
	}
	nav {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	nav a {
		font-size: .8rem !important;
		white-space: nowrap;
		padding: .5rem 0 !important;
	}
	
	
	
}
@media screen and (max-width: 500px) {
	.logo-wrap {
		min-width: initial;
	}
	.logo-wrap h1 {
		
	}
}