html{
	scroll-behavior: smooth;
}

body{
	background-color: #fff;
	line-height: 1.7;
}

.tagline{
	color: #56585a;
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
}

main{
	font-family: 'Raleway', sans-serif;
}

	main::before{
		content: "";
		background-color: #fff;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: 0.75;
	}

	main > *{
		z-index: 1;
	}

h1{
	font-family: 'Frank Ruhl Libre', serif;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.3;
}

article{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
		
	.intro{
		font-size: 20px;
		padding-top: 6vh;
		padding-bottom: 6vh;
		text-align: center;
	}
		
	.cta-primary{
		padding-top: 10vh;
		padding-bottom: 10vh;
		color: #fff;
		text-align: center;
		background-image: url(../images/slider-bg-2.png);
		background-attachment: fixed;
	}

		.cta-primary h1{
			font-size: 3em;
		}

	.button{
		color: #fff !important;
		display: inline-block;
		background-color: #00609c;
		border: none;
		border-radius: 25px;
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
		margin-top: 1.5em;
		padding: 13px 29px;
		line-height: 17px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 2px;
		text-transform: uppercase;
		transition: background-color .2s;
	}
	
		.button:hover{
			background-color: var(--accent-color);
		}

	.row{
		padding-right: 10%;
		padding-left: 10%;
	}
	
.grid-container{
	border-bottom: solid 2px #e5e5e5;
	border-top: solid 2px #e5e5e5;
}

.grid-container > div{
	font-size: 18px;
	line-height: 1.7;
	padding: 8% 12%;
}

	.grid-container > div > p{
		margin-bottom: 1.5em;
	}
	
	.grid-container a{
		color: var(--accent-color);
		text-decoration-color: var(--accent-color);
		text-decoration-style: dotted;
		text-decoration-line: underline;		
	}

.overlay{
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: saturation;
	display: flex;
	position: relative;
}

	.overlay::before{
		background-image: linear-gradient(to bottom, rgba(19, 137, 129, 0.95) 0%, rgba(28, 53, 94, 0.95) 100%);
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.overlay_about{
		background-image: linear-gradient(black, black), url(../images/adi-goldstein-EUsVwEOsblE-unsplash-2.jpg);
	}

	.overlay_contact{
		background-image: linear-gradient(black, black), url(../images/bradley-jasper-ybanez-a1xlQq3HoJ0-unsplash.jpg);
	}
	
	.overlay > h1{
		color: #fff;
		font-size: 48px;
		position: relative;
	}
		
		.overlay > h1::after{
			background-color: #fff;
			bottom: -10px;
			content: "";	
			height: 2px;
			left: 0;
			position: absolute;
			width: 100px;
		}

@media screen and (min-width: 981px){
	.col_3_4{
		width: 75%;
		margin: 0 auto;
	}
		
	#branding-primary_logo > img{
		width: 85%;
	}

	#nav-secondary ul{
		display: flex;
	}
	
	#nav-secondary li{
		display: table;
	}
	
	#nav-secondary a{
		display: table-cell;
		vertical-align: middle;
		height: 100%;
	}

	#branding-primary #branding-primary_logo,
	#branding-primary h1{
		display: flex;
		align-items: flex-start;
		margin: 1em 0 1em 1em;
		flex-direction: column;
	}
	
	.grid-container{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	
		.grid-container > div{
			min-height: 500px;
		}
		
		.grid-container > div:nth-child(1){ order: 1; justify-content: flex-end; }
		.grid-container > div:nth-child(2){ order: 2; }
		.grid-container > div:nth-child(3){ order: 4; }
		.grid-container > div:nth-child(4){ order: 3; }

	.input-block > label{
		min-width: 215px;
	}
}