<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&amp;display=swap');
/* BASE STYLES -------------------------------------------*/

:root {
	--opacity: .5;
    --primaryColor:#403328;
    --secondaryColor: #ede7e1;
	--secondaryColor-lt: #fff9f2;
	--actionableColor: #B43000;
    --compOneColor:#bfccd7;
    --compTwoColor:#283540;
	--compTwoColorRGBa: rgba(40,53,64,var(--opacity));
}

html {
	font-size: 100%;
		scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	margin:0;
	padding:0; 

	background-color: var(--compTwoColor);

	font-family: 'Lora', serif;
	font-size: 1em;
	line-height: 1.5;
	color:#000;
}

p + p {
	margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Lora', serif;
	font-weight: 600;
}

h1, h2 {
	color: var(--compTwoColor);
	font-size: 200%;
	
}



a {
	color: var(--compTwoColor);
	transition: all 0.25s ease;
	text-decoration: none;
}

a:visited {
	color: var(--actionableColor);
}

a:hover {
	color:var(--compTwoColor);
}

a:focus {
	color:var(--compTwoColor);
}

a:active {
	color:var(--compTwoColor);
}



.action {
	padding: .5em 1.5em;
	border-radius: 5px;
	background: none;
	color: var(--compTwoColor) !important;
	border: 1px solid var(--secondaryColor);
}

img,
embed,
object,
video {
	max-width:100%;
}


/* LAYOUT STYLES -------------------------------------------*/


header {
	width:100%;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: space-between;
	background-color: var(--secondaryColor);
	padding: 1vh 10vw 5vh;
	border-bottom: 10px solid var(--actionableColor);
}
.remove {
	display:none;
}

.address h2 {
	color: #311F1D;
	font-size: clamp(12px, 1.5vw, 20px);
	line-height: 1.2;
	text-align: center;
	letter-spacing: .25vw;
}

.address a {
	display: block;
}

div#logo {
	margin-top: 2vh;
	width: clamp(250px, 50vw, 600px);
}

header nav {
	width:100%;
	max-width:1440px;
	margin: 5vh 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

nav a {
	display: block;
	font-size: 5vw;
	padding: 1vh 2vw;/*.25em 1em;*/
	border-radius: 5px;
	text-decoration: none;
	color: var(--compTwoColor) !important;
	border: 1px solid var(--secondaryColor-lt);
	width: 90vw;
	margin:auto;
	text-align: center;
}

nav a + a {
	margin-top: 1em;
}

nav a:hover {
	background: var(--secondaryColor-lt);
	border: 1px solid var(--secondaryColor-lt);
}

.wrapper {
	width: 90vw;
	max-width:1440px;
	background-color: var(--secondaryColor);
	margin: 10vh auto 0;
	position:relative;
	box-shadow: 0 0 5px #000;
}

main {
	position: relative;
}

.hero {
background-image: url(../links/corinth_crossroads1.png);
background-size: contain;
aspect-ratio: 180 / 115;
display: flex;
flex-flow: column wrap;
align-items: center;
justify-content: flex-end;
}

ul#social {
	padding: 0;
	margin:0;
	width: 31px;
	height: 31px;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
	list-style: none;
	list-style-type: none;
}

ul#social li { 
	margin-left: 0;
	display: block;
	margin-bottom: 10px;	
}

ul#social li:first-child {
	margin-left: 0; 
}

ul#social li a {
	width: 31px;
	height: 31px;
	display: block;
	background-image:url(../links/social_icons.png);
	background-repeat: no-repeat;
	transition: none;
}

ul#social li#fb a {
	background-position: 0 0;
}

ul#social li#twitter a {
	background-position: -31px 0;
}

ul#social li#mail a {
	background-position: -62px 0;
}

.tag {
	width: 100%;
	background-color: rgba(204,51,0,0.85); /* #CC3300; */
	padding: .25em 0;

}

.tag h1 {
	font-size: 5vw; /* 40px/50px */
	color: #fff;
	text-align: center;
}

.content {
	padding:5vw;
	margin: 0 auto;
}

.intro {
	background-color: #fff;
	margin: 3vh 0 8vh;
	padding: 5vh 4vw; 
	text-align: center;
	font-size: 120%;
}
.intro h2 {
	margin-top:0;
}

.intro p {
	margin-bottom: 5vh;
}
.intro .action {
	font-size: 3vw;
}
#about {
	padding:2vh 2vh 3vh;
	line-height:1.75;
}

#about img {
	display: block;
	width: 25%;
	margin: 2vh auto;
}

.contact {
	text-align: center;
	background: var(--compOneColor);
}

#contactus {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
}
#contactus p {
	font-size: 120%;
}
.contact a.action {
	border: 1px solid var(--secondaryColor-lt) !important;
	min-width:50%;
	margin-top: 2vh;
}

.location {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
	position: relative;
	z-index: 3;
}

.location:before {
	content:"";
	background: linear-gradient(90deg, rgba(255,249,242,1) 0%, rgba(255,249,242,0) 100%);
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:-1;
}

