
body{
	font-family: 'Ubuntu Condensed', sans-serif;
}


body:after{
	content: "";
	background: url('/assets/images/grey-wood.jpg');
	opacity: 0.4;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: fixed;
	z-index: -1;
}

/* Make all cards the same size */
.cell{
	/* display: flex !important; */
}

.h1, h1, h5 {
	font-family: 'Ubuntu Condensed', sans-serif;
}

.bold-text{
	font-weight: bolder;
}
	
.about-p{
	font-size: 1.2rem;
}

.index-p{
	font-size: 1.5rem;
}

.project-details{
	font-weight: bold;
}

.project-title-card{
	width: 100%;
	font-size: x-large;
    font-weight: 600;
}

.shape{
	text-align:center;
	background:
	linear-gradient(65deg , transparent 50%,rgba(3,78,136,0.7) 50%) left no-repeat, /* slant part */
	linear-gradient(0deg , rgba(3,78,136,0.7),rgba(3,78,136,0.7)) 100px 0 no-repeat; /* Square part */
	
	background-size:100px 100%, 100% 100%; /* Square part */
	width:auto;
	height:auto;
	line-height:30px;
	padding:0 20px;
	color:white;
	margin:20px auto;
	position:relative;
}


/* Remove step on zip code field */
.postal-code::-webkit-inner-spin-button,
.postal-code::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}


/* -------------------- Menu ------------------------------------------- */

/* title bar is mobile */
.title-bar{
	background: rgba(255, 255, 255, 0);
	padding: .8rem !important;
}

.top-bar{
	padding: 0 !important;
}

.top-bar a{
	height: 100%;
	text-decoration: none;
	position: relative;
}

/* top bar is desktop */
.top-bar, .top-bar, .top-bar ul {
	background: rgba(255, 255, 255, 0) !important; 
}

.menu li:hover{
	background-color: rgba(167, 205, 240, 0.39);  /* rgba(108, 166, 120, 0.57) = green  rgba(168, 250, 185, 0.57) = grey original */
}

.menu .active > a {
	background-color: transparent;
	border-bottom: 5px solid #000000;
	color: rgba(6, 6, 6, 1);
	text-transform: uppercase;
	font-size: larger !important;
/*
	background-color: transparent;
	color: rgba(6, 6, 6, 1);
	box-shadow: 0px 0px 15px rgba(111, 109, 112, 1);
	text-shadow: 0px 0px 2px rgba(111, 109, 112, 1);
	border-radius: 20px;
*/
}

.container{
	width: 90%;
	margin: auto;
}

.container-stripe{
	width: 50%;
	margin: auto;
}

.container-contact{
	width: 70%;
	margin: auto;
}

.card{
	background-color: #f3f2f2;
	border-radius: 5px;
	min-height: 170px;
	max-height: 170px;
	position: relative; 
}
.card-divider{
	background: none;
/* 	background-color: rgba(134, 163, 235, 0.62); */
}
.card-section{
	position: absolute;
    	bottom: 0;
    	width: 100%;
}

.error{
	font-weight: bold !important;
	color: #b50c0c !important;
}

 
textarea:focus{
	border: 1px solid #069a21 !important;
}

input:focus{
	border: 1px solid #069a21 !important;
}

.social-media > a:nth-of-type(1) {
	margin-right: 10px;
}

.fab {
	color: #272626 !important;
}

.content{
	width: 75%;
	margin: 0 auto;
}

h3{
	margin-top: 10px;
}

.grid-y{
	margin-left: 15px;
	width: 100%;
	height: 0;
	margin-bottom: 165px !important;
}

.form-control{
    box-sizing: border-box;
    height: 2.4375rem;
    width: 50% !important;
    padding: .5rem;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    transition: box-shadow .5s,border-color .25s ease-in-out;
    -webkit-appearance: none;
}
.form-control:focus{
	border: 1px solid #069a21 !important;
}

.amount{
	width: 20% !important;
	margin-bottom: 75px;
}

#stripe-submit{
	margin-bottom: 10px;
}

a img {
	width: 100%;
}


/* ------------------ Loader ----------------------------- */
/* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width: 650px) {
	left: 50%;
	top: 30%;
}
/* ------------------ End Loader ----------------------------- */

/* ------------------------- Center ReCaptcha --------------------------------------------- */

#ReCaptcha{
	width: 100%;
}
/* End id selector */
.g-recaptcha{
/* 	width: 75%; */
	display: inline-block;
/* 	margin: 0 auto; */
}/* End id selector */

/* ------------------------- End Center ReCaptcha --------------------------------------------- */


