/*
Global Variables

@import this file at the top of each page
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
/*
Theme Name: kickoff
Author: Daelen Berg
Author URI: http://arraystudios.com/
Description: A Blank Wordpress Starter Template

kickoff is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
*/
/*--------------------------------------------------------------
	TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Links
# Alignments
# Clearings
# Content
	## Comments
	## Media
	## Captions
	## Galleries
	## Columns
# Loadmore
# Wysiwyg Image Resets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

/*
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
*/
mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  line-height: 0px;
  font-size: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
  margin-top: 0px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid #ccc;
  border-radius: 0px;
  background: #e6e6e6;
  color: black;
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  outline: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #afafaf;
  background: #afafaf;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  border-color: #ccc;
  background: #e6e6e6;
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #afafaf;
  background: #afafaf;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  vertical-align: middle;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus {
  color: #111;
  outline: 1px solid #b5bdff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea {
  padding: 5px 10px;
}

textarea {
  width: 100%;
  resize: none;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #0caefe;
}

a:hover,
a:focus,
a:active {
  color: #0190d6;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clearfix:after,
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  float: left;
  position: relative;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

@media screen and (max-width: 750px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    float: left;
    position: relative;
  }
}

/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
#array-share ul, #array-share li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
  line-height: 0;
}

#array-share li {
  display: inline-block;
}

#array-share li a {
  display: block;
}

#array-share li svg {
  height: 24px;
}

#array-share li path {
  fill: #404040;
}

/*--------------------------------------------------------------
# Load More Posts
--------------------------------------------------------------*/
.ajax-loader {
  display: block;
  position: relative;
  text-align: center;
  margin: 100px 0;
}

.ajax-loader .ajax-spinner {
  display: inline-block;
  border: 6px solid #0caefe;
  /* Light grey */
  border-top: 6px solid #474c52;
  /* Blue */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 1s linear infinite;
}

.ajax-loader .ajax-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
  color: #474c52;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.misha_loadmore {
  background-color: #ddd;
  border-radius: 2px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px 0;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.misha_loadmore:hover {
  background-color: #767676;
  color: #fff;
}

/*--------------------------------------------------------------
# Wysiwyg Image Resets
--------------------------------------------------------------*/
/*
	img.alignright {
		float: right;
		margin: 0 0 1.5em 1.5em;

	}

	img.alignleft {
		float: left;
		margin: 0 1.5em 1.5em 0;
	}

	img.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.alignright {
		float: right;
	}

	.alignleft {
		float: left;
	}

	.aligncenter {
		display: block; margin-left: auto; margin-right: auto;
	}
*/
/*
HEADINGS
*/
.primary-heading {
  font-size: 44px;
  line-height: 1.2;
  margin: .5em 0px;
  font-weight: 200;
}

@media screen and (max-width: 1300px) {
  .primary-heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 900px) {
  .primary-heading {
    font-size: 30px;
  }
}

.secondary-heading {
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 1em 0px;
  font-weight: 400;
  color: #0caefe;
}

@media screen and (max-width: 1300px) {
  .secondary-heading {
    font-size: 18px;
  }
}

.secondary-heading-grey {
  font-size: 22px;
  line-height: 1.55;
  margin: 0px 0px 1em 0px;
  font-weight: 400;
  color: #474c52;
}

@media screen and (max-width: 1300px) {
  .secondary-heading-grey {
    font-size: 18px;
  }
}

/*
FONTS
*/
/*
LINKS
*/
.custom-button a {
  display: inline-block;
  color: white;
  font-weight: 400;
  padding: 15px 45px;
  margin: 0px 20px 15px 0px;
  background: #0caefe;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

@media screen and (max-width: 900px) {
  .custom-button a {
    padding: 13px 30px;
  }
}

.custom-button a:hover {
  background: #0190d6;
  color: white;
}

/*
Navigation Stylesheet

Holding styling for header/footer navigation
and mobile nav.
*/
#navbar {
  background: white;
  position: relative;
  z-index: 9999;
}

@media screen and (max-width: 900px) {
  #navbar {
    padding: 0;
  }
}

