
/* 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;
	}
}
#eventSlider {
  position: relative;
  margin-top: 40px;
}

.sliderMask {
  position: relative;
  margin: 0 auto;
  height: auto;
  overflow: hidden;
}

.sliderContainer {
  position: absolute;
  left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row;
}

.sliderContainer.animate {
  transition: .25s cubic-bezier(0.4,0.0,0.2,1);;
}

.slide {
  position: relative;
  float: left;
  width: 380px;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; 
}

.slide-img {
  position: relative;
  width: 100%;
  height: 0;
}


#slideNext, #slidePrev {
    position: absolute;
    top: 50%;
    z-index: 100;
    width: 153px;
    height: 370px;
    font-size: 126px;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
    background: #F3F3F3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 1;
    
}

#slidePrev {
    left: 0;
    top: 0;
    /* -webkit-transform: translate(-150%, -50%); */
    -ms-transform: translate(-150%, -50%);
    transform: rotate(180deg);
}

#slideNext {
  right: 0;
  top: 0;

}












.rotator-wrapper {
    overflow: hidden;
}
#eventSlider {
    position: relative;
    min-height: 400px;
    height: 400px;
}
.sliderMask {
    position: relative;
    margin: 0 auto;
    height: auto;
    transition: height .3s cubic-bezier(.4, 0, .2, 1);
    height: 400px;
    overflow: visible;
}
.sliderContainer {
    position: absolute;
    left: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    align-items: flex-start;
}
.sliderContainer.animate {
    transition: .25s cubic-bezier(.4, 0, .2, 1);
}
#eventSlider .slide {
    position: relative;
    width: 250px;
    margin: 10px;
    max-width:  580px;
    float: left;
    display: inline-block;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.slide-img {
    position: relative;
    width: 250px;
    height: auto;
    max-height: 350px;
}

.slide-img video {
    display: block;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}
.slide-img img {
    display: none;
}
.slide a.button {
    position: absolute;
    left: 50%;
    top: 65%;
    z-index: 20;
    transform: translate(-50%, 0);
}

@media (max-width: 768px) {
#eventSlider {
	max-width: 100vw;
    position: relative;
    min-height: 100%;
/*     height: 250px; */
}	


#eventSlider .slide {
    position: relative;
    width: 50%;
    margin: 3px;
    max-width:  32vw;
    float: left;
    display: inline-block;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}	

.slide-img {
	width: 100%;
}

#slideNext, #slidePrev {
	width: 80px;
	font-size: 30px;
	height: 236px;
	color: #757575;
	opacity: .9;
}

}



html, body {
	background: white;
}

.hero.wide {
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 85vh;
	overflow: visible;
}

.spacer {
	background: #F0F0F0;
	min-height: 119px;
	width: 100%;
}

.three-btns {
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
    min-height: 113px;
    height: auto;
    background: #383839;
    transform: translate(-50%, -50%);
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
}

.three-btns .grid-33 {
    border-right: 2px solid #25272B;
    justify-content: center;
    align-items: center;
    background: #383839;
    transition: all .4s;
    cursor: pointer;
}

.three-btns .grid-33:hover {
	background: #2c2c2c;
}

.three-btns .grid-33:last-of-type {
	border: none;
}

.books {
	min-height: 727px;
	height: auto;
	padding: 30px 0px;
	position: relative;
	overflow: hidden;
}

.personal {
    min-height: 210px;
    background: #383839;
    height: auto;
}

.about {
	min-height: 800px;
	height: auto;
	background: white;
	padding: 35px 0;
}

.floating {
	position: absolute;
	bottom: 80px;
	color: white;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
	width: 70%;
	font-weight: 100;
}

.floating strong {
	font-weight: 600;
}

.floating p {
	padding: 0; 
	margin: 0;
}

.floating .container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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;
}

.books p, .about p {
	font-size: 17px;
	padding-top: 17px;
	line-height: 1.8;
}

.three-btns h2 {
    color: white;
    font-weight: 100;
    font-size: 24px;
    position: relative;
    padding: 0;
    margin: 0;
}

.three-btns p {
	color: white;
	padding: 0;
	margin: 0;
	padding-top: 15px;
	font-size: 12px;
}

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

.three-btns h2 strong {
	font-weight: 600;
}

.personal {
	color: white;
	font-size: 17px;
	line-height: 2;
}

.personal .grid-50,
.personal .grid-30,
.personal .grid-70 {
	padding: 5px 40px;
}

.about-wrapper {
	position: relative;
	height: auto;
	min-height: 720px;
}

.about-wrapper:before {
	background: #F0F0F0;
	width: 90%;
	height: 100%;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
}
@media (max-width: 768px) {
	
	.three-btns {
		position: relative;
		transform: translate(0);
		max-width: 90%;
		left: 0;
	}
	
	.hero.wide {
		height: 60vh;
	}
	
	.three-btns .grid-33 {
		align-items: flex-start;
	}
	.three-btns .grid-33 {
		padding: 30px;
	}
	
.floating {
    position: absolute;
    bottom: initial;
    top: 77%;
    color: white;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    width: 80%;
    font-weight: 100;
}
	
	.site-header {
		height: 60vh;
	}

}

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

.about .grid-60 {
	padding-top: 40px;
}

.about img {
	position: relative;
	width: 100%;
	height: auto;
}


.personal a {
	text-decoration: underline;
	color: white;
}