/* ------------------ button container hamburger ---------------------------- */
.button_container {
  position: absolute; /* change from fixed to absolute 01-29-2019 */
  top: 1.2%; /* Position from top of page */
  right: 2%; /* Position from right of page  (remove and it will move to left)*/
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
  outline: none;
  background-color: rgba(255, 255, 255, 0);
}
.button_container:hover {
  opacity: .7;
}
/* ------------------ Active hamburger ---------------------------- */
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #960808; /* 'X' color to close */
}
.button_container.active .middle {
  opacity: 0;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #960808; /* 'X' color to close */
}
/* ------------------ End Active hamburger ---------------------------- */
.button_container span {
  background: #0d550a; /* 3 lines color */
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
/* ------------------ End button container hamburger ---------------------------- */

.overlay {
  position: fixed;
  background: #1a1a1a;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 5 !important;
}
.overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: ;
  height: 25%;
  height: calc(100% / 3); /* Height of each li item calculated here */
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: ;
  position: relative;
  color: #fd7014;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

.overlay .active {
  color: #ffffff;
  text-shadow: 0px 0px 10px #bdbcbc;
  font-weight: bold;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

ul{
	list-style-type: none;
	margin: 0;
}
.ul-traits{
	width: 100%;
	margin: 0 auto;
}

.usps-span{
	width: 100%;
}

.submit{
	width: 55%;
	margin: 0 auto;
	margin-top: 15px !important;
	-webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
}
.usps{
	width: 25%;
	display:block; /* this fixed center issue */
	margin: 0 auto !important;
}
.submit:hover{
	background-color: #4CAF50 !important; /* Green */
    color: white !important;
    border: none !important;
}

form{
	margin-top: 25px;
}

.contact-banner{
	width: 100%;
	height: 10%;
}


/* -------- Remove other menu flicker ------------ */
@media screen and (max-width: 39.9375em) {
	#main-nav{
		display: none !important;
	}
	
	.container-contact{
		width: 100%;
		margin: auto;
	}
	
	.container-stripe{
		width: 95%;
		margin: auto;
	}
	
	.submit{
		width: 97%;
	}
	
	.ul-traits{
		width: 60%;
	}
	
/*
	ul {
		margin-left: 50px;
		list-style-type: none;
	}
*/
	
	.grid-y{
		margin-left: 0;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.amount{
		width: 100% !important;
		margin-bottom: 0;
	}
	
	.form-control{
		width: 100% !important;
	}
	
	/* set about content for mobile */
	.content{
		width: 95%;
	}
	
	/* set index icons for mobile */
	.fa-3x {
		font-size: 5em !important;
	}
	
	.h1, h1 {
		font-size: 3rem;
	}
	

	.index-p{
		font-size: 2rem;
	}
	
/*
	a img {
		height: 200px;
	}
*/

	
/*
	.bold-text{
		font-weight: bolder;
	}
*/
	
/*
	.about-p{
		font-size: 1.2rem;
	}
*/

	
/*
	.card{
		width: 300px;
	}
*/
	
} /* End (max-width: 39.9375em) for main nav display */

/*
@media screen and (max-width: 639px) {
	.small-1>.cell {
		width: 50%;
	}
}

@media screen and (max-width: 400px) {
	.small-1>.cell {
		width: 92%;
	}
}
*/

@media screen and (min-width: 640px) {
	.title-bar{
		display: none !important;
	}
	#overlay{
		display: none !important;
	}
} /* End (min-width: 640px) for title bar display */

/* @media screen and (min-width: 1400px) { */
/*
	ul {
		margin-bottom: 0;
		margin-left: 90px;
	}
*/
/* } */ /* End over 1400px size */
/* -------- Remove other menu flicker ------------ */
/*--------------------- End Menu --------------------------------------- */


h1{
	margin-top: 40px;
}

small{
	font-size: 14px;
	color: #4c7ff5 !important;
}

.button{
	margin-top: 90px;
}


.margin{
	margin-top: 40px;
	margin-right: 5px;
	margin-left:  5px;
}

.margin-bott-10px label{
	margin-bottom: 10px !important;
}

/* ------------------ Override DataTables added inline css for width ------------------------- */
.width-100{
	width: 100% !important;
}
/* ------------------ End Override DataTables added inline css for width --------------------- */

.menu .menu-text {
	padding: 0 !important;
}

.logo{
	font-size: 120%;
	font-family: 'Rubik Mono One', sans-serif; 
	z-index: 300;
	top: .5em;
	font-weight: 700;
	padding: 0 !important;
	margin: 0 !important;
}
.logo a{
	color: black;
	text-decoration: none;
}
.logo a span {
	color: #0d550a;
}


@media screen and (max-width: 39.9375em) {
	
	.logo{
		font-size: 100%;
	}
	.logo a{
		color: #0d550a;
		text-decoration: none;
	}
	.logo a span {
	color: black;
	}
}

/* ------------------------- Responsive Expanded buttons -------------------------- */

@media screen and (max-width: 39.9375em) {
  .button.small-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .button.medium-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}

@media screen and (max-width: 63.9375em) {
  .button.medium-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}

@media print, screen and (min-width: 40em) {
  .button.medium-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .button.large-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}

@media screen and (max-width: 74.9375em) {
  .button.large-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}
@media print, screen and (min-width: 64em) {
  
  .button.large-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    } 
}
/* ------------------------- End Responsive Expanded buttons -------------------------- */


#phone{
    display: none;
}
