
/* Default Styles
   ========================================================================== */

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

h2 {
    color: black;
    font-weight: 100;
    font-size: 34px;
    position: relative;
    padding: 0;
    margin: 0;
}


h2:after {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 40px;
    height: 4px;
    background: #0085ca;
    content: '';
}

h2 strong {
	font-weight: 600;
}

audio,
canvas,
progress,
video {
    display: inline-block
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover,
a:visited:hover,
a:active:hover {
    text-decoration: none;
    outline-width: 0
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

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

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a img {
  border-style: none;
}

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

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

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

optgroup {
    font-weight: bold
}

button,
input {
    overflow: visible
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

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

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  /* Page Layout & Utility
   ========================================================================== */

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  background: #353535;
  -ms-font-feature-settings: 'liga' 1, 'kern';
   -o-font-feature-settings: 'liga' 1, 'kern'; /* FF old */
      font-feature-settings: 'liga' 1, 'kern';
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #65615c;
}

.wide {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .wide, .main-container {
    width: 100%;
    min-width: 0;
  }

  .container {
    width: 540px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  Header
   ========================================================================== */

.primary {
  position: fixed;
  padding-top: 16px;
  padding-bottom: 16px;
  display: block;
  background-color: transparent;
  z-index: 3000;
  transition: all .4s;
}

.primary.scrolled {
	background: #383839;
}

.primary > .container {
  width: 90%;
  overflow: visible;
  display: table;
  vertical-align: middle;
}

#logo {
  display: table-cell;
  width: 30%;
  transition:. 25s ease-out;
  line-height: 1;
  vertical-align: middle;
}

#logo a {
  display: block;
}

#logo img {
  max-width: 400px;
  max-height: 100px;
  height: auto;
}


@media (max-width: 768px) {
  .primary {
    padding: 0;
    display: block;
  }
  
  .primary > .container {
    display: block;
    width: 100%;
    padding: 0;
  }
  
  #logo {
    float: left;
    display: block;
    margin-left: 2%;
    padding: 8px 0;
    width: 70%;
    max-width: 300px;
  }
}
  
/*  Navigation
   ========================================================================== */

#menu {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.navigation {
  position: relative;
  width: 70%;
  display: table-cell;
  vertical-align: middle;
  z-index: 100;
  text-align: right;
}

.navigation ul {
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-size: 0;
}

.navigation ul li {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  margin-left: 8px;
}

.navigation ul li a {
    position: relative;
    display: block;
    padding: 8px 14px;
    margin: 0;
    color: #413d3a;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    text-align: left;
    transition: .12s cubic-bezier(.4,0,.2,1);
}


.navigation ul li a:hover,
.navigation ul li a:focus,
.navigation ul li a.active,
.navigation ul li a.active:hover {
  color: white;
}

@media (max-width: 768px) {
  /*
   * Menu Button
   */

  #menu {
    position: relative;
    float: right;
    z-index: 201;
    font: inherit;
      display: block;
      overflow: visible;
      margin: 0;
      padding: 29px 20px;
      cursor: pointer;
      transition-timing-function: linear;
      transition-duration: .15s;
      transition-property: opacity,-webkit-filter;
      transition-property: opacity,filter;
      transition-property: opacity,filter,-webkit-filter;
      text-transform: none;
      color: inherit;
      border: 0;
      background-color: transparent;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
  }
  #menu:focus,
  #menu:active {
    outline: 0;
  }

  .menu-bars {
    position: relative;
      display: block;
      width: 30px;
      height: 20px;
  }

  .menu-bar {
    display: block;
    top: 50%;
    margin-top: -1px;
  }
  .menu-bar,
  .menu-bar::before,
  .menu-bar::after {
      width: 30px;
      height: 2px;
      background-color: white;
      border-radius: 4px;
      position: absolute;
      transition-property: transform;
      transition-duration: 0.15s;
      transition-timing-function: ease;
  }
  .menu-bar::before,
  .menu-bar::after {
    content: "";
    display: block;
  }
  .menu-bar::before {
    top: -8px;
  }
  .menu-bar::after {
    bottom: -8px;
  }

  /*
   * Menu Animation
   */
   
  #menu.active {
    background-color: transparent;
  }
  
  .active .menu-bar,
  .active .menu-bar::before,
  .active .menu-bar::after {
      background-color: #fff;
  }
  
  .menu-bar {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .menu-bar::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  }
  
  .menu-bar::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .active .menu-bar {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .active .menu-bar::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  }
  
  .active .menu-bar::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .navigation {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 0px;
    float: none;
    background-color: #005a9c;
    transition: 0.4s ease-out;
    overflow: hidden;
  }

  .navigation ul {
    height: auto;
    width: 100%;
  }
  
  .navigation ul .left,
  .navigation ul .right {
    float: none;
    width: 100%;
    display: block; 
  }

  .navigation ul li {
    width: 100%;
    display: block;
    float: none;
    margin: 0;
  }

