body {
  position: relative;
  color: #fff;
  font-size: 25px;
  font-family: 'book', 'Helvetica Neue', 'Roboto', Helvetica, Arial, sans-serif !important;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  height: 100%;
	  scroll-behavior: smooth;

}
a {
  color: inherit;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
}
textarea:focus, input:focus, a:focus, a:visited, *:focus {
  outline: none;
}
iframe {
  border: none;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
h1 {
  font-family: 'bold' !important;
  color: #fff;
}
h6 {
  font-family: 'bold' !important;
  color: #fff;
  font-size: 50px;
}
.slideshow { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slideshow li { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 40s linear infinite; 
}

.slideshow li:nth-child(1) { 
    background-image: url(../img/1.jpg);
    animation-delay: 0s;
}
.slideshow li:nth-child(2) { 
    background-image: url(../img/2.jpg);
    animation-delay: 10.5s; /* 10s (display time) + 0.5s (transition time) */
}
.slideshow li:nth-child(3) { 
    background-image: url(../img/3.jpg);
    animation-delay: 21s; /* 20s (display time) + 1s (transition time) */
}
.slideshow li:nth-child(4) { 
    background-image: url(../img/4.jpg);
    animation-delay: 31.5s; /* 30s (display time) + 1.5s (transition time) */
}

@keyframes imageAnimation { 
    0% { 
        opacity: 0; 
    }
    4.76% { /* 0.5s / 10.5s = 4.76% */
        opacity: 1;
    }
    95.24% { /* 10s / 10.5s = 95.24% */
        opacity: 1;
    }
    100% { 
        opacity: 0;
    }
}


/* Older browser support - .no-cssanimations class added by modernizr */
.no-cssanimations .slideshow li {
    opacity: 1;
}
.bg-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.bg-slideshow + * {
  position: relative;
}
.bg-slideshow .owl-wrapper-outer, .bg-slideshow .owl-wrapper, .bg-slideshow .owl-item {
  height: 100%;
  overflow: hidden;
}
.animated {
  visibility: hidden;
}
.animated.visible {
  visibility: visible;
}
.animate-hover {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.mobile .hidden-mobile {
  display: none;
}
.shadow {
  -webkit-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.2);
}
.container-wide {
  width: 80%;
}
.fullwidth {
  padding-left: 30px;
  padding-right: 30px;
}
.row.no-padding {
  margin-left: 0;
  margin-right: 0;
}
.row.no-padding > *[class^='col'], .row.no-padding > *[class*=' col'] {
  padding-left: 0;
  padding-right: 0;
}
.row.padding-lg {
  margin-left: -40px;
  margin-right: -40px;
}
.row.padding-lg > article[class^='col'], .row.padding-lg > *[class*=' col'] {
  padding-left: 40px;
  padding-right: 40px;
}
/* ----------------------------------------------------------------------------- */
/* --- 3. HEADER
/* ----------------------------------------------------------------------------- */
.agenda-drawer {
background-color: #6f8794; padding: 0 40px 0 0px; margin-bottom: 5px;}

.agenda-drawer__content-wrapper {
    background-color: #6f8794;
    line-height: 20px;
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}
.agenda-drawer__content-wrapper p{padding: 10px;}
.agenda-drawer__title {
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 10px 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-out;
}

.agenda-drawer__title::after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: " ";
  display: inline-block;
  float: right;
  height: 20px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 10px;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 20px;
}
.agenda-drawer__title span{ background: red;
    padding: 17px;
	margin-right: 10px;}
.agenda-drawer__title:hover { 
}

.agenda-drawer__trigger:checked
  + .agenda-drawer__title
  + .agenda-drawer__content-wrapper {
  max-height: 550px;
}

.agenda-drawer__trigger:checked + .agenda-drawer__title::after {
  transform: rotate(-45deg);
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

.dateBox {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #fff;
  font-size: 45px;
  background-color: #e53020;
  padding: 13px 10px 10px 8px;
  height: 83px;
  width: 120px;
  text-align: center;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
#header {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}
/* Vertical Navigation
	------------------------------------------- */
.nav-vertical > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark .nav-vertical > li {
  border-color: rgba(255, 255, 255, 0.1);
}
.nav-vertical > li > a {
  position: relative;
  display: inline-block;
  font-size: 35px;
  padding: 0px;
  color: #fff;
}
.nav-vertical > li > a:hover, .nav-vertical > li > a:focus {
  background: transparent;
  text-decoration: none;
}
.nav-vertical > li > a > span {
  position: relative;
  z-index: 1;
  font-family: 'bold' !important;
}
.nav-vertical > li > a.active, .nav-vertical > li.active > a {}
.nav-vertical > li > a.active:before, .nav-vertical > li.active > a:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.nav-vertical li ul {
  padding: 5px 0px 6px;
  list-style: none;
  display: none;
}
.nav-vertical li.active > ul {
  display: block;
}
.nav-vertical > li ul a {
  line-height: 1;
  opacity: 0.5;
}
.nav-vertical > li > ul > li.active > a, .nav-vertical > li > ul > li > a:hover, .nav-vertical > li > ul > li > a:focus {
  opacity: 1;
}
#main-menu .nav-vertical > li > a {
  margin-left: -15px;
  margin-right: -25px;
  padding-left: 10px;
  padding-right: 10px;
}
#main-menu .nav-vertical > li > a:before {
  left: 10px;
  right: 10px;
}
#main-menu .nav-vertical > li > ul {
  position: absolute;
  background: #fff;
  padding: 3px 15px;
  width: 180px;
  text-align: left;
  left: 100%;
  margin-left: 20px;
  top: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
#main-menu .nav-vertical > li.dropdown > a:after {
  font-family: themify;
  font-size: 70%;
  margin-left: 5px;
  opacity: 0.6;
  content: "\e68e";
}
#main-menu .nav-vertical > li.dropdown:hover > a:after {
  opacity: 1;
  color: inherit;
}
#main-menu .nav-vertical > li > a:hover + ul, #main-menu .nav-vertical > li:hover > ul {
  display: block;
}
#main-menu .nav-vertical > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#main-menu .nav-vertical > li > ul > li > a {
  line-height: 2.8;
  opacity: 1;
}

.padding-v-60{padding-top: 60px;
}
/* Vertical Header
	------------------------------------------- */
.header-vertical #header {
  position: fixed;
  background-image: url(cpc_menu@2x-8.png);
  background-size: cover;
  top: 25px;
  left: 25px;
  bottom: 25px;
  width: 270px;
  z-index: 888;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
/* Nav */
.header-vertical #header #main-menu {
  position: relative;
  z-index: 2
}
.header-vertical #header .nav-vertical {
  position: relative;
  text-align: left;
  padding: 0 25px;
}
/* Photo */
.header-vertical #header .photo {
  margin-bottom: 10px;
}
/* Logo */
.header-vertical .logo {
  text-align: right;
  padding: 30px 30px;
  margin-bottom: 10px;
  background-color: transparent;
}
.logo img {
  max-width: none !important;
  margin-left: -20px;
}
/* Social */
.header-vertical #header .social-media {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
/* sounds
	------------------------------------------- */
