/*
Theme Name: Veridian Lander
Theme URI: https://veridianserviceparnters.com
Author: Drew C.
Author URI: 2Epic Inc.
Description: Just a little custom lander theme for Veridian
Version: 1.0
License: For client use only
License URI: https://veridianserviceparnters.com
Text Domain: veridianlander
*/
	
@charset "UTF-8";
/* Reset */
@import url('css/reset.css');
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:opsz,wght@18..144,700&family=Open+Sans:wght@400,600&display=swap');


	
html {
	font-size: 16px;
}

:root{
	--white: #fff;
	--dk-dk-green: #0d2c24;
	--dk-green: #153f35;
	--md-green: #a6b0ad;
	--lt-green: #a7b0ae;
	--dk-gray: #333; 
	--md-gray: #656565;
	--heading-font: 'Merriweather', Times, Serif;
	--body-font: 'Open Sans', Arial, Helvetica, sans-serif;
}



body {
	margin: 0;
	padding: 0;
	font-family: var(--body-font);
	font-weight: 400;
}

.container {
  position: relative;
  font-size: clamp(1rem, 0.65vw + 1rem, 1.25rem);
  text-align: center;
  color: var(--dk-green);
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  
/*  this is where the magic happens:  */
  background-attachment: fixed;
  padding: 100px 0;

}
.container.fifth {
	min-height: initial;
	background-color: #ffffff;;
	padding: 30px 0;
	margin-bottom: 100px;
}

.content {
	width: 80vw;
	max-width: 1100px;
	text-align: left;
	padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .content {
    width: 95vw;
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .content {
    width: 100%;
    padding: 0 2.5rem;
  }
}

.fifth .content {
	text-align: center;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font);
	font-weight: 700;
}
h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 2vw + 1rem, 3.75rem);
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(1.5rem, 1.75vw + 1rem , 2.5rem);
  margin: 1rem 0;
}
h3 {
  font-size: clamp(1.25rem, .5vw + 1rem , 1.75rem);
  margin: 1rem 0;	
}
h4 {
  font-size: clamp(1.1rem, .5vw + 1rem , 2rem);
  margin: 1rem 0;
}

p {
  line-height: 1.3;
  padding: 0px 0px 1.5rem;
}

a {
	text-decoration: none;
	color: var(--white);
}
a:hover {
	color: #ed8408;
}

a.button {
  display: inline-block;
  padding: 1rem 3.5rem;
  background-color: var(--dk-green);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0.3rem;
  text-align: center;
}
a.button:hover {
	background-color: #ed8408;
}
label span {
	color: #ed8408;
}
input, textarea {
	border: 1px solid #588b7f;
	padding: 8px 16px;
	margin-bottom: 1rem;
	margin-top: .25rem;
	border-radius: 0.25rem;
	color: #656565;
}
textarea {
	resize: vertical;
}

.blank,
.other {
  width: 100%;
  min-height: 60vh;
  background-color: var(--dk-green);
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 2.5rem;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column; /* Switch to row layout on larger screens */
  }
}


	
.first {
	padding: 0;
	background-image: url(images/iStock-2175973691.jpg);
}

.second {
  position: relative;
  background-color: var(--dk-green);
  color: var(--white) !important;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 12rem;
}
.second h1 {
	color: var(--white);
}

.third { 
	background-image: url(images/compass-green.jpg);
}

.fourth {
  position: relative;
  background-color: var(--dk-green);
  background-image: url('images/green-logo-bg.png');
  color: var(--white) !important;
  padding-top: 0px;
}

.column.form {
	background-color: var(--white);
	padding: 1.5rem;
	color: var(--dk-green);
	border-radius: 1rem;
}


.first img.logo {
	height: 50vh;
	max-height: 300px;
	max-width: 50vw;
}
.second img.logo {
	width: clamp(4.5rem, 1vw, 6.25rem);
	height: auto;
	position: absolute;
	top: 4rem;
}
.second hr {
	border: none;
	margin: 2.5rem 0;
	background-color: #2d534a;
	height: 1px;
}
.third .content {
	text-align: center;
}
.third .value {
/* 		text-align: left; */
	background-color: rgba(255,255,255,0.6);
	padding: 1.5rem 2rem;
	width: 80%;
	margin: 1rem auto 0;
	border-radius: 0.25rem;
}
@media screen and (max-width: 1024px) {
  .third .value {
    width: 100%;
  }
}


.third .value h3 {
	margin: 0 0 .5rem;
}
.third .value p {
	color: var(--md-gray);
	padding-bottom: 0;
}

.footer {
	width: 100%;
	background-color: var(--dk-dk-green);
	padding: 1rem 50px;
}
.footer .content {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	color: var(--md-green);
}
.footer-left, .footer-right {
	width: 100%;
}
.footer-left {
	text-align: center;
}
.footer-right. {
	text-align: right;
}

@supports ( -webkit-touch-callout : none) {
	.container {
	background-attachment:scroll;
	height: auto;
	}
}

@supports not ( -webkit-touch-callout : none) {
	.container {
	background-attachment: fixed;
	}
}


/********************************************
	CONTACT FORM 7 OVERRIDES
********************************************/
.wpcf7-form label {
	width: 100%;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="email"], .wpcf7-form select, .wpcf7-form textarea  {
	border: 1px solid #588b7f;
	padding: 12px 16px;
	margin-bottom: 1rem;
	margin-top: .25rem;
	border-radius: 0.25rem;
	color: #656565;
	width: 100%;
	font-size: 1rem;
}
.wpcf7-form p input {
	margin-bottom: 0px;
}
.wpcf7-form textarea {
	resize: vertical;
}
.wpcf7 p {
	padding-bottom: 0;
}
input.wpcf7-submit {
	background-color: var(--dk-green);
	color: var(--white);
	width: 100%;
	text-align: center;
	border-radius: .25rem;
}
.v_recaptcha {
	margin-bottom: 10px;
    margin-top: -10px;
    display: block;
}