@charset "UTF-8";
/*! Leibel WP - ReeZh Design - 2015 */
/******************************************************************
Site Name: Leibel WP
Author: ReeZh Design

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%; }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%; }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%; }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }

/**
* Sections
*/
#topbar .hotline .fa {
  vertical-align: middle; }

#topslider {
  color: #888;
  background: white;
  min-height: 450px; }

#intro {
  background: #2e2e2e;
  color: #ffcc00;
  padding: 30px 0; }
  #intro .lead {
    text-align: center;
    font-weight: 300;
    font-size: 1.3em;
    line-height: 1.5em; }

#advantages {
  padding: 30px 0; }
  #advantages .card {
    display: block;
    margin: 0 auto;
    padding: 10px auto;
    text-align: center; }
    #advantages .card img {
      width: 60px;
      max-width: 100%; }
    #advantages .card .card-img {
      width: 60px;
      max-width: 100%;
      height: auto;
      margin: 0 auto; }
    #advantages .card .card-title {
      font-size: 1em;
      font-weight: 500;
      text-transform: uppercase;
      margin: 0 auto; }
    #advantages .card img,
    #advantages .card .card-title {
      -webkit-filter: grayscale(100%);
      transition: -webkit-filter .3s linear; }
    #advantages .card:hover img {
      max-width: 100%;
      margin: 0 auto; }
    #advantages .card:hover img,
    #advantages .card:hover .card-title {
      -webkit-filter: grayscale(0%); }
  #advantages #advantageLarge .owl-item {
    background: #fff;
    color: #FFF;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center; }
    #advantages #advantageLarge .owl-item figure figcaption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 5;
      padding: 0.5em 1em; }
      #advantages #advantageLarge .owl-item figure figcaption p {
        font-size: 1em;
        color: #fff; }
    #advantages #advantageLarge .owl-item figure img {
      width: 100%;
      height: auto; }
  #advantages #advantageSmall .owl-item {
    text-align: center; }
    #advantages #advantageSmall .owl-item .card {
      text-align: center; }
      #advantages #advantageSmall .owl-item .card img {
        padding: 10px auto; }
      #advantages #advantageSmall .owl-item .card .card-img {
        width: 60px;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 15px; }

#agents {
  background: #f2f2f2; }

#agents,
#agentlists {
  color: #000;
  padding: 30px 0;
  text-align: center; }
  #agents .agent,
  #agentlists .agent {
    padding: 5px;
    text-align: center; }
    #agents .agent figure,
    #agentlists .agent figure {
      margin: 0 auto;
      text-align: center; }
      #agents .agent figure figcaption,
      #agentlists .agent figure figcaption {
        text-align: center; }
        #agents .agent figure figcaption h4,
        #agents .agent figure figcaption p,
        #agents .agent figure figcaption a,
        #agentlists .agent figure figcaption h4,
        #agentlists .agent figure figcaption p,
        #agentlists .agent figure figcaption a {
          text-align: center;
          color: #000; }
        #agents .agent figure figcaption .bar,
        #agentlists .agent figure figcaption .bar {
          background: #000;
          margin: 5px auto; }
        #agents .agent figure figcaption ul,
        #agentlists .agent figure figcaption ul {
          list-style: none;
          margin: 0 auto;
          padding: 5px;
          text-align: center; }
          #agents .agent figure figcaption ul li,
          #agentlists .agent figure figcaption ul li {
            display: inline-block; }
            #agents .agent figure figcaption ul li a,
            #agentlists .agent figure figcaption ul li a {
              display: block;
              color: #000;
              width: 32px;
              height: 32px;
              line-height: 32px; }
            #agents .agent figure figcaption ul li a.btn-circle,
            #agentlists .agent figure figcaption ul li a.btn-circle {
              border-color: #000; }
        #agents .agent figure figcaption .fa + span,
        #agentlists .agent figure figcaption .fa + span {
          overflow: hidden;
          position: absolute;
          clip: rect(0 0 0 0);
          height: 1px;
          width: 1px;
          margin: -1px;
          padding: 0;
          border: 0; }
    #agents .agent .item,
    #agentlists .agent .item {
      width: 100%; }
    #agents .agent img,
    #agentlists .agent img {
      opacity: 0.6;
      width: 100%;
      max-width: 200px;
      height: auto;
      margin: 0 auto;
      border-radius: 50%;
      border: 15px solid #d1d1d1; }
    #agents .agent:hover, #agents .agent:focus,
    #agentlists .agent:hover,
    #agentlists .agent:focus {
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      background: #d1d1d1; }
      #agents .agent:hover img, #agents .agent:focus img,
      #agentlists .agent:hover img,
      #agentlists .agent:focus img {
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        opacity: 1;
        border: 5px solid #ffcc00; }

#projects {
  background: #f7f7f7;
  padding: 15px 0 30px; }
  #projects .head-title {
    text-align: center;
    text-transform: uppercase; }

.navbar {
  border: 0px solid #fff; }

.navbar-inverse {
  background: #ffcc00; }

#partners [class*="col-"] {
  text-align: center;
  margin: 0 auto; }
  #partners [class*="col-"] a {
    margin: 0 auto;
    padding: 0; }
  #partners [class*="col-"] img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 15px 0; }

#social-media .fa {
  vertical-align: middle; }

/*
Bonfire default CSS styles.

These styles are meant to be built on top of
the latest release of Twitter's Bootstrap library.
*/
body {
  background: #FFF;
  color: #888;
  margin-top: 130px; }

footer.footer {
  padding-top: 10px;
  color: #fff;
  background-color: #979797;
  *height: 142px;
  border-bottom: 1px solid #8c8c8c; }

.footer p {
  font-size: 0.8em; }

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

.navbar-fixed-top {
  margin-bottom: 0; }

/*
Modals
*/
.modal {
  background: #f9f9f9;
  border: 0;
  -webkit-box-shadow: 0 5px 27px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 5px 27px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 27px rgba(0, 0, 0, 0.3); }

.modal-backdrop {
  background: -webkit-radial-gradient(50% 50%, ellipse closest-side, rgba(0, 0, 0, 0.3) 1%, rgba(0, 0, 0, 0.75) 80%);
  background: -moz-radial-gradient(50% 50%, ellipse closest-corner, rgba(0, 0, 0, 0.3) 1%, rgba(0, 0, 0, 0.75) 80%); }

.modal-header {
  background: #cecece;
  border-bottom: 1px solid #b2beca;
  -webkit-box-shadow: inset 0 1px 0 white;
  -moz-box-shadow: inset 0 1px 0 white;
  box-shadow: inset 0 1px 0 white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EFF1F5), to(#C9D2DC));
  background-image: -moz-linear-gradient(top, #EFF1F5, #C9D2DC);
  background-image: -o-linear-gradient(top, #EFF1F5, #C9D2DC);
  -o-border-top-left-radius: 6px;
  -moz-border-top-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -o-border-top-right-radius: 6px;
  -moz-border-top-right-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px; }

.modal-header h3 {
  text-shadow: 0 1px 0 white;
  color: #475b6f; }

.modal-footer {
  padding: 15px 20px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
  text-align: right; }

label.required {
  font-weight: bold; }

/** My Custom **/
a {
  color: #ffcc00; }

a:hover {
  color: #eebf00;
  text-decoration: none; }

[class*="span"].nomargin {
  margin-left: 0; }

ul {
  margin-left: 0; }

h2 {
  font-size: 24px;
  line-height: 36px; }

h1, h2 {
  font-weight: normal; }

.page-header .container {
  height: 100%; }

.container, .navbar-fixed-top .container, .navbar-fixed-bottom .container {
  max-width: 1000px; }

.navbar .navbar-inner {
  background-color: #ffcc00;
  background-image: none;
  border-radius: 0;
  margin: 0 0 5px;
  padding: 0;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); }

.navbar .navbar-inner ul.nav {
  display: table;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1) inset;
  box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1) inset; }

.navbar .navbar-inner ul.nav > li {
  margin-left: 0; }

.nav-collapse .nav > li > a {
  height: 42px;
  min-width: 130px;
  text-align: center;
  color: #FFF;
  font-weight: 600;
  font-size: 1.1em;
  padding: 0; }

.navbar .dropdown-menu:before, .navbar .dropdown-menu:after {
  content: none; }

.nav-pills > li {
  float: none;
  display: inline-block; }

.partners .nav-pills > li {
  margin-bottom: 10px;
  margin-left: 0; }

ul.nav-pills > li > a {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border-bottom: 8px solid transparent;
  -webkit-box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1);
  box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1); }

ul.nav-pills > li > a > span {
  vertical-align: middle;
  position: relative;
  top: 35%;
  padding-top: 5px; }

ul.nav-pills > li > a:hover {
  background-color: transparent;
  border-bottom: 8px solid #979797; }

.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > li.dropdown.open.active > a:hover {
  background-color: transparent;
  border-bottom: 8px solid #979797; }

.nav-pills .dropdown-menu {
  background-color: #979797;
  color: #fff;
  margin-top: 0;
  border-radius: 0;
  border: none;
  min-width: 230px; }

.nav-pills .dropdown-menu li {
  margin-left: 0; }

.dropdown-menu a {
  color: #fff;
  padding: 10px 15px !important;
  line-height: 20px;
  font-size: 14px; }

.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
  background-color: #898989 !important;
  background-image: none; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-color: #898989 !important;
  background-image: none; }

.pull-right .dropdown-menu {
  right: auto; }

/*.pull-right .dropdown:last-child .dropdown-menu {
right: 0;
}*/
.brand-box {
  width: 100%;
  margin: 10px 0;
  padding: 0 0px 10px;
  border-bottom: 1px solid #ddd;
  display: table;
  float: none;
  position: relative; }

.brand {
  display: inline-block; }

.input-prepend .add-on, .input-append .add-on, .input-prepend .btn, .input-prepend .flexslider .slider-caption a.btn, .flexslider .slider-caption .input-prepend a.btn, .input-prepend .comment-reply-link, .input-prepend #submit, .input-append .btn, .input-append .flexslider .slider-caption a.btn, .flexslider .slider-caption .input-append a.btn, .input-append .comment-reply-link, .input-append #submit {
  margin-left: -5px; }

.mascot-footer {
  position: absolute;
  bottom: 0;
  right: 0; }

footer.footer > .container {
  *height: 142px;
  position: relative;
  color: #fff; }

.footer [class*="span"] {
  margin-left: 5px; }

.bottom-menu .container {
  border-right: 1px solid #fccb02; }

.bottom-menu .nav {
  margin: 0; }

.bottom-menu .nav li {
  width: 33.3333%;
  text-align: center;
  background-color: #fccb02;
  margin-left: 0; }

.bottom-menu ul.nav-pills > li:first-child > a {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.bottom-menu .nav li > a {
  color: #fff;
  font-size: 18px;
  height: 65px;
  width: 100%; }

.bottom-menu .nav li > a span {
  padding: 10px 20px; }

.nav li > a span img, .nav li > a img {
  margin-right: 10px; }

h4 {
  font-weight: normal;
  font-size: 1.3em;
  margin-bottom: 10px; }

div.newsdate {
  float: left;
  display: table;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: #fccb02;
  color: #363636;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0 0;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

div.newsdate-big {
  float: left;
  display: table;
  width: 70px;
  height: 70px;
  background-color: #979797;
  color: #fff;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0 0;
  line-height: 34px;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.news-excerpt {
  border-top: 2px solid #979797;
  margin-left: 0 !important;
  padding-left: 30px !important;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

div.newsdate > span, div.newsdate-big > span {
  font-size: .5em;
  display: block;
  font-weight: normal; }

div.newsdate-big > span {
  margin-top: -5px; }

.social-media a {
  font-size: .9em;
  line-height: 15px; }

.partners {
  margin-top: 50px; }

.partners > .container {
  text-align: center; }

.partners > .container > ul.nav-pills {
  display: table;
  margin: 40px auto; }

.partners > .container > ul.nav-pills > li > a {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 0 15px; }

.image-box {
  margin: 40px 0;
  border: 1px solid #ddd; }

.image-box > div {
  margin-bottom: 40px; }

.image-box ul.nav-pills {
  margin: 0 auto;
  display: table;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.image-box ul.nav-pills > li {
  display: table-cell;
  width: 33.333%;
  padding: 20px 25px;
  margin-left: 0;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.image-box ul.nav-pills > li > a {
  border: none;
  color: #ffcc00;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.image-box ul.nav-pills > li > a > img {
  float: left; }

.image-box ul.nav-pills > li > a > span {
  float: left;
  display: block; }

.main-img {
  margin: 20px 0; }

.page-content {
  border: 1px solid #ddd;
  margin-right: 10px;
  padding: 15px;
  width: 98%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.col_100 > .page-content {
  width: 100%;
  margin-right: 0; }

.page-image {
  margin-right: 10px;
  width: 98%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.right_section > div {
  padding: 10px 15px;
  color: #fff;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.right_section h1, .right_section h3 {
  margin-bottom: 10px; }

.right_section div.newsdate {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff; }

.right_section div.newstitle {
  border-top: 1px solid #fff; }

.form-horizontal .control-label {
  text-align: left; }

.product-icon {
  display: table;
  position: relative; }

.product-icon h2 {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  line-height: 25px; }

#rotatescroll {
  height: 400px;
  position: relative;
  width: 400px;
  margin: 50px auto; }

#rotatescroll .viewport {
  height: 400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 400px; }

#rotatescroll .overview {
  position: absolute;
  width: 798px;
  list-style: none;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0; }

#rotatescroll .overview li {
  height: 400px;
  width: 400px;
  float: left;
  position: relative;
  margin: 0; }

#rotatescroll .overlay {
  background: url(images/bg-rotatescroll2.png) no-repeat 0 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 400px;
  width: 400px; }

#rotatescroll .thumb {
  background: url(images/bg-thumb.png) no-repeat 0 0;
  position: absolute;
  top: -3px;
  cursor: pointer;
  left: 137px;
  width: 26px;
  z-index: 200;
  height: 26px; }

#rotatescroll .dot {
  cursor: pointer;
  background: url(images/bg-dot3.png) no-repeat 0 0;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 10px;
  color: #555;
  width: 22px;
  position: absolute;
  left: 155px;
  top: 3px;
  z-index: 100; }

.app-description {
  width: 500px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 22px; }

.app-description h2 {
  margin-bottom: 20px; }

.app-description ul {
  margin-left: 0; }

.app-description li {
  list-style: none; }

.ui-button .ui-button-text {
  font-weight: normal; }

.ui-buttonset .ui-button.ui-state-active {
  background-color: #FDCC03;
  font-weight: normal; }

#slider-code {
  overflow: hidden; }

#slider-code .viewport {
  float: left;
  width: 100%;
  height: 381px;
  overflow: hidden;
  position: relative; }

#slider-code .buttons {
  display: block;
  margin: 30px 10px 0 0;
  float: left; }

#slider-code .next {
  margin: 30px 0 0 10px; }

#slider-code .disable {
  visibility: hidden; }

#slider-code .overview {
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0; }

#slider-code .overview li {
  float: left;
  margin: 0 20px 0 0; }

#slider-code .overview li span {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-size: 18px;
  text-shadow: #000 0.1em 0.1em 0.2em;
  width: 28%; }

.contact-row {
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 10px; }

.contact-desc {
  display: inline-block;
  width: 35%;
  float: left;
  padding: 15px 20px;
  color: #fff;
  line-height: 18px;
  height: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }

.contact-desc p {
  line-height: 18px;
  margin: 0; }

.contact-desc h2 {
  margin-bottom: 10px; }

.contact-map {
  display: inline-block;
  width: 65%;
  float: left; }

.page-content > .contact-row:nth-child(odd) > .contact-desc {
  background-color: #fccb02; }

.page-content > .contact-row:nth-child(even) > .contact-desc {
  background-color: #979797; }

ul.submenu {
  margin-bottom: 0;
  margin-top: 5px; }

ul.submenu > li > a {
  box-shadow: none;
  border: none;
  font-size: 14px;
  color: #979797;
  margin-right: 20px; }

ul.submenu > li:last-child > a {
  margin-right: 0; }

.dropdown-menu {
  top: auto; }

ul.submenu > li > a:hover {
  border: none; }

#ticker {
  height: 200px;
  overflow-y: hidden; }

.lang-button a {
  color: #fff;
  text-shadow: #000 0.1em 0.1em 0.2em;
  margin-left: 10px; }

.lang-button a.ui-state-active {
  background-color: #5c5c5c;
  padding: 5px 10px;
  border: 1px solid #a7a7a7; }

#distributortable {
  height: 300px;
  overflow-y: scroll; }

#distributorlists,
.distributorlists {
  /*
  .distributor-type-clsk {
    background: #cbdec2!important;
  }
  .distributor-type-clsb {
    background: #c1faa7!important;
  }
  .distributor-type-cltsb {
    background: #faf0a7!important;
  }
  .distributor-type-cltsk {
    background: #f0eebe!important;
  }
  .distributor-type-clksb {
    background: #fad4a7!important;
  }
  .distributor-type-clksk {
    background: #e8d1b6!important;
  }
  .distributor-type-clktsb {
    background: #a7e0fa!important;
  }
  .distributor-type-clktsk {
    background: #d2dee3!important;
  }
  .distributor-type-cks {
    background: #e4a7fa!important;
  }
  .distributor-type-ckt {
    background: #e4cbed!important;
  }
  .distributor-type-tbb {
    background: #faa7a7!important;
  }
  .distributor-type-tbj {
    background: #f2d3d3!important;
  }

  [class*="distributor-type-"]:hover,
  [class*="distributor-type-"]:focus {

    @include transition( all 0.25s ease-in-out);
    color: lighten($black, 5%);
    background: darken($white, 5%)!important;
  }
*/
  /*
  Generic Styling, for Desktops/Laptops
  */
  /*
  Max width before this PARTICULAR table gets nasty
  This query will take effect for any screen smaller than 760px
  and also iPads specifically.
  */ }
  #distributorlists a,
  .distributorlists a {
    color: #1a1a1a;
    font-weight: bold; }
    #distributorlists a:hover, #distributorlists a:focus,
    .distributorlists a:hover,
    .distributorlists a:focus {
      color: #0d0d0d; }
  #distributorlists table,
  .distributorlists table {
    width: 100%;
    border-collapse: collapse; }
  #distributorlists th,
  .distributorlists th {
    font-weight: bold; }
  #distributorlists td, #distributorlists th,
  .distributorlists td,
  .distributorlists th {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left; }
  @media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    #distributorlists,
    .distributorlists {
      /* Force table to not be like tables anymore */
      /* Hide table headers (but not display: none;, for accessibility) */
      /*
      Label the data
      */ }
      #distributorlists table, #distributorlists thead, #distributorlists tbody, #distributorlists th, #distributorlists td, #distributorlists tr,
      .distributorlists table,
      .distributorlists thead,
      .distributorlists tbody,
      .distributorlists th,
      .distributorlists td,
      .distributorlists tr {
        display: block; }
      #distributorlists thead tr,
      .distributorlists thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px; }
      #distributorlists tr,
      .distributorlists tr {
        border: 1px solid #ccc; }
      #distributorlists td,
      .distributorlists td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%; }
      #distributorlists td:before,
      .distributorlists td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap; }
      #distributorlists td:nth-of-type(1):before,
      .distributorlists td:nth-of-type(1):before {
        content: "No"; }
      #distributorlists td:nth-of-type(2):before,
      .distributorlists td:nth-of-type(2):before {
        content: "Distributor"; }
      #distributorlists td:nth-of-type(3):before,
      .distributorlists td:nth-of-type(3):before {
        content: "Type"; }
      #distributorlists td:nth-of-type(4):before,
      .distributorlists td:nth-of-type(4):before {
        content: "Alamat"; }
      #distributorlists td:nth-of-type(5):before,
      .distributorlists td:nth-of-type(5):before {
        content: "Kota"; }
      #distributorlists td:nth-of-type(6):before,
      .distributorlists td:nth-of-type(6):before {
        content: "Telepon"; }
      #distributorlists td:nth-of-type(7):before,
      .distributorlists td:nth-of-type(7):before {
        content: "Marketing"; } }

