/*
1. FRAMEWORK STYLES 
2. PLUGIN STYLES
3. UX STYLES
4. BASELINE & TYPOGRAPHY
5. NAVIGATION
6. CONTENT SECTIONS
7. MEDIA QUERIES
*/
/* ===== FRAMEWORK STYLES ===== */
/* SPIN ANIMATION */
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.spin {
  -webkit-animation: spin 4s infinite linear;
  -moz-animation: spin 4s infinite linear;
  animation: spin 4s infinite linear;
}
/* BOUNCE ANIMATION */
@-moz-keyframes bounce {
  0% {
    -moz-transform: translate(0, 0);
  }
  50% {
    -moz-transform: translate(0, -6px);
  }
  100% {
    -moz-transform: translate(0, 0);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -6px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -6px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.bounce {
  -webkit-animation: bounce 0.4s infinite ease-in-out;
  -moz-animation: bounce 0.4s infinite ease-in-out;
  animation: bounce 0.4s infinite ease-in-out;
}
.bounce-delay {
  -webkit-animation: bounce 0.4s infinite ease-in-out;
  -moz-animation: bounce 0.4s infinite ease-in-out;
  animation: bounce 0.4s infinite ease-in-out;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
/* PUMP ANIMATION */
@-moz-keyframes pump {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.05);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-webkit-keyframes pump {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pump {
  -webkit-animation: pump 0.4s infinite ease-in-out;
  -moz-animation: pump 0.4s infinite ease-in-out;
  animation: pump 0.4s infinite ease-in-out;
}
/* BACKGROUND HORIZONTAL SCROLL */
@-moz-keyframes scroll {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@-webkit-keyframes scroll {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@keyframes scroll {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
/* ===== PLUGIN STYLES ===== */
/* COLIO PORTFOLIO */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* Colio - Basic Styles
================================================== */
.colio {
  position: relative;
  height: 0;
  clear: both;
  overflow: hidden;
}
.colio-container {
  padding: 40px;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.colio-content {
  display: none;
  overflow: hidden;
}
.colio-close,
.colio-prev,
.colio-next {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.colio-no-prev,
.colio-no-next {
  cursor: default;
  opacity: 0.2;
}
/* navigation, close */
.colio-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.colio-navigation {
  position: absolute;
  top: 10px;
  left: 10px;
}
.colio-navigation a {
  margin-right: 5px;
}
/* placement */
.colio-placement-inside,
.colio-placement-before {
  margin-bottom: 20px;
}
.colio-placement-after {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Colio - Black Theme
================================================== */
/* container */
.colio-theme-black {
  margin-right: 20px;
}
.colio-theme-black .colio-container {
  background: #333;
}
/* colio close */
.colio-theme-black .colio-close span {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}
.colio-theme-black .colio-close {
  position: absolute;
  top: 24px;
  right: 16px;
}
.colio-theme-black .colio-close span {
  background: url(../colio/images/controls.png) no-repeat -48px 0px;
}
.colio-theme-black .colio-close:hover {
  opacity: 0.8;
}
/* colio navigation */
.colio-theme-black .colio-navigation span {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
}
.colio-theme-black .colio-navigation {
  position: absolute;
  top: 60px;
  left: 60px;
}
.colio-theme-black .colio-navigation a {
  float: left;
  padding: 5px;
  margin-right: 5px;
  background: #ff5452;
  -webkit-transition: background .1s;
  -moz-transition: background .1s;
  -o-transition: background .1s;
  transition: background .1s;
}
.colio-theme-black .colio-navigation a:hover {
  background: #555;
}
.colio-theme-black .colio-prev span {
  background: url(../colio/images/controls.png) no-repeat 0 3px;
}
.colio-theme-black .colio-next span {
  background: url(../colio/images/controls.png) no-repeat -24px 3px;
}
.colio-theme-black .colio-no-prev,
.colio-theme-black .colio-no-next {
  background: #555!important;
}
/* content */
.colio-theme-black .main {
  float: left;
  width: 45%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.colio-theme-black .side {
  float: left;
  padding: 20px;
  width: 55%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* typography */
.colio-theme-black {
  color: #999;
}
.colio-theme-black h3 {
  padding: 0;
  margin: 0 0 35px 100px;
  color: #ccc;
}
.colio-theme-black a,
.colio-theme-black a:visited {
  color: #ccc;
  font-style: italic;
  text-decoration: underline;
}
.colio-theme-black a:hover {
  color: #eee;
}
.colio-theme-black a.visit-link {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #ccc;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-style: normal;
  line-height: 21px;
  font-size: 12px;
  letter-spacing: 0.05px;
}
/* photo feed */
.colio-theme-black .feed {
  margin: 0;
  list-style: none;
}
.colio-theme-black .feed li {
  float: left;
  margin: 0 5px 5px 0;
  width: 130px;
  height: 130px;
  overflow: hidden;
  background: #ff5452 url(../colio/images/plus.png) no-repeat center;
}
.colio-theme-black .feed img {
  height: 100%;
  width: auto;
  vertical-align: top;
  -webkit-transition: opacity .2s;
  -moz-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}
.colio-theme-black .feed li:hover img {
  opacity: 0.2;
}
/* social icons */
.colio-theme-black .social {
  width: 100%;
  margin-bottom: 21px;
  overflow: hidden;
}
.colio-theme-black .social li {
  float: left;
  margin: 0 7px 0 0;
}
.colio-theme-black .social a {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  opacity: 0.8;
  border-radius: 12px;
  -moz-border-radius: 12px;
  background-size: 24px 24px !important;
}
.colio-theme-black .social a:hover {
  opacity: 1;
  -webkit-transition: opacity .2s;
  -moz-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}
.colio-theme-black .social .delicious {
  background: url(../colio/images/social/delicious.png) no-repeat center;
}
.colio-theme-black .social .digg {
  background: url(../colio/images/social/digg.png) no-repeat center;
}
.colio-theme-black .social .dribble {
  background: url(../colio/images/social/dribble.png) no-repeat center;
}
.colio-theme-black .social .ember {
  background: url(../colio/images/social/ember.png) no-repeat center;
}
.colio-theme-black .social .facebook {
  background: url(../colio/images/social/facebook.png) no-repeat center;
}
.colio-theme-black .social .flickr {
  background: url(../colio/images/social/flickr.png) no-repeat center;
}
.colio-theme-black .social .forrst {
  background: url(../colio/images/social/forrst.png) no-repeat center;
}
.colio-theme-black .social .google {
  background: url(../colio/images/social/google.png) no-repeat center;
}
.colio-theme-black .social .last_fm {
  background: url(../colio/images/social/last_fm.png) no-repeat center;
}
.colio-theme-black .social .linkedin {
  background: url(../colio/images/social/linkedin.png) no-repeat center;
}
.colio-theme-black .social .my_space {
  background: url(../colio/images/social/my_space.png) no-repeat center;
}
.colio-theme-black .social .quora {
  background: url(../colio/images/social/quora.png) no-repeat center;
}
.colio-theme-black .social .rss {
  background: url(../colio/images/social/rss.png) no-repeat center;
}
.colio-theme-black .social .sharethis {
  background: url(../colio/images/social/sharethis.png) no-repeat center;
}
.colio-theme-black .social .skype {
  background: url(../colio/images/social/skype.png) no-repeat center;
}
.colio-theme-black .social .stumbleupon {
  background: url(../colio/images/social/stumbleupon.png) no-repeat center;
}
.colio-theme-black .social .tumblr {
  background: url(../colio/images/social/tumblr.png) no-repeat center;
}
.colio-theme-black .social .twitter {
  background: url(../colio/images/social/twitter.png) no-repeat center;
}
.colio-theme-black .social .vimeo {
  background: url(../colio/images/social/vimeo.png) no-repeat center;
}
.colio-theme-black .social .youtube {
  background: url(../colio/images/social/you_tube.png) no-repeat center;
}
/* Retina
================================================== */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  .colio-theme-black .colio-prev span {
    background: url(../colio/images/controls%402x.png) no-repeat 0 0;
    background-size: 72px 24px;
  }
  .colio-theme-black .colio-next span {
    background: url(../colio/images/controls%402x.png) no-repeat -24px 3px;
    background-size: 72px 24px;
  }
  .colio-theme-black .colio-close span {
    background: url(../colio/images/controls%402x.png) no-repeat -48px 3px;
    background-size: 72px 24px;
  }
}
/* Media queries
================================================== */
/* Smaller than standard 960 (devices and browsers) */
/* Tablet Portrait size to standard 960 (devices and browsers) */
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
  .colio-theme-black .main,
  .colio-theme-black .side {
    clear: both;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .colio-theme-black .side {
    margin-bottom: 0;
  }
  .colio-theme-black .colio-navigation {
    left: 40px;
    top: 40px;
  }
  .colio-theme-black .main h3 {
    float: none;
    margin: 60px 0 20px;
    text-align: left;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
  .colio-theme-black .colio-container {
    padding: 30px;
  }
  .colio-theme-black .colio-navigation {
    left: 30px;
    top: 30px;
  }
  .colio-theme-black .feed li {
    width: 115px;
    height: 115px;
  }
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}
/* MAGNIFIC POPUP */
/* ===== MAGNIFIC POPUP ===== */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
/* ===== UX STYLES ===== */
/* ===== COLOR VARIABLES ==== */
/* For a visual color palette, please visit the /images/color-palette.jpg image */
/* Brand colors - Bootstrap Override */
/* ========== SECTION BACKGROUND COLORS ======= */
.color-1 {
  background-color: #ffffff;
  color: #6e7e7e;
}
.color-2 {
  background-color: #ebe7de;
  color: #6e7e7e;
}
.color-3 {
  background-color: #d0d0d0;
  color: #ffffff;
}
.color-4 {
  background-color: #6e7e7e;
  color: #ffffff;
}
.color-5 {
  background-color: #2c2c2c;
  color: #ffffff;
}
.color-6 {
  background-color: #a8c727;
  color: #ffffff;
}
.color-7 {
  background-color: #a9d6c3;
  color: #2c2c2c;
}
.color-8 {
  background-color: #13888a;
  color: #ffffff;
}
.color-9 {
  background-color: #fbb82b;
  color: #ffffff;
}
.color-10 {
  background-color: #ec553f;
  color: #ffffff;
}
.transparent {
  background-color: transparent;
}
/* ===== SECTION BACKGROUNDS ===== */
body,
html {
  height: 100%;
  /*overflow-x: hidden;*/
}
.bg-img,
.bg-hue,
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.bg-img {
  z-index: -300;
}
.bg-hue {
  z-index: -200;
}
.bg-pattern {
  z-index: -100;
}
/* ===== BUTTONS ===== */
.btn {
  margin: 12px 12px 0 0;
  font-weight: 300;
}
.btn-primary {
  background: #13888a;
}
.btn-primary:hover {
  background: #169ea0;
}
.btn-info {
  background: #a9d6c3;
}
.btn-info:hover {
  background: #badecf;
}
.btn-success {
  background: #a8c727;
}
.btn-success:hover,
.btn-success:focus {
  background: #b7d731;
}
.btn-warning {
  background: #fbb82b;
}
.btn-warning:hover {
  background: #fbc044;
}
.btn-danger {
  background: #ec553f;
}
.btn-danger:hover {
  background: #ee6a56;
}
.btn-transparent {
  background: transparent;
  border: solid 2px;
  font-weight: 300;
  transition: all 0.2s;
}
.btn-transparent.white {
  border-color: white;
  color: white;
}
.btn-transparent:hover {
  opacity: 0.8;
}
/* ===== FORMS ===== */
.form-control:focus {
  border-color: #a8c727;
}
/* ===== MISC ===== */
iframe {
  border: none;
}
/* ========== BASELINE & TYPOGRAPHY ======= */
h1,
h2,
h3,
h4,
h5,
p,
.lead {
  margin-top: 0;
  margin-bottom: 16px;
  padding: 0;
  line-height: 1.3em;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
p span,
.lead span {
  color: #a8c727;
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 2.5em;
}
h3 {
  font-size: 2em;
}
h4,
.lead {
  font-size: 1.5em;
}
h5,
p {
  font-size: 1.125em;
  line-height: 1.7777778em;
}
p {
  font-weight: 300;
}
body {
  font-size: 'Lato' 1em;
}
img {
  padding: 0;
  margin: 24px 0;
}
section {
  padding: 72px 0 48px;
}
hr {
  height: 0;
  margin: 32px auto 24px;
  border-bottom: solid 4px #ebe7de;
  width: 120px;
}
/* ===== NAVIGATION ===== */
.navbar {
  background: #2c2c2c !important;
  min-height: 72px;
  margin-bottom: 0;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  height: 72px;
  line-height: 36px;
}
.navbar .navbar-brand img {
  margin: -3px 24px 0 0;
  padding: 14px 0;
  max-height: 48px;
  opacity: 0.8;
}
.navbar .navbar-brand img:hover {
  opacity: 1;
}
.navbar .nav {
  float: right;
}
.navbar .nav li a {
  height: 72px;
  line-height: 36px;
  padding-top: 18px;
  padding-right: 48px;
  padding-bottom: 18px;
  padding-left: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: #d0d0d0;
}
.navbar .nav li a:hover {
  color: #a8c727;
}
.navbar .nav li.active a {
  color: #a8c727;
}
.navbar .nav li.active a:hover {
  color: #a8c727;
}
.container > .navbar-header,
.container > .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
}
/* ===== CONTENT SECTIONS ===== */
/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  height: 100%;
  color: white;
  padding-top: 12px;
}
.hero a.logo img {
  opacity: 0.5;
  margin: 48px auto 24px;
  transition: opacity 0.5s;
}
.hero a.logo img:hover {
  opacity: 0.9;
}
.hero .lead {
  opacity: 0.9;
}
.hero .bg-img {
  background: url('../images/demo/presentation-bg.jpg') center top no-repeat;
  background-size: cover;
}
.hero .bg-hue {
  background-color: #073030;
  opacity: 0.85;
}
.hero .bg-pattern {
  background: url('../images/patterns/pattern-2.png') 0 0 repeat;
  opacity: 0.4;
}
.hero .hero-wrapper {
  display: table;
  height: 100%;
  margin: 0 auto;
}
.hero .hero-wrapper .container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 100%;
}
.hero .hero-wrapper .container .btn {
  margin: 16px 12px 24px;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
}
.hero .hero-wrapper .container .btn:hover {
  opacity: 1;
}
.hero img {
  margin: 0 auto;
  display: block;
}
.hero .scroll-down {
  margin-top: 12px;
}
.hero .scroll-down span {
  color: #ffffff;
  font-size: 3.5em;
  opacity: 0.5;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
  transition: all 0.2s;
}
.hero .scroll-down span:hover {
  opacity: 1;
}
/* ===== TEAM SECTION ===== */
.team .teamfolio {
  margin-top: 24px;
}
.team .teamfolio img {
  max-height: 400px;
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
}
.team .teamfolio:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.team .teamfolio:hover img {
  -webkit-animation: bounce 0.3s infinite ease-in-out;
  -moz-animation: bounce 0.3s infinite ease-in-out;
  animation: bounce 0.3s infinite ease-in-out;
}
.team .teamfolio h3 {
  font-size: 2.5em;
  margin-bottom: 6px;
}
.team .teamfolio .lead {
  opacity: 0.7;
}
.team .teamfolio .intro {
  margin-bottom: 6px;
  font-size: 1em;
}
.team .teamfolio .social {
  font-size: 1.5em;
  margin-bottom: 24px;
}
.team .teamfolio .social a {
  color: #ffffff;
  opacity: 0.5;
}
.team .teamfolio .social a:hover {
  opacity: 1;
}
.team .teamfolio .social span {
  padding: 8px;
}
.team hr {
  border-color: rgba(0, 0, 0, 0.1);
}
/* ===== PORTFOLIO ===== */
.portfolio ul {
  padding: 0;
}
.portfolio ul li {
  padding: 12px;
  background-color: transparent;
  list-style: none;
  transition: all 0.2s;
}
.portfolio ul li.colio-active-item img {
  opacity: 0.6;
}
.portfolio ul li img {
  padding: 0;
  margin: 0;
  transition: all 0.2s;
}
.portfolio ul li img:hover {
  opacity: 0.6;
}
.portfolio .filters {
  padding: 12px 0 36px;
}
.portfolio .filters a {
  padding: 8px 6px;
  margin: 0 12px;
  color: #d0d0d0;
}
.portfolio .filters a:hover {
  color: #6e7e7e;
}
.portfolio .filters a.filter-active {
  color: #a8c727;
  border-bottom: solid 3px #a8c727;
}
.colio-theme-black .colio-container {
  margin: 12px 0 0 12px;
  background: #ebe7de;
  color: #6e7e7e;
}
.colio-theme-black .colio-container h3 {
  color: #6e7e7e;
  margin-top: 6px;
  margin-bottom: 24px;
}
.colio-theme-black .colio-container p a {
  color: #ec553f;
  border-bottom: dotted 1px;
}
.colio-theme-black .colio-container a {
  text-decoration: none;
  font-style: normal;
}
.colio-theme-black .colio-container a.project-link {
  color: #ffffff;
  margin-bottom: 36px;
}
.colio-theme-black .colio-container img {
  padding: 0;
  margin: 0;
}
.colio-theme-black .colio-container .colio-navigation a {
  background: #fbb82b;
}
.colio-theme-black .colio-container .colio-navigation a .colio-no-prev {
  color: #13888a;
}
/* flexslider */
.flexslider {
  position: relative;
}
.flexslider a {
  border: none;
}
.flexslider li {
  padding: 0;
  margin: 0;
}
.flex-control-nav {
  float: left;
  position: relative;
  left: 50%;
  margin-top: 24px;
}
.flex-control-nav li {
  float: left;
  position: relative;
  left: -50%;
  margin: 0 5px;
  line-height: 0;
}
.flex-control-nav li a {
  display: block;
  width: 16px;
  height: 16px;
  background: #d0d0d0;
  border-radius: 8px;
  -moz-border-radius: 8px;
  text-indent: -9999px;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.flex-control-nav li a:hover {
  background: #a8c727;
}
.flex-control-nav .flex-active {
  background: #a8c727;
}
.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  position: absolute;
  height: 100%;
  width: 50%;
  text-indent: -9999px;
  z-index: 10;
}
.flex-direction-nav .flex-next {
  top: 0;
  right: 0;
}
.flex-direction-nav .flex-prev {
  top: 0;
  left: 0;
}
/* ======CTA SECTION ===== */
.cta {
  padding: 72px 0;
}
/* ===== TESTIMONIALS ===== */
.testimonials img {
  max-height: 480px;
  float: left;
  overflow: auto;
  padding: 0 48px;
}
.testimonials .quote {
  position: relative;
  float: left;
  background: #ebe7de;
  color: #6e7e7e;
  overflow: visible;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 1.1em;
  font-weight: 300;
}
.testimonials .quote.quote-right:before {
  content: ' ';
  position: absolute;
  height: 0;
  left: -24px;
  top: 36px;
  width: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 24px solid #ebe7de;
}
.testimonials .quote.quote-left:before {
  content: ' ';
  position: absolute;
  height: 0;
  right: -24px;
  top: 36px;
  width: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 24px solid #ebe7de;
}
.testimonials .quote p {
  padding: 24px 24px 6px 24px;
}
.testimonials .author a {
  color: #a8c727;
  border-bottom: dotted 1px;
}
.testimonials .author a:hover {
  color: #fbb82b;
}
/* ===== DECORATION DIV ===== */
#decoration {
  padding: 144px 0;
  background: url('../images/characters/people-shot.png') 100% center repeat-x #f3f0eb;
}
/* ===== PLANS ===== */
.plans {
  text-align: center;
}
.plans ul {
  list-style: none;
}
.plans .plan-box {
  margin: 48px 0;
}
.plans .plan-box .plan-heading {
  background-color: #13888a;
  color: #ffffff;
  font-size: 24px;
  line-height: 48px;
  padding: 12px;
}
.plans .plan-box .plan-price {
  background-color: #107274;
  font-weight: 400;
  color: #ffffff;
  font-size: 60px;
  line-height: 72px;
  padding: 12px;
}
.plans .plan-box .plan-price:before {
  content: '$';
  font-size: 21px;
  opacity: 0.8;
  padding: 0;
  vertical-align: super;
  margin: 0 -10px 0 0;
  line-height: 1em;
}
.plans .plan-box .plan-price:after {
  content: '/mo';
  font-size: 18px;
  opacity: 0.8;
  margin: 0 0 0 -10px;
  padding: 0;
  line-height: 1em;
}
.plans .plan-box .plan-description {
  background-color: #13888a;
  font-size: 19px;
  font-weight: 300;
  line-height: 48px;
  color: #ffffff;
  padding: 12px;
}
.plans .plan-box ul.plan-list {
  margin: 0;
  padding: 0;
}
.plans .plan-box ul.plan-list li {
  font-size: 18px;
  line-height: 48px;
  color: #6e7e7e;
  padding: 12px 0;
  list-style: none;
}
.plans .plan-box ul.plan-list li:nth-child(odd) {
  background-color: #ebe7de;
}
.plans .plan-box ul.plan-list li:nth-child(even) {
  background-color: #f5f3ee;
}
.plans .plan-box.popular {
  margin-top: 24px;
}
.plans .plan-box.popular .plan-heading {
  background-color: #a8c727;
  color: #ffffff;
  font-size: 28px;
  padding: 24px;
}
.plans .plan-box.popular .plan-price {
  background-color: #96b223;
  font-weight: 400;
  color: #ffffff;
}
.plans .plan-box.popular .plan-description {
  background-color: #a8c727;
  color: #ffffff;
}
.plans .plan-box.popular .plan-cta a:hover {
  background-color: #a8c727;
}
.plans .plan-cta a {
  background: #fbb82b;
  color: white;
  display: block;
  border: none;
  margin-top: 0;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 3.5em;
}
.plans .plan-cta a:hover {
  opacity: 1;
  background: #13888a;
}
/* ===== BLOG ===== */
.blog {
  padding-bottom: 72px;
}
.blog hr {
  border-color: rgba(0, 0, 0, 0.1);
}
.blog img {
  margin: 24px 0;
  transition: all 0.2s;
}
.blog img:hover {
  opacity: 0.8;
}
.blog .post-teaser hr {
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: 0;
  width: 72px;
}
.blog .post-teaser small a {
  color: #a8c727;
}
.blog .post-teaser h4 {
  margin-bottom: 0;
}
.blog .post-teaser h4 a {
  color: #ffffff;
}
.blog .post-teaser h4 a:hover {
  color: #ebe7de;
}
.blog .post-teaser p {
  font-size: 1em;
  text-align: left;
}
/* ===== CONTACT ===== */
.contact-validation {
  padding: 18px 24px;
  color: #ffffff;
  font-weight: 300;
  border-radius: 6px;
  margin-bottom: 18px;
}
.contact-error {
  border: solid 3px #ec553f;
  background: #ee6a56;
}
.contact-success {
  border: solid 3px #8fa921;
  background: #a1be25;
  color: #ffffff;
}
.contact .btn {
  padding: 16px;
  margin-bottom: 48px;
}
/* ===== FOOTER ===== */
footer {
  padding: 24px;
}
footer p {
  margin-bottom: 0;
}
footer a {
  color: #a8c727;
}
footer a:hover {
  color: #bedb46;
}
/* ===== MEDIA QUERIES ===== */
@media (max-width: 1199px) {
  .testimonials img {
    padding: 0 24px;
  }
}
@media (max-width: 991px) {
  .colio-container {
    text-align: center;
  }
  .colio-container h3 {
    margin: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .navbar {
    text-align: center;
  }
  .navbar-header {
    float: none;
    display: inline-block;
    padding-top: 6px;
    margin-bottom: -20px;
  }
  a.navbar-brand {
    text-align: center;
    margin: 0 auto;
    display: block;
    float: none;
  }
  .navbar-collapse.collapse {
    margin: 0 auto;
    display: inline-block !important;
  }
  .navbar ul li {
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  .navbar ul li a {
    padding-right: 0;
    padding-left: 24px;
    font-size: 16px;
  }
  .plan-box {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media (max-width: 991px) {
  .testimonials .quote p {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .navbar-fixed-top {
    position: relative;
  }
  .navbar .nav {
    float: none;
    text-align: center;
    margin: 24px 0;
  }
  .navbar-collapse {
    max-height: 800px;
  }
  button.navbar-toggle {
    height: 72px;
  }
  button.navbar-toggle:before {
    color: #ebe7de !important;
  }
  .work .col-xs-6 {
    width: 49.99%;
  }
  .team .teamfolio img {
    max-height: 360px;
  }
  .portfolio .filters a {
    margin: 6px;
  }
  .plan-box {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 2em;
  }
  p.lead {
    font-size: 1.3em;
  }
  .colio-container h3 {
    margin-top: 48px !important;
  }
  .cta .character {
    display: none;
  }
  .cta .text {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
  }
  .team .teamfolio img {
    max-height: 240px;
  }
  .testimonials .character {
    width: 40%;
    padding: 0;
  }
  .testimonials .text {
    width: 60%;
    font-size: 0.9em;
    line-height: 1.5em;
  }
  .plan-box {
    padding: 0;
  }
}
/* ===== CUSTOM STYLING ===== */
/* Enter your CSS tweaks here below - they will override the other stylesheets. */
