/*
Theme Name: MattCrigger_v3.0
Theme URI: none
Description: My attempt to make a "block driven" site
Author: Matt Crigger
Author URI:
Version: 1.0
*/

:root {
	/*
	https://contrast-grid.eightshapes.com/?version=1.1.0&background-colors=&foreground-colors=%23FFFFFF%2C%20White%0D%0A%23000%2C%20Black%0D%0A%23175676%2C%20Blue%0D%0A%23D84A31%2C%20Chili%0D%0A%23776055%2C%20Brown%0D%0A%23EFEDE7%2C%20Izzy%0D%0A%23E0DDCF%2C%20Bone%0D%0A&es-color-form__tile-size=regular&es-color-form__show-contrast=aaa&es-color-form__show-contrast=aa&es-color-form__show-contrast=aa18
	*/
	--blue: #175676;
	--medblue: #4BA3C3;
	--lightblue: #CCE6F4;
	--darkred: #67131A;
	--red: #A12B44;
	--cornell: #AB3521
	
	--white: #FFFFFF;
	--black: #000;
	--chili: #D84A31;
	--brown: #776055;
	--izzy: #EFEDE7;
	--bone: #E0DDCF;	
	
	--transTime: 250ms;
	--easeFav: ease-in-out;
}

.outfit-thin {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.outfit-extralight {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.outfit-light {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.outfit-normal {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.outfit-medium {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.outfit-semibold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.outfit-extrabold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.outfit-black {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}




* {
	box-sizing: border-box;
	margin:0;
	padding: 0;
	position: relative;
}






body {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
}







#wpadminbar {
	position: fixed !important;
	bottom: 0;
	top: auto !important;
	}








/* SMALL DESKTOP AND UP */
@media screen and (min-width: 1300px) {

	#desktopSidebar {
	order:1;
	}

	#desktopContent {
	order: 2;
	}


}







html,
body {
	margin: 0;
	padding: 0;
}

.section {
	width: 100%;
}

.container {
	position: relative;
	max-width: 1170px;
	margin: 0 auto;
	color: #444;
	font-weight: 300;
}

.section .container {
	padding: 30px 0 50px 0;
}

.section.bg {
	background: #f7f7f7;
}















/*****	Header	*****/

.headerWrapper {
	height: 80px;
}

.header {
	line-height: 80px;
	width: 100%;
	transition: all 0.1s linear;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: var(--blue);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}

.header.small {
	line-height: 50px;
	box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.4);
}

.header.small > .container > #logo {
	height: 40px;
	}

#logo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: red;
	float: left;
	height: 40px;
	width: 170px;
	margin-left: 5px;
}