.navigation ul li a {
    width: 100%;
    display: block;
    float: none;
    margin: 0;
    padding: 12px 3%;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}
  
  .navigation ul li a:hover,
  .navigation ul li a:focus,
  .navigation ul li a.active,
  .navigation ul li a.active:hover {
    color: #fff;
  }
}


/*  General Content Styles
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#content .cb-body img {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}
  

/*  Footer
   ========================================================================== */

#bottom {
	min-height: 300px;
	height: auto;
}

#bottom .grid-30 img {
    margin-top: 58px;
    transform: translate(30%, 0px);
    width: 100%;
    height: auto;
    max-width: 380px;
}



#bottom h2 {
	color: white;
	padding-top: 30px;
}

#bottom p {
	font-size: 17px;
	padding-top: 17px;
	line-height: 1.8;
	color: black;
	padding: 0 60px;
}

#bottom .grid-100 {
	min-height: 500px;
	height: auto;

}

#bottom .grid-30 {
	background: #383839;
}

#bottom .grid-70 {
	background: #CCCCCC;
	margin: 30px 0; 
}
#bottom .columns {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 10px 60px 10px;
}

@media (max-width: 768px){
	#bottom .grid-30 img {
    	margin-top: 58px;
		transform: translate(0%, 0px);
		width: 100%;
		height: auto;
	}
	
	#bottom .grid-70 {
		margin: 0;
	}
}

.columns .col {
	width: 20%;
	min-height: 150px;
	height: auto;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.copyright {
	background: #262727;
	min-height: 89px;
	height: auto;
	margin-top: 30px;
}

.col p {
    font-size: 14px;
}

.site-footer {
  overflow: hidden;
  padding: 0;
}

.footer-row {
  margin: 5em auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
          flex-flow: row;
  -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.footer-column {
  font-size: 1.4em;
  line-height: 1.6;
}

.footer-column p {
  margin: .2em 0;
}

.footer-column a:not(.button) {
  color: #fff;
}

.footer-column strong {
  font-size: 1.14em;
}

.footer-column strong,
.footer-column strong a {
  color: #dea92c !important;
  font-weight: 600;
}

.footer-column a:not(.button):not(.social-link):hover {
  text-decoration: underline;
}

.footer-column a.button {
  font-size: 14px;
  margin: 1em 0;
}

#search {
  position: relative;
  width: 260px;
  margin: 0;
}

.search-input {
  position: relative;
  width: 100%;
  padding: 8px 48px 8px 8px;
  font-size: 16px;
  line-height: 16px;
  background: #404140;
  color: #fff;
  outline: 0;
  box-sizing: border-box;
}

.search-btn,
.search-input {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

a.btn, a.btn:visited, input#mc-embedded-subscribe {
    padding: 14px 20px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    transition: all .4s;
    line-height: 1;
    margin: 3px 0;
}

a.btn.white {
	background: white;
	color: black
}

a.btn.white:hover {
	background: #D8D6D0;
}

a.btn.blue {
	background: #0085CA;
}

a.btn.blue:hover {
	background: #036595;
}

a.btn.charcoal {
	background: #383839;
}

a.btn.charcoal:hover {
	background: #2c2c2c;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: #212224;
  color: #dea92c;
  font-size: 13px;
}

.footer-info {
  background: #212224;
  padding: 2em 0;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  display: inline-block;
  margin: 10px 0 0 50px;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 10px;
  color: #acacac;
  vertical-align: middle;
  text-transform: uppercase;
}

.footer-copyright a,.footer-copyright a:visited{
  color: #acacac;
  text-decoration: underline;
} 

@media (max-width: 640px) {
  .footer-row {
    -ms-flex-flow: column;
        -webkit-flex-flow: column;
            flex-flow: column;
    text-align: center;
  }

  .footer-column {
    margin: 1em 0;
    font-size: 1.4em;
    line-height: 2;
  }

  #search {
    width: 100%;
  }


  .footer-copyright {
    text-align: center;
  }

  .footer-copyright p {
    display: block;
    margin: 20px auto;
  }
}
.navigation {
  width: 70%;
  display: table-cell;
  vertical-align: middle;
  z-index: 100;
  text-align: right;
}

.navigation ul {
  position: relative;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  overflow: visible;
  font-size: 0;
}

.navigation ul li {
  display: inline-block;
  position: relative;
}

.navigation > ul > li > a,
.navigation ul li {
  text-align: center;
  font-size: 16px;
}

.navigation > ul > li > a {
    display: block;
    padding: 8px 2px;
    margin: 0;
    margin: 0 8px;
    color: white;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    transition: .12s cubic-bezier(.4,0,.2,1);
    border-bottom: 3px solid transparent;
    position: relative;
    box-sizing: border-box;
}

.navigation > ul > li:hover > a,
.navigation > ul > li > a.active {
  color: white;
  border-bottom: 3px solid #0085CA;
}

/*
.navigation > ul > li > a.active {
    border-bottom: 4px solid #0085CA;
}
*/

#navigation > ul > li .subNav {
  position: absolute;
  opacity: 0;
  width: 200px;
  min-width: 230px;
  padding: 8px 0;
  visibility: hidden;
  background: #fff;
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
  transition: opacity .15s cubic-bezier(0,0,.2,1),
              -webkit-transform .15s cubic-bezier(0,0,.2,1);
  transition: transform .15s cubic-bezier(0,0,.2,1),
              opacity .15s cubic-bezier(0,0,.2,1);
  transition: transform .15s cubic-bezier(0,0,.2,1),
              opacity .15s cubic-bezier(0,0,.2,1),
              -webkit-transform .15s cubic-bezier(0,0,.2,1);
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  overflow: hidden;
}

#navigation > ul > li:hover .subNav { 
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
    transform: translateY(0);
}

#navigation > ul > li .subNav li {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

#navigation > ul > li .subNav li a {
    display: block;
    padding: 9px 21px;
    margin: 0;
    color: #262626;
    line-height: normal;
    text-decoration: none;
    transition: .15s cubic-bezier(0,0,.2,1);
}

            
#navigation > ul > li .subNav li a:hover {
  color: #005a9c;
}   

.subnavOpen {
  display: none;
}