.taalwrap {
  position: absolute;
  right: 20px;
  margin-top: -42px;
}
.taalwrap2 {
  margin-top: 22px;
}
.taal {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #6f8794;
  display: inline-block;
  padding-top: 3px;
  margin-left: 2px;
  font-size: 20px;
}
.talen {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  display: inline-block;
  padding-top: 3px;
  margin-left: 2px;
  font-size: 20px;
}
.agenda {
  background: #6f8794;
  padding: 0px 0 0px 40px;
  position: relative;
  margin-bottom: 6px;
  border-radius: 2px;
}
.agenda h4 {
  font-family: 'bold';
  color: #fff;
  font-size: 45px;
  line-height: 50px;
  padding-bottom: 13px;
}
.agenda .genre h3 {
  font-family: 'regular';
  color: #325261;
  font-size: 20px;
}
.genre {
  position: absolute;
  top: 50px;
}
.date {
  position: absolute;
  right: 0px;
  top: 0px;
  font-family: 'bold';
  color: #fff;
  font-size: 45px;
  background-color: #e53020;
  padding: 8px 10px 10px 8px;
  height: 83px;
  width: 120px;
  text-align: center;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.expand {
  width: 90px;
  height: 83px;
  background: #325261;
  background-image: url(expand.svg);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center center;
  position: absolute;
  right: 120px;
  top: 0px;
  border: none !important
}
.tlp {
  position: absolute;
  top: -30px;
  right: -30px;
  background-image: url(tlp2x-8.png);
  height: 200px;
  width: 300px;
  background-size: 300px;
  background-repeat: no-repeat;
  z-index: 2;
}
.card-block {
  padding: 20px 20px 20px 0px;
  line-height: 20px;
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 17px;
}
/* maps
	------------------------------------------- */
.maps {
  position: absolute;
  top: 0;
  left: 0;
}
/* solid
	------------------------------------------- */
.twee {
  width: 50%;
  display: inline;
}
/* crew
	------------------------------------------- */
.profile {
  margin-top: 25px;
}
.profile h1 {
  font-weight: normal;
  font-size: 25px;
  margin: 0px 0 0 0;
  color: #000000;
  z-index: 99;
  font-family: 'book' !important;
  position: relative;
  top: -40px;
  text-align: center;
}
.profile h2 {
  font-size: 14px;
  font-weight: lighter;
  margin-top: 5px;
}
.profile .img-box {
  opacity: 1;
  display: block;
  position: relative;
  border: solid 5px #fff;
  border-bottom: solid #fff 50px;
  background-color: #fff;
}
.profile .img-box:after {
  content: "";
  opacity: 0;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.img-box ul {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  text-align: center;
  width: 100%;
  padding-left: 0px;
  height: 0px;
  margin: 0px;
  opacity: 0;
}
.profile .img-box:after, .img-box ul, .img-box ul li {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.img-box ul i {
  font-size: 20px;
  letter-spacing: 10px;
}
.img-box ul li {
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #88C425;
  margin: 2px;
  padding: 5px;
  display: inline-block;
}
.img-box a {
  color: #fff;
}
.img-box:hover:after {
  opacity: 1;
}
.img-box:hover ul {
  opacity: 1;
}
.img-box ul a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.img-box a:hover li {
  border-color: #fff;
  color: #88C425;
}
/* about
	------------------------------------------- */
.about {
  padding: 40px 40px 40px 40px;
  background-color: #6f8794;
  line-height: 20px;
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 17px;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
}
.stv {
  padding: 40px 40px 40px 40px;
  background-color: #6f8794;
  border-radius: 2px;
}
.about h4, h6 {
  color: #fcc243 !important;
}
.stv h4, h6 {
  color: #fcc243 !important;
}
/* Horizontal Header
	------------------------------------------- */
.header-horizontal #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 222;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.header-horizontal #header > * {
  line-height: 88px;
}
.header-horizontal #header > * > * {
  line-height: 1.6;
}
/* Photo */
.header-horizontal #header .photo {
  height: 100%;
  display: inline-block;
  line-height: 1;
}
.header-horizontal #header .photo img {
  height: 100%;
}
/* Logo */
.header-horizontal .logo {
  display: inline-block;
  text-align: right;
  padding: 9px 30px;
  min-width: 230px;
  height: 88px;
  line-height: 1 !important;
}
.header-horizontal .logo > * {
  position: relative;
  top: 11px;
}
.header-horizontal .logo .name {
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 24px !important;
}
.header-horizontal .logo .caption {
  font-weight: 600;
  font-size: 12px;
}
/* Nav */
.header-horizontal #header #main-menu {
  display: inline-block;
  margin-left: 20px;
}
/* Social */
/* Mobile Navigation
	------------------------------------------- */
