:root {
	--white: rgb(255,255,255);
	--black: rgb(0,0,0);
	--light-green: #aac2f2;
	--dark-green: #2c3442;
	--light-brown: #6a8fd9;
	--dark-brown: #455f8c;
	--darker-brown: #1d2d4a;
	
	--background-white: #FCFCFC;
	--header-bg: #b4ceff;
	--menu-item-active: var(--white);
	--menu-item-inactive: var(--dark-brown);
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
	opacity: 0;
  }
  100% {
    transform: translateX(0);
	opacity: 1;
  }
}
@keyframes slideInFromBottom {
  0% {
    transform: translateY(50%);
	opacity: 0;
  }
  100% {
    transform: translateY(0);
	opacity: 1;
  }
}

*,html,body {
	padding: 0;
	margin: 0;
	border: 0;
	font-family: "Titillium Web", Arial, Tahoma, sans-serif;
}


.reveal{
  position: relative;
  transform: translateY(300px);
  opacity: 0;
  transition: 0.4s all ease-out;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}


html {
	height: 100vh;
	scroll-behavior: smooth;
	width: 100%;
	overflow-x: hidden;
}

body {
	background: var(--background-white);
	width: 100%;
	overflow: hidden;
}
#header_placeholder {
	width: 100%;
	height: 90px;
}
header{
	background-color: var(--header-bg);
	z-index: 200;
	height: 90px;
	width: 100%;
	position: fixed;
	top:0px;
	left:0px;
}

nav {
	margin: auto;
	padding: 0 5px;
	box-sizing: border-box;
	height: 90px;
	display: flex;
	justify-content: space-between;
}
nav #menu_hamburger {
	width: 100%;
	max-width: 790px;
}
	nav #menu {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	nav #menu .menu_item {
		display: block;
		height: 100%;
		line-height: 90px;
		font-size: 16px;
		font-weight: 600;
		color: var(--menu-item-inactive);
		transition: 0.3s;
		position: relative;
		box-sizing: border-box;
		padding: 0 10px;
		text-align: center;
	}
	nav #menu .menu_item:after {
		content: "";
		opacity: 0;
		display: block;
		transition: 0.3s;
		position: absolute;
		bottom: 0px;
		left: calc( 50% - 10px );
		width: 0; 
		height: 0; 
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid var(--menu-item-active);
	}
	nav #menu .menu_item:hover, nav #menu .menu_item_active{
		color: var(--menu-item-active);
		background-color: var(--light-brown);
	}

	nav #menu .menu_item:hover:after, nav #menu .menu_item_active:after{
		opacity: 1;
	}

	nav .logo img {
		float:left;
		padding-right: 10px;
		padding-top: 10px;
	}
	nav .logo{
		color: var(--white);
		font-size: 18px;
		text-transform: uppercase;
		line-height: 90px;
		min-width: 250px;
	}

	a {
		text-decoration: none;
	}
							
	
	#menu__toggle {
	  opacity: 0;
	}
	#menu__toggle:checked + .menu__btn > span {
	  transform: rotate(45deg);
	}
	#menu__toggle:checked + .menu__btn > span::before {
	  top: 0;
	  transform: rotate(0deg);
	}
	#menu__toggle:checked + .menu__btn > span::after {
	  top: 0;
	  transform: rotate(90deg);
	}
	.menu__btn {
	  width: 26px;
	  height: 26px;
	  cursor: pointer;
	  display:block;
	}
	.menu__btn > span,
	.menu__btn > span::before,
	.menu__btn > span::after {
	  display: block;
	  position: absolute;
	  width: 26px;
	  height: 2px;
	  background-color: var(--white);
	  transition-duration: .25s;
	}
	.menu__btn > span::before {
	  content: '';
	  top: -8px;
	}
	.menu__btn > span::after {
	  content: '';
	  top: 8px;
	}
	
	#menu__toggle, .menu__btn {	
		margin-top: 15px;
		display: none;
	}