@media (max-width: 768px) {
  
  .main-container{
    transition: -webkit-transform .2s cubic-bezier(.4,0,.2,1);
    transition: transform .2s cubic-bezier(.4,0,.2,1);
    transition: transform .2s cubic-bezier(.4,0,.2,1),
                -webkit-transform .2s cubic-bezier(.4,0,.2,1);
  }
  
  .main-container.navActive{
    -webkit-transform: translate3d(-250px,0,0);
        -ms-transform: translate3d(-250px,0,0);
            transform: translate3d(-250px,0,0);
    position: fixed;
  }
  
.navigation {
    position: fixed;
    top: 0;
    right: -250px;
    visibility: hidden;
    display: block;
    margin: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    float: none;
    transition: visibility 0s linear .15s;
    overflow: hidden;
    background: #2c2c2c;
    z-index: -1;
}
  
  .navigation.active {
    visibility:visible;
    transition:visibility 0s linear 0s;
    overflow: scroll;
  }

  .navigation ul {
    position:relative;
    height:auto;
    width:100%;
    padding-top: 18px;
    
  }
    

  .navigation ul li,.navigation ul li a {
    width: 100%;
    display: block;
    float: none;
    margin: 0;
  }

  .navigation > ul > li > a {
    position: relative;
    width: 100%;
    display: block;
    float: none;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    border-bottom: 3px solid transparent!important;
  }
    
  .navigation ul li a:hover {
    border: none;
  }
      
      
  .subnavOpen {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    font-size: 24px;
    text-align: center;
  }
      
  .subnavOpen,
  .subnavOpen span {
    display: block;
    height: 100%;
    line-height: 48px;
  }

  .subnavOpen span {
      width: 100%;
      transition: .2s ease-out;
  }
  
  .subnavOpen.active {
    
  }
  
  .subnavOpen.active span {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
      
  .subnavMask {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
  }
  

  #navigation > ul > li .subNav {
    position: relative;
    width: 100%;
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    visibility: visible;
    box-shadow: none;
    background: #fff;
  }

}
@font-face {
  font-family: 'ValleyBrook';
  src:  url('/fonts/social-icons/fonts/ValleyBrook.eot?kofeab');
  src:  url('/fonts/social-icons/fonts/ValleyBrook.eot?kofeab#iefix') format('embedded-opentype'),
    url('/fonts/social-icons/fonts/ValleyBrook.ttf?kofeab') format('truetype'),
    url('/fonts/social-icons/fonts/ValleyBrook.woff?kofeab') format('woff'),
    url('/fonts/social-icons/fonts/ValleyBrook.svg?kofeab#ValleyBrook') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="ico-"], [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ValleyBrook' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-arrow-right:before {
  content: "\e903";
}
.ico-arrow-left:before {
  content: "\e901";
}
.ico-arrow-down:before {
  content: "\e902";
}
.ico-wordpress:before {
  content: "\e900";
}
.ico-twitter-square:before {
  content: "\f081";
}
.ico-facebook-square:before {
  content: "\f082";
}
.ico-linkedin-square:before {
  content: "\f08c";
}
.ico-twitter:before {
  content: "\f099";
}
.ico-facebook:before {
  content: "\f09a";
}
.ico-facebook-f:before {
  content: "\f09a";
}
.ico-feed:before {
  content: "\f09e";
}
.ico-rss:before {
  content: "\f09e";
}
.ico-pinterest-square:before {
  content: "\f0d3";
}
.ico-google-plus:before {
  content: "\f0d5";
}
.ico-envelope:before {
  content: "\f0e0";
}
.ico-linkedin:before {
  content: "\f0e1";
}
.ico-rss-square:before {
  content: "\f143";
}
.ico-youtube-square:before {
  content: "\f166";
}
.ico-youtube:before {
  content: "\f167";
}
.ico-instagram:before {
  content: "\f16d";
}
.ico-vimeo-square:before {
  content: "\f194";
}
.ico-pinterest:before {
  content: "\f231";
}
.ico-vimeo:before {
  content: "\f27d";
}
.ico-snapchat:before {
  content: "\f2ac";
}
.ico-check:before {
  content: "\e5ca";
}
.ico-search:before {
  content: "\e8b6";
}
.ico-arrow_right:before {
  content: "\e904";
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
.flex {
	display: flex;
}

.centered {
	justify-content: center;
	align-items: center;
}

.stacked {
	flex-direction: column;
}

.grid-10 {
	width: 10%;
}

.grid-15 {
	width: 15%;
}

.grid-20 {
	width: 20%;
}

.grid-25 {
	width: 25%;
}

.grid-30 {
	width: 30%;
}

.grid-35 {
	width: 35%;
}

.grid-40 {
	width: 40%;
}

.grid-45 {
	width: 45%;
}

.grid-50 {
	width: 50%;
}

.grid-55 {
	width: 55%;
}

.grid-60 {
	width: 60%;
}

.grid-65 {
	width: 65%;
}

.grid-70 {
	width: 70%;
}

.grid-75 {
	width: 75%;
}

.grid-80 {
	width: 80%;
}

.grid-85 {
	width: 85%;
}

.grid-90 {
	width: 90%;
}

.grid-95 {
	width: 95%;
}

.grid-100 {
	width: 100%;
}

.grid-33 {
	width: 33.33%;
}

@media (max-width: 768px) {
	.grid-10, .grid-15, .grid-20, .grid-25, .grid-30, .grid-35, .grid-40, .grid-45, .grid-50, .grid-55, 
	.grid-60, .grid-65, .grid-70, .grid-75, .grid-80, .grid-85, .grid-90, .grid-95, .grid-100, .grid-33 {
		width: 100%;
	}
	
	.flex {
		flex-direction: column;
	}
}
.hero.wide {
	width: 100%;
	min-height: 55vh;
	height: auto;
	position: relative;
	background-position: center;
	background-size: cover;
}

.hero.wide:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: black;
	opacity: .2;
}

#content {
	background: white;
	min-height: 400px;
	height: auto;

}

h1 {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-transform: capitalize;
	font-size: 40px;
	font-weight: 100;
	padding-bottom: 0px;
	border-bottom: 4px solid #0085CA;
	display: inline-block;
}

h1 strong {
	font-weight: 600;
}

#content p {
	line-height: 2
}
/* --- SUBPAGE MODULE --- */

