:root {
	--blue1: #4984b8;
	--blue2: #4e7496;
	--blue3: #89cff0;
	--blue4: #a2cffe;
	--gray1: #cccccc;
	--gray2: #bfbfbf;
	--gray3: #262626;
	--gray4: #999999;
	--black: #000000;
}

html {
	/* border-box box model allows us to add padding and border to our elements without increasing their size */
	box-sizing: border-box;
	/* A system font stack so things load nice and quick! */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oswald", "Raleway", "Roboto-Condensed", Helvetica,
		Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 500;
	font-size: 15px;
	color: var(--gray3);
}

body {
	color: var(--gray4);
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	width: 100vw;
	padding: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga"on;
	font-feature-settings: "liga"on;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.grid-wrapper {
	display: grid;
	grid-gap: 1rem;
	width: 100vw;
}


img {
	max-width: 100%;
}

/* styles */

p {
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
	margin: 0 0 0.25em 0;
	/*	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07); */

}

a {
	color: var(--blue2);
	text-decoration: none;
}

.title {
	font-family: 'Oswald', sans-serif;
	padding: 0.5em;
	color: var(--blue2);
	font-size: 2em;
	text-align: center;

}

h1 .title {
	scroll-margin-top: 5rem;
	/* whatever is a nice number that gets you past the header */
}

.sub-title {
	font-family: 'Raleway', sans-serif;
	width: 100vw;
	padding: 0.25em;
	color: var(--blue2);
	font-size: 2rem;
	font-style: italic;
	line-height: 3rem;
	text-align: center;
}

.vertical-text {
	transform: rotate(-90deg);
	transform-origin: right center 0;
}

/*=============================================
=            Top Header            =
=============================================*/

/* Top */

.header {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	grid-template-areas:
		"logo top-text";
}

.headerbe {
	grid-area: logo;
	min-height: 2em;
	background-position: top left;
	padding: 0.5em 2em;

}

.top-text {
	grid-area: top-text;
	min-height: 2em;
	background-position: top right;
	padding: 0.15em;

}

.top-text p {
	font-weight: 300;
	font-size: 0.75em;
	line-height: 1em;
	text-align: right;
	padding-right: 1em;
}


/*=============================================
=            navigation            =
=============================================*/

/* Navigation */

.sticky {
	position: fixed;
	top: 0.2em;
	width: 100%;
	z-index: 999;
}

.menu button {
	background: var(--blue2);
	border: 0;
	padding: 10px 20px;
}

.menu.sticky {
	background-color: rgba(255, 255, 255, 0.9);
}

.menu ul {
	display: grid;
	grid-gap: 10px;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.menu a {
	background: var(--blue2);
	display: block;
	text-decoration: none;
	padding: 10px;
	text-align: center;
	color: var(--gray1);
	text-transform: uppercase;
	font-size: 1em;
	font-weight: 500;
}

.menu a:hover {
	color: var(--blue2);
	background-color: var(--gray1);
}

[aria-controls="menu-list"] {
	display: none;
}


/*=============================================
=            hero            =
=============================================*/



.hero>* {
	background-color: #ffffff;
	padding: 5px;
}

.ls-slide img {
	background-size: contain;
}

/* --------------------------------------------*/
/*             divider              */
/* --------------------------------------------*/

.divider {
	display: inline-block;
	padding: 1rem;
}

/* hr {
	height: 0.5rem;
	border: 0;
	border-style: solid;
	border-color: var(--blue2);
	border-width: 2px 0 0 0;
	border-radius: 0.75rem;
	width: 90%;
} */

hr {
	height: 1rem;
	border: 0;
	box-shadow: 0 10px 10px -10px var(--blue2) inset;
	width: 80%;
}


/*=============================================
=            cards    see cards.css          =
=============================================*/


/*=============================================
=      diagonal    see diagonal2.css          =
=============================================*/



/*=============================================
=            sections - global                =
=============================================*/

#about,
#services,
#contact {
	scroll-margin-top: 5rem;
	/* whatever is a nice number that gets you past the header */
}



/*=============================================
=            about section          =
=============================================*/

.about {
	display: block;
}

.about-content {
	display: grid;
	grid-gap: 1em;
	grid-template-rows: 1fr;
	grid-template-columns: repeat(3, 1fr);
	grid-template:
		"be betext bepic";
}



.be {
	grid-area: be;
	margin: auto 0;

}

.be p {
	margin: 0;
	padding: 1em;
	font-size: 3em;
	font-weight: bold;
	color: var(--blue2);
	white-space: nowrap;
}

.betext {
	grid-area: betext;
}

.bepic {
	grid-area: bepic;
	padding: 1em;
}

.bepic img {
	background-size: contain;
}

.belogo {
	grid-area: belogo;
	margin: auto
}




/*=============================================
=            services section          =
=============================================*/

.services-content {
	display: flex;
	flex-direction: row;
	width: 100vw;
}

#fe,
#ah {
	display: flex;
	flex-direction: row;
}

.fe-pic,
.ah-pic {
	flex: 1;
	margin: auto;
}

.fe-text,
.ah-text {
	padding: 1em;
	flex: 5;
}

.fe-text {
	background: url("../assets/img/white-wind-vane-758704_25.png") no-repeat fixed;
	color: var(--blue2);
}


.fe-text li {
	padding: 0.5em 0;
}