#navbar.scrolled .bot-nav .site-logo path, #navbar.scrolled .bot-nav .site-logo polygon {
  fill: #d5dde1;
  -webkit-transition: fill 0.2s ease-out;
  -moz-transition: fill 0.2s ease-out;
  -ms-transition: fill 0.2s ease-out;
  -o-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}

#navbar.scrolled .bot-nav .site-logo:hover path, #navbar.scrolled .bot-nav .site-logo:hover polygon {
  fill: #474c52 !important;
}

#navbar .top-nav {
  background: #f4f6f8;
  font-size: 12px;
  font-weight: 600;
  padding: 0 7.5%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #navbar .top-nav {
    font-size: 11px;
  }
}

@media screen and (max-width: 600px) {
  #navbar .top-nav {
    padding: 0px 6%;
  }
}

#navbar .top-nav:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 23%;
  height: 500px;
  transform-origin: 0% 0%;
  transform: rotate(-19deg);
  background: #d5dde1;
}

@media screen and (max-width: 600px) {
  #navbar .top-nav:after {
    display: none;
  }
}

#navbar .top-nav a {
  color: #474c52;
  display: inline-block;
  padding: 5px 18px 5px 0px;
}

@media screen and (max-width: 600px) {
  #navbar .top-nav a {
    padding: 4px 10px 4px 0px;
  }
}

#navbar .top-nav a:hover {
  color: #0caefe;
}

#navbar .top-nav a.quote {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .5px;
}

@media screen and (max-width: 600px) {
  #navbar .top-nav a.quote {
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: none;
  }
}

#navbar .bot-nav {
  padding: 0px 7.5% 0px 7.5%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  #navbar .bot-nav {
    align-items: center;
  }
}

@media screen and (max-width: 600px) {
  #navbar .bot-nav {
    padding: 0px 6%;
  }
}

#navbar .bot-nav .left-nav {
  display: flex;
  align-items: flex-end;
}

#navbar .bot-nav .logo {
  line-height: 0px;
  padding-top: 35px;
  padding-bottom: 23px;
}

@media screen and (max-width: 900px) {
  #navbar .bot-nav .logo {
    padding: 20px 0px;
  }
}

@media screen and (max-width: 600px) {
  #navbar .bot-nav .logo {
    padding: 15px 0px;
  }
}

@media screen and (max-width: 600px) {
  #navbar .bot-nav .logo {
    padding: 10px 0px;
  }
}

#page {
  min-height: 100%;
  margin: 0 auto;
}

.site-branding {
  display: inline-block;
  float: left;
  line-height: 0px;
  font-size: 0px;
}

.site-icon {
  width: 38px;
  height: 38px;
}

@media screen and (max-width: 500px) {
  .site-icon {
    height: 30px;
    width: 30px;
  }
}

.site-logo {
  height: 25px;
}

@media screen and (max-width: 500px) {
  .site-logo {
    height: 20px;
  }
}

nav ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

#header_nav,
.menu ul {
  float: right;
  list-style-type: none;
  padding: 0px 0px 0px 15px;
}

@media screen and (max-width: 1000px) {
  #header_nav,
  .menu ul {
    padding-left: 10px;
  }
}

@media screen and (max-width: 900px) {
  #header_nav,
  .menu ul {
    display: none;
  }
}

#header_nav li,
.menu ul li {
  float: left;
  position: relative;
  padding: 0px;
}

@media screen and (max-width: 900px) {
  #header_nav li,
  .menu ul li {
    float: none;
  }
}

#header_nav li.menu-item-has-children > a,
.menu ul li.menu-item-has-children > a {
  background: url("/wp-content/themes/terrawest/images/shell/arrow-down.png") right 15px center no-repeat;
  background-size: 16px;
  padding-right: 45px;
}

#header_nav li.current-menu-item > a,
.menu ul li.current-menu-item > a {
  color: #0caefe;
}

#header_nav li.current-menu-item > a:hover,
.menu ul li.current-menu-item > a:hover {
  color: #0190d6;
}