ul.nav {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.nav li {
	float: left;
	position: relative;
}

ul.nav li a {
	transition: color 0.2s linear;
	font-size: 18px;
}

ul.nav li:hover a {
	color: red;
}

ul.nav li a {
	padding: 21px;
	color: initial;
	text-decoration: initial;
}













/*****	Hero  *****/
.hero {
	color: #fff;
}
.heroBackground {
	background-repeat: no-repeat;
	background-size: cover;
	background-color: black;
}






/*****  Slider  *****/

.section .slider,
.section .footer {
	
}




.sliderHero {
	
}

.heroSimpleWindow {
	background: rgba(0,0,0,0.65);
}

.heroSimpleContent {
	text-align: center;
	min-height: 20rem;
	align-content: center;
}


.heroImageBackground {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
}



.hero {

}

.hero h1 {
	font-size: 4vw;
}

.hero h2 {
	font-size: 30px;
	margin-bottom: 60px;
}

.hero h1:after {
	content: "";
	width: 300px;
	position: relative;
	border-bottom: 1px solid #aaa;
	text-align: center;
	margin: auto;
	margin-top: 15px;
}

.hero p {
	font-size: 1.25rem;
	font-weight: 100;
}



.hero .cta {
	color: white;
	display: block;
	margin-bottom: 20px;
}

.hero .cta a {
	display: inline;
	border: 1px solid white;
	padding: 8px 13px;
	font-size: 20px;
	background: rgba(0,0,0,0.5);
	transition: all 0.25s linear;
	color: white;
	text-decoration: none;
		
	/*
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 3px;
	background: linear-gradient(0deg, rgba(23,86,118,1) 7%, rgba(2,119,179,1) 100%);
	border: 1px solid rgba(255,255,255,0.9);
	color: #fff;
	text-decoration: none;
	*/
	
}

.hero .cta a:hover {
	background: var(--chili);
	cursor: pointer;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
	position: relative;
	top: -2px;
}



/*****	CTA BUTTONS *****/





/*****	Columns *****/

.fourUpFeatures {
	
}

.flexContainer {
	/*
	display: grid;
	grid-template-columns: repeat(4, minmax(20px, 1fr));
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	*/
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    gap: 1rem;
	
}


.column {
	padding: 1rem;
	background: var(--izzy);
	}
.column:hover {
	box-shadow: 0px 2px 20px rgba(0,0,0,0.25);
}





.column.five {
	width: calc((100% - 4rem)/5); /* 5 COLUMNS */
}

.column.four {
	width: calc((100% - 3rem)/4); /* 4 COLUMNS */
	}

.column.three {
	width: calc((100% - 2rem)/3); /* 3 COLUMNS */
	}

.column.two {
	width: calc((100% - 1rem)/2); /* 2 COLUMNS */
	}

.column.extrapad {
	}

.column .service,
.column .feature {
	font-size: 21px;
}

	.column .service:after {
	content: "";
	width: 50px;
	position: relative;
	border-bottom: 1px solid #eee;
	display: block;
	text-align: center;
	margin: auto;
	margin-top: 15px;
	}

	.column .feature {
	font-size: 19px;
	}

	.column h1.side,
	.column p.side,
	.column span.side:first-of-type {
	margin-left: 50px;
	text-align: left;
	}

	.column .icon {
	border-radius: 50%;
	height: 85px;
	width: 85px;
	line-height: 85px;
	text-align: center;
	margin: 0 auto;
	transition: background 0.25s linear, color 0.25s linear;
	display: block;
	}

	.column .icon.side {
	position: absolute;
	padding: 0;
	margin: 0;
	top: -15px;
	height: 50px;
	width: 50px;
	}

	.column:hover > .icon {
	background: #F44336;
	color: white;
	}

	.column:hover > .icon.side {
	background: initial;
	color: initial;
	}

	.responsivegroup {
	display: none;
	}





/*****	Column Generals  *****/

.column h2,
.column h3,
.column h4,
.column h5
.column p {
	padding: 0 1%;
	text-align: center;
	}

	.group.margin {
	margin-bottom: 20px;
	}

	.column .imgholder {
	height: 300px;
	width: 100%;
	background: #333;
	transition: background 0.3s linear;
	}

	.column.bg {
	background: #FFF;
	}

	.column.pointer {
	cursor: pointer;
	}

	.column.bg:hover .imgholder {
	background: #555;
	}

	.column span.feature {
	font-size: 20px;
	}








/*
	Text
*/

.container > h1:not(.hero) {
	margin-bottom: 36px;
	text-align: center;
}

.container > h1:after {
	content: "";
	width: 30px;
	position: relative;
	border-bottom: 1px solid #aaa;
	display: block;
	text-align: center;
	margin: auto;
	margin-top: 15px;
}

h2 {
	font-family: "Outfit", sans-serif;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
}

.left,
.left > h1,
.left > p {
	text-align: left;
}

.reset {
	text-align: left !important;
}

.reset:after {
	display: none !important;
}







/*****  Slider with Content  *****/

.white h1,
.white h2,
.white p,
.white div,
.white a {
	color: #fff;
	}



/*
	Responsive
	*/


	@media all and (max-width: 768px) {
	.container {
	width: 95%;
	}
	.column.four {
	width: 48%;
	margin: 1%;
	}
	.column.three {
	display: block;
	width: 95%;
	padding: 0;
	margin: 0 auto;
	float: none;
	}
	.header {
	height: auto;
	background: #eee;
	}
	#logo {
	position: initial;
	float: none;
	display: block;
	transform: none;
	margin: 10px auto 0 auto;
	}
	ul.nav {
	float: none;
	display: block;
	text-align: center;
	margin: 0 auto;
	}
	ul.nav li {
	float: initial;
	display: inline-block;
	}
	.responsivegroup {
	display: block;
	}
	.responsivegroup:after {
	content: "";
	display: table;
	clear: both;
	}
	}

	@media all and (min-width: 768px) {
	.container {
	width: 750px;
	}
	}

	@media all and (min-width: 992px) {
	.container {
	width: 970px;
	}
	}

	@media all and (min-width: 1200px) {
	.container {
	width: 1170px;
	}
	}

	@media all and (max-width:450px) {
	.column, .column.four, .column.three, .column.two {
	display: block;
	width: 95%;
	padding: 0;
	margin: 0 auto;
	float: none;
	}
	.column.extrapad {
	padding: 1%;
	margin-bottom: 10px;
	}
	.group {
	display: none;
	}
	}





/* DESKTOP SPECIFIC */
	@media screen and (min-width: 1366px) {


	}









