@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Normalize */
*,:after,:before{box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html{box-sizing:border-box;font-family:sans-serif;font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.3}a,abbr,article,aside,audio,b,blockquote,body,button,canvas,cite,code,dd,del,details,div,dl,dt,em,embed,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hr,i,iframe,img,input,ins,kbd,legend,li,main,mark,menu,nav,object,ol,optgroup,option,p,pre,s,samp,section,select,span,strong,sub,summary,sup,table,tbody,td,textarea,th,thead,tr,u,ul,var,video{vertical-align:top;margin:0;border:0;padding:0;font-family:inherit;font-size:1em;line-height:inherit;text-transform:none;color:inherit;background:0 0;overflow:visible}article,aside,blockquote,dd,details,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hr,iframe,legend,main,menu,nav,ol,p,pre,section,summary,ul{display:block}audio,canvas,embed,img,object,video{display:inline-block}audio:not([controls]){display:none;height:0}svg:not(:root){overflow:hidden}[hidden],template{display:none}textarea{overflow:auto;resize:vertical}button,input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}a:focus{outline:dotted thin}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}

/* Standard Tags */
html {
	font-size: 125%;
	-webkit-overflow-scrolling: touch;
}

body {
	font-family: 'Lato', Arial, sans-serif;
	color: #fff;
	position: relative;
	min-width: 18rem;
	font-size: 1em;
	background: #000;
}

iframe, img, svg {
	vertical-align: middle;
	max-width: 100%;
}

img, svg {
	height: auto;
}

h1, h2, h3, h4 {
	margin: 1.5em 0 0.5em 0;
	line-height: normal;
	font-weight: 700;
	color: #f6b528;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.25em;
}

p {
	margin: 0 0 1em 0;
}

ul, ol {
	margin: 0 0 1.5em 2.5em;
}

li>ul, li>ol {
	margin: 0 0 0 1.5em;
}

li {
	margin: 0 0 0.5em 0;
}

a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: inherit;
}
a:hover {
	color: inherit;
}
a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-top: 2px solid #fff;
	width: 100%;
	transform: scaleX(0);
	transition: transform 300ms;
	transform-origin: 0 0;
}
a:hover::before {
	transform: scaleX(1);
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}


/* Custom Elements */
.clear:after {
	content: '';
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
}

.contain {
	display: block;
	position: relative;
	margin: auto;
	padding: 0 1.5rem;
	width: 100%;
}

@media only screen and (min-width:38.5em) {
	.contain {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media only screen and (min-width:52.5em) {
	.contain {
		padding-left: calc(50% - 20rem);
		padding-right: calc(50% - 20rem);
	}
}

.skip-to-content {
	display: block;
	position: absolute;
	top: -10000rem;
	left: 1em;
	z-index: 99999;
	padding: 0.5em 1em;
	background: #eee;
	box-shadow: 1px 1px 0.2em rgba(0, 0, 0, 0.5);
	transition: none;
}

.skip-to-content:focus {
	top: 1em;
}

.button {
	display: inline-block;
	vertical-align: middle;
	border-radius: 1.2em / 50%;
	padding: 0.6em 2em;
	font-size: 1em;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #f6b528;
	cursor: pointer;
	transition: background-color 300ms, color 300ms;
}

.button:hover, .button:active, .button:focus {
	color: #fff;
	background: #147F9A;
	text-decoration: none;
	outline: none;
}

.button::before {
	display: none;
}

/* Site Structure */
#wrapper {
	margin: auto;
	max-width: 96rem;
	text-align: center;
	background: url(bg.jpg) center / cover no-repeat #000;
}
#wrapper, #wrapper > * {
	width: 100%;
}

/* Header */
.header {
	padding-top: 3rem;
	padding-bottom: 3rem;
	text-align: center;
}
.header-logo {
	font-weight: 600;
	color: #000;
}
.mobile-cta {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	border-top: 4px solid #f6b528;
	border-radius: 0;
	padding: 0.6em;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	background: #000;
}
.mobile-cta:hover, .mobile-cta:active, .mobile-cta:focus {
	color: #000;
	background: #f6b528;
}
.mobile-phone {
	display: inline-block;
}
@media only screen and (min-width:62.5em){
	.mobile-cta {
		top: 0;
		right: 0;
		bottom: auto;
		left: auto;
		border: 3px solid #f6b528;
		border-width: 0 0 4px 4px;
		border-radius: 0 0 0 1.2em / 50%;
		padding: 0.5em 1.3em;
	}
	.mobile-tap {
		display: none;
	}
}
@media only screen and (min-width:68.5em){
	.mobile-cta {
		right: 5%;
		border-radius: 0 0 1.2em 1.2em / 50%;
		border-width: 0 4px 4px;
	}
}

/* Body */
.intro-title {
	margin-top: 0;
	margin-bottom: 1em;
}
.intro-content {
	margin: auto;
	max-width: 36rem;
	font-size: 1.4em;
	font-weight: bold;
}
.cta-title {
	margin-top: 1em;
	margin-bottom: 1em;
	font-style: italic;
}
.staff-name {
	margin-bottom: 0.1em;
}
.staff-title, .staff-phone, .staff-email {
	margin-bottom: 0.3em;
	font-size: 1.2em;
}
.staff-title {
	font-style: italic;
}

.services {
	padding-bottom: 1rem;
}
.services-list {
	font-size: 1.2em;
	line-height: 1.8;
}
@media only screen and (min-width: 50.5em){
	.staff-members {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: auto;
		max-width: 36rem;
	}
}

/* Footer */
.footer {
	padding-top: 8rem;
	padding-bottom: 8rem;
	font-size: 0.85em;
	text-align: center;
	color: #f6b528;
	background: #000;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.footer a::before {
	border-top: 1px solid #f6b528;
}