#header_nav li a,
.menu ul li a {
  color: #474c52;
  text-decoration: none;
  padding: 15px 15px;
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

#header_nav li a:hover,
.menu ul li a:hover {
  color: #0190d6;
}

@media screen and (max-width: 1200px) {
  #header_nav li a,
  .menu ul li a {
    font-size: 17px;
    padding: 18px 15px;
  }
}

@media screen and (max-width: 1000px) {
  #header_nav li a,
  .menu ul li a {
    font-size: 15px;
    padding: 18px 13px;
  }
}

@media screen and (max-width: 900px) {
  #header_nav li a,
  .menu ul li a {
    display: block;
    width: 100%;
  }
}

#header_nav li .sub-menu,
.menu ul li .sub-menu {
  display: none;
  position: absolute;
  left: 0px;
  top: 66px;
  z-index: 99;
  background: #41464b;
  width: 300px;
  padding: 17px 0px;
  margin: 0px;
}

@media screen and (max-width: 1000px) {
  #header_nav li .sub-menu,
  .menu ul li .sub-menu {
    top: 63px;
  }
}

#header_nav li .sub-menu:after,
.menu ul li .sub-menu:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 50px;
  width: 14px;
  height: 14px;
  border: 7px solid #41464b;
  border-top: 7px solid #0caefe;
}

#header_nav li .sub-menu li,
.menu ul li .sub-menu li {
  display: block;
  float: none;
}

#header_nav li .sub-menu li a,
.menu ul li .sub-menu li a {
  color: white;
  text-transform: uppercase;
  padding: 8px 30px;
  font-size: 13px;
  display: block;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

#header_nav li .sub-menu li a:hover,
.menu ul li .sub-menu li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 900px) {
  #header_nav,
  .menu ul {
    display: none;
  }
}

/* Footer Navigation. */
.site-footer {
  padding: 40px 7.5% 35px 7.5%;
  clear: both;
  border-top: 3px solid #eceff1;
  position: relative;
}

@media screen and (max-width: 900px) {
  .site-footer {
    padding: 5% 6%;
  }
}

.site-footer:after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0px;
  height: 3px;
  background: #d5dde1;
  width: 55%;
}

.site-footer .footer-branding {
  display: inline-block;
  float: left;
  line-height: 0px;
  font-size: 0px;
}

.site-footer .footer-branding .footer-logo {
  height: 80px;
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

@media screen and (max-width: 1100px) {
  .site-footer .footer-top {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-top {
    flex-wrap: wrap;
    margin-bottom: 0px;
    display: block;
  }
}

.site-footer .footer-top .footer-contact {
  font-size: 15px;
  text-align: right;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 1200px) {
  .site-footer .footer-top .footer-contact {
    font-size: 13px;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-top .footer-contact {
    width: 100%;
    text-align: center;
  }
}

.site-footer .footer-top .footer-contact span {
  display: block;
  color: #97a1a5;
}

.site-footer .footer-top .footer-contact a {
  color: #474c52;
}

.site-footer .footer-top .footer-contact a:hover {
  color: #0190d6;
}

.site-footer .footer-bot {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  color: #97a1a5;
}

@media screen and (max-width: 1200px) {
  .site-footer .footer-bot {
    font-size: 13px;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot {
    flex-wrap: wrap;
  }
}

.site-footer .footer-bot .footer-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot .footer-logo {
    width: 100%;
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.site-footer .footer-bot .footer-logo img {
  height: 20px;
  width: 179px;
  margin-right: 20px;
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot .footer-logo img {
    margin: 20px auto;
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot .footer-logo span {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot .footer-contact {
    width: 100%;
  }
}

.site-footer .footer-bot .footer-contact span {
  display: inline-block;
  margin-left: 20px;
}

@media screen and (max-width: 1100px) {
  .site-footer .footer-bot .footer-contact span {
    display: block;
    margin: 0px 0px 5px 0px;
    text-align: right;
  }
}

@media screen and (max-width: 900px) {
  .site-footer .footer-bot .footer-contact span {
    text-align: center;
  }
}

#footer_nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 200px;
  width: 500px;
}

@media screen and (max-width: 900px) {
  #footer_nav {
    height: auto;
    width: 100%;
    flex-direction: row;
    margin: 0 auto;
    padding: 0px 30px 20px 30px;
  }
}

#footer_nav li {
  position: relative;
  float: none;
  display: block;
  padding: 0px;
}

@media screen and (max-width: 900px) {
  #footer_nav li {
    float: none;
    width: 50%;
    text-align: center;
  }
}

#footer_nav li a {
  padding: 5px 0px;
  color: #474c52;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

#footer_nav li a:hover {
  color: #0190d6;
}

@media screen and (max-width: 900px) {
  #footer_nav li a {
    display: block;
    width: 100%;
  }
}

#footer_nav li .sub-menu {
  float: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 130px;
  padding: 0px;
}