#mobile-nav-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 660;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.ajax-modal-opened #mobile-nav-toggle {
  margin-top: 60px;
}
#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  z-index: 670;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -webkit-box-shadow: -2px 2px 61px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -2px 2px 61px 0px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 2px 61px 0px rgba(0, 0, 0, 0.1);
}
#mobile-nav .mobile-nav-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 0;
}
.mobile-nav-open #mobile-nav {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.mobile-nav-open.header-horizontal #header, .mobile-nav-open.header-horizontal #header.sticky {
  transform: translateX(-260px);
  -webkit-transform: translateX(-260px);
}
#mobile-nav .mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
#mobile-nav .nav-vertical > li > a {
  color: #fff;
  text-decoration: none;
}
/* Start Styles - Side Menu 
***************************************************************/
.panel {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  position: fixed;
  z-index: 9999;
  top: 0;
  height: 100%;
  width: 450px;
  /* ul */
  /* Ninja Button styles */
  /* Ninja Button */
  /* Ninja Button Active */
}
.panel ul {
  list-style-type: none;
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 0;
  top: 50%;
  left: 60px;
  right: 60px;
  height: auto;
  text-align: left;
  /* li & a */
}
.panel ul li, .panel ul a {
  display: inline-block;
  float: left;
  width: 100%;
  line-height: 1.4;
  padding: 0;
  font-weight: 200;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.panel ul li.menu-label {
  font-size: 16px;
  margin: 30px 0 10px 0;
  text-transform: lowercase;
}
.panel ul li.menu-label:first-child {
  margin-top: 0;
}
.panel ul a {
  font-size: 22px;
  text-transform: uppercase;
}
.panel ul li.menu-contacts a {
  font-size: 16px;
  text-transform: inherit;
}
.panel .ninja-btn {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  display: inline-block;
  float: left;
  cursor: pointer;
  padding: 34.28571429px 30px;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 30px;
  height: 20.18181818px;
}
.panel .ninja-btn span, .panel .ninja-btn span:before, .panel .ninja-btn span:after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  width: 30px;
  height: 2px;
}
.panel .ninja-btn span {
  position: relative;
  display: inline-block;
  float: left;
  margin-top: 9.09090909px;
}
.panel .ninja-btn span:before, .panel .ninja-btn span:after {
  content: "";
  position: absolute;
  left: 0;
}
.panel .ninja-btn span:before {
  top: -9.09090909px;
}
.panel .ninja-btn span:after {
  top: 9.09090909px;
}
.panel .ninja-btn.active span {
  background-color: transparent;
}
.panel .ninja-btn.active span:before, .panel .ninja-btn.active span:after {
  top: 0;
}
.panel .ninja-btn.active span:before {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
.panel .ninja-btn.active span:after {
  -webkit-transition-delay: 0.09s;
  -moz-transition-delay: 0.09s;
  -o-transition-delay: 0.09s;
  -msa-transition-delay: 0.09s;
  transition-delay: 0.09s;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
}
/* Panel */
.panel-overlay {
  position: fixed;
  top: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.35);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.05)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  cursor: pointer;
}
/* overlay */
.panel-white {
  background-color: #FFFFFF;
  /* ul */
}
.panel-white ul {
  /* li */
}
.panel-white ul li, .panel-white ul a {
  color: #8e8e93;
}
.panel-white ul li a:hover, .panel-white ul li.active a {
  color: #007aff;
}
.panel-white .ninja-btn {
  background-color: #FFFFFF;
}
.panel-white .ninja-btn span, .panel-white .ninja-btn span:before, .panel-white .ninja-btn span:after {
  background-color: #007aff;
}
/* panel white */
.panel-black {
  background-color: #000000;
  /* ul */
}
.panel-black ul {
  /* li */
}
.panel-black ul li, .panel-black ul a {
  color: rgba(255, 255, 255, 0.5);
}
.panel-black ul li a:hover, .panel-black ul li.active a {
  color: #FFFFFF;
}
.panel-black .ninja-btn {
  background-color: #000000;
}
.panel-black .ninja-btn span, .panel-black .ninja-btn span:before, .panel-black .ninja-btn span:after {
  background-color: #007aff;
}
/* panel black */
.panel-brand {
  background-color: #007aff;
  /* ul */
  /*
  .ninja-btn.active span:before,
  .ninja-btn.active span:after {
    background-color: rgba( 0, 0, 0, 0.50 );
  }*/
}
.panel-brand ul {
  /* li */
}
.panel-brand ul li, .panel-brand ul a {
  color: rgba(0, 0, 0, 0.5);
}
.panel-brand ul li a:hover, .panel-brand ul li.active a {
  color: #FFFFFF;
}
.panel-brand .ninja-btn {
  background-color: #007aff;
}
.panel-brand .ninja-btn span, .panel-brand .ninja-btn span:before, .panel-brand .ninja-btn span:after {
  background-color: #FFFFFF;
}
/* panel brand */
.panel.left {
  left: -450px;
}
.panel.left .ninja-btn {
  left: 100%;
}
/* Panel Left Active */
.panel.left.active {
  left: 0;
}
.panel.left.active .ninja-btn {
  left: 100%;
  margin-left: -90px;
}
/* Panel Menu Active */
.panel.right {
  right: -450px;
}
.panel.right .ninja-btn {
  right: 100%;
}
/* Panel Right Active */
.panel.right.active {
  right: 0;
}
.panel.right.active .ninja-btn {
  right: 100%;
  margin-right: -90px;
}
/* Panel Menu Active */
/* ----------------------------------------------------------------------------- */
/* --- 4. CONTENT
/* ----------------------------------------------------------------------------- */
#content {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
	background-color: #6f8794;
}
.header-vertical .section {
  padding-left: 320px;
}

.col-xs-2{}
/* Sections 
	-------------------------------------------- */
.section {
  position: relative;
  overflow: hidden;
}
/* Resume */
.resume-box {
  margin-bottom: 50px;
}
.skill {
  margin-bottom: 24px;
}
/* Speciality */
.speciality {
  padding: 20px 0px;
  border-bottom: 1px solid #eaeaea;
}
.dark .speciality {
  border-color: rgba(255, 255, 255, 0.1)
}
.speciality:last-child {
  border-bottom: none;
}
.speciality-icon {
  position: relative;
  top: -2px;
  float: left;
  font-size: 36px;
}
.speciality-content {
  padding-top: 6px;
  padding-left: 66px;
}
.speciaity-description {
  color: #757575;
  margin-bottom: 0px;
  font-size: 12px;
}
.dark .speciaity-description {
  color: rgba(255, 255, 255, 0.5);
}
/* Timeline  */
.timeline {
  position: relative;
  border-left: 1px solid #eaeaea;
  padding: 30px 0px;
}
.dark .timeline {
  border-color: rgba(255, 255, 255, 0.1);
}
.timeline-event {
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
}
.timeline-event:last-child {
  padding-bottom: 0px;
}
.timeline-event:before {
  position: absolute;
  top: 0;
  left: -9px;
  width: 7px;
  height: 7px;
  ;
  border: 5px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  content: " ";
}
.timeline-event > * {
  display: block;
}
.event-date {
  font-weight: 500;
  font-size: 11px;
  margin-bottom: 15px;
}
.event-name {
  font-weight: 500;
  font-size: 14px;
}
.event-description {
  font-size: 11px;
  color: #757575;
}
.dark .event-description {
  color: rgba(255, 255, 255, 0.5);
}
/* Contact */
.contact-box {
  margin-left: 10%;
  width: 380px;
  padding: 60px 40px;
}
/* Gallery 
	-------------------------------------------- */
.gallery-item {
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  display: block;
  overflow: hidden;
}
.gallery-item .item-photo {
  position: relative;
}
.gallery-item .item-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5% 10%;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
.gallery-item .item-container .item-content {
  position: relative;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
}
.gallery-item:hover .item-container.dynamic {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
}
.gallery-item .item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5% 10%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.gallery-item:hover .item-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.gallery-item .item-hover-content {
  position: relative;
  top: 50%;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, -50%, 0) scale(0.5);
  -webkit-transform: translate3d(0, -50%, 0) scale(0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}
.gallery-item:hover .item-hover-content {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1);
  -webkit-transform: translate3d(0, -50%, 0) scale(1);
}
.gallery-item .item-hover-corner {
  position: absolute;
  top: 10px;
  right: 15px;
}
.gallery-item .item-title {
  text-align: center;
  padding: 25px 10px;
  background-color: #fff;
}
.dark .gallery-item .item-title {
  background-color: rgba(0, 0, 0, 0.1);
}
.gallery-item .item-title .title {
  font-size: 15px;
  font-weight: 500;
  display: block;
  line-height: 1;
}
/* Blog
	-------------------------------------------- */
/* Post Item */
.post {
  margin-bottom: 30px;
}
.post .post-content {
  position: relative;
  margin: 0 15px;
  background: #fff;
  color: #282828;
  padding: 25px 30px;
  z-index: 2;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  margin-bottom: 30px;
}
.post-item .post-content {
  margin-bottom: 0
}
.post-item:hover .post-content {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.post .post-photo + .post-content {
  margin-top: -25px;
}
.post-item h1 {
  font-size: 36px;
}
.post .meta {
  font-size: 11px;
  padding-bottom: 21px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post .meta > span:not(:last-child) {
  margin-right: 13px;
}
.post .meta > span > i {
  margin-right: 5px;
  opacity: 0.2;
}
.post .date {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}
/* Contact Form
	-------------------------------------------- */
#messenger {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  height: 100%;
  overflow: hidden;
  z-index: 777;
  display: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: box-shadow 0.5s 0.4s;
  -webkit-transition: -webkit-box-shadow 0.5s 0.4s;
}
#messenger.active {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
#messenger-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
#messenger-box .messenger-box-content {
  position: absolute;
  top: 0;
  left: 0;
  right: -30px;
  margin-right: 30px;
  height: 100%;
  padding: 30px 30px;
  display: none;
  overflow: auto;
}
#messenger-box .icon.messenger-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
#messenger-box:before {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  content: ' ';
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: ' ';
}
#messenger.active #messenger-box:before {
  bottom: -220px;
  right: -220px;
  width: 720px;
  height: 150vh;
}
#messenger-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  z-index: 776;
}
#messenger-toggle:hover, #messenger-toggle:focus {
  color: #fff;
}
/* Other
	-------------------------------------------- */