.location:after {
	content:"";
	background: url(../links/gldds_office.jpg);
	
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: right top;
	filter:grayscale(75%);
	opacity: .5;
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:-2;
}

.directions, .map {
	width:100%;
}

.map {
	border: 10px solid var(--compOneColor);
}

.map iframe {
	width:100%;
	display: block;
}

.directions {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
	text-align: center;
}

.directions &gt; div {
	background: var(--secondaryColor);
	padding:2vw;
	
}

.directions p {
	font-size: 120%;
}
.directions p a {
	font-size:120%;
	text-align: center;
	display: block;
	margin-bottom: 1em;
}

.map {
	margin-top: 2em;

}
.map iframe {
	width:100%;
	display: block;
}

.map p {
	font-size: 85%;
	margin:0;
}

input[type="text"] {
	padding: .75em 1.5em;
	font-size: 120%;
	width:100%;
	border-radius: 5px;
	background: var(--secondaryColor);
	border: 1px solid var(--secondaryColor-lt);
	font-family: 'Lora', serif;
}

input[type="text"]:focus {
	border: 1px solid var(--compTwoColor);
	outline: 1px solid var(--compTwoColor);
}

input[type="submit"] {
	padding: 1em 1.5em;
	font-size: 110%;
	width:100%;
	margin-top:1em;
	border:none;
	border-radius: 5px;
	color: var(--secondaryColor);
	text-transform: uppercase;
	background: var(--compTwoColor);
	transition: all .25s ease;
	font-family: 'Lora', serif;
	font-weight: 600;
}

input[type="submit"]:hover {
	background: var(--actionableColor);
	font-family: 'Lora', serif;


}

input::placeholder {
	text-align: center;
	font-size: 2.25vw;
	color: var(--compTwoColor) !important;
}


.hours {
	background-color: var(--primaryColor);
	text-align: center;
}

.hours h2, .hours p {
	color: var(--secondaryColor);
}

.hours p {
	font-size: 120%;
}

.hours .times {
	font-size: 150%;
	color: var(--compOneColor);
	padding:.8em;
	width:75%;
	margin: auto;
}

.hours ul {
	padding:0;
	list-style: none;
	text-align: center;
}

.times + .times {
	border-top: 1px solid var(--compOneColor);
}


.hours p span {
	font-size: 80%;
	color: var(--compOneColor);
	display: inline-block;
}
.hours .note {
	font-size: 90%;
}


.staff {
	margin-top: 10px;
	margin-bottom: 30px;
}

.staff h2 {
	text-align: center;
	color: #311F1D;
}


#team {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.profile {
	margin:0 0 3vh;

	display: block;
	width: 45%;
	filter: grayscale(100%);
	position: relative;
	transition: all .5s ease;

}

figcaption {
	font-size: 125%;
	font-weight: 600;
	text-align: center;
	color: var(--compTwoColor);
}

.profile:hover {
	filter: grayscale(50%);
}

.profile img {
	width:100%;
	display: block;
	border: 10px solid var(--secondaryColor-lt);
}

footer {
	background-color: var(--compOneColor);
	color: var(--secondaryColor-lt);
	margin-top: 20px;
	border-top: 5px solid var(--compOneColor);
	text-align: center;
}

#logo-2 {
	margin: 1vh auto 0;
	width: 25vw;
}

footer a:link {
	color: var(--secondaryColor-lt);
}

footer a:visited {
	color: var(--secondaryColor-lt);
}

footer a:hover {
	color:var(--secondaryColor);
}


/* #social icon rollovers */

ul#social li#fb a:hover {
	background-position: 0 -31px;
}

ul#social li#twitter a:hover {
	background-position: -31px -31px;
}

ul#social li#mail a:hover {
	background-position: -62px -31px;
}

@media screen and (min-width:600px) {
	.remove {
		display: inline;
	}
	.address a {
		display: inline;
	}
	nav {
		flex-flow: row nowrap;
	}

nav a {
	font-size: 2.5vw;
	max-width: 22%;
	margin: 0;
}

nav a + a {
	margin-top: 0;
}

#about img {
	float: left;
	margin: 0 2vw 2vw 0;
	width: 18%;
}
}
 @media screen and (min-width: 1000px) {
	h2 {
		width:100%;
	}
	.location {
		flex-flow: row wrap;
	}
	
	.location:before {
		content:"";
		background: linear-gradient(90deg, rgba(255,249,242,1) 0%, rgba(255,249,242,0) 100%);
		width:100%;
		height:100%;
		position: absolute;
		top:0;
		bottom:0;
		left:0;
		right:0;
		z-index:-1;
	}
	
	.location:after {
		background-position: center;
	}
	
	.map {
		width:55%;
		border: 10px solid var(--secondaryColor-lt);
	}

	.directions {
		width:40%;
	}
	
	.directions {
		order:2;
	}

	.map iframe {
		width:100%;
		height:100%;
		display: block;
	}
	
	.map p {
		font-size: 85%;
		margin:0;
	}


	.profile {
		margin:0 0 3vh;
		width: 22%;
	}


}
</pre></body></html>