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

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
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: 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: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

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

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

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