/* Elements Page
	-------------------------------------------- */
/* Examples */
.example-box {
  border: 1px solid #E1E1E8;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: 20px;
}
.example-box-content {
  padding: 20px;
}
.example-box-content > *:last-child {
  margin-bottom: 0;
}
.example-box-title {
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: 1px solid #E1E1E8;
  background-color: #F7F8F9;
  color: #9b9fa1;
  font-weight: 500;
}
.example-box + pre {
  margin-top: -1px !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* Comments 
	-------------------------------------------- */
.comments {
  margin-bottom: 30px;
}
.comments, .comments ul {
  list-style: none;
  padding: 0;
}
.comments ul {
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 95px;
}
.comments li {
  margin-bottom: 25px;
}
.comments li:last-child {
  margin-bottom: 0;
}
.comment-avatar {
  float: left;
  width: 65px;
  height: 65px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.comment-avatar img {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.comment-title {
  margin-bottom: 0;
}
.comment-content {
  padding-left: 95px;
}
.comment-head {
  padding-top: 10px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.dark .comment-head {
  border-color: rgba(255, 255, 255, 0.15);
}
.comment-text {
  font-size: 12px;
  margin-bottom: 15px;
}
.comment-title {
  padding-right: 100px;
}
/* ----------------------------------------------------------------------------- */
/* --- 5. ELEMENTS
/* ----------------------------------------------------------------------------- */
/* Loader 
	------------------------------------------- */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  opacity: 0;
}
.pace {
  position: absolute;
  z-index: 2000;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 80px;
  height: 80px;
  display: block !important;
  opacity: 0;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  position: relative;
  transform: translate3d(0px, 0px, 0px) !important;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
@-webkit-keyframes pageLoading {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes pageLoading {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.pace .pace-progress:before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  content: ' ';
  -webkit-animation-name: pageLoading;
  animation-name: pageLoading;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.pace .pace-progress:after {
  position: absolute;
  top: 49%;
  left: 49%;
  display: inline-block;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  font-size: 16px;
  font-weight: 600;
  content: attr(data-progress-text);
  display: block;
}
/* Backgrounds
	------------------------------------------- */
.bg-green, .bg-success {
  background-color: #85b448;
}
.bg-blue, .bg-info {
  background-color: #3aa8db;
}
.bg-orange, .bg-warning {
  background-color: #d86a39;
}
.bg-red, .bg-danger {
  background-color: #ca4441;
}
.bg-cpc {
  background-color: #6f8794;
}
.bg-white {
  background-color: #fff;
}
.bg-black {
  background-color: #000000;
}
.bg-grey {
  background-color: #f8f8f8;
}
.bg-grey-dark {
  background-color: #232323;
}
.bg-blue-dark {
  background-color: #1a2a41;
}
.bg-red-dark {
  background-color: #4b1615;
}
.bg-red-navy {
  background-color: #723e3d;
}
.bg-green-dark {
  background-color: #232d1c;
}
.bg-green-navy {
  background-color: #647247;
}
.bg-brown {
  background-color: #32281d;
}
.bg-blue-navy {
  background-color: #31485e;
}
.bg-yellow {
  background-color: #ddc13e;
}
.bg-yellow-navy {
  background-color: #8e824c;
}
.bg-beige {
  background-color: #caa669;
}
.bg-purple {
  background-color: #8566b5;
}
.bg-purple-navy {
  background-color: #352a47;
}
.bg-dark {
  background-color: rgba(0, 0, 0, 0.7);
}
/* Typography 
	------------------------------------------- */
/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
}
h1, h2, h3, h4 {
  font-family: 'Roboto Condensed';
  font-weight: 300;
}
h26 {
  font-size: 16px;
}
h27 {
  font-family: 'bold' !important;
  font-size: 25px;
  font-weight: normal;
  color: #fcc243;
  line-height: 16px;
}
h5, h6 {
  font-weight: 600;
}
h1 {
  font-size: 42px;
}
h1.text-lg {
  font-size: 52px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-family: 'book' !important;
  color: #fff;
  font-size: 150px;
  line-height: 0.7;
}
h1 {
  margin-bottom: 34px;
}
h3 {
  font-family: 'bold' !important;
  color: #E2EAEC;
  font-size: 35px;
  line-height: 0.7;
}
h4 {
  font-family: 'bold' !important;
  color: #fff;
  font-size: 40px;
  line-height: 0.7;
}
h5 {
  margin-bottom: 20px;
}
h6 {
  margin-bottom: 16px;
}
h7 {
  font-family: 'bold' !important;
  color: #fff;
  font-size: 35px;
  margin-bottom: 16px;
  line-height: 0.7;
}
h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus, h4 a:hover, h4 a:focus, h5 a:hover, h5:focus, h6 a:hover, h6 a:focus {
  text-decoration: none;
}

.sub{width: 50%; padding-right: 3%;}
	.sub:nth-child(odd){float: left;}
	.sub:nth-child(even){float: right;}

h2 {
  font-family: 'bold' !important;
  font-size: 25px;
  font-weight: normal;
  margin-bottom: -0px;
  line-height: 16px;
}
#liquids h2 {
  margin-bottom: 2px;
}
/* Paragraph */
#map, #map2 {
  height: 600px;
}
p {
  margin-bottom: 20px;
}
p.lead {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
}
/* Blockquote */
blockquote {
  padding: 30px 20px;
}
blockquote footer:before {
  display: none;
}
blockquote footer img {
  margin-right: 10px;
}
.dark blockquote .small, .dark blockquote footer, .dark blockquote small {
  color: rgba(255, 255, 255, 0.5);
}
/* Other */
pre {
  padding: 20px;
}
.link-default {
  text-decoration: underline;
}
/* Text Sizes */
.text-light {
  font-weight: 300;
}
.text-xxl {
  font-size: 52px;
}
.text-xl {
  font-size: 24px;
}
.text-lg {
  font-size: 20px;
}
.text-md {
  font-size: 12px;
}
.text-sm {
  font-size: 11px;
}
.text-xs {
  font-size: 10px;
}
.text-italic {
  font-style: italic;
}
/* Text Colors */
.text-blue-dark, .text-primary {
  color: #1a2a41;
}
.text-green, .text-success {
  color: #85b448;
}
.text-blue, .text-info {
  color: #3aa8db;
}
.text-orange, .text-warning {
  color: #d86a39;
}
.text-red, .text-danger {
  color: #ca4441;
}
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-grey {
  color: #f8f8f8;
}
.text-red-dark {
  color: #4b1615;
}
.text-red-navy {
  color: #723e3d;
}
.text-green-dark {
  color: #232d1c;
}
.text-green-navy {
  color: #647247;
}
.text-brown {
  color: #32281d;
}
.text-blue-navy {
  color: #31485e;
}
.text-yellow {
  color: #ddc13e;
}
.text-yellow-navy {
  color: #8e824c;
}
.text-beige {
  color: #caa669;
}
.text-purple {
  color: #8566b5;
}
.text-purple-navy {
  color: #352a47;
}
.text-muted {
  color: #fff;
}
.text-muted-2x {
  color: #b7b7b7;
}
.dark .text-muted {
  color: rgba(255, 255, 255, 0.6);
}
.dark .text-muted-2x {
  color: rgba(255, 255, 255, 0.4);
}
.text-dark {
  color: rgba(0, 0, 0, 0.6);
}
/* Buttons
	-------------------------------------------- */
.btn {
  position: relative;
  padding: 15px 32px 17px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: none;
  font-size: 13px;
  background: none;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.btn > * {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.btn > *:nth-child(2) {
  position: absolute;
  top: 48%;
  transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  right: 20px;
  opacity: 0;
  visibility: hidden;
}
.btn:hover > *:nth-child(1), .btn:focus > *:nth-child(1) {
  transform: translateX(-10px);
}
.btn:hover > *:nth-child(2), .btn:focus > *:nth-child(2) {
  opacity: 1;
  visibility: visible;
}
.btn:before {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 29px;
  content: ' ';
  opacity: 0;
}
.btn:focus:before {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-name: glow;
  animation-name: glow;
}
@-webkit-keyframes glow {
  0% {
    opacity: 0.3;
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
  }
}
@keyframes glow {
  0% {
    opacity: 0.3;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
  outline: none;
}
.btn > span {
  position: relative;
  z-index: 1;
}
/* Colors */
.btn-green, .btn-success {
  background-color: #85b448;
}
.btn-green:hover, .btn-success:hover, .btn-green:focus, .btn-success:focus {
  color: #85b448;
}
.btn-blue, .btn-info {
  background-color: #3aa8db;
}
.btn-blue:hover, .btn-info:hover, .btn-blue:focus, .btn-info:focus {
  color: #3aa8db;
}
.btn-orange, .btn-warning {
  background-color: #d86a39;
}
.btn-orange:hover, .btn-warning:hover, .btn-orange:focus, .btn-warning:focus {
  color: #d86a39;
}
.btn-red, .btn-danger {
  background-color: #ca4441;
}
.btn-red:hover, .btn-danger:hover, .btn-red:focus, .btn-danger:focus {
  color: #ca4441;
}
.btn-white {
  background-color: #fff;
}
.btn-white:hover, .btn-white:focus {
  color: #fff;
}
.btn-black {
  background-color: #282828;
}
.btn-black:hover, .btn-black:focus {
  color: #282828;
}
.btn-grey {
  background-color: #f8f8f8;
}
.btn-grey:hover, .btn-grey:focus {
  color: #f8f8f8;
}
.btn-blue-dark {
  background-color: #1a2a41;
}
.btn-blue-dark:hover, .btn-blue-dark:focus {
  color: #1a2a41;
}
.btn-red-dark {
  background-color: #4b1615;
}
.btn-red-dark:hover, .btn-red-dark:focus {
  color: #4b1615;
}
.btn-red-navy {
  background-color: #723e3d;
}
.btn-red-navy:hover, .btn-red-navy:focus {
  color: #723e3d;
}
.btn-green-dark {
  background-color: #232d1c;
}
.btn-green-dark:hover, .btn-green-dark:focus {
  color: #232d1c;
}
.btn-green-navy {
  background-color: #647247;
}
.btn-green-navy:hover, .btn-green-navy:focus {
  color: #647247;
}
.btn-brown {
  background-color: #32281d;
}
.btn-brown:hover, .btn-brown:focus {
  color: #32281d;
}
.btn-blue-navy {
  background-color: #31485e;
}
.btn-blue-navy:hover, .btn-blue-navy:focus {
  color: #31485e;
}
.btn-yellow {
  background-color: #ddc13e;
}
.btn-yellow:hover, .btn-yellow:focus {
  color: #ddc13e;
}
.btn-yellow-navy {
  background-color: #8e824c;
}
.btn-yellow-navy:hover, .btn-yellow-navy:focus {
  color: #8e824c;
}
.btn-beige {
  background-color: #caa669;
}
.btn-beige:hover, .btn-beige:focus {
  color: #caa669;
}
.btn-purple {
  background-color: #8566b5;
}
.btn-purple:hover, .btn-purple:focus {
  color: #8566b5;
}
.btn-purple-navy {
  background-color: #352a47;
}
.btn-purple-navy:hover, .btn-purple-navy:focus {
  color: #352a47;
}
.btn:hover, .btn:focus {
  background: #fff;
}
.btn-default {
  color: #282828;
  background-color: #f8f8f8;
}
.btn-white {
  color: #282828;
}
.btn-link {
  color: inherit;
}
.btn-link:hover, .btn-link:focus {
  color: inherit;
  text-decoration: none;
  background: transparent;
}
/* Sizes */
.btn-lg {
  padding: 19px 36px 21px;
  border-radius: 40px;
  font-size: 14px;
}
.btn-sm {
  padding: 11px 29px 13px;
  border-radius: 25px;
  font-size: 12px;
}
.btn-xs {
  padding: 9px 26px 11px;
  border-radius: 20px;
  font-size: 11px;
}
/* Labels
	-------------------------------------------- */
.label {
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
}
.label-default {
  background-color: transparent;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.dark .label-default {
  border-color: rgba(255, 255, 255, 0.25);
}
.label-primary {
  background-color: #1a2a41;
}
.label-success {
  background-color: #85b448;
}
.label-info {
  background-color: #3aa8db;
}
.label-warning {
  background-color: #d86a39;
}
.label-danger {
  background-color: #ca4441;
}
/* Icons
	-------------------------------------------- */
.icon-box {
  display: inline-block;
  margin-bottom: 30px;
}
.icon-box .icon {
  margin-bottom: 10px;
}
.icon-box .title {
  display: block;
}
.icon {
  font-size: 62px;
  display: inline-block;
  vertical-align: middle;
  width: 84px;
}
.icon.icon-hover {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.icon-circle {
  position: relative;
  font-size: 32px;
  height: 84px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
}
.icon-circle > * {
  position: absolute;
  top: 49%;
  left: 49%;
  display: inline-block;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
}
.icon.icon-hover {
  transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
a.icon > *:hover, a.icon > *:focus {
  color: inherit;
}
/* Sizes */
.icon-lg {
  font-size: 88px;
  width: 120px;
}
.icon-lg.icon-circle {
  font-size: 54px;
  height: 120px;
}
.icon-sm {
  font-size: 42px;
  width: 56px;
}
.icon-sm.icon-circle {
  font-size: 16px;
  height: 56px;
}
.icon-xs {
  font-size: 25px;
  width: 34px;
}
.icon-xs.icon-circle {
  font-size: 11px;
  height: 34px;
}
/* Colors */
.icon-green, .icon-success {
  background-color: #85b448;
}
.icon-green.icon-hover:hover, .icon-success.icon-hover:hover, .icon-green.icon-hover:focus, .icon-success.icon-hover:focus {
  color: #85b448;
}
.icon-blue, .icon-info {
  background-color: #3aa8db;
}
.icon-blue.icon-hover:hover, .icon-info.icon-hover:hover, .icon-blue.icon-hover:focus, .icon-info.icon-hover:focus {
  color: #3aa8db;
}
.icon-orange, .icon-warning {
  background-color: #d86a39;
}
.icon-orange.icon-hover:hover, .icon-warning.icon-hover:hover, .icon-orange.icon-hover:focus, .icon-warning.icon-hover:focus {
  color: #d86a39;
}
.icon-red, .icon-danger {
  background-color: #ca4441;
}
.icon-red.icon-hover:hover, .icon-danger.icon-hover:hover, .icon-red.icon-hover:focus, .icon-danger.icon-hover:focus {
  color: #ca4441;
}
.icon-white {
  background-color: #fff;
  color: #282828;
}
.icon-white.icon-hover:hover, .icon-white.icon-hover:focus {
  color: #fff;
  color: #282828;
}
.icon-black {
  background-color: #282828;
}
.icon-black.icon-hover:hover, .icon-black.icon-hover:focus {
  color: #282828;
}
.icon-grey {
  background-color: #f8f8f8;
  color: #282828;
}
.icon-grey.icon-hover:hover, .icon-grey.icon-hover:focus {
  color: #282828;
}
.icon-blue-dark {
  background-color: #1a2a41;
}
.icon-blue-dark.icon-hover:hover, .icon-blue-dark.icon-hover:focus {
  color: #1a2a41;
}
.icon-red-dark {
  background-color: #4b1615;
}
.icon-red-dark.icon-hover:hover, .icon-red-dark.icon-hover:focus {
  color: #4b1615;
}
.icon-red-navy {
  background-color: #723e3d;
}
.icon-red-navy.icon-hover:hover, .icon-red-navy.icon-hover:focus {
  color: #723e3d;
}
.icon-green-dark {
  background-color: #232d1c;
}
.icon-green-dark.icon-hover:hover, .icon-green-dark.icon-hover:focus {
  color: #232d1c;
}
.icon-green-navy {
  background-color: #647247;
}
.icon-green-navy.icon-hover:hover, .icon-green-navy.icon-hover:focus {
  color: #647247;
}
.icon-brown {
  background-color: #32281d;
}
.icon-brown.icon-hover:hover, .icon-brown.icon-hover:focus {
  color: #32281d;
}
.icon-blue-navy {
  background-color: #31485e;
}
.icon-blue-navy.icon-hover:hover, .icon-blue-navy.icon-hover:focus {
  color: #31485e;
}
.icon-yellow {
  background-color: #ddc13e;
}
.icon-yellow.icon-hover:hover, .icon-yellow.icon-hover:focus {
  color: #ddc13e;
}
.icon-yellow-navy {
  background-color: #8e824c;
}
.icon-yellow-navy.icon-hover:hover, .icon-yellow-navy.icon-hover:focus {
  color: #8e824c;
}
.icon-beige {
  background-color: #caa669;
}
.icon-beige.icon-hover:hover, .icon-beige.icon-hover:focus {
  color: #caa669;
}
.icon-purple {
  background-color: #8566b5;
}
.icon-purple.icon-hover:hover, .icon-purple.icon-hover:focus {
  color: #8566b5;
}
.icon-purple-navy {
  background-color: #352a47;
}
.icon-purple-navy.icon-hover:hover, .icon-purple-navy.icon-hover:focus {
  color: #352a47;
}
.icon.icon-hover:not(.icon-circle):hover {
  color: inherit;
}
.icon-circle.icon-hover:hover:not(.icon-white):not(#messenger-toggle), .icon-circle.icon-hover:focus:not(.icon-white):not(#messenger-toggle), a.icon-circle:hover:not(.icon-white):not(#messenger-toggle), a.icon-circle:focus:not(.icon-white):not(#messenger-toggle) {
  background-color: #fff !important;
}
.icon.icon-hover.icon-white:hover, .icon.icon-hover.icon-white:focus {
  background-color: transparent;
  color: inherit;
}
/* Social Icons */
.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-icons > li {
  display: inline-block;
}
.icon-behance {
  background-color: #0098fd;
}
.icon-behance:hover, .icon-behance:focus {
  color: #0098fd;
}
.icon-dribbble {
  background-color: #f16092;
}
.icon-dribbble:hover, .icon-dribbble:focus {
  color: #f16092;
}
.icon-dropbox {
  background-color: #0093eb;
}
.icon-dropbox:hover, .icon-dropbox:focus {
  color: #0093eb;
}
.icon-facebook {
  background-color: #1f4578;
}
.icon-facebook:hover, .icon-facebook:focus {
  color: #1f4578;
}
.icon-github {
  background-color: #757575;
}
.icon-github:hover, .icon-github:focus {
  color: #757575;
}
.icon-google-plus {
  background-color: #e13d3d;
}
.icon-google-plus:hover, .icon-google-plus:focus {
  color: #e13d3d;
}
.icon-instagram {
  background-color: #bd7f55;
}
.icon-instagram:hover, .icon-instagram:focus {
  color: #bd7f55;
}
.icon-linkedin {
  background-color: #008fc3;
}
.icon-linkedin:hover, .icon-linkedin:focus {
  color: #008fc3;
}
.icon-skype {
  background-color: #16bef1;
}
.icon-skype:hover, .icon-skype:focus {
  color: #16bef1;
}
.icon-tumblr {
  background-color: #3a5974;
}
.icon-tumblr:hover, .icon-tumblr:focus {
  color: #3a5974;
}
.icon-twitter {
  background-color: #50c8e6;
}
.icon-twitter:hover, .icon-twitter:focus {
  color: #50c8e6;
}
.icon-youtube {
  background-color: #eb3c31;
}
.icon-youtube:hover, .icon-youtube:focus {
  color: #eb3c31;
}
/* Carousel 
	-------------------------------------------- */
/* Pagination */
.owl-pagination {
  text-align: center;
}
.owl-pagination .owl-page {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 0;
  margin-bottom: 5px;
}
.owl-pagination .owl-page > span {
  display: block;
  background-color: #282828;
  width: 8px;
  height: 8px;
  opacity: .2;
  vertical-align: middle;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.dark .owl-pagination .owl-page > span {
  background-color: #fff;
  opacity: .3;
}
.light .owl-pagination .owl-page > span {
  background-color: #282828;
}
.owl-pagination .owl-page.active > span {
  opacity: 1;
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
}
/* Navs
	-------------------------------------------- */
/* Sticky Nav */
.side-sticky-navigation.affix {
  top: 60px;
  width: 100%;
  max-width: 300px;
}
/* Lists
	-------------------------------------------- */
ol, ul {
  margin-bottom: 25px;
}
/* List Check */
ul.list-check li {
  list-style: none;
}
ul.list-check li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin-right: 10px;
  opacity: 0.4;
}
/* Icons List */
.list-unstyled-icons .inline-icon {
  float: left;
  margin-left: -35px;
}
.list-unstyled-icons li {
  padding-left: 30px;
  margin-bottom: 15px;
}
.list-unstyled-icons li:last-child {
  margin-bottom: 0px;
}
/* Navs
	-------------------------------------------- */
.nav a {
  color: inherit;
}
/* Pills */
.nav-pills > li {
  display: inline-block;
  float: none;
}
.nav-pills > li > a {
  border-radius: 40px;
  padding: 12px 26px;
  font-weight: 500;
  border: none;
  background-color: rgba(0, 0, 0, 0.05);
  color: #909090;
}
.dark .nav-pills > li > a {
  color: #fff;
}
.nav-pills > li > a:focus, .nav-pills > li > a:hover {
  background: transparent;
  color: #282828;
}
.dark .nav-pills > li > a:focus, .dark .nav-pills > li > a:hover {
  color: #fff;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  background-color: #282828;
  border-color: #282828;
}
/* Panels */
.nav-panels {
  margin-bottom: 40px;
}
.nav-panels > li {
  width: 50%;
  float: left;
}
.nav-panels > li > a {
  padding: 40px;
  background: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-panels > li > a:hover, .nav-panels > li > a:focus {
  background: #fff;
}
.nav-panels > li.active > a, .nav-panels > li.active > a:focus, .nav-panels > li.active > a:hover {
  color: #fff;
}
/* Forms 
	-------------------------------------------- */
.form-group {
  margin-bottom: 10px;
}
label {
  font-size: 13px;
}
.form-control {
  height: 42px;
  padding: 10px 12px;
  border-color: #dfdfdf;
  border-radius: 3px;
  font-size: 13px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  border-color: #949494;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dark .form-control, .dark .form-control:focus {
  border: none !important;
}
.form-error {
  display: none;
}
/* Alerts
	-------------------------------------------- */
.alert {
  border: none;
  color: #fff;
}
.alert-default {
  background-color: rgba(0, 0, 0, 0.15);
}
.alert-success {
  background-color: #85b448;
}
.alert-info {
  background-color: #3aa8db;
}
.alert-warning {
  background-color: #d86a39;
}
.alert-danger {
  background-color: #ca4441;
}
/* Testimonials
	-------------------------------------------- */
.testimonial {
  margin-bottom: 45px;
  text-align: left;
}
.testimonial-content {
  position: relative;
  padding: 18px 23px;
  line-height: 1.2;
  background-color: #F6F6F6;
}
.testimonial-dark .testimonial-content {
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
}
.testimonial-white .testimonial-content {
  color: #282828;
  background-color: #fff;
}
.testimonial-content:before {
  position: absolute;
  ;
  bottom: -14px;
  left: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0 0;
  border-color: #000 transparent transparent;
  content: '';
}
.testimonial-content:before {
  border-color: #F6F6F6 transparent transparent;
}
.testimonial-white .testimonial-content:before {
  border-color: #fff transparent transparent;
}
.testimonial-dark .testimonial-content:before {
  border-color: rgba(0, 0, 0, .2) transparent transparent;
}
.testimonial-author {
  margin-top: 20px;
  line-height: 1.1;
}
.testimonial-author .testimonial-icon {
  float: left;
}
.testimonial-author .name {
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.testimonial-author .caption {
  font-size: 12px;
  font-weight: 600;
}
.testimonial-photo {
  position: relative;
  float: left;
  width: 52px;
  height: 52px;
}
.testimonial-with-photo .testimonial-author-txt {
  margin-left: 65px;
  padding-top: 11px;
}
.testimonial-with-icon .testimonial-icon {
  margin-top: 3px;
}
.testimonial-with-icon .testimonial-author-txt {
  margin-left: 25px;
}
/* Modal
	-------------------------------------------- */
.modal {
  text-align: center;
}
.modal-backdrop.in {
  opacity: 0.8;
}
.modal-intro {
  color: #fff;
  text-align: left;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  -o-transition: -o-transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  transition: transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.475);
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal:before {
  display: inline-block;
  vertical-align: middle;
  content: " ";
  height: 100%;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal-dialog.modal-md {
  width: 750px;
}
.modal-content {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
.modal-body {
  padding: 30px;
}
/* Modal Close */
.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 50;
  transform: translateY(-40px) rotate(90deg);
  -webkit-transform: translateY(-40px) rotate(90deg);
  opacity: 0;
  background: transparent;
  font-size: 30px;
  border: none;
  color: #fff;
  opacity: 0.3;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.modal.in .modal-close {
  transform: translateY(0) rotate(0);
  -webkit-transform: translateY(0) rotate(0);
  opacity: .3;
}
.modal.in .modal-close:hover {
  opacity: 1;
}
/* Ajax Modal 
	-------------------------------------------- */
#ajax-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  z-index: 333;
}
.ajax-modal-opened #header {
  pointer-events: none;
  opacity: 0.5;
}
#ajax-modal .ajax-body {
  padding-top: 90px;
  padding-bottom: 90px;
}
html.locked-scrolling, html.locked-scrolling body {
  height: 100%;
  overflow: hidden;
}
#ajax-modal .ajax-close {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 50;
}
#ajax-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  color: #fff;
  border-radius: 50%;
  display: none;
  z-index: 999;
}
#ajax-loader:before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  content: ' ';
  -webkit-animation-name: pageLoading;
  animation-name: pageLoading;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
#ajax-loader > i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  font-size: 19px;
}
/* Progress Bars 
	-------------------------------------------- */
.progress {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 5px;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: visible;
}
.dark .progress {
  background-color: rgba(255, 255, 255, 0.2);
}
.progress-bar {
  margin-left: -1px;
  text-align: right;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 500;
  box-shadow: none;
  transition: width 1s ease-out;
  -moz-transition: width 1s ease-out;
  -webkit-transition: width 1s ease-out;
  -o-transition: width 1s ease-out;
}
.progress-bar > span {
  position: relative;
  top: -8px;
  display: inline-block;
  padding: 0px 10px;
  font-size: 11px;
  border-radius: 15px;
  color: #fff;
  background-color: inherit;
}
.progress-bar-blue-dark, .progress-bar-primary, .progress-bar {
  background-color: #1a2a41;
}
.progress-bar-green, .progress-bar-success {
  background-color: #85b448;
}
.progress-bar-blue, .progress-bar-info {
  background-color: #3aa8db;
}
.progress-bar-orange, .progress-bar-warning {
  background-color: #d86a39;
}
.progress-bar-red, .progress-bar-danger {
  background-color: #ca4441;
}
.progress-bar-white {
  background-color: #fff;
}
.progress-bar-black {
  background-color: #000;
}
.progress-bar-grey {
  background-color: #f8f8f8;
}
.progress-bar-red-dark {
  background-color: #4b1615;
}
.progress-bar-red-navy {
  background-color: #723e3d;
}
.progress-bar-green-dark {
  background-color: #232d1c;
}
.progress-bar-green-navy {
  background-color: #647247;
}
.progress-bar-brown {
  background-color: #32281d;
}
.progress-bar-blue-navy {
  background-color: #31485e;
}
.progress-bar-yellow {
  background-color: #ddc13e;
}
.progress-bar-yellow-navy {
  background-color: #8e824c;
}
.progress-bar-purple {
  background-color: #8566b5;
}
.progress-bar-purple-navy {
  background-color: #352a47;
}
/* Charts
	-------------------------------------------- */
.chart-box {
  text-align: center;
  margin: 0 20px 30px;
  display: inline-block;
}
.chart {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  clear: both;
}
.chart + * {
  display: block;
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.chart .percent {
  display: inline-block;
  font-weight: 600;
  z-index: 2;
}
.chart {
  font-size: 24px;
}
.chart .percent:after {
  font-size: 80%;
  content: '%';
}

/* Tooltips 
	-------------------------------------------- */
.tooltip {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
.tooltip-inner {
  border-radius: 2px;
}
.tooltips-light .tooltip-inner {
  background: #fff;
  color: #282828;
  -webkit-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
}
.tooltips-light .tooltip-innter {
  background-color: #fff;
  color: #282828;
}
.tooltips-light .tooltip.left .tooltip-arrow {
  border-left-color: #fff;
}
.tooltips-light .tooltip.right .tooltip-arrow {
  border-right-color: #fff;
}
.tooltips-light .tooltip.top .tooltip-arrow {
  border-top-color: #fff;
}
.tooltips-light .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #fff;
}
/* Pagination
	-------------------------------------------- */
.pagination > li {
  display: inline-block;
  margin: 0 2px;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  padding: 5px 12px 7px;
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 500;
  border-radius: 30px !important;
}
.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  border: none;
  color: #fff;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background: transparent;
  border: none;
  color: #fff;
}
/* Images
	-------------------------------------------- */
/* Other
	-------------------------------------------- */
/* Circle */
.circle {
  display: inline-block;
  width: 108px;
  height: 108px;
  border-radius: 50%;
}
.circle-xs {
  width: 72px;
  height: 72px;
}
.circle-xs {
  width: 36px;
  height: 36px;
}
/* Roll Down */
.roll-down {
  position: relative;
  height: 65px;
  margin-top: 20px;
  width: 40px;
  display: inline-block;
  border: 3px solid #fff;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  content: ' ';
}
.roll-down:after {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: ' ';
  background: #fff;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scrolling;
  animation-name: scrolling;
}
@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: translate3d(0, 400%, 0);
    transform: translate3d(0, 400%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes scrolling {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  50% {
    -webkit-transform: translate3d(0, 400%, 0);
    transform: translate3d(0, 400%, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
/* ----------------------------------------------------------------------------- */
/* --- 6. MEDIA QUERIES
/* ----------------------------------------------------------------------------- */
@media only screen and (max-width: 1480px) {
  .container-wide {
    width: 90%;
  }
  .contact-box {
    margin-left: 5%;
  }
  .row.padding-lg {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.padding-lg > div[class^='col'], .row.no-padding > div[class*=' col'] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-vertical #header {
    width: 270px;
  }
  .header-vertical .section {
    padding-left: 320px;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-4 {
    width: 33.33332%;
  }
}
@media only screen and (max-width: 1199px) {
  .container-wide {
    width: 98%;
  }
  .contact-box {
    margin-left: 1%;
  }
  .row.padding-lg {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.padding-lg > div[class^='col'], .row.no-padding > div[class*=' col'] {
    padding-left: -15px;
    padding-right: -15px;
  }
  .header-vertical #header {
    width: 270px;
    top: 15px;
    left: 15px;
    bottom: 15px;
  }
  .header-vertical .section {
    padding-left: 320px;
  }
  .fullwidth {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-4 {
    width: 33.33332%;
  }
}
@media only screen and (max-width: 991px) {
  /* Basic */
	.header-vertical #header{display: none;}
  .v-center-items {
    display: block;
  }
  .v-center, .v-bottom {
    top: 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  .fullheight {
    height: auto;
  }
  .header-vertical .section {
    padding-left: 0px;
    margin: 0 50px;
  }
  /* Section double */
  .section-double .image {
    position: relative;
    height: 100vw;
    max-height: 500px;
    margin-bottom: 50px;
  }
  .section-double .content {
    position: relative;
    top: 0;
    transform: none;
    -webkit-transform: none;
  }
  /* Modal */
  .modal-dialog {
    padding-top: 100px;
  }
  .modal:before {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .col-sm-4 {
    width: 33.33332%;
  }
	
}
@media screen and (max-width: 768px) {
		.sub{width: 100%;}
	.sub:nth-child(odd){float:none;}
	.sub:nth-child(even){float: none;}
}
  .col-xs-4 {
    width: 33.33332%;
  }
  .comments ul {
    padding-left: 25px;
  }
  .comment-content {
    padding-left: 80px;
  }
  .fullwidth {
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-panels > li > a {
    padding: 40px 15px;
  }
  .dateBox {
    font-size: 25px;
    width: 65px;
  }
  .expand {
    width: 40px;
    right: 65px;
  }
  .accordionTab span {
    font-size: 35px;
    padding-right: 100px;
  }
  .header-vertical .section {
    margin: 0;
  }
}
@media only screen and (max-width: 468px) {
  .contact-box {
    width: 100%;
    margin-left: 1%;
  }
  #messenger {
    width: 100%;
  }
  #messenger.active #messenger-box:before {
    width: 250%;
  }
  #mobile-nav-toggle, #mobile-nav .mobile-nav-close, #messenger-box .icon.messenger-close, #ajax-modal .ajax-close {
    top: 20px;
    right: 20px;
  }
  .header-vertical .section {
    padding-left: 0px;
    margin: 0 0px;
  }
  .tlp {
    top: -60px;
    right: 0px;
    height: 200px;
    width: 200px;
    background-size: 200px;
  }
  .about {
    padding: 40px 12px 40px 12px;
  }
  #messenger-box:before, #messenger-toggle {
    right: 20px;
    bottom: 20px;
  }
  h6 {
    font-size: 80px;
  }
  .wijn .col-xs-10 {
    width: 75%;
  }
  .stv {
    padding: 40px 12px 40px 12px;
  }
  .dateBox {
    font-size: 25px;
    width: 65px;
  }
  .expand {
    width: 40px;
    right: 65px;
  }
  .accordionTab span {
    font-size: 25px;
    padding-right: 100px;
  }
}
@media only screen and (max-height: 500px) {
  /* Basic */
  .v-center-items {
    display: block;
  }
  .v-center, .v-bottom {
    top: 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
  .fullheight {
    height: auto;
  }
  #messenger.active #messenger-box:before {
    height: 250vh;
  }
}
@media only screen and (max-height: 620px) {
  #main-menu .nav-vertical > li > a > span {
    font-size: 35px;
  }
  #main-menu .nav-vertical > li > a {
    font-size: 35px;
  }
}
@media only screen and (max-height: 600px) {
  #main-menu .nav-vertical > li > a > span {
    font-size: 25px;
  }
  #main-menu .nav-vertical > li > a {
    font-size: 25px;
  }
		h6{font-size: 100px;}
	
	.agenda-drawer__title {font-size: 1em;}
}