/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* ://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 766px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.02rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.02rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.02rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; font-weight:600; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 480px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #78b54f; }
a:hover {
  color: #4C8228; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 8px 15px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #78b54f;
  border-radius: 6px;
  border: 2px solid #78b54f;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #78b54f;
  border-color: #78b54f;
  background-color: #ffffff;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }
.button-white {
  background-color: #ffffff;
  color: #78b54f;
}
.button-white:hover {
  background-color: #78b54f;
  color: #ffffff;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– 
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Custom
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.green {color:#78b54f;}
.grey {color:#666666;}
.white {color:#ffffff;}
.centre {text-align:center;}
.right {text-align: right;}
.green-background {background-color: #78b54f;}


.logo img {
	width:276px;
	width: 210px;
	max-width: calc(100vw - 92px);
}
.footer-logo img {
	width:276px;
	max-width:76vw;
}
.menu-icon {
	position:absolute;
	top:10px;
	top: 0;
	right:40px;
	height:62px;
	width:62px;
	cursor:pointer;
}

#modal-menu .menu-icon {
	right:10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 300;
	padding-top:25px;
    left: 0;
    top: 0;
    width: 100vw; 
    height: 100vh; 
	background-color:rgba(120,181,79,0.95);
    background-color:rgb(120,181,79);
	text-align:center;
}

.modal-content {
	padding-top: 3vh;
	z-index:301;
	width: 100vw; 
    height: 100vw;
}

.modal-content a {
	color:#ffffff; 
	text-decoration:none;
}

.modal-content p {
	margin-bottom:-5px;
	font-weight:600;
	letter-spacing:0.01em;
	font-size:110%;
}

.header {
	width:100vw;
	background-color:#ffffff;
	padding:15px;
	position:fixed;
	top:0;
	left:0;
	z-index:3;
	height:57px;
	height: 36px;
}
.navigation {
	position:absolute;
	right:50px;
	top:5px;
	top: -6px;
}
.navigation a {
	margin:15px 9px 15px 9px;
	text-decoration:none;
	font-weight:600;
	letter-spacing:0.01em;
	padding-bottom:32px;
	padding-bottom: 22px;
	padding-left:6px;
	padding-right:6px;
}
.navigation a:hover {
	color:#78b54f;
	border-bottom:4px solid #78b54f;
}
.navigation a.active {
	border-bottom:4px solid #666666;
}
.navigation a.active:hover {
	color:#666666;
}
.navigation a.button {
	margin:15px;
	padding:8px 15px 8px 15px;
}
.navigation a.button:hover {
	border-bottom:2px solid #78b54f;
}
.feature-slider li {
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	height:60vh;
}
.feature-image li {
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	height:60vh;
}
.feature-text-wrapper {
	position:relative;
	width:100%;
	height:100%;
}
.feature-text-background {
	position: absolute;
	margin: 0;
	background-color: #78b54f;
	z-index: -1;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.feature-text {
	padding-top:40px;
	padding-bottom:40px;
	color:#ffffff;
	width:100%;
	z-index: 2;
	margin-bottom: 50px;
	position: relative;
}
.feature-text-img {
	width: 100px;
	z-index: 2;
	position: absolute;
	top: 0;
	margin-right: 50px;
}
.feature-text img {
	max-width: 100px;
}
.green-circle {
	position: absolute;
	top: 0;
	width: 100px;
	height: 100px;
	background-color: #78b54f;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	z-index: 1;
}
.feature-text-link {
	color: #ffffff;
}
.feature-text-link:hover {
	color: #ffffff;
}
.feature-text-h1 {
	padding: 15px;
	min-height: 58px;
}
.feature-text h1, .page-title h1 {
	font-weight:700;
	font-size:2.2rem;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	margin: 0;
}
.feature-text-button .button {
	vertical-align: middle;
	margin-bottom: 0;
	padding: 5px 10px;
}
.feature-heading {
	padding-top:30px;
	padding-bottom:30px;
	color:#ffffff;
	background-color:rgb(66,66,66);
	background-color:rgba(66,66,66,0.85);
	text-align:center;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
}
.feature-heading h1 {
	font-weight:700;
	font-size:4rem;
	margin-bottom:0px;
	padding:15px;
	letter-spacing:0.05em;
}
.service, .service-large {
	text-align:center;
	border:solid 4px #666666;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	padding-bottom:1.5rem;
	float:left;
	margin-bottom:70px;
	position:relative;
}
.service:hover, .service-large:hover {
	border:solid 4px #78b54f;
}
.service-icon {
	width:58px;
	height:70px;
	margin-top:-35px;
}
.service-icon-heading {
	width:80px;
	height:80px;
	margin-top:-70px;
	position:absolute;
	left:calc(50% - 80px);
}
.service-icon-heading:before {
	background-color:rgb(66,66,66);
	background-color:rgba(66,66,66,0.85);
	width:80px;
	height:40px;
	-webkit-border-radius:80px 80px 0 0;
	-moz-border-radius:80px 80px 0 0;
	border-radius:80px 80px 0 0;
	position:absolute;
	content:"";
}
.service-icon-heading img {
	width:70px;
	height:70px;
	padding:5px;
	position:absolute;
}
.service-link {
	text-decoration:none;
	color:#666666;
	cursor:pointer;
}
.service-link:hover {
	color:#666666;
}
.service-link .service p {
	font-size:1.5em;
	line-height:1.2em;
	font-weight:700;
	letter-spacing:0.04em;
	margin-bottom:0.7rem;
}
.service-link .service-large p {
	font-size:1.5em;
	line-height:1.2em;
	font-weight:700;
	letter-spacing:0.04em;
}
.service-link .button {
	padding:0px 7px;
	font-size:1.7rem;
	margin-bottom:0;
}
.service-link .button:hover {
	color: #ffffff;
 	border-color: #78b54f;
  	background-color: #78b54f;
}
.service-image-left {
	width:50%;
	margin-top:-35px;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	position:absolute;
	top:31px;
	left:-4px;
	height:191px;
	-webkit-border-top-left-radius:10px;
	-moz-border-top-left-radius:10px;
	border-top-left-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	-moz-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
}
.service-image-right {
	width:50%;
	margin-top:-35px;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	position:absolute;
	top:31px;
	right:-4px;
	height:191px;
	-webkit-border-top-right-radius:10px;
	-moz-border-top-right-radius:10px;
	border-top-right-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	-moz-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
}
.btn-small {
	padding:3px 9px;
}
.btn-small p {
	font-size:110%;
	margin-bottom:0;
}
.btn-large {
	padding:4px 14px;
}
.btn-large p {
	font-size:190%;
	margin-bottom:0;
}
.statement h2 {
	font-size:3.6rem;
	font-weight:300;
}
.statement {
	margin-top:80px;
	margin-bottom:80px;
}
.banner {
	width:100vw;
	padding-top:100px;
	padding-bottom:100px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.divider {
	margin-top:40px;
	margin-bottom:10px;
}
.divider .centre {
	background-color:#ffffff;
	margin-top:10px;
}
.line {
	border-top:4px solid #78b54f; 
}
.short-line {
	border-top:2px solid #666666; 
	max-width: 100px;
	margin: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}
.avatar {
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	border-radius:100%;
}
.testimonial {
	width:100vw;
	background:#ededed;
	padding-top:40px;
	padding-bottom:40px;
}
.testimonial h3 {
	font-size:1.6em;
}
.quote-banner {
	background-color:#78b54f;
	margin-bottom:0px;
	-webkit-border-top-left-radius:10px;
	-moz-border-top-left-radius:10px;
	border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	-moz-border-top-right-radius:10px;
	border-top-right-radius:10px;
}
.quote-banner .columns {
	padding:20px;
}
.quote-banner .button {
	border-color:#ffffff;
	margin-bottom:0px;
}
.footer {
	width:100vw;
	background:#666666;
}
.footer .columns {
	padding:20px;
}
.footer-nav a {
	text-decoration:none;
	color:#ffffff;
	font-weight:600;
	margin-left:30px;
}
#contactform label {
	display:inline-block;
	min-width:28%;
	vertical-align:top;
}
.dynamic-content {
	display:none;
	-webkit-border-bottom-right-radius:10px;
	-moz-border-bottom-right-radius:10px;
	border-bottom-right-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	-moz-border-bottom-left-radius:10px;
	border-bottom-left-radius:10px;
	color:#ffffff; 
	padding:15px; 
	padding-top:25px;
	margin-bottom:-20px;
}
.form-comment {
	margin-top:-76px;
	margin-bottom:76px;
	z-index:1;
}
.form-comment p {
	padding:0px; 
	margin:0px;
}
.checklist li {
	padding-bottom:0.6em;
	font-size:1.3em;
}
.checklist li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  color:#78b54f;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}
#sub-menu, #sub-menu2, #sub-menu3 {
	display:none;
	position:absolute;
	top:69px;
	background-color:rgb(255,255,255);
	background-color:rgba(255,255,255,0.85);
	padding:8px;
	border-top:4px solid #666666;
}
#sub-menu {
	left:30px;
}
#sub-menu2 {
	left:123px;
}
#sub-menu3 {
	left:334px;
}
#sub-menu::before, #sub-menu2::before, #sub-menu3::before {
	content:"";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #666666;
	position:absolute;
	top:-12px;
	left: calc(50% - 10px);
}
.sub-menu-link {
	padding:8px;
}
#sub-menu a, #sub-menu2 a, #sub-menu3 a {
	margin:0px;
	padding:0px;
}
#sub-menu a:hover, #sub-menu2 a:hover, #sub-menu3 a:hover {
	border:none;
}
#services-menu, #automation-menu, #projects-menu {
	display:none;
	width:100vw;
	background-color:rgb(66,66,66);
	background-color:rgba(66,66,66,0.85);
	padding-top:25px;
	padding-bottom:0px;
	margin-bottom:20px;
}
#services-menu::before, #automation-menu::before, #projects-menu::before {
	content:"";
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid rgb(66,66,66);
	border-bottom: 15px solid rgba(66,66,66,0.85);
	position:absolute;
	margin-top:-40px;
	left: calc(50% - 15px)
}
#services-open, #automation-open, #projects-open {
	display:none;
}
.background-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.background-image-eco-smart {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.caption-banner {
	padding:10px;
	text-align:center;
	margin-top:-2.5em;
}
.caption-banner h4 {
	margin:auto;
	background-color:#ffffff;
	padding:10px;
	padding-bottom:12px;
	max-width:80%;
	text-transform:uppercase;
	font-size:1.6em;
	font-weight:700;
	letter-spacing:0.03em;
}
.full-width-content-wrapper {
	width:100%;
	background-color:#efefef;
	padding-top:4em;
	padding-bottom: 4em;
}
.full-width-content-wrapper .container {
	width:95vw;
	max-width:1400px;
}
.card {
	background-color:#ffffff;
	margin-bottom:4em;
}
.card-inner {
	padding:15px;
}

.call-now {
	background-color:#ffffff;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	padding:10px;
	margin-top:35px;
	width:70%;
	margin-left:auto;
	margin-right:auto;
}
.call-icon {
	display:inline-block;
}
.call-text {
	padding:10px;
	display:inline-block;
}
.no-margin {
	margin:0;
}
.cta-phone {
	position: absolute;
	bottom: -51px;
	background-color: #78b54f;
	padding: 10px 25px 12px;
	-moz-border-bottom-left-radius:20px;
	-webkit-border-bottom-left-radius:20px;
	border-bottom-left-radius:20px;
	-moz-border-bottom-right-radius:20px;
	-webkit-border-bottom-right-radius:20px;
	border-bottom-right-radius:20px;
}
.cta-phone a {
	color: #ffffff;
	text-decoration: none;	
	font-size: 120%;
	font-weight: 600;
}
.cta-phone a:hover {
	text-decoration: none;
	color: #ffffff;
}
.smart-homes {
	padding: 30px 30px 0px;
	margin-top: 30px;
}
.smart-homes img {
	width: 100%;
	height: auto;
	max-width: 510px;
	max-height: 332px;
}
.smart-homes-text {
	padding: 30px 30px 0px;
}
.smart-homes-background {
	margin-top: 66px;
}
.Z-Wave-logo {
	padding-left: 30px;  
	margin-bottom: 90px;
}
.video-overlay {
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: rgba(134,188,95,0.4);
	min-height:300px;
}
.video-overlay img {
	margin-top: 105px;
}
#video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
    z-index: 300;
	width: 100vw;
	height: 100vh;
	background-color: rgb(134,188,95);
	background-color: rgba(134,188,95,0.6);
	transition: ease 1s;
}
.video-modal-container {
	padding: 20px;
	width: 100%;
	height: 100%;
}
.video-modal-close {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #ffffff;
	font-size: 20px;
	text-align: center;
	color: #78b54f;
	padding: 10px 20px 15px;
	cursor: pointer;
}
.small-caps-title {
	font-weight:700;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	margin: 0;
	font-size: 2rem;
}
.image-3col {
	width: 100%;
	height: relative;
	max-width: 308px;
}
.green-columns {
	padding: 15px;
	background-color: #78b54f;
	color: #ffffff;
	margin-top: 60px;
}
.green-columns .number {
	color: #78b54f;
	background-color: #ffffff;
	width: 80px;
	height: 70px;
	margin: auto;
	padding-top: 10px;
	-moz-border-radius:40px;
	-webkit-border-radius:40px;
	border-radius:40px;
	margin-top: -55px;
	margin-bottom: 20px;
}
.green-columns .number h3 {
	margin: 0;
}
.clear {
	text-align: center;
}
#mc-embedded-subscribe {
	margin: auto;
	margin-top: 20px;
}
#pop-up-modal {
	display: none;
	position: fixed;
	margin: auto;
	width: 800px;
	max-width: 100%;
	z-index: 9999999999999999;
	background-color: #ffffff;
}
.pop-up-modal-content {
	background-color: #78b54f;
	padding: 20px;
}
#colorbox {
	z-index: 3;
}
#cboxClose {
	position: absolute;
	top: -50px;
	right: 0;
}
#cboxOverlay {
	background-color: rgba(255,255,255,0.7)
}