.subpage_module_container {
    position: relative;
    width: 100%;
    /* 	min-width: 230px; */
    padding: 0 0 0 0;
    margin: 0 auto 0;
    text-align: left;
    background-color: #f0f0f0;
    overflow: hidden;
}

/*only used in seperate mode*/
.subpage_module_container .nav_divider {
    position: relative;
    height: 0;
    padding: 0;
    margin: 0 auto;
    /* 	min-width: 240px; */
}

.subpage_module_header {
    height: 15px;
}

.subpage_module_footer {
    height: 15px;
}

.subpage_module_spacer {
    position: relative;
    width: 100%;
    /* min-height: 207px; */
    padding: 0;
    margin: 0 auto;
}

.subpage_module_spacer h2 {
    display: none;
}

#layout-column2 .cb-header{
}

.subpage_module {
    padding: 0;
    margin: 0;
    text-align: left;
}

.subpage_module li {
    padding: 0;
    margin: 0;
    text-align: left;
    display: block;
    position: relative;
    transition: all .5s;
}
.img-c {
	position: absolute;
    top: 50px;
    left: 0;
    width: 29px;
    height: auto;
}

.subpage_module li a:link, .subpage_module li a:visited {
    padding: 15px 5px 15px 35px;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-align: left;
    display: block;
    transition: 0.2s linear;
    position: relative;
    text-transform: uppercase;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

.subpage_module li.last {
    margin-bottom: .5em;
}

.subpage_module li.first {
}

.subpage_module li.parent a:link,
.subpage_module li.parent a:visited {
    text-transform: uppercase;
    color: #ab1213;
    display: inline-block;
/*     border-bottom: 5px solid #9f4a29; */
    margin-left: 35px;
    padding: 10px 2px;
    font-size: 24px;
    margin-bottom: 5px;
    background: transparent;
    font-weight: 600;
}

/*
	.subp
	age_module li.parent a:before {
		display: none;
	}
*/

.subpage_module li a:hover,
.subpage_module li a.active {
    text-decoration: none;
    color: #fff;
    background-color: #ab1213;
}
.subpage_module li a {
	transition: all .5s;

}

.subpage_module li a:hover:before  {
    content: "\e2600";
    color: #f0f0f0;
    position: relative;
    font-family: 'social-icons';
    font-size: 59px;
    line-height: 0px;
    padding-right: 2px;
    margin-left: -47px;
    vertical-align: middle;
    top: -3px;
}
.subpage_module li a.active:before   {
    content: "\e2600";
    color: #f0f0f0;
    position: relative;
    font-family: 'social-icons';
    font-size: 59px;
    line-height: 0px;
    padding-right: 2px;
    margin-left: -47px;
    vertical-align: middle;
    top: -3px;
}

.subpage_module li.parent a:hover,
.subpage_module li.parent a.active {

}

.subpage_module li ul {
    padding: 0;
    margin: 0;
    /* 	margin-left: 20px; */
}

.subpage_module li li a:link,
.subpage_module li li a:visited {
    padding: 5px 5px 5px 50px;
    font-size: 14px;
}

/*
		.subpage_module li li a:before {
			left: 40px;
		}

		.subpage_module li li a:hover:before,
		.subpage_module li li a.active:before  {
			left: 50px;
		}
*/

@media (max-width: 768px) {
    .subpage_module li a:link,
    .subpage_module li a:visited{
        font-size: 17px;
        padding-left: 15px;
    }

    .subpage_module li.parent a:link,
    .subpage_module li.parent a:visited{
        font-size: 17px;
        margin-left: 15px;
    }
}

@media (max-width: 640px) {
    .subpage_module_container {
        width: 100%;
    }

    .subpage_module_header {

    }

    .subpage_module_footer {

    }

    .subpage_module li {
        /* 		border-bottom: 1px solid #378e9b; */
    }

    .subpage_module li a:link,
    .subpage_module li a:visited {

    }

    .subpage_module li.parent a:link,
    .subpage_module li.parent a:visited {

    }

    .subpage_module li a:before {

    }

    .subpage_module > li a:hover, .subpage_module > li a.active {

    }

    .subpage_module li.last {

    }

    .subpage_module li ul li a:hover, .subpage_module li ul li a.active {

    }

    .subpage_module li a:link,
    .subpage_module li a:visited{
        font-size: 22px;
        padding-left: 30px;
    }

    .subpage_module li.parent a:link,
    .subpage_module li.parent a:visited{
        font-size: 22px;
        margin-left: 30px;
    }

}

/* --- END SUBPAGE MODULE --- */
#content.fullWidth h3.cb-header{
		max-width:80%;
		margin:0 auto;
		font-weight: 100;
		padding-bottom: 4px;
		position: relative;
/* 		border-bottom: 4px solid #0085CA; */
		padding-top: 30px;
	}
	#content.fullWidth h3.cb-header:after {
		position: absolute;
		left: 0;
		bottom: -4px;
		width: 40px;
		height: 4px;
		background: #0085ca;
		content: '';
	}
	
	#content.fullWidth h3.cb-header strong {
		font-weight: 600;
	}
	
	#content.fullWith .cb-body.leading{
		padding-top:50px;
	}