.hentry ul.distributorlists,
ul.distributorlists {
  list-style: none;
  margin: 0;
  padding: 0; }
  .hentry ul.distributorlists li,
  ul.distributorlists li {
    padding: 5px;
    line-height: 1.3em; }

#rotatescroll {
  height: 400px;
  position: relative;
  width: 400px;
  margin: 50px auto; }
  #rotatescroll .viewport {
    height: 400px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 400px; }
  #rotatescroll .overview {
    position: absolute;
    width: 798px;
    list-style: none;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0; }
    #rotatescroll .overview li {
      height: 400px;
      width: 400px;
      float: left;
      position: relative;
      margin: 0; }
  #rotatescroll .overlay {
    background: url(../images/bg-rotatescroll2.png) no-repeat 0 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 400px;
    width: 400px; }
  #rotatescroll .thumb {
    background: url(../images/bg-thumb.png) no-repeat 0 0;
    position: absolute;
    top: -3px;
    cursor: pointer;
    left: 137px;
    width: 26px;
    z-index: 200;
    height: 26px; }
  #rotatescroll .dot {
    cursor: pointer;
    background: url(../images/bg-dot3.png) no-repeat 0 0;
    height: 22px;
    text-align: center;
    line-height: 22px;
    font-size: 10px;
    color: #555;
    width: 22px;
    position: absolute;
    left: 155px;
    top: 3px;
    z-index: 100; }

.app-description {
  width: 500px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 22px; }
  .app-description h2 {
    margin-bottom: 20px; }
  .app-description ul {
    margin-left: 0; }
  .app-description li {
    list-style: none; }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
button,
.btn-red {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  button:hover, button:focus,
  .btn-red:hover,
  .btn-red:focus {
    color: #fff;
    text-decoration: none; }
  button:active,
  .btn-red:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn-red {
  background-color: #cc0000; }
  .btn-red:hover, .btn-red:focus {
    background-color: #b80000; }
  .btn-red:active {
    background-color: #b30000; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
option,
textarea,
.field {
  display: block;
  height: 3em;
  line-height: 3em;
  padding: 0 0.5em;
  margin-bottom: 1em;
  font-size: 1em;
  color: #666666;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #d1d1d1;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #e8e8e8;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  option:focus,
  option:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    color: #000;
    background-color: #d1d1d1;
    border: 1px solid #ffcc00; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  option.error,
  option.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  option.success,
  option.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  option[disabled],
  option.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    option[disabled]:focus,
    option[disabled]:active,
    option.is-disabled:focus,
    option.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #000; }

textarea {
  max-width: 100%;
  min-height: 10em;
  line-height: 1.2em; }

select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

input[type="submit"],
button {
  display: block;
  line-height: 2em;
  padding: 0 0.5em;
  margin-bottom: 1em;
  font-size: 1em;
  color: #d1a700;
  border-radius: 2px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #d1a700;
  width: auto;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: transparent;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="submit"]:focus, input[type="submit"]:active,
  button:focus,
  button:active {
    color: #fff;
    background-color: rgba(255, 204, 0, 0.6);
    border: 1px solid #ffcc00; }

/* Box Shadows Effects */
.box_shadow {
  background: #FFF;
  /*==================================================
  * Effect 1
  * ===============================================*/
  /*==================================================
  * Effect 2
  * ===============================================*/
  /*==================================================
  * Effect 3
  * ===============================================*/
  /*==================================================
  * Effect 4
  * ===============================================*/
  /*==================================================
  * Effect 5
  * ===============================================*/
  /*==================================================
  * Effect 6
  * ===============================================*/
  /*==================================================
  * Effect 7
  * ===============================================*/
  /*==================================================
  * Effect 8
  * ===============================================*/ }
  .box_shadow .efx1 {
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777; }
  .box_shadow .efx2 {
    position: relative; }
    .box_shadow .efx2:before, .box_shadow .efx2:after {
      z-index: -1;
      position: absolute;
      content: "";
      bottom: 15px;
      left: 10px;
      width: 50%;
      top: 80%;
      max-width: 300px;
      background: #777;
      -webkit-box-shadow: 0 15px 10px #777;
      -moz-box-shadow: 0 15px 10px #777;
      box-shadow: 0 15px 10px #777;
      -webkit-transform: rotate(-3deg);
      -moz-transform: rotate(-3deg);
      -o-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
      transform: rotate(-3deg); }
    .box_shadow .efx2:after {
      -webkit-transform: rotate(3deg);
      -moz-transform: rotate(3deg);
      -o-transform: rotate(3deg);
      -ms-transform: rotate(3deg);
      transform: rotate(3deg);
      right: 10px;
      left: auto; }
  .box_shadow .efx3 {
    position: relative; }
  .box_shadow .efx3:before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    -webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    box-shadow: 0 15px 10px #777;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg); }
  .box_shadow .efx4 {
    position: relative; }
  .box_shadow .efx4:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    right: 10px;
    left: auto;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    -webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    box-shadow: 0 15px 10px #777;
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg); }
  .box_shadow .efx5 {
    position: relative; }
  .box_shadow .efx5:before, .box_shadow .efx5:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 25px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    -webkit-box-shadow: 0 35px 20px #777;
    -moz-box-shadow: 0 35px 20px #777;
    box-shadow: 0 35px 20px #777;
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg); }
  .box_shadow .efx5:after {
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
    right: 10px;
    left: auto; }
  .box_shadow .efx6 {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }
  .box_shadow .efx6:before, .box_shadow .efx6:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    top: 50%;
    bottom: 0;
    left: 10px;
    right: 10px;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px; }
  .box_shadow .efx7 {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }
  .box_shadow .efx7:before, .box_shadow .efx7:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    top: 0;
    bottom: 0;
    left: 10px;
    right: 10px;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px; }
  .box_shadow .efx7:after {
    right: 10px;
    left: auto;
    -webkit-transform: skew(8deg) rotate(3deg);
    -moz-transform: skew(8deg) rotate(3deg);
    -ms-transform: skew(8deg) rotate(3deg);
    -o-transform: skew(8deg) rotate(3deg);
    transform: skew(8deg) rotate(3deg); }
  .box_shadow .efx8 {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }
  .box_shadow .efx8:before, .box_shadow .efx8:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    top: 10px;
    bottom: 10px;
    left: 0;
    right: 0;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px; }
  .box_shadow .efx8:after {
    right: 10px;
    left: auto;
    -webkit-transform: skew(8deg) rotate(3deg);
    -moz-transform: skew(8deg) rotate(3deg);
    -ms-transform: skew(8deg) rotate(3deg);
    -o-transform: skew(8deg) rotate(3deg);
    transform: skew(8deg) rotate(3deg); }

/* Effect 1: Brackets */
.cl-effect-1 a::before,
.cl-effect-1 a::after {
  display: inline-block;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s; }

.cl-effect-1 a::before {
  margin-right: 10px;
  content: '[';
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  transform: translateX(20px); }

.cl-effect-1 a::after {
  margin-left: 10px;
  content: ']';
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  transform: translateX(-20px); }

.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  transform: translateX(0px); }

/* Effect 2: 3D rolling links, idea from http://hakim.se/thoughts/rolling-links */
.cl-effect-2 a {
  line-height: 44px;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px; }

.cl-effect-2 a span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  background: #2195de;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.csstransforms3d .cl-effect-2 a span::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0965a0;
  content: attr(data-hover);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.cl-effect-2 a:hover span,
.cl-effect-2 a:focus span {
  -webkit-transform: rotateX(90deg) translateY(-22px);
  -moz-transform: rotateX(90deg) translateY(-22px);
  transform: rotateX(90deg) translateY(-22px); }

.csstransforms3d .cl-effect-2 a:hover span::before,
.csstransforms3d .cl-effect-2 a:focus span::before {
  background: #28a2ee; }

/* Effect 3: bottom line slides/fades in */
.cl-effect-3 a {
  padding: 8px 0; }

.cl-effect-3 a::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px); }

.cl-effect-3 a:hover::after,
.cl-effect-3 a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

/* Effect 4: bottom border enlarge */
.cl-effect-4 a {
  padding: 0 0 10px; }

.cl-effect-4 a::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: '';
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px); }

.cl-effect-4 a:hover::after,
.cl-effect-4 a:focus::after {
  height: 5px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

/* Effect 5: same word slide in */
.cl-effect-5 a {
  overflow: hidden;
  padding: 0 4px;
  height: 1em; }

.cl-effect-5 a span {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s; }

.cl-effect-5 a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  font-weight: 700;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.cl-effect-5 a:hover span,
.cl-effect-5 a:focus span {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%); }

/* Effect 5: same word slide in and border bottom */
.cl-effect-6 a {
  margin: 0 10px;
  padding: 10px 20px; }

.cl-effect-6 a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  content: '';
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  transition: top 0.3s; }

.cl-effect-6 a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: #fff;
  content: '';
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s; }

.cl-effect-6 a:hover::before {
  top: 100%;
  opacity: 1; }

.cl-effect-6 a:hover::after {
  height: 100%; }

/* Effect 7: second border slides up */
.cl-effect-7 a {
  padding: 12px 10px 10px;
  color: #566473;
  text-shadow: none;
  font-weight: 700; }

.cl-effect-7 a::before,
.cl-effect-7 a::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #566473;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  transform: scale(0.85); }

.cl-effect-7 a::after {
  opacity: 0;
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: top 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, transform 0.3s; }

.cl-effect-7 a:hover::before,
.cl-effect-7 a:hover::after,
.cl-effect-7 a:focus::before,
.cl-effect-7 a:focus::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1); }

.cl-effect-7 a:hover::after,
.cl-effect-7 a:focus::after {
  top: 0%;
  opacity: 1; }

/* Effect 8: border slight translate */
.cl-effect-8 a {
  padding: 10px 20px; }

.cl-effect-8 a::before,
.cl-effect-8 a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #354856;
  content: '';
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s; }

.cl-effect-8 a::after {
  border-color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-7px) translateX(6px);
  -moz-transform: translateY(-7px) translateX(6px);
  transform: translateY(-7px) translateX(6px); }

.cl-effect-8 a:hover::before,
.cl-effect-8 a:focus::before {
  opacity: 0;
  -webkit-transform: translateY(5px) translateX(-5px);
  -moz-transform: translateY(5px) translateX(-5px);
  transform: translateY(5px) translateX(-5px); }

.cl-effect-8 a:hover::after,
.cl-effect-8 a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px) translateX(0px);
  -moz-transform: translateY(0px) translateX(0px);
  transform: translateY(0px) translateX(0px); }

/* Effect 9: second text and borders */
.cl-effect-9 a {
  margin: 0 20px;
  padding: 18px 20px; }

.cl-effect-9 a::before,
.cl-effect-9 a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  content: '';
  opacity: 0.2;
  -webkit-transition: opacity 0.3s, height 0.3s;
  -moz-transition: opacity 0.3s, height 0.3s;
  transition: opacity 0.3s, height 0.3s; }

.cl-effect-9 a::after {
  top: 100%;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px); }

.cl-effect-9 a span:first-child {
  z-index: 2;
  display: block;
  font-weight: 300; }

.cl-effect-9 a span:last-child {
  z-index: 1;
  display: block;
  padding: 8px 0 0 0;
  color: rgba(0, 0, 0, 0.4);
  text-shadow: none;
  text-transform: none;
  font-style: italic;
  font-size: 0.75em;
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%); }

.cl-effect-9 a:hover::before,
.cl-effect-9 a:focus::before {
  height: 6px; }

.cl-effect-9 a:hover::before,
.cl-effect-9 a:hover::after,
.cl-effect-9 a:focus::before,
.cl-effect-9 a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

.cl-effect-9 a:hover span:last-child,
.cl-effect-9 a:focus span:last-child {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  transform: translateY(0%); }

/* Effect 10: reveal, push out */
.cl-effect-10 {
  position: relative;
  z-index: 1; }

.cl-effect-10 a {
  overflow: hidden;
  margin: 0 15px; }

.cl-effect-10 a span {
  display: block;
  padding: 10px 20px;
  background: #0f7c67;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s; }

.cl-effect-10 a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #0f7c67;
  content: attr(data-hover);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-25%); }

.cl-effect-10 a:hover span,
.cl-effect-10 a:focus span {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%); }

.cl-effect-10 a:hover::before,
.cl-effect-10 a:focus::before {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%); }

/* Effect 11: text fill based on Lea Verou's animation http://dabblet.com/gist/6046779 */
.cl-effect-11 a {
  padding: 10px 0;
  border-top: 2px solid #0972b4;
  color: #0972b4;
  text-shadow: none; }

.cl-effect-11 a::before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  max-width: 0;
  border-bottom: 2px solid #fff;
  color: #fff;
  content: attr(data-hover);
  -webkit-transition: max-width 0.5s;
  -moz-transition: max-width 0.5s;
  transition: max-width 0.5s; }

.cl-effect-11 a:hover::before,
.cl-effect-11 a:focus::before {
  max-width: 100%; }

/* Effect 12: circle */
.cl-effect-12 a::before,
.cl-effect-12 a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  content: '';
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
  transform: translateX(-50%) translateY(-50%) scale(0.2); }

.cl-effect-12 a::after {
  width: 90px;
  height: 90px;
  border-width: 6px;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
  -moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
  transform: translateX(-50%) translateY(-50%) scale(0.8); }

.cl-effect-12 a:hover::before,
.cl-effect-12 a:hover::after,
.cl-effect-12 a:focus::before,
.cl-effect-12 a:focus::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1); }

/* Effect 13: three circles */
.cl-effect-13 a {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s; }

.cl-effect-13 a::before {
  position: absolute;
  top: 100%;
  left: 50%;
  color: transparent;
  content: '•';
  text-shadow: 0 0 transparent;
  font-size: 1.2em;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  -moz-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none; }

.cl-effect-13 a:hover::before,
.cl-effect-13 a:focus::before {
  color: #fff;
  text-shadow: 10px 0 #fff, -10px 0 #fff; }

.cl-effect-13 a:hover,
.cl-effect-13 a:focus {
  color: #ba7700; }

/* Effect 14: border switch */
.cl-effect-14 a {
  padding: 0 20px;
  height: 45px;
  line-height: 45px; }

.cl-effect-14 a::before,
.cl-effect-14 a::after {
  position: absolute;
  width: 45px;
  height: 2px;
  background: #fff;
  content: '';
  opacity: 0.2;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none; }

.cl-effect-14 a::before {
  top: 0;
  left: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0; }

.cl-effect-14 a::after {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.cl-effect-14 a:hover::before,
.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::before,
.cl-effect-14 a:focus::after {
  opacity: 1; }

.cl-effect-14 a:hover::before,
.cl-effect-14 a:focus::before {
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
  -moz-transform: rotate(0deg) translateX(-50%);
  transform: rotate(0deg) translateX(-50%); }

.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::after {
  right: 50%;
  -webkit-transform: rotate(0deg) translateX(50%);
  -moz-transform: rotate(0deg) translateX(50%);
  transform: rotate(0deg) translateX(50%); }

/* Effect 15: scale down, reveal */
.cl-effect-15 a {
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  text-shadow: none; }

.cl-effect-15 a::before {
  color: #fff;
  content: attr(data-hover);
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s; }

.cl-effect-15 a:hover::before,
.cl-effect-15 a:focus::before {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0; }

/* Effect 16: fall down */
.cl-effect-16 a {
  color: #6f8686;
  text-shadow: 0 0 1px rgba(111, 134, 134, 0.3); }

.cl-effect-16 a::before {
  color: #fff;
  content: attr(data-hover);
  position: absolute;
  opacity: 0;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none; }

.cl-effect-16 a:hover::before,
.cl-effect-16 a:focus::before {
  -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  opacity: 1; }

/* Effect 17: move up fade out, push border */
.cl-effect-17 a {
  color: #10649b;
  text-shadow: none;
  padding: 10px 0; }

.cl-effect-17 a::before {
  color: #fff;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  content: attr(data-hover);
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none; }

.cl-effect-17 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none; }

.cl-effect-17 a:hover::before,
.cl-effect-17 a:focus::before {
  opacity: 0;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px); }

.cl-effect-17 a:hover::after,
.cl-effect-17 a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

/* Effect 18: cross */
.cl-effect-18 {
  position: relative;
  z-index: 1; }

.cl-effect-18 a {
  padding: 0 5px;
  color: #b4770d;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s; }

.cl-effect-18 a::before,
.cl-effect-18 a::after {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #b4770d;
  content: '';
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none; }

.cl-effect-18 a::before {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  transform: translateY(-20px); }

.cl-effect-18 a::after {
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  transform: translateY(20px); }

.cl-effect-18 a:hover,
.cl-effect-18 a:focus {
  color: #fff; }

.cl-effect-18 a:hover::before,
.cl-effect-18 a:hover::after,
.cl-effect-18 a:focus::before,
.cl-effect-18 a:focus::after {
  opacity: 0.7; }

.cl-effect-18 a:hover::before,
.cl-effect-18 a:focus::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

.cl-effect-18 a:hover::after,
.cl-effect-18 a:focus::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Effect 19: 3D side */
.cl-effect-19 a {
  line-height: 2em;
  margin: 15px;
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  perspective: 800px;
  width: 200px; }

.cl-effect-19 a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 14px;
  background: #e35041;
  -webkit-transition: -webkit-transform 0.4s, background 0.4s;
  -moz-transition: -moz-transform 0.4s, background 0.4s;
  transition: transform 0.4s, background 0.4s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50% -100px;
  -moz-transform-origin: 50% 50% -100px;
  transform-origin: 50% 50% -100px; }

.csstransforms3d .cl-effect-19 a span::before {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #b53a2d;
  content: attr(data-hover);
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  transition: background 0.4s;
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  transform-origin: 0 50%;
  pointer-events: none; }

.cl-effect-19 a:hover span,
.cl-effect-19 a:focus span {
  background: #b53a2d;
  -webkit-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  transform: rotateY(-90deg); }

.csstransforms3d .cl-effect-19 a:hover span::before,
.csstransforms3d .cl-effect-19 a:focus span::before {
  background: #ef5e50; }

/* Effect 20: 3D side */
.cl-effect-20 a {
  line-height: 2em;
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  perspective: 800px; }

.cl-effect-20 a span {
  position: relative;
  display: inline-block;
  padding: 3px 15px 0;
  background: #587285;
  box-shadow: inset 0 3px #2f4351;
  -webkit-transition: background 0.6s;
  -moz-transition: background 0.6s;
  transition: background 0.6s;
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

.cl-effect-20 a span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #2f4351;
  content: attr(data-hover);
  -webkit-transform: rotateX(270deg);
  -moz-transform: rotateX(270deg);
  transform: rotateX(270deg);
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  pointer-events: none; }

.cl-effect-20 a:hover span,
.cl-effect-20 a:focus span {
  background: #2f4351; }

.cl-effect-20 a:hover span::before,
.cl-effect-20 a:focus span::before {
  -webkit-transform: rotateX(10deg);
  -moz-transform: rotateX(10deg);
  transform: rotateX(10deg); }

/* Effect 21: borders slight translate */
.cl-effect-21 a {
  padding: 10px;
  color: #237546;
  font-weight: 700;
  text-shadow: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s; }

.cl-effect-21 a::before,
.cl-effect-21 a::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px); }

.cl-effect-21 a::before {
  top: 0;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px); }

.cl-effect-21 a::after {
  bottom: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px); }

.cl-effect-21 a:hover,
.cl-effect-21 a:focus {
  color: #fff; }

.cl-effect-21 a:hover::before,
.cl-effect-21 a:focus::before,
.cl-effect-21 a:hover::after,
.cl-effect-21 a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px); }

/********************

Bootstrap Overrides

*********************/
.navbar-inverse {
  background: #ffcc00; }

.navbar-brand {
  margin: 0;
  padding: 0; }

.navbar-default {
  border: none; }

/********************

Flexslider Overrides

*********************/
#sliders {
  color: #000;
  background: #ffcc00; }

.flexslider {
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); }
  .flexslider .slider-caption h2, .flexslider .slider-caption .h2,
  .flexslider .slider-caption h3, .flexslider .slider-caption .h3 {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center; }
    .flexslider .slider-caption h2 span, .flexslider .slider-caption .h2 span,
    .flexslider .slider-caption h3 span, .flexslider .slider-caption .h3 span {
      color: #cc0000; }
  .flexslider .slider-caption p {
    color: #fff;
    text-align: center; }
  .flexslider .slider-caption a.btn, .flexslider .slider-caption a.comment-reply-link, .flexslider .slider-caption a#submit {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 3px; }
  .flexslider:hover .flex-prev, .flexslider:focus .flex-prev {
    opacity: 0.5;
    left: 10px; }
  .flexslider:hover .flex-next, .flexslider:focus .flex-next {
    opacity: 0.5;
    right: 10px; }
  .flexslider:hover .flex-next:hover,
  .flexslider:hover .flex-prev:hover, .flexslider:focus .flex-next:hover,
  .flexslider:focus .flex-prev:hover {
    opacity: 1;
    color: #fff; }
  .flexslider .slide,
  .flexslider .slides {
    max-height: 450px; }
    .flexslider .slide img,
    .flexslider .slides img {
      width: 100%;
      height: auto; }

.flex-viewport {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }
  .flex-viewport .slide img {
    width: 100%;
    height: auto; }

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  opacity: 0;
  color: #fff; }

.flex-direction-nav .flex-prev {
  left: -50px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 0.1;
    left: -100px; }
  .flex-direction-nav .flex-next {
    opacity: 0.1;
    right: 100px; }
  .flexslider .slider-caption {
    position: relative;
    display: block;
    clear: both;
    left: 0;
    bottom: 0;
    top: 0;
    padding: 10px;
    color: #000;
    background: #ffcc00; }
    .flexslider .slider-caption h2, .flexslider .slider-caption .h2, .flexslider .slider-caption h3, .flexslider .slider-caption .h3 {
      font-weight: bold;
      color: #000; } }

.testimonials .flexslider .flex-direction-nav .flex-prev,
.testimonials .flexslider .flex-direction-nav .flex-next {
  opacity: 0;
  color: #fff; }

.testimonials .flexslider .flex-direction-nav .flex-prev {
  left: -50px; }

.testimonials .flexslider .flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

.testimonials .flexslider:hover .flex-prev,
.testimonials .flexslider:hover .flex-next, .testimonials .flexslider:focus .flex-prev,
.testimonials .flexslider:focus .flex-next {
  color: #fff;
  opacity: 0.5; }

.testimonials .flexslider:hover .flex-prev, .testimonials .flexslider:focus .flex-prev {
  left: 10px; }

.testimonials .flexslider:hover .flex-next, .testimonials .flexslider:focus .flex-next {
  right: 10px; }

.testimonials .flexslider:hover .flex-next:hover,
.testimonials .flexslider:hover .flex-prev:hover, .testimonials .flexslider:focus .flex-next:hover,
.testimonials .flexslider:focus .flex-prev:hover {
  opacity: 1;
  color: #fff; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html, body {
  height: 100%;
  min-height: 100%; }

.clearfix, .cf, .comment-respond {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both; }

body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin-top: 0px; }
  body.blog, body.page, body.archive, body.single {
    margin-top: 120px; }
  body.home.page {
    margin-top: 120px; }

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

/**
* Header Section
*/
#topbar {
  color: #000;
  background: #fff; }
  #topbar a {
    color: #000; }
    #topbar a:hover, #topbar a:focus {
      color: #ffcc00; }
  #topbar .navbar.navbar-right.social {
    display: inline-block;
    position: inherit; }
  #topbar .search-container,
  #topbar .hotline-container {
    display: inline-block;
    position: inherit; }
  #topbar .hotline-container,
  #topbar .search-container {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    #topbar .hotline-container a,
    #topbar .search-container a {
      color: #000;
      line-height: 50px; }
      #topbar .hotline-container a:hover, #topbar .hotline-container a:focus,
      #topbar .search-container a:hover,
      #topbar .search-container a:focus {
        color: #fff; }
    #topbar .hotline-container:focus, #topbar .hotline-container:hover,
    #topbar .search-container:focus,
    #topbar .search-container:hover {
      background: #ffcc00; }

#mainslider {
  padding: 30px 0; }
  #mainslider #sync1 .owl-item {
    background: #fff;
    color: #FFF;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-align: center; }
  #mainslider #sync1 figure figcaption {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5;
    padding: 0.5em 1em; }
    #mainslider #sync1 figure figcaption p {
      font-size: 1em;
      color: #fff; }
  #mainslider #sync1 figure img {
    width: 100%;
    height: auto; }
  #mainslider .card {
    margin: 0 auto;
    padding: 10px auto;
    text-align: center; }
    #mainslider .card img {
      width: 60px;
      max-width: 100%; }
    #mainslider .card .card-img {
      width: 60px;
      max-width: 100%;
      height: auto;
      margin: 0 auto; }
    #mainslider .card .card-title {
      font-size: 1em;
      font-weight: 500;
      text-transform: uppercase;
      margin: 0 auto; }
    #mainslider .card img,
    #mainslider .card .card-title {
      -webkit-filter: grayscale(100%);
      transition: -webkit-filter .3s linear; }
    #mainslider .card:hover img {
      max-width: 100%;
      margin: 0 auto; }
    #mainslider .card:hover img,
    #mainslider .card:hover .card-title {
      -webkit-filter: grayscale(0%); }

/**
* Grid container
*/
#tiles {
  list-style-type: none;
  position: relative;
  /** Needed to ensure items are laid out relative to this container **/
  margin: 0;
  padding: 0; }

/**
* Grid items
*/
#tiles li {
  text-align: center;
  width: 300px;
  height: auto;
  display: none;
  /** Hide items initially to avoid a flicker effect **/
  cursor: pointer;
  padding: 4px;
  /*
    background-color: #ffffff;
    border: 1px solid #dedede;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  #tiles li.inactive {
    visibility: hidden;
    opacity: 0; }
  #tiles li img {
    width: 100%;
    height: auto; }
  #tiles li p {
    color: #666;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
    margin: 7px 0 2px 7px; }
  #tiles li figure {
    display: block;
    margin-bottom: 15px; }
    #tiles li figure figcaption {
      padding: 10px; }

/* Google Map
/* ========================================================================== */
.pw-map {
  height: 400px;
  width: 99%;
  margin: 5px 1px 1px;
  border: solid 1px #DDD;
  box-sizing: border-box; }

.pw-map img {
  max-width: none; }

.google-maps {
  position: relative;
  height: 415px;
  text-align: right;
  overflow: hidden; }

.google-maps.small-map {
  height: 210px; }

@media (max-width: 479px) {
  .gmap-frame,
  .google-maps {
    height: 230px; }
  .google-maps.small-map {
    height: 150px; } }

.gmap-search.ui-draggable-dragging {
  cursor: all-scroll; }

.gmap-search {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 440px;
  margin-left: -220px;
  background-color: #ffffff;
  border: solid 1px #9d9d9d;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1); }

.gmap-search:hover {
  cursor: move; }

@media (max-width: 479px) {
  .gmap-search {
    /*width: 90%;*/
    /*position: relative;*/
    width: 300px;
    top: 150px;
    /*left: auto;*/
    margin-left: -150px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-color: #E8E8E8; } }

.gmap-search input {
  width: 100%;
  border: none;
  line-height: 20px;
  height: 20px;
  padding-right: 25px;
  color: #a1a1a1; }

.gmap-search a {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  line-height: 18px;
  color: #74d2b2;
  text-shadow: 1px 1px 1px #f5f5f5; }

.gmap-search a:hover {
  color: #000000; }

.gmap-frame {
  z-index: -1; }

#map-canvas *,
#map-canvas *:before,
#map-canvas *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

#map-canvas {
  position: relative;
  display: block;
  width: 100%;
  min-height: 450px;
  margin: 0;
  padding: 0; }

#distributorstaticmap *,
#distributorstaticmap *:before,
#distributorstaticmap *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

#distributorstaticmap {
  position: relative;
  display: block;
  width: 100%;
  min-height: 450px;
  margin: 0;
  padding: 0; }

/* Search
/* ========================================================================== */
#search {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0; }
  #search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1; }
  #search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #000;
    border-color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 2em; }
  #search input[type="search"] {
    position: absolute;
    top: 45%;
    width: 80%;
    left: 10%;
    right: 10%;
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 10px;
    padding-right: 10px;
    outline: none; }
  #search .btn, #search .comment-reply-link, #search #submit {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -40px;
    width: 80px; }

.search-container {
  text-align: center;
  margin: 10px 0;
  padding: 0;
  width: 50px;
  height: 50px; }
  .search-container a.search {
    text-align: center;
    line-height: 50px;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    overflow: hidden; }
    .search-container a.search span {
      display: none; }

.hotline-container {
  text-align: center;
  margin: 10px 0;
  padding: 0;
  height: 50px;
  line-height: 50px; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto; }

/*********************
LINK STYLES
*********************/
a {
  color: #d1a700;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:visited {
    color: #d1a700; }
  a:hover, a:focus {
    color: #ffcc00; }
  a:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
    color: #ffd52e;
    text-decoration: none; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  color: #171717;
  text-rendering: optimizelegibility;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  color: #171717;
  font-size: 2em;
  line-height: 1.333em;
  text-transform: capitalize; }

h2, .h2 {
  color: #0a0a0a;
  font-size: 1.5em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  color: black;
  font-size: 1.125em; }

h4, .h4 {
  color: black;
  font-size: 1.1em;
  line-height: 1em;
  text-align: left;
  text-transform: uppercase; }

h5, .h5 {
  color: black;
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 4px; }

/*********************
HEADER STYLES
*********************/
#logo {
  margin: 0; }
  #logo a {
    color: #fff; }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
nav.navbar {
  background: #ffcc00; }

.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    /*
    so you really have to rethink your dropdowns for mobile.
    you don't want to have it expand too much because the
    screen is so small. How you manage your menu should
    depend on the project. Here's some great info on it:
    http://www.alistapart.com/articles/organizing-mobile/
    */ }
    .nav li a {
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      display: block;
      color: #fff;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 400;
      padding: 0 0.75em;
      line-height: 50px;
      /*
      remember this is for mobile ONLY, so there's no need
      to even declare hover styles here, you can do it in
      the style.scss file where it's relevant. We want to
      keep this file as small as possible!
      */ }
      .nav li a:hover, .nav li a:focus {
        background: #e6b800;
        color: #fff; }
    .nav li ul.sub-menu,
    .nav li ul.dropdown-menu,
    .nav li ul.children {
      box-shadow: none;
      border: 0px solid #ffcc00;
      border-radius: none;
      padding: 0;
      color: #fff;
      background: #e6b800; }
      .nav li ul.sub-menu li,
      .nav li ul.dropdown-menu li,
      .nav li ul.children li {
        display: block;
        width: 100%; }
        .nav li ul.sub-menu li a,
        .nav li ul.dropdown-menu li a,
        .nav li ul.children li a {
          color: #fff;
          display: block;
          font-size: 0.8em;
          text-decoration: none;
          text-align: left;
          line-height: 30px; }
          .nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
          .nav li ul.dropdown-menu li a:hover,
          .nav li ul.dropdown-menu li a:focus,
          .nav li ul.children li a:hover,
          .nav li ul.children li a:focus {
            background: #d1a700;
            color: #ffde5c; }
      .nav li ul.sub-menu:hover, .nav li ul.sub-menu:focus,
      .nav li ul.dropdown-menu:hover,
      .nav li ul.dropdown-menu:focus,
      .nav li ul.children:hover,
      .nav li ul.children:focus {
        border-bottom: 1px solid #ffcc00; }
    .nav li .dropdown-menu {
      border-radius: 0px; }
      .nav li .dropdown-menu > .active > a {
        background-color: #e6b800;
        color: #fff; }
  .nav li.current-menu-item,
  .nav li.current_page_item,
  .nav li.current-page-ancestor {
    background: #e6b800;
    color: #fff;
    /*
    &:after {
    bottom: 0;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: $white;
    border-width: 6px;
    left: 50%;
    margin: 0 0 0 -6px;
    }
*/ }
    .nav li.current-menu-item a,
    .nav li.current_page_item a,
    .nav li.current-page-ancestor a {
      color: #fff; }
      .nav li.current-menu-item a:hover, .nav li.current-menu-item a:focus,
      .nav li.current_page_item a:hover,
      .nav li.current_page_item a:focus,
      .nav li.current-page-ancestor a:hover,
      .nav li.current-page-ancestor a:focus {
        color: #fff; }
    .nav li.current-menu-item > a:link, .nav li.current-menu-item > a:hover, .nav li.current-menu-item > a:focus,
    .nav li.current_page_item > a:link,
    .nav li.current_page_item > a:hover,
    .nav li.current_page_item > a:focus,
    .nav li.current-page-ancestor > a:link,
    .nav li.current-page-ancestor > a:hover,
    .nav li.current-page-ancestor > a:focus {
      color: #d1a700; }
  .nav.navbar-nav.navbar-right.social {
    position: relative;
    float: right; }
    .nav.navbar-nav.navbar-right.social li {
      display: inline-block; }
      .nav.navbar-nav.navbar-right.social li a {
        line-height: 30px;
        height: 30px;
        width: 30px;
        display: inline-block;
        color: #ffcc00; }
  .nav.navbar-default {
    background: transparent; }

/* end .nav */
.header {
  margin-bottom: 0;
  border: none;
  color: #fff; }

.navbar {
  margin-bottom: 0;
  border: none;
  color: #fff; }
  .navbar > .container .navbar-brand {
    margin-left: 0px; }

.navbar-brand {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: block;
  margin: 10px 15px;
  padding: 0;
  height: auto !important; }
  .navbar-brand img {
    max-width: 300px;
    margin: 0;
    padding: 0; }

.navbar-toggle {
  margin-right: 15px;
  margin-top: 13px;
  border: 1px solid #000; }
  .navbar-toggle .icon-bar {
    background: #000; }
  .navbar-toggle:hover, .navbar-toggle:focus {
    border: none;
    background: #000; }
    .navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
      background: #ffcc00; }

.navbar-collapse .collapse .in {
  padding: 0; }

.shrink #topbar {
  position: absolute;
  top: -100px;
  width: 100%; }

.shrink .navbar-brand {
  margin: 100px 15px 0 15px;
  padding: 0; }
  .shrink .navbar-brand img {
    height: 30px;
    margin: 10px 0;
    padding: 0; }

.shrink .navbar-toggle {
  margin-top: 8px; }

.shrink .nav.navbar-nav.navbar-default {
  background: #ffcc00; }
  .shrink .nav.navbar-nav.navbar-default li a {
    font-size: 12px;
    font-weight: 400; }

.shrink .nav.navbar-nav.social {
  position: absolute;
  top: 100px;
  right: 65px; }
  .shrink .nav.navbar-nav.social li a {
    line-height: 50px;
    height: 50px;
    color: #fff; }
    .shrink .nav.navbar-nav.social li a:hover, .shrink .nav.navbar-nav.social li a:focus {
      color: #fff;
      background: #d1a700; }

/*********************
POSTS & CONTENT STYLES
*********************/
.fbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; }
  .fbox .fbox-item {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 300px; }

#content {
  margin-top: 0;
  padding-top: 1.5em; }

.hentry {
  background-color: transparent;
  border-radius: 0px;
  margin-bottom: 1.5em; }
  .hentry a {
    color: #000;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .hentry a:hover, .hentry a:focus {
      color: #ffcc00; }
  .hentry header {
    border-top: 1px solid #e8e8e8;
    padding: 0; }
    .hentry header.article-header img {
      width: 100%;
      height: auto;
      display: block; }
  .hentry ul {
    list-style: disc;
    margin-left: 0; }
  .hentry ol {
    list-style: decimal;
    margin-left: 0; }
  .hentry footer {
    display: none;
    font-size: 0.9em;
    padding: 0.5em 0 1em;
    border-top: 1px solid #e8e8e8; }
    .hentry footer p {
      margin: 0;
      font-size: 0.9em; }
      .hentry footer p a {
        color: #000;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        .hentry footer p a:hover, .hentry footer p a:focus {
          color: #ffcc00; }
  .hentry .produk-terms-link h3 {
    line-height: 1em;
    margin-bottom: 1em;
    padding-left: 5px;
    border-left: 3px solid #ffcc00; }
  .hentry .produk-icons li > a:hover {
    color: #fff;
    background: #a38300; }
  .hentry .produk-dilihat {
    color: #d1d1d1;
    font-size: 0.8em; }
  .hentry code,
  .hentry kbd,
  .hentry pre,
  .hentry sum {
    color: #666666;
    background: transparent; }
  .hentry kbd {
    border-radius: 0; }

/* end .hentry */
.single-title,
.page-title,
.archive-title,
.entry-title {
  margin: 0.5em 0;
  color: #171717; }

.single-title,
.entry-title {
  color: #242424; }

.archive-title {
  text-align: center;
  margin-bottom: 3em; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #d1d1d1;
  font-style: italic; }
  .byline a,
  .byline time {
    color: #e8e8e8; }

/* entry content */
.entry-content {
  padding: 1em 0 0;
  /*
      image alignment on a screen this size may be
      a bit difficult. It's set to start aligning
      and floating images at the next breakpoint,
      but it's up to you. Feel free to change it up.
      */ }
  .entry-content p {
    margin: 0 0 1.5em; }
  .entry-content table {
    width: 100%;
    border: 1px solid #2e2e2e;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #2e2e2e; }
    .entry-content tr:nth-child(even) {
      background-color: rgba(0, 0, 0, 0.1); }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #2e2e2e; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    padding: 7px;
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #2e2e2e;
    border-right: 1px solid #2e2e2e; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote, .entry-content q {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #f0c000;
    font-style: italic;
    color: #737373; }
    .entry-content blockquote p, .entry-content q p {
      color: #666666; }
  .entry-content cite {
    font-size: 0.8em;
    color: #ffcf0f;
    display: block;
    text-align: right; }
  .entry-content dl,
  .entry-content dt {
    color: #666666; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #737373;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 7px;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: rgba(255, 255, 255, 0.8);
    color: #666666;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px;
    border: 1px solid #2e2e2e; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #171717;
  padding: 5px;
  margin-bottom: 1em;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 7px 0;
    text-align: center;
    display: block;
    line-height: 1em; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

/* Advertising
/* ========================================================================== */
.call-action {
  position: relative;
  padding: 30px 0;
  /* background-color: #272a31;
    color: #858688; */
  background: #951913;
  color: #ffffff;
  margin-bottom: 40px; }

.call-action:before,
.call-action:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  /* background-color: #434751; */
  background-color: #951913; }

.call-action:before {
  top: 10px; }

.call-action:after {
  bottom: 10px; }

.call-action .media-heading {
  margin-bottom: 15px;
  color: #ffffff; }

/* Sticker */
.call-action .media-body {
  padding-right: 160px; }

.call-action .media-object {
  /* background-color: #74d2b2; */
  background-color: #DA251C;
  color: #ffffff;
  width: 160px;
  margin-left: 0;
  margin-top: -30px;
  margin-bottom: -30px;
  padding: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  z-index: 2;
  text-align: center;
  font-weight: 300;
  /**/ }

@media (min-width: 480px) and (max-width: 991px) {
  .call-action .media-object :before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    display: block;
    bottom: -15px;
    left: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 15px solid #DB231A; } }

@media (max-width: 479px) {
  .call-action .media-body {
    padding-right: 0; }
  .call-action .media-object {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    margin: 15px auto 30px auto; }
  .call-action .purchase-now {
    text-align: center; } }

.call-action .media-object .line1 {
  font-size: 100px;
  line-height: 70px;
  margin-bottom: 10px; }

.call-action .media-object .line2 {
  font-size: 36px;
  line-height: 36px; }

.call-action .media-object .line3 {
  font-size: 14px;
  line-height: 14px; }

.call-action h1,
.call-action h2,
.call-action h3,
.call-action h4,
.call-action h5,
.call-action h6 {
  color: #ffffff; }

#reezh-related-posts {
  margin-left: 1.5em;
  padding: 0; }
  #reezh-related-posts li a {
    color: #000;
    font-weight: bold;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    #reezh-related-posts li a:hover, #reezh-related-posts li a:focus {
      color: #ffcc00; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center;
  display: table;
  margin: 0 auto; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #eaedf2; }
  .pagination a, .pagination span {
    -webkit-transition: all, 0.2s, ease;
    transition: all, 0.2s, ease;
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #d1a700; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #a38300;
      color: #d1a700; }
  .pagination .current {
    cursor: default;
    color: #666666; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #666666; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }

.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  text-align: right;
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #e8e8e8;
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none;
  background: transparent; }

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #ededed;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  .comment .vcard {
    margin-left: 50px; }
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      .comment .vcard time a {
        color: #9fa6b4;
        text-decoration: none; }
        .comment .vcard time a:hover {
          text-decoration: underline; }
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  .comment.odd {
    background-color: #f7f7f7; }
  .comment.even {
    background: #f2f2f2; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em 0;
  border-top: 1px solid #e8e8e8; }

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #666666; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1em;
  background-color: transparent;
  font-size: 0.9em; }
  .form-allowed-tags code {
    background: transparent; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 0; }

.widgettitle {
  color: #171717; }

.widget {
  padding: 10px 0;
  margin: 0 0 2em;
  border-top: 1px solid #e8e8e8; }
  .widget ul li {
    /* deep nesting */ }
    .widget ul li a {
      display: block;
      font-size: 1em;
      line-height: 1.5em;
      padding: 5px;
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      color: #000; }
      .widget ul li a:hover, .widget ul li a:focus {
        background: #ffcc00;
        color: #fff; }
      .widget ul li a .fa {
        vertical-align: middle; }

.no-widgets {
  background-color: transparent;
  padding: 1.5em;
  text-align: center;
  margin-bottom: 1.5em; }

section#social-media {
  padding: 30px 0 60px; }
  section#social-media .nav li a {
    color: #000;
    display: block; }
    section#social-media .nav li a:hover, section#social-media .nav li a:focus {
      background: transparent;
      color: #ffcc00; }

/*********************
FOOTER STYLES
*********************/
.footer {
  color: #fff;
  clear: both;
  padding: 30px 0 0; }
  .footer .sub-footer {
    padding: 2em 0; }
  .footer a {
    text-decoration: none;
    color: #fff; }
    .footer a:hover, .footer a:focus {
      color: #ffcc00; }
  .footer .nav li.current-menu-item, .footer .nav li.current-page-item {
    background: transparent !important; }
    .footer .nav li.current-menu-item a, .footer .nav li.current-page-item a {
      background: transparent !important; }
  .footer .nav.nav-stacked > li {
    margin-left: 0;
    display: inline;
    width: 33%; }
    .footer .nav.nav-stacked > li.current-page-ancestor {
      background: transparent !important; }
      .footer .nav.nav-stacked > li.current-page-ancestor a {
        color: #fff; }
  .footer .nav.nav-stacked > li > a {
    color: #fff;
    display: block;
    text-align: left;
    margin: 5px 0;
    padding: 0 5px;
    line-height: 1.5em; }
    .footer .nav.nav-stacked > li > a:hover, .footer .nav.nav-stacked > li > a:focus {
      color: #ffcc00; }
  .footer .nav.nav-stacked > li > a:hover {
    background-color: transparent; }

/*
  if you checked out the link above:
  http://www.alistapart.com/articles/organizing-mobile/
  you'll want to style the footer nav
  a bit more in-depth. Remember to keep
  it simple because you'll have to
  override these styles for the desktop
  view.
  */
/* end .footer-links */
.baseline-box {
  font-size: 0.8em;
  border-top: 1px solid #a5a5a5;
  margin-top: 15px;
  padding: 10px 0;
  color: #ffcc00;
  background-color: #979797; }

.copyright {
  color: #fff;
  line-height: 1em;
  min-height: 2em; }
  .copyright .liner {
    width: 20%;
    border-top: 1px solid #fff;
    margin: 0; }
  .copyright p {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 1em 0; }
  .copyright a {
    color: #fff; }
    .copyright a:hover {
      text-decoration: none;
      color: #ffcc00; }

/******************
BOOTSTRAP OVERRIDE
******************/
.navbar {
  margin-bottom: 0;
  border: none;
  color: #fff; }

.nav.navbar-nav.navbar-default {
  border: none;
  margin: 0;
  padding: 0; }
  .nav.navbar-nav.navbar-default li a {
    font-weight: 400; }
  .nav.navbar-nav.navbar-default li.active > a {
    background: #e6b800;
    color: #fff;
    font-weight: 700; }

#videoprofile {
  padding: 30px 0;
  background: #e8e8e8;
  color: #000; }

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

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  margin: 30px 15px;
  overflow: hidden; }

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-description {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .video-description .video-item {
    flex: 1;
    flex-shrink: 0;
    width: 90%; }

.btn-success {
  background: #fff !important;
  color: #ffcc00 !important;
  border-color: #ffcc00; }
  .btn-success:hover {
    color: #ffcc00 !important;
    border-color: #ffe066;
    background: #e8e8e8; }

.simple-share {
  margin: 10px 5px;
  line-height: 1;
  color: #fff;
  padding: 3px 6px;
  text-decoration: none; }
  .simple-share:hover {
    color: #fff;
    text-decoration: none; }
  .simple-share.ss-facebook {
    color: #fff;
    background-color: #3B5998; }
  .simple-share.ss-twitter {
    color: #fff;
    background-color: #00aced; }
  .simple-share.ss-gplus {
    color: #fff;
    background-color: #dd4b39; }
  .simple-share.ss-pinterest {
    color: #fff;
    background-color: #cb2027; }

#copyright {
  color: #fff;
  background: #d1a700;
  font-size: 12px;
  min-height: 30px;
  line-height: 30px; }
  #copyright .copyright {
    float: none;
    display: block;
    text-align: center; }
  #copyright .designed {
    float: none;
    display: block;
    text-align: center; }

#products .products .product {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  /*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
  /*********************
NAVIGATION STYLES
*********************/
  #topbar .toptitle {
    display: inline-block;
    float: left; }
  #topbar .hotline {
    margin: 0 15px; }
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }
        .menu ul li ul.sub-menu li a,
        .menu ul li ul.children li a {
          text-decoration: none; }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */ }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  body {
    background: #fff; }
  /*********************
LAYOUT & GRID STYLES
*********************/
  .wrap {
    width: 760px; }
  /*********************
HEADER STYLES
*********************/
  /**
* Header Section
*/
  /*********************
NAVIGATION STYLES
*********************/
  #topbar .toptitle {
    color: #000; }
  #topbar .hotline-container {
    position: inherit; }
  #topbar .hotline {
    margin-right: 15px; }
  #mainslider {
    padding: 30px 0; }
    #mainslider #sync1 .owl-item {
      background: #fff;
      color: #fff;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px;
      text-align: center; }
    #mainslider #sync1 figure figcaption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: block;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 5;
      padding: 0.5em 1em; }
      #mainslider #sync1 figure figcaption p {
        font-size: 1em;
        color: #fff; }
    #mainslider #sync1 figure img {
      width: 100%;
      height: auto; }
    #mainslider #sync2 .owl-item {
      text-align: center; }
      #mainslider #sync2 .owl-item .card {
        text-align: center; }
        #mainslider #sync2 .owl-item .card img {
          padding: 15px auto; }
        #mainslider #sync2 .owl-item .card .card-img {
          width: 60px;
          max-width: 100%;
          height: auto;
          margin: 0 auto;
          padding: 15px; }
  /******************
BOOTSTRAP OVERRIDE
******************/
  .navbar {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: transparent;
    border: none;
    color: #fff;
    margin-bottom: 0; }
  .navbar-brand {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: block;
    margin: 10px 0;
    margin-left: 0;
    padding: 0;
    height: auto !important; }
    .navbar-brand img {
      max-width: 300px;
      height: 50px;
      margin: 0;
      padding: 0; }
  .nav.navbar-nav {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    border: none;
    color: #fff;
    background: transparent; }
    .nav.navbar-nav li.active > a {
      background: #ffcc00;
      color: #fff;
      font-weight: bold; }
      .nav.navbar-nav li.active > a:hover, .nav.navbar-nav li.active > a:focus {
        color: #fff;
        background: #e6b800; }
    .nav.navbar-nav li a {
      color: #fff; }
      .nav.navbar-nav li a:hover, .nav.navbar-nav li a:focus {
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        color: #fff;
        background: #e6b800; }
    .nav.navbar-nav.navbar-right.social {
      position: relative; }
      .nav.navbar-nav.navbar-right.social li {
        display: inline-block; }
        .nav.navbar-nav.navbar-right.social li a {
          line-height: 30px;
          height: 30px;
          width: 30px;
          display: block;
          color: #fff; }
          .nav.navbar-nav.navbar-right.social li a:hover, .nav.navbar-nav.navbar-right.social li a:focus {
            color: #fff;
            background: #ffcc00; }
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      margin-top: 0; }
    .nav li {
      float: left;
      position: relative;
      /*
    plan your menus and drop-downs wisely.
    */
      /* showing sub-menus */ }
      .nav li a {
        border-bottom: 0;
        /*
      you can use hover styles here even though this size
      has the possibility of being a mobile device.
      */ }
        .nav li a:hover, .nav li a:focus {
          color: #fff;
          text-decoration: none; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        /*
      border: 1px solid #ccc;
      border-top: 0;
      */
        position: absolute;
        overflow: hidden;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          /*
        if you need to go deeper, go nuts
        just remember deeper menus suck
        for usability. k, bai.
        */ }
          .nav li ul.sub-menu li a,
          .nav li ul.children li a {
            text-decoration: none;
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            /* border-bottom: 1px solid #ccc; */ }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }
        .nav li ul.sub-menu li.current-menu-item a,
        .nav li ul.sub-menu li.current_page_item a,
        .nav li ul.sub-menu li.current-page-ancestor a,
        .nav li ul.children li.current-menu-item a,
        .nav li ul.children li.current_page_item a,
        .nav li ul.children li.current-page-ancestor a {
          color: #fff;
          background: #e6b800; }
      .nav li:hover ul {
        top: auto;
        overflow: visible;
        visibility: visible; }
    .nav li.current-menu-item a,
    .nav li.current_page_item a,
    .nav li.current-page-ancestor a {
      color: #fff;
      background: #e6b800; }
  /* end .nav */
  div#topnav {
    text-align: center;
    margin: 0 auto; }
    div#topnav ul.top-nav {
      margin: 80px auto 0;
      text-align: center;
      display: table;
      border-top: 1px solid #d1a700; }
      div#topnav ul.top-nav li {
        display: inline;
        text-align: center; }
        div#topnav ul.top-nav li a {
          text-decoration: none;
          color: #d1a700; }
          div#topnav ul.top-nav li a:hover {
            color: #fff;
            background: #d1a700; }
        div#topnav ul.top-nav li ul.sub-menu {
          background: #755e00; }
          div#topnav ul.top-nav li ul.sub-menu li a {
            -webkit-transition: all, 0.2s, ease;
            transition: all, 0.2s, ease;
            text-decoration: none;
            color: #fff; }
            div#topnav ul.top-nav li ul.sub-menu li a:hover {
              color: #d1a700;
              background: #a38300; }
  .shrink .navbar-brand {
    margin-top: 100px;
    padding: 0 15px; }
    .shrink .navbar-brand img {
      height: 30px;
      margin: 10px 0; }
  .shrink .nav.navbar-nav li a {
    color: #ffcc00;
    font-size: 12px;
    font-weight: 400; }
  .shrink .nav.navbar-nav.social {
    position: absolute;
    top: 100px;
    right: 15px; }
    .shrink .nav.navbar-nav.social li a {
      line-height: 50px;
      height: 50px;
      width: 50px;
      color: #ffcc00; }
  .navbar.shrink {
    background: #fff;
    border-bottom: 1px solid #e6b800; }
    .navbar.shrink a {
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      color: #ffcc00; }
      .navbar.shrink a:hover, .navbar.shrink a:focus {
        background: #ffcc00;
        color: #fff; }
  /*********************
POSTS & CONTENT STYLES
*********************/
  #content {
    margin-top: 0;
    padding-top: 1.5em; }
  .hentry footer {
    display: block; }
  /* end .hentry */
  .post-edit-link,
  .comment-reply-link,
  #cancel-comment-reply-link {
    @implode .btn;
    display: block;
    float: right;
    padding: 7px 14px;
    color: #d1a700;
    border: 1px solid #d1a700; }
  /*********************
SIDEBARS & ASIDES
*********************/
  .sidebar {
    margin-top: 0; }
  .widgettitle {
    margin-bottom: 0.75em; }
  .widget {
    padding: 10px 0;
    margin: 0 0 2em; }
    .widget ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .widget ul li {
        /* deep nesting */ }
        .widget ul li a {
          display: block;
          padding: 5px;
          -webkit-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
          color: #000; }
          .widget ul li a:hover, .widget ul li a:focus {
            background: #ffcc00;
            color: #fff; }
          .widget ul li a .fa {
            vertical-align: middle; }
        .widget ul li ul {
          margin-top: 0.75em;
          padding-left: 1em; }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  .widget_recent_entries ul li {
    display: block;
    clear: both; }
    .widget_recent_entries ul li span.post-date {
      display: block;
      color: #454545;
      font-size: 0.8em;
      margin-bottom: 10px;
      padding-left: 5px; }
  .widget_recent_entries ul li a {
    font-weight: bold; }
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  #recentcomments li {
    padding: 5px;
    display: block;
    line-height: 1.5em;
    border-bottom: 1px solid #000; }
  #recentcomments li a {
    display: inline;
    line-height: 1.5em; }
  /* search widget */
  /* text widget */
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  .footer-links ul li {
    /*
      be careful with the depth of your menus.
      it's very rare to have multi-depth menus in
      the footer.
      */ }
    .footer-links ul li a {
      color: #fff;
      background: transparent !important; }
      .footer-links ul li a:hover {
        color: #ffcc00; }
  /* end .footer-links */
  .slider-caption {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 80%;
    height: auto;
    padding: 0px 10px 20px 10px; }
    .slider-caption h2 {
      color: #fff; }
    .slider-caption p, .slider-caption span {
      color: white; }
    .slider-caption a {
      position: absolute;
      right: 20px;
      top: 10px;
      border-color: #fff;
      color: #fff; }
  /*********************
FOOTER STYLES
*********************/
  .footer {
    color: #fff;
    background: #171717; }
    .footer .widget {
      color: #fff; }
      .footer .widget .widgettitle {
        color: #242424; }
      .footer .widget h4 {
        color: #ffcc00;
        text-align: left; }
      .footer .widget a {
        text-decoration: none;
        color: #737373; }
        .footer .widget a:hover, .footer .widget a:focus {
          color: #ffcc00; }
  /*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
  /* end .footer-links */
  #copyright {
    color: #ffd11a;
    background: #a38300;
    font-size: 12px;
    min-height: 30px;
    line-height: 30px; }
    #copyright .copyright {
      min-height: 2em; }
      #copyright .copyright .liner {
        width: 100%;
        border-top: 1px solid #fff;
        margin: 0; }
      #copyright .copyright p {
        color: #ffd11a;
        text-align: center;
        font-size: 0.8em;
        margin: 0;
        padding: 1em 0; }
      #copyright .copyright a {
        color: #ffcc00; }
        #copyright .copyright a:hover {
          text-decoration: none;
          color: #ffd11a; }
    #copyright .copyright {
      float: left;
      display: inline-block;
      text-align: left; }
    #copyright .designed {
      float: right;
      display: inline-block;
      text-align: right; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