@media screen and (max-width: 900px) {
  #footer_nav li .sub-menu {
    display: none;
  }
}

#footer_nav li .sub-menu li {
  padding: 0px 40px 0px 0px;
}

@media screen and (max-width: 900px) {
  #footer_nav li .sub-menu li {
    width: 100%;
  }
}

#footer_nav li .sub-menu a {
  color: #97a1a5;
  text-transform: none;
  letter-spacing: 0px;
  font-weight: 400;
}

#footer_nav li .sub-menu a:hover {
  color: #0190d6;
}

/* Mobile Navigation. */
#mobile_nav {
  display: none;
  clear: both;
  text-align: center;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  position: absolute;
  top: 109px;
  left: 0px;
  right: 0px;
}

@media screen and (max-width: 600px) {
  #mobile_nav {
    top: 85px;
  }
}

@media screen and (max-width: 500px) {
  #mobile_nav {
    top: 78px;
  }
}

#mobile_nav li {
  padding: 0px;
}

#mobile_nav li a {
  display: block;
  background: #2e3d44;
  color: white;
  text-decoration: none;
  font-weight: 300;
  padding: 10px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile_nav li .sub-menu {
  display: none;
  position: relative;
  width: 100%;
  padding: 15px;
  float: none;
  margin: 0px;
  background: none;
  background: #2e3d44;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile_nav li .sub-menu:after {
  content: '';
  clear: both;
  display: table;
}

#mobile_nav li .sub-menu li {
  float: left;
  width: 50%;
}

#mobile_nav li .sub-menu li a {
  border: none;
  padding: 7px;
  font-size: 12px;
}

#mobile_nav li.menu-item-has-children > a {
  position: relative;
}

#mobile_nav li.menu-item-has-children > a:after {
  content: '';
  background: url("/wp-content/themes/terrawest/images/upload/arrow-down-white.png") center center no-repeat;
  background-size: 9px;
  transform-origin: 50% 50%;
  position: absolute;
  right: 20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 20px;
  height: 20px;
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -ms-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

#mobile_nav li.menu-item-has-children.open > a:after {
  transform: rotate(-180deg);
}

.nav-toggle {
  display: none;
  float: right;
  padding: 14px 15px 15px 15px;
  border: none;
  background: none;
  margin-right: -15px;
}

.nav-toggle:hover {
  background: none;
}

.nav-toggle:active {
  background: none;
}

.nav-toggle:focus {
  background: none;
}

.nav-toggle span {
  height: 2px;
  width: 20px;
  display: block;
  background: #404040;
  margin: 4px 0;
}

@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}

/*
Layout Stylesheet

Contains sitewide layout styling.
*/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Open Sans", sans-serif;
}

p {
  margin-bottom: 1.5em;
}

a {
  text-decoration: none;
  color: #0caefe;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

a:hover {
  color: #0190d6;
}

#page {
  min-height: 0px;
}

ul {
  margin: 0px;
  padding: 0px 0px 0px 17px;
}

ul li {
  padding: 2px 0px 2px 10px;
}

.banner {
  background: #97a1a5 center center no-repeat;
  background-size: cover;
  color: white;
  padding: 33px 7.5%;
  border-bottom: 3px solid #0caefe;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .banner {
    padding: 40px 6% 20px 6%;
  }
}

.banner:after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0px;
  height: 3px;
  background: #3fbffe;
  width: 65%;
}

@media screen and (max-width: 900px) {
  .banner:before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    top: 0px;
    z-index: 2;
    background: rgba(46, 61, 68, 0.7);
  }
}

.banner .banner-text {
  max-width: 45%;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 900px) {
  .banner .banner-text {
    max-width: 100%;
    position: relative;
    z-index: 9;
  }
}

.banner .banner-img {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  max-width: 55%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .banner .banner-img {
    max-width: none;
  }
}

.banner .banner-img img {
  width: auto;
  height: 100%;
  max-width: none;
}

.content-block {
  padding: 4% 7.5%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 600px) {
  .content-block {
    padding: 5% 6%;
  }
}

.content-block .content-col {
  width: 46%;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 900px) {
  .content-block .content-col {
    width: 100%;
  }
  .content-block .content-col:first-child {
    padding-bottom: 5%;
  }
}

.services {
  padding: 40px 7.5%;
  color: white;
  background: #2e3d44;
}

@media screen and (max-width: 1800px) {
  .services {
    padding: 35px 50px 40px 50px;
  }
}

@media screen and (max-width: 900px) {
  .services {
    padding: 4% 6% 5% 6%;
  }
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

.services ul li {
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
  width: 25%;
  padding: 6px 20px 6px 0px;
}

@media screen and (max-width: 1400px) {
  .services ul li {
    font-size: 15px;
  }
}

@media screen and (max-width: 1300px) {
  .services ul li {
    width: 33.33333%;
  }
}

@media screen and (max-width: 900px) {
  .services ul li {
    width: 50%;
    padding: 5px 18px 5px 0px;
  }
}

@media screen and (max-width: 700px) {
  .services ul li {
    font-size: 13px;
  }
}

@media screen and (max-width: 500px) {
  .services ul li {
    letter-spacing: 0.5px;
  }
}

.services ul li a {
  color: white;
}

.services ul li:hover {
  opacity: 1;
}

.services ul li.title {
  font-size: 27px;
  opacity: 1;
  letter-spacing: 0px;
  text-transform: none;
}

@media screen and (max-width: 900px) {
  .services ul li.title {
    width: 100%;
  }
}

.linkedin-cta {
  background: #2e3d44;
  text-align: center;
  padding: 55px;
  font-size: 27px;
  font-weight: 300;
  width: 100%;
  display: block;
  color: white;
  border-top: 3px solid #0caefe;
  position: relative;
  -webkit-transition: background 0.3s ease-out;
  -moz-transition: background 0.3s ease-out;
  -ms-transition: background 0.3s ease-out;
  -o-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}

@media screen and (max-width: 1200px) {
  .linkedin-cta {
    font-size: 22px;
    padding: 45px;
  }
}

@media screen and (max-width: 800px) {
  .linkedin-cta {
    font-size: 18px;
    padding: 35px;
  }
}

.linkedin-cta:hover {
  color: white;
  background: #007bb6;
}

.linkedin-cta:focus {
  color: white;
}

.linkedin-cta:after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0px;
  height: 3px;
  background: #3fbffe;
  width: 65%;
}

.linkedin-cta span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .linkedin-cta span {
    flex-direction: column;
  }
}

.linkedin-cta span img {
  width: 117px;
  margin-left: 15px;
}

@media screen and (max-width: 600px) {
  .linkedin-cta span img {
    margin: 10px 0px 0px 0px;
    width: 100px;
  }
}

.cta {
  background: #dae2e6 url("/wp-content/themes/terrawest/images/upload/cta-bg.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 75px;
}

@media screen and (max-width: 1200px) {
  .cta {
    padding: 45px;
  }
}

@media screen and (max-width: 800px) {
  .cta {
    padding: 35px;
  }
}

.cta span {
  font-size: 27px;
  display: inline-block;
  padding-right: 35px;
}

@media screen and (max-width: 1200px) {
  .cta span {
    font-size: 22px;
  }
}

@media screen and (max-width: 1000px) {
  .cta span {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .cta span {
    font-size: 18px;
    padding-right: 0px;
  }
}

.cta .custom-button a {
  margin: 0px;
}