#content .cb-layout_settings-container{
	background-repeat:no-repeat;
	background-position:50%;
	background-size:cover;
}

	#content .cb-layout_layouts-container{
		position:relative;
/* 		width:90%; */
		max-width:80%;
		margin:0 auto;
		overflow:hidden;
	}

#content .cb-layout_box-container{
	position:relative;
	margin:0;
	overflow:hidden;
	clear:both;
}

	.cb-layouts_background{
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		z-index:0;
		background-repeat:no-repeat;
		background-position:50%;
		background-size:cover;
	}

	.cb-layout-box{
		float:left;
		width:100%;
		margin:0;
	}
	
	.cb-layout-image .cb-layout_settings-container{
		position:relative;
	}
	
		.cb-layout-image .cb-layout_box-container{
			padding:60px 0;
			min-height:350px;
		}
		
		.cb-layout-image .cb-layout_settings-container:before{
			content:'';
			position:absolute;
			left:0;
			top:0;
			right:0;
			bottom:0;
			width:100%;
			height:100%;
			background:#000;
			opacity:.4;
		}
		
	#content .cb-layout-image .cb-body{
	    padding:0;
	}
	.l2 .cb-layout_box-1{
		width:49%;
	}
	.l2 .cb-layout_box-2{
		float:right;
		width:49%;
	}	
	.l3 .cb-layout_box-1{
		width:32%;
	}
	.l3 .cb-layout_box-2{
		float:right;
		width:66%;
	}
	.l4 .cb-layout_box-1{
		width:66%;
	}
	.l4 .cb-layout_box-2{
		float:right;
		width:32%;
	}
	.l5 .cb-layout_box-1{
		width:32%;
		margin:0 2% 0 0;
	}
	.l5 .cb-layout_box-2{
		width:32%;
	}
	.l5 .cb-layout_box-3{
		float:right;
		width:32%;
	}
	.l6 .cb-layout_box-1,.l6 .cb-layout_box-2{
		width:23.5%;
		margin:0 2% 0 0;
	}
	.l6 .cb-layout_box-3{
		width:23.5%;
	}
	.l6 .cb-layout_box-4{
		float:right;
		width:23.5%;
	}

	.l7 .cb-layout_box-1{
		width:32%;
	}
		.l7 .cb-layout_box-1 textarea{
			height:470px;
		}
	.l7 .cb-layout_box-2{
		float:right;
		width:32%;
		margin:0 0 2%;
	}
	.l7 .cb-layout_box-3{
		float:right;
		width:32%;
		margin:0 2% 2% 0;
	}
	.l7 .cb-layout_box-4{
		float:right;
		width:66%;
	}
	.l8 .cb-layout_box-1,.l8 .cb-layout_box-2{
		width:32%;
		margin:0 2% 2% 0;
	}
	.l8 .cb-layout_box-3{
		float:right;
		width:32%;
	}

		.l8 .cb-layout_box-3 textarea{
			height:470px;
		}

	.l8 .cb-layout_box-4{
		width:66%;
		margin:0 2% 0 0;
	}

@media (max-width:1024px){
	#content .cb-layout_settings-container{
		background-attachment:scroll !important;
	}
}
	
@media (max-width:640px){


	#content .cb-layout_layouts-container{
		width:88%;
	}
	#layout-column1, #layout-column2 {
		width: 100%!important;
	}
	#content .cb-layout_settings-container{
		background-attachment:scroll !important;
	}
	
		#mainContainer #content .cb-layout-box{
			width:100%;
			margin:0 auto;
		}
			
}

	.cb-layout-image .cb-layout_settings-container:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
	}
	

.cb-body {
	
}

.cb-layout-box h6 {
	margin: 0!important;
}