.fe-text li i {
	color: var(--blue2);
}

.fe-text ul {
	list-style: none;
}

.fe-text ul li {
	padding: 1em 0 1em 1em;
	position: relative;
}


.fe-text ul li:before {
	content: "\f058";
	color: var(--blue2);
	font-size: 1.5em;
	font-family: 'FontAwesome';
	position: absolute;
	left: -1em;
}

.ah-text .background {
	display: block;
	background: url("../assets/img/IMG950691.jpg") no-repeat top left;
	background-size: cover;
	/* you need to match the shadow color to your background or image border for the desired effect*/
	box-shadow: 0 0 1em 1em white inset;
	width: 100%;
	min-height: 14em;
}

/*=============================================
=            contact section          =
=============================================*/

.contact-content {
	display: flex;
	flex-direction: row;
	width: 100vw;
	padding: 1em;
}

.contact-content h1 {
	padding: 1em;
	flex: 1;
}

.contact-content div {
	padding: 1em;
	flex: 1;
}

.contact-content form {
	padding: 1em;
	flex: 2;
}

.contact-content form p {
	padding: 0.5em;
}

::placeholder {
	color: var(--gray4);
	font-style: italic;
}

/*=============================================
=            footer            =
=============================================*/
footer {
	position: relative;
	display: block;
	height: 20vh;
	width: 100vw;
	background-image: linear-gradient(var(--blue2), var(--blue4));
	color: var(--gray1);
}


.footer svg {
	position: absolute;
	bottom: 0;
	width: 100vw;
	/* set height to pixels if you want angle to change with screen width */
}


.footer-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

}

.footer-wrapper .left {
	grid-row: 1;
	grid-column: 1 / 2;
	padding: 1em;
	max-width: 15vw;
	color: var(--blue2);
	z-index: 99;
}

.footer-wrapper .left img {
	background-size: contain;

}

.footer-wrapper .right {
	grid-row: 1;
	grid-column: -1 / -2;
	text-align: right;
	padding: 1rem;
}

.footer-wrapper .center {
	grid-row: 2;
	grid-column: 1 / span 4;
	text-align: center;
	font-style: italic;
	color: var(--blue2);
}

.footer .dsh {
	grid-row: 3;
	grid-column: 1 / span 4;
	padding: 1rem;
	text-align: center;
	font-style: italic;
	font-size: 85%;
	color: var(--blue2);
	z-index: 99;
}

.footer .dsh a {
	text-decoration: none;
	color: var(--blue2);
}

.footer .center img {
	padding: 1em;
}


/*=============================================
=            grid styles            =
=============================================*/





.grid {
	display: block;
}

.box {
	color: white;
	font-size: 4vw;
	padding: 10px;
	background: yellowgreen;
	margin: 10px 0;
	text-align: center;
}

@media screen and (min-width: 576px) {
	.grid {
		display: grid;
		grid-template-rows: repeat(6, 1fr);
		grid-template-columns: repeat(12, 1fr);
		grid-gap: 10px;
	}

	.box {
		margin: 0;
	}

	.box:nth-child(1) {
		grid-column: span 12;
	}

	.box:nth-child(2),
	.box:nth-child(3) {
		grid-column: span 6;
	}

	.box:nth-child(4),
	.box:nth-child(5),
	.box:nth-child(6) {
		grid-column: span 4;
	}

	.box:nth-child(7),
	.box:nth-child(8),
	.box:nth-child(9),
	.box:nth-child(10) {
		grid-column: span 3;
	}

	.box:nth-child(11),
	.box:nth-child(12),
	.box:nth-child(13),
	.box:nth-child(14),
	.box:nth-child(15),
	.box:nth-child(16) {
		grid-column: span 2;
	}
}


/*=============================================
=            media queries            =
=============================================*/



@media (max-width: 1000px) {
	.menu {
		order: -1;
		perspective: 800px;
	}

	.menu a {
		font-size: 0.75em;
	}

	[aria-controls="menu-list"] {
		display: block;
		margin-bottom: 5px;
	}

	.menu ul {
		max-height: 0;
		overflow: hidden;
		transform: rotateX(90deg);
		transition: all 0.5s;
	}

	[aria-expanded="true"]~ul {
		display: grid;
		max-height: 500px;
		transform: rotateX(0);
	}

	[aria-expanded="false"] .close {
		display: none;
	}

	[aria-expanded="true"] .close {
		display: inline-block;
	}

	[aria-expanded="true"] .open {
		display: none;
	}

}

@media (max-width: 768px) {
	.header {
		grid-template-areas:
			"logo top-text";
	}

	.about-content {
		display: grid;
		grid-gap: 1em;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: 1fr;
		grid-template:
			"betext"
			"bepic";
		width: 100vw;
	}

	.be {
		display: none;
	}

	.bepic {
		width: 100vw;
	}

	.services-content {
		display: flex;
		flex-direction: column;
	}

	.contact-content {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-content {
		display: flex;
		flex-direction: column;
		width: 100vw;
		padding: 1em;
	}

	.footer-wrapper .left {
		max-width: 33vw;
	}

	.footer-wrapper .center img {
		max-width: 25%;
	}
}


@media (max-width: 500px) {
	.header {
		grid-template-areas:
			"logo top-text";
	}

	.be {
		transform: rotate(90deg);
	}



}