.landing_page {
	background-image: url("../images/landing_bg_pexels_quintin_gellar.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 600px 0 150px 0 rgba(0,0,0, 0.7);
	
	min-height: 750px;
	height: calc( 100% - 150px );
	box-sizing: border-box;
	padding: 200px 150px 100px 150px;
	
	overflow-x: hidden;
}

.landing_page h1, .landing_page h2 {
	animation: 0.3s ease-out 0s 1 slideInFromRight;
	
	font-size: 38px;
	letter-spacing: 1px;
	text-transform:uppercase;
	
	display: inline-block;
	padding: 5px 15px;
	box-sizing:border-box;
}


.landing_page h1 {
	color: var(--light-brown);
	font-size: 42px;
}
.landing_page h2 {
	color: var(--white);
	font-size: 38px;
	margin-top: 5px;
}

.landing_page .contact_button {
	animation: 0.4s ease-out 0s 1 slideInFromRight;
	
	display: inline-block;
	color: var(--light-brown);
	font-size: 24px;
	font-weight: 600;
	
	padding: 8px 12px;
	border: solid 2px var(--light-brown);
	margin-top: 100px;
	margin-left: 17px;
    
	transition: 0.3s;
	box-sizing:border-box;
}

.landing_page .contact_button:hover {
	color: var(--white);
	border-color: var(--white);
}

.column_content p{
	padding: 0;
	margin: 0;
	border: 0;
}

.column_content:first-of-type div {
	animation: 0.3s ease-out 0s 1 slideInFromBottom;
}

.column_content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: auto;
	position: relative;
	margin-top: 50px;
	margin-bottom: 50px;
	min-height: 440px;
}
.low-height {
	min-height: 80px;
}
.div_100 {
	width: 100%;
}
.div_70 {
	width: 67%;
}
.div_60 {
	width: 60%;
}
.div_50 {
	width: 50%;
}
.div_40 {
	width: 40%;
}
.div_30 {
	width: 33%;
}

.div_30, .div_40, .div_50, .div_60, .div_70, .div_100 {
	box-sizing: border-box;
	text-align: justify;
	padding: 5px 20px;
}
.column_content div:first-of-type {
	padding: 5px 20px 5px 0;
}
.column_content div:last-of-type {
	padding: 5px 0 5px 20px;
}

.column_content img {
	max-width: 100%;
	border-top: 4px solid var(--light-brown);
}
.column_content .img-no-border {
	border: 0;
}

.column_content h3 {
	text-transform: uppercase;
	font-size: 24px;
	color: var(--dark-brown);
}


.header_section {
	background-image: url("../images/header_section.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 0px 400px 10px 0 rgba(0,0,0, 0.6);
	
	min-height: 200px;
	box-sizing: border-box;
	padding: 80px 50px;
	line-height: 40px;
	
	color: var(--white);
	font-size: 30px;
	text-align: center;
	
}

.header_section_bg2 {
	background-image: url("../images/landing_bg_pexels_quintin_gellar.webp");
	min-height: 240px;
	padding: 100px 50px;
}

.max-width{
	width: 1190px;
}

.collating_image {
	display:block;
	margin-top: -200px;
	margin-left: 80px;
	position: relative;
}


footer {
	background-color: var(--dark-green);
	color: var(--white);
	padding-top: 20px;
	padding-bottom: 20px;
}
footer .max-width {
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

footer .max-width div{
	text-align: center;
}
footer a {
	color: var(--light-green);
}
footer h3 {
	color: var(--light-brown);
}

.subtitle {
	font-weight: 600;
	color: var(--darker-brown);
}
.italic {
	font-style: italic;
}
.center-align {
	text-align: center;
}
.right-align {
	text-align: right;
}
ul {
	padding-left: 30px;
}
li {
	position: relative;
	list-style: "";
}
li:before {
	content: "";
	display: block;
	position: absolute;
	top:8px;
	left: -18px;
	width: 0; 
	height: 0; 
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid var(--dark-brown);
}

@media screen and (max-width:1280px) {
    .max-width{
		width: 970px;
	}

	
	.landing_page {
		padding: 60px 40px;
		min-height: 500px;
		height: 500px;
	}
	.landing_page h1 {
		font-size: 32px;
	}
	.landing_page h2 {
		font-size: 26px;
	}
}

@media screen and (max-width:969px) {
	
	@keyframes slideInFromRight {
		0% {
			transform: translateX(0);
			transform: translateY(50%);
			opacity: 0;
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}

    .max-width{
		width: 95%;
	}
	.div_30, .div_40, .div_50, .div_60, .div_70, .div_100  {
		width: 100% !important;
		padding: 15px 10px !important;
		overflow-x: hidden;
		
		text-align: center;
	}
	.column_content {
		flex-wrap: wrap;
	}
	.landing_page h1, .landing_page h2, .landing_page .contact_button {
		margin: auto;
		display: block;
		text-align: center;
		width: 100%;
		max-width: 420px;
	}
	nav #menu {
		transition: 0.3s;
		
		position: fixed;
		top: 90px;
		right: -100%;
		
		display: block;
		width: 90%;
		max-width: 400px;
		
		z-index: 200;
		height: 100%;
		background-color: var(--dark-green);
	}	
	nav #menu .menu_item {
		font-size: 24px;
		text-transform: uppercase;
		text-align: right;
		font-weight: 600;
		
		padding-right: 20px;
		display: block;
		line-height: 60px;
		height: 60px;
	}	
	nav #menu .menu_item:after {
		display: none;
	}		
	#menu__toggle, .menu__btn {
		display: block;
	}
	nav #menu_hamburger {
		width: 30px;
	}	
	
	#menu__toggle:checked ~ #menu {
	  display:block;
	   right: 0px;
	}
	.collating_image {
		display: none;
	}
	ul {
		padding-left: 10px;
	}

}