/*
Theme Name: Cultivators
Theme URI: https://themeforest.net/item/cultivators-wordpress-gardening-design/17497433&ref=kleverthemes
Author: Klever Media
Author URI: http://www.klevermedia.co.uk 
Description: Cultivators is a WordPress Theme designed for Gardeners, Landscapers, Construction workers, Landscape gardeners or any other kind of handyman related personnel. It’s designed and built on the bootstrap 3 grid system and utilises javascript and css for animation. The theme uses the Unyson framework which allows uses to create their own pages with the PageBuilder extension and edit the theme further with the built in Theme Options.
Version: 1.0.2
Text Domain: cultivators
License: #
License URI: #
Tags: theme-options, sticky-post, full-width-template, custom-colors

*/

/** Contents

	-- Body
	-- Page loading
	-- Section & Spacing
	-- Top page title
	-- Header titles
	-- Top bar
	-- Hero
	-- Navigation
	-- Scroll navigation
	-- Testimonials
	-- Accordion
	-- Slick slider
	-- Call to action
	-- Latest news
	-- Form styles
	-- Icon sidebar
	-- Icons
	-- Pricing tables
	-- Button styles
	-- Services
	-- Number counter
	-- Logos
	-- Masonry blog
	-- Blog posts
	-- Blog sidebar
	-- Single blog post
	-- Comments
	-- Pagination
	-- Footer
	-- Keyframe animations
	-- Media queires

**/

/**  Body  **/

::-moz-selection {
    color: #fff;
    background: #abc654;
}

::selection {
    color: #fff;
    background: #abc654;
}

html,
body {
    font-size: 15px;

    height: 100%;

    color: #7a7a7a;
    text-shadow: 1px 1px 1px rgba(0,0,0,.004);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
.wrapper {
    overflow-x: hidden;
}

a,
a:active,
a:visited {
    position: relative;

    display: inline-block;

    -webkit-transition: all .5s ease-in-out;
       -moz-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
    text-decoration: none;

    color: #96ae4a;
}

a:hover {
    text-decoration: none;

    color: #585858;
}

a:focus,
a:active {
    text-decoration: none;
}

p a:hover,
li a:hover {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);

    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

p {
    line-height: 1.6em;

    margin: 0 0 15px 0;
}

em {
    font-weight: bold;
    font-style: normal;
    font-style: 16px;

    display: inline-block;

    margin: 0 0 15px 0;
}


img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;

    margin: 0 0 20px 0;

    color: #585858;
}

h2 {
    font-size: 40px;
}

h2 span {
    font-size: 20px;
    font-weight: 600;

    display: block;

    color: #abc654;
}

h3 {
    font-size: 26px;

    margin-bottom: 15px;
}

h3 span {
    font-size: 20px;
    font-weight: 600;

    display: block;

    color: #abc654;
}

h4 {
    font-size: 20px;

    margin-bottom: 15px;
}

h4 span {
    font-size: 20px;
    font-weight: 600;

    display: block;

    color: #abc654;
}

h5 {
    font-size: 19px;

    margin-bottom: 15px;
}

h6 {
    font-size: 16px;
}

*:focus {
    outline: none;
    box-shadow: none;
}

blockquote {
    font-size: 14px;

    margin-left: 10px;
    padding: 0 20px;

    color: #96ae4a;
    border-left: 2px solid #96ae4a;
}

blockquote:before {
    font: normal normal normal 20px/1 FontAwesome;

    display: inline-block;

    content: '\f10d';
    transform: translateX(-22px);

    background: #fff;
}

section {
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.visible {
    visibility: visible;
}

.screen-reader-text {
    display: none;
}

/**  Page loading  **/


#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
}

.no-js #loader-wrapper {
  display: none;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #879d3e;
  -webkit-animation: spin 1.7s linear infinite;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin-reverse .6s linear infinite;
          animation: spin-reverse .6s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #abc654;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #3b3a39;
  z-index: 10;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}


/**  Section & Spacing  **/

.white {
    background: #fff;
}

.dark {
    background-color: #31302f;
    background-size: 100% auto !important;
}

.grey {
    background: #f7f7f7;
}

.shadow {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .35);
}

.fixed-background {
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.padding-100 {
    padding: 100px 0;
}

.padding-80 {
    padding: 80px 0;
}

.padding-60 {
    padding: 60px 0;
}

.padding-40 {
    padding: 40px 0;
}

.padding-15-80 {
    padding: 15px 0 80px 0;
}

.padding-80-0 {
    padding: 80px 0 0 0;
}

.padding-0 {
    padding: 0;
}

.padding-0-0-60-0 {
    padding: 0 0 60px 0;
}

.border-top {
    border-top: 1px solid #e6e6e6;
}

.border-bottom {
    border-bottom: 1px solid #e6e6e6;
}

hr.border {
    height: 1px;

    border: none;
    background: #e6e6e6;
}

hr.height-80 {
    height: 80px;
    margin: 0;

    border: none;
}

hr.height-30 {
    height: 30px;
    margin: 0;

    border: none;
}

hr.height-40 {
    height: 40px;
    margin: 0;

    border: none;
}

.center,
.aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/**  Top page title  **/

.page-title {
    position: relative;

    overflow: hidden;

    text-align: center;

    background: #585858;
}

.page-title:after {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(16, 15, 14, .3);
}

.page-title img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 64px;
    font-weight: 700;

    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.page-title .breadcrumbs {
    margin: 0;
    padding: 0;

    list-style: none;
}

.page-title .breadcrumbs span {
    font-size: 20px;

    display: inline-block;

    padding: 0 5px;

    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.page-title .breadcrumbs span a {
    color: #fff;
}

.page-title .breadcrumbs span a:hover {
    color: rgba(255, 255, 255, .6);
}

.page-title .breadcrumbs span:last-child {
    display: inline-block;
    overflow: hidden;

    max-width: 150px;
    height: 19px;

    transform: translateY(5px);
    white-space: nowrap;
    text-overflow: ellipsis;
}

/**  Header titles  **/

header .site-name {
    font-size: 22px;
    font-weight: 600;

    display: block;
}

header .site-tagline {
    font-size: 16px;

    display: block;

    color: #abc654;
}

header.title {
    margin-bottom: 40px;
    padding-bottom: 25px;

    border-bottom: 1px solid #e6e6e6;
}

header.title.h3 > span {
    margin-top: 2px;
}

header.title h2 {
    line-height: 1em;

    margin: 0;
}

header.title > span {
    font-size: 15px;
    line-height: 52px;

    position: relative;

    display: block;
    float: left;

    width: 52px;
    height: 52px;
    margin: 12px 20px 0 0;

    text-align: center;

    color: #96ae4a;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
}

header.title > span img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    max-width: 30px;
    margin: auto;
}

header.no-border {
    margin: 0;
    padding-bottom: 30px;

    border: none;
}

header.center {
    text-align: center;
}

header.center .fa {
    display: inline-block;
    float: none;

    margin: 0;
}

.dark header.center h2 {
    color: #fff;
}

.dark header.center h2 span {
    color: #7a7a7a;
}

.dark header.center .fa {
    transform: translateY(-40px);

    border: none;
    background: #31302f;
}

/**  Top bar  **/

.top-bar {
    font-weight: 600;

    color: #fff;
    background: #3b3a39;
}

.top-bar .fa {
    margin-right: 8px;

    color: #abc654;
}

.top-bar .tel,
.top-bar .email,
.top-bar .hours {
    display: inline-block;

    padding: 15px 0;
}

.top-bar .email,
.top-bar .hours {
    margin-left: 60px;
}

.top-bar .social {
    text-align: right;
}

.top-bar .social * {
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
    text-decoration: none;
}

.top-bar .social a img {
    max-width: 15px;
    height: auto;
}

.top-bar .social a {
    font-size: 14px;

    position: relative;

    display: inline-block;
    overflow: hidden;

    margin: 0 0 -5px 0;
    padding: 18px;

    color: #fff;
}

.top-bar .social a:before {
    display: inline-block;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
}

.top-bar .social a span {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;

    margin: auto;

    text-align: center;
}

.top-bar .social a:hover {
    color: #abc654;
    background: rgba(0, 0, 0, .25);
}

.top-bar .social a:hover:before {
    transform: translateY(-60px);
}

.top-bar .social a:hover span {
    top: 18px;
}

/**  Hero  **/

.hero {
    position: relative;

    width: 100%;
    height: 70%;
    min-height: 500px;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;

    background: #100f0e;
}

.hero .item {
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.hero .item img {
    width: 100%;

    -webkit-animation: slowZoom 15s ease-in-out;
       -moz-animation: slowZoom 15s ease-in-out;
         -o-animation: slowZoom 15s ease-in-out;
            animation: slowZoom 15s ease-in-out;

    opacity: .8;
}

.hero .item .container {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero .blurb {
    position: absolute;
    top: 50%;

    width: 100%;

    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
            transform: translateY(-50%);

    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.hero .blurb-content {
    -webkit-animation: zoomIn .75s ease-in-out;
       -moz-animation: zoomIn .75s ease-in-out;
         -o-animation: zoomIn .75s ease-in-out;
            animation: zoomIn .75s ease-in-out;
}

.hero .blurb h1 {
    font-size: 64px;
    font-weight: 700;

    margin: 0 0 20px 0;

    color: #fff;
}

.hero .blurb p {
    font-size: 26px;
    font-weight: 400;

    margin: 0 0 30px 0;
}

.hero .btn-ghost {
    margin-left: 5px;

    color: #fff;
    border-color: #fff;
    background: none;
}

.hero .btn-ghost:hover {
    border-color: #abc654;
    border-bottom: 2px solid #96ae4a;
    background: #abc654;
}

.hero .carousel,
.hero .carousel-inner,
.hero .item {
    height: 100%;
}

.hero .carousel-indicators {
    z-index: 1;
    right: 0;
    bottom: 40px;
    left: 0;

    width: 1140px;
    margin: auto;

    text-align: left;
}

.hero .carousel-indicators li {
    width: 50px;
    height: 5px;
    margin: 0;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;

    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, .5);
}

.hero .carousel-indicators .active,
.hero .carousel-indicators li:hover {
    border: none;
    background: #abc654;
}

.hero .carousel-control {
    line-height: 60px;

    position: absolute;
    z-index: 1;
    top: auto;
    right: 30px;
    bottom: 30px;
    left: auto;

    width: 60px;
    height: 60px;

    text-align: center;

    opacity: 1;
    color: #fff;
    border-radius: 3px;
    background: rgba(255, 255, 255, .2);
    text-shadow: none;
}

.hero .carousel-control.right {
    bottom: 92px;
}

.hero .carousel-control:hover {
    cursor: pointer;

    background: rgba(255, 255, 255, .5);
}

/**  Navigation  **/

.navbar {
    margin: 0;

    border: none;
    border-radius: 0;
    background: #fff;
}

.navbar .container > div,
.navbar .container .navbar-collapse {
    height: 102px !important;
    padding: 0;
}

.navbar .navbar-header {
    position: relative;
    top: 50%;

    transform: translateY(-50%);
}

.navbar .btn {
    position: relative;
    top: 50%;

    float: right;

    margin-left: 20px;

    transform: translateY(-50%);
}

.nav {
    float: right;
}

.nav li {
    padding: 42px 0;
}

.nav li a {
    font-size: 16px;
    font-weight: 700;

    overflow: hidden;

    height: 1.2em;
    padding: 0 25px;

    color: #585858;
}

.nav li a:after {
    position: absolute;
    top: 5px;
    right: 0;

    display: block;

    width: 1px;
    height: 15px;

    content: '';

    background: #e2e2e1;
}

.nav li:last-child a:after {
    display: none;
}

.nav li a span {
    position: relative;

    display: inline-block;

    -webkit-transition: -webkit-transform .3s;
       -moz-transition:    -moz-transform .3s;
            transition:         transform .3s;
}

.nav li a span::before {
    font-weight: 700;

    position: absolute;
    top: 100%;

    content: attr(data-hover);
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}

.nav li a:hover {
    -webkit-transform: rotateX(0deg);

    color: #fff;
    background: none;
}

.nav li a:hover span,
.nav li a:focus span {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
            transform: translateY(-100%);

    color: #879d3e;
}

.nav li.active {
    -webkit-box-shadow: inset 0 -4px 0 0 #879d3e;
       -moz-box-shadow: inset 0 -4px 0 0 #879d3e;
            box-shadow: inset 0 -4px 0 0 #879d3e;
}

.nav li.active a {
    color: #879d3e;
}

.nav li.active:hover a,
.nav li.active a:hover span {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
}

.nav li.active:hover ul a {
    color: #585858;
}

/**  Dropdown  **/

.nav .dropdown-menu {
    z-index: 0;
    top: 93px;

    display: block;
    visibility: hidden;

    padding: 10px 0 0 0;

    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
            transform: scale(1.3);

    opacity: 0;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, .95);
    box-shadow: none;
}

.nav li.dropdown:hover .dropdown-menu {
    z-index: 10;
    visibility: visible;

    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

.nav .dropdown-menu li {
    padding: 0;
}

.nav .dropdown-menu li a {
    font-size: 16px;

    height: auto;
    padding: 10px 25px;

    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.nav .dropdown-menu li a span:before {
    display: none;
}

.nav .dropdown-menu li a:hover span:before,
.nav .dropdown-menu li a:hover span {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
            transform: translateY(0%);

    color: #fff;
}

body .nav .dropdown-menu li a:hover,
body .nav .dropdown-menu li.active a {
    color: #fff;
    background: #879d3e;
}

/**  Scroll navigation  **/

.admin-bar .banner--clone {
    top: 32px;
}

.admin-bar .vbox-close {
  top: 34px;
}

.banner--clone {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;

    width: 100%;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);

    border-bottom: 1px solid #e7e7e7;
    background: rgba(255, 255, 255, .95);
}

.banner--clone .btn {
  display: none;
}

.banner--clone .nav .dropdown-menu {
    display: none;
}

.banner--stick {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

.banner--stick .site-name {
    font-weight: bold;

    display: block;
}

.banner--stick .navbar-header img {
    max-width: 75%;
}

.banner--stick .nav li {
    padding: 43px 0;
}

.banner--stick .nav li a {
    font-size: 15px;
}

.banner--stick .navbar .container,
.banner--stick .navbar .navbar-collapse {
    height: 83px !important;
}

.banner--stick .nav li.dropdown:hover .dropdown-menu {
    z-index: 10;

    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

.banner--stick .nav .dropdown-menu {
    z-index: 0;
    top: 103px;

    display: block;

    padding: 0;

    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    -webkit-transform: scale(1.3);
       -moz-transform: scale(1.3);
            transform: scale(1.3);

    opacity: 0;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, .95);
    box-shadow: none;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .15);
}

.banner--stick .nav .dropdown-menu li {
    padding: 0;
}

.banner--stick .nav .dropdown-menu li a {
    font-size: 16px;

    height: auto;
    padding: 10px;

    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
    text-indent: 11px;
}

/**  Testimonials  **/

.testimonial .bubble {
    position: relative;

    margin-bottom: 30px;
    padding: 30px;

    background: #f0f0f0;
}

.testimonial .bubble:after {
    position: absolute;
    bottom: -15px;
    left: 0;

    display: block;

    width: 0;
    height: 0;

    content: '';

    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: transparent #dedede transparent transparent;
}

.testimonial .bubble p:last-child {
    margin-bottom: 0;
}

.testimonial img {
    float: left;

    margin: 0 25px 0 0;

    border-radius: 50%;
}

.testimonial h6 {
    font-size: 15px;

    margin: 50px 0 0 0 ;
}

.testimonial span {
    font-size: 15px;

    color: #96ae4a;
}

/**  Accordion  **/

.accordion h5 {
    font-size: 16px;

    padding: 16px 20px;

    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    border: 1px solid #f0f0f0;
    border-left-width: 60px;
}

.accordion h5:hover {
    border-color: #abc654;
}

.accordion h5:hover span:before {
    color: #fff;
}

.accordion h5 span {
    font-family: FontAwesome;
    font-size: 12px;

    position: relative;

    display: block;
}

.accordion h5 span:before {
    position: absolute;
    top: 3px;
    left: -52px;

    content: '\f067';
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    color: #96ae4a;
}

.accordion h5.ui-state-active {
    color: #96ae4a;
    border-color: #abc654;
}

.accordion h5.ui-state-active span:before {
    content: '\f068';

    color: #fff;
}

.accordion div {
    padding: 10px 0;
}

/**  Slick slider  **/

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    margin: 0 -20px;
}

a.img-bg,
header.img-bg {
    position: relative;

    display: block;
    overflow: hidden;

    margin-bottom: 20px;

    text-align: center;

    background: #151414;
}

a.img-bg *,
header.img-bg * {
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
}

header.img-bg aside {
    height: 100px;
}

.img-bg img {
    display: block;

    width: 100%;
}

.img-bg:hover img {
    transform: scale(1.1);

    opacity: .15;
}

.img-bg span:first-child {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3em;

    color: #fff;
}

.img-bg span {
    font-size: 15px;
    font-weight: 600;

    display: block;

    color: #abc654;
}

.img-bg i {
    margin-top: 15px;

    color: #fff;
}

.img-bg:hover aside {
    transform: scale(1);

    opacity: 1;
}

.img-bg aside {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    height: 80px;
    height: 70px;
    margin: auto;

    transform: scale(1.5);

    opacity: 0;
}

.img-bg .social a {
    line-height: 30px;

    width: 30px;
    height: 30px;
    margin: 15px 2px 0 2px;

    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.img-bg .social a:hover {
    color: #abc654;
    border-color: #abc654;
}

.fa.slick-arrow {
    font-size: 12px;
    line-height: 38px;

    position: absolute;
    top: -120px;
    right: 0;

    display: inline-block;

    width: 38px;
    height: 38px;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
    text-align: center;

    color: #96ae4a;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    background: none;
}

.fa.slick-arrow.fa-chevron-left {
    right: 42px;
}

.fa.slick-arrow:hover {
    cursor: pointer;

    color: #fff;
    border-color: #96ae4a;
    background: #96ae4a;
}

.one-col .fa.slick-arrow {
    z-index: 1;
    top: 50%;

    transform: translateY(-19px);
}

.one-col .fa.slick-arrow {
    border: none;
    background: #fff;
}

.one-col .fa.slick-arrow:hover {
    background: rgba(255, 255, 255, .5);
}

.one-col .fa.slick-arrow.fa-chevron-left {
    right: auto;
    left: 0;

    border-radius: 0 3px 3px 0;
}

.one-col .fa.slick-arrow.fa-chevron-right {
    right: -1px;

    border-radius: 3px 0 0 3px;
}

.one-col .slick-slide {
    margin: 0;
}

.one-col .slick-list {
    margin: 0;
}

/**  Call to action  **/

.cta h4 {
    font-size: 32px;

    color: #fff;
}

.cta h5 {
    font-size: 18px;
    font-weight: 600;

    margin: 0;

    color: #fff;
}

.cta .btn {
    float: right;
}

.cta.dark h4 {
    color: #abc654;
}

/**  Projects  **/

.projects,
.photo-grid {
    overflow: hidden;
}

.projects div,
.photo-grid div {
    padding: 0;
}

.projects a.img-bg,
.photo-grid a.img-bg {
    margin-bottom: 0;
}

#categories-portfolio {
    margin: 0;
    padding: 0;

    list-style: none;

    text-align: right;
}

#categories-portfolio li {
    display: inline-block;
}

#categories-portfolio li a {
    font-size: 13px;
    font-weight: 600;

    display: block;

    margin: 0 0 0 10px;
    padding: 8px 15px;

    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #7a7a7a;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
}

#categories-portfolio li.active a {
    color: #96ae4a;
}

#categories-portfolio li.active a:hover {
    color: #96ae4a;
    border-color: #e6e6e6;
    background: none;
}

#categories-portfolio li a:hover {
    color: #fff;
    border-color: #96ae4a;
    background: #96ae4a;
}

.portfolio-content #portfolio-list {
    padding: 0;
}

.portfolio-content .portfolio-item {
    display: none;
}

.portfolio-content .portfolio-item {
    display: none;
    float: left;

    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    width: 33.3%;
    margin-bottom: 40px;
    padding: 0 15px;

    text-align: center;

         -o-box-sizing: border-box;
}

.portfolio-content .portfolio-item a:hover,
#categories-portfolio li a:hover {
    transform: rotateX(0);

    webkit-transform: rotateX(0);
    -webkit-transform-style: preserve-3d;
}

.portfolio-content .portfolio-item h5 {
    margin-bottom: 5px;
}

.portfolio-content .portfolio-item mark {
    font-style: 15px;

    padding: 0;

    color: #96ae4a;
    background: none;
}

/**  Latest news  **/

.latest-news article {
    position: relative;
}

.latest-news .time {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    padding: 10px 10px 5px 10px;

    background: #fff;
}

.latest-news .meta-data {
    margin-top: -10px;
}

.latest-news .meta-data span {
    display: inline-block;

    margin: 0 5px;
}

.latest-news .time p {
    font-size: 46px;
    font-weight: 700;
    line-height: .7em;

    margin: 0;

    text-align: center;

    color: #abc654;
}

.latest-news .time p span {
    font-size: 15px;
    font-weight: 600;

    display: block;

    text-transform: uppercase;

    color: #585858;
}

/**  Error 404  **/

.error404 .content {
    text-align: center;
}

.error404 .search-field {
    padding: 16px 20px;

    transform: translateY(2px);
}

/**  Form styles  **/

.fw-flash-messages {
  padding: 0;
  margin-bottom: 10px;
}

.fw-flash-messages ul {
  margin: 0;
  padding: 8px;
  text-align: center;
  list-style: none;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: bold;
}

.fw-flash-messages ul.fw-flash-type-success {
  background: #eaf0d3;
  border-color: #abc654;
  color: #92ad3a;
}

.fw-flash-messages ul.fw-flash-type-error {
  background: #fcb9b9;
  border-color: #f74747;
  color: #bf0808;
}

::-webkit-input-placeholder {
    font-size: 15px !important;
    font-style: normal !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-size: 15px !important;
    font-style: normal !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 15px !important;
    font-style: normal !important;
}

:-ms-input-placeholder {
    font-size: 15px !important;
    font-style: normal !important;
}

.form-builder-item label {
    display: none;
}

.form-builder-item input,
.form-builder-item textarea {
    font-size: 15px;

    height: auto;
    padding: 12px;
}

.form-builder-item textarea {
    min-height: 175px;
}

.form-builder-item .field-text {
    margin: 0;
    padding: 0;
}

.form-wrapper input[type='submit'] {
    color: #fff;
    border-color: #abc654;
    border-bottom: 4px solid #96ae4a;
    background: #abc654;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}

.form-wrapper input[type='submit']:hover,
.form-wrapper input[type='submit']:focus {
    color: #fff;
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
    background: #3b3a39;
}

input,
textarea,
select {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 12px;

    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;

    color: #a4a4a4;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    box-shadow: none;
}

input:focus,
textarea:focus {
    border: 1px solid #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .1);
}

input[type='submit'] {
    font-size: 14px;
    font-weight: 700;

    width: auto;
    padding: 15px 30px;

    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-transform: uppercase;

    color: #fff;
    border-radius: 3px;
}

#map {
    height: 550px;
}

/**  Icon sidebar  **/

.icon-box {
    overflow: hidden;
}

.icon-box i {
    font-size: 24px;
    line-height: 65px;

    float: left;

    width: 65px;
    height: 65px;
    margin-right: 30px;

    text-align: center;

    color: #abc654;
    border: 1px solid #efefef;
    border-radius: 50%;
}

.icon-box h5 {
    margin: 5px 0;
}

.icon-box.fw-iconbox-1 i {
    float: none;

    margin: 0 0 15px 0;
}

/**  Icons  **/

.single-ico {
  display: block;
}

.single-ico.centred {
  text-align: center;
} 

i.icon {
    font-size: 34px;

    margin-bottom: 20px;

    color: #abc654;
}

i.icon-left {
    float: left;

    margin-top: 8px;
}

i.icon-left + h4 + p,
i.icon-left + h4 {
    padding-left: 60px;
}

i.icon-left + h4 {
    margin-bottom: 5px;
}

/**  Pricing tables  **/

.pricing-table {
    padding: 40px;

    text-align: center;

    border: 1px solid #e6e6e6;
    background: #fff;
}

.pricing-table header {
    padding-bottom: 30px;

    border-bottom: 1px solid #e6e6e6;
}

.pricing-table header h4 {
    font-size: 24px;
}

.pricing-table header span {
    font-size: 40px;

    color: #abc654;
}

.pricing-table ul {
    margin: 20px 0;
    padding: 0;

    list-style: none;
}

.pricing-table ul li {
    display: block;

    padding: 10px 0;

    list-style: none;
}

/**  Button styles  **/

a.btn,
a.btn:hover,
.btn:focus,
.submit,
.submit:hover,
.submit:focus
input[type='submit'],
input[type='submit']:hover,
input[type='submit']:focus {
    font-size: 14px;
    font-weight: 700;

    padding: 15px 30px;

    -webkit-transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-transform: uppercase;

    color: #fff;
    border-radius: 3px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-default,
.submit {
    color: #fff;
    border-color: #abc654;
    border-bottom: 4px solid #96ae4a;
    background: #abc654;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}

.btn-default:hover,
.btn-default:focus,
.submit:hover,
.submit:focus {
    color: #fff;
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
    background: #3b3a39;
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, .3);
    background: none;
}

.btn-ghost:hover {
    border-color: #3b3a39;
    background: #3b3a39;
}

.btn.btn-ghost-green,
.btn-ghost-green {
    color: #abc654;
    border: 2px solid #abc654;
    background: none;
}

.btn.btn-ghost-green:hover,
.btn-ghost-green:hover {
    color: #3b3a39;
    border: 2px solid #3b3a39;
    background: none;
}

.split-btn {
    position: relative;
}

.split-btn .btn.left {
    border-radius: 3px 0 0 3px;
}

.split-btn .btn.right {
    transform: translateX(-36px);

    border-color: #879d3e;
    border-bottom-color: #778a36;
    border-radius: 0 3px 3px 0;
    background: #879d3e;
}

.split-btn .btn.right:hover,
.split-btn .btn.right:focus {
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
    background: #3b3a39;
}

.split-btn span {
    font-weight: bold;
    line-height: 26px;

    position: relative;
    z-index: 1;

    display: inline-block;

    width: 32px;
    height: 32px;

    transform: translateX(-20px);
    text-align: center;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #31302f;
}

.btn i {
    margin-right: 10px;
}

/**  Services  **/

.service {
    display: none;

    margin-bottom: 30px;
}

.show {
    display: block;
}

/**  Number counter  **/

.counter {
    font-size: 20px;
    font-weight: 600;

    position: relative;

    text-align: center;

    color: #fff;
}

.counter span {
    font-size: 60px;
    font-weight: 300;

    display: block;
}

.counter:after {
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 1px;
    height: 40px;

    content: '';

    background: rgba(255, 255, 255, .3);
}

/**  Logos  **/

.logos img {
    margin: 0 auto;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;

    opacity: .4;

    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}

.logos img:hover {
    opacity: 1;

    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}

/**  Masonry blog  **/

#masonry {
    padding-bottom: 60px;
}

#masonry article.post.sticky {
    background: none;
}

#masonry article.post.sticky .content {
  background: #f8f8f8;
}

#masonry article.post {
    box-sizing: border-box;
    width: 48%;
    margin: 0 0 30px 0;
    padding: 0 15px;

    border-bottom: none;
}

#masonry article.post a {
    margin: 0;
}

#masonry article.post .time {

    position: absolute;
    z-index: 1;
    top: 2px;
    left: 2px;

    border: none;
    border-radius: 0;
    background: #fff;
}

#masonry article.post a:hover .time {
    opacity: 0;
}

#masonry article.post .content {
    padding: 30px;

    border: 1px solid #e6e6e6;
    border-top: none;
}

#masonry article.post .content p:last-child {
    margin: 0;
}

#masonry .pages {
    position: absolute;

    width: 100%;
}

/**  Blog posts  **/

.single article.post {
    margin-bottom: 40px;
}

article.post a.img-bg {
  display: inline-block;
}

article input {
    padding: 15px 18px 18px 18px;
}

article.post.sticky {
    padding: 50px;

    background: #f9f9f9;
}

article.post.sticky:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;

    position: absolute;
    z-index: 1;
    top: 7px;
    right: 22px;

    display: inline-block;

    content: '\f005';

    color: #fff;

    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article.post.sticky:after {
    position: absolute;
    top: 0;
    right: 15px;

    display: block;

    width: 0;
    height: 0;

    content: '';

    border-width: 0 50px 50px 0;
    border-style: solid;
    border-color: transparent #337ab7 transparent transparent;
}

article.post {
    margin-bottom: 60px;
    padding-bottom: 60px;

    border-bottom: 1px solid #e6e6e6;
}

article.post:last-child {
    margin-bottom: 30px;
}

article.post .time {
    display: inline-block;
    float: left;

    margin-right: 15px;
    padding: 5px 10px;

    text-align: center;

    border: 1px solid #e6e6e6;
    border-radius: 3px;
}

article.post .time p {
    font-size: 22px;
    font-weight: 600;
    line-height: .85em;

    margin: 0;

    color: #96ae4a;
}

article.post .time p span {
    font-size: 14px;
    font-weight: 400;

    display: block;

    color: #7a7a7a;
}

article.post header h2 {
    font-size: 24px;

    margin-bottom: 2px;
}

article.post header h2 a {
    color: #585858;
}

article.post h2 {
    font-size: 30px;
}

.comments h3,
h3.comment-reply-title {
    font-size: 18px;
}

.post-password-form input {
    height: 60px;
    line-height: 30px;
}

.post-password-form input[type="submit"] {
    border: none;
    transform: translateY(1px);
}

.gallery-item {
    display: inline-block;
    max-width: 33.33%;
    padding: 0 1.1400652% 2.2801304%;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-icon img {
    margin: 0 auto 10px auto;
}

.gallery-columns-1 .gallery-item {
    max-width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.1%;
}

.gallery-columns-8 figcaption,
.gallery-columns-9 figcaption {
    display: none;
}

/**  Blog sidebar  **/

.sidebar .widget {
    margin-bottom: 60px;
}

.sidebar .search-form {
    position: relative;
}

.sidebar .search-form span {
    display: none;
}

.sidebar .search-form label {
    width: 100%;
    margin: 0;
}

.sidebar .search-form input {
    font-weight: normal;

    margin: 0;
}

.sidebar .search-form:before {
    font: normal normal normal 14px/1 FontAwesome;

    position: absolute;
    top: 16px;
    right: 16px;

    display: inline-block;

    content: '\f002';
}

.sidebar .search-form .search-submit {
    font-size: 0;

    position: absolute;
    top: 0;
    right: 0;

    height: 45px;

    border: none;
    border-radius: 0;
    background: transparent;
}

.sidebar .search-form .search-submit:focus,
.sidebar .search-form .search-submit:hover {
    border: none;
    box-shadow: none;
}

.sidebar ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sidebar ul li a {
    display: inline-block;

    padding: 10px 0;
}

.sidebar ul li a span {
    display: inline-block;

    margin-left: 10px;

    color: #9f9f9f;
}

.sidebar .tagcloud a {
    font-size: 15px !important;

    display: inline-block;

    margin: 0 5px 8px 0;
    padding: 8px 12px;

    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;

    color: #7a7a7a;
    border: 1px solid #f0f0f0;
    background: #f0f0f0;
}

.sidebar .tagcloud a:hover {
    color: #96ae4a;
    border-color: #e6eecb;
    background: transparent;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .06);
}

.sidebar #wp-calendar {
    width: 100%;
}

.sidebar #wp-calendar caption {
    font-weight: bold;

    padding: 12px 0;

    text-align: center;
}

.sidebar #wp-calendar th {
    padding: 5px;

    text-align: center;

    color: #5c5c5c;
    background: #f7f7f7;
}

.sidebar #wp-calendar td {
    padding: 5px;

    text-align: center;
}

.sidebar #wp-calendar td#today {
    color: #96ae4a;
}

.sidebar #wp-calendar tfoot #prev {
    text-align: left;
}

/**  Single blog post  **/

.post.single {
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.post.single > img {
    margin-bottom: 30px;
}

.page-nav {
    overflow: hidden;

    margin: 0 15px 30px 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid #e6e6e6;
}

.page-nav a {
    transform: translateY(10px);
}

.page-nav div:nth-child(2) {
    text-align: center;
}

.page-nav div:nth-child(2) a {
    padding: 10px 12px;

    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    transform: translateY(0);

    border: 1px solid #f0f0f0;
}

.page-nav div:nth-child(2) a:hover {
    transform: rotate(180deg);

    color: #fff;
    border-color: #96ae4a;
    border-radius: 50%;
    background: #96ae4a;
}

.page-nav div:nth-child(3) {
    text-align: right;
}

p.post-tags {
    transform: translateY(10px);
}

p.post-tags a {
    color: #9d9d9d;
}

p.post-tags a:hover {
    color: #96ae4a;
}

.social-sharing {
    text-align: right;
    margin-bottom: 60px;
}

.social-sharing a,
.social-sharing a:active,
.social-sharing a:visited {
    line-height: 46px;

    display: inline-block;

    width: 46px;
    height: 46px;
    margin-left: 2px;

    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    text-align: center;

    color: #9d9d9d;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
}

.social-sharing a:hover {
    color: #fff;
}

/**  Comments  **/

.commentform p {
    margin: 0;
}

.post-comments {
    padding-top: 60px;
    padding-bottom: 60px;
}

.post-comments .testimonial {
    margin: 60px 0;
}

.post-comments .testimonial span {
    color: #9d9d9d;
}

.post-comments .testimonial .reply {
    float: right;
}

.post-comments .testimonial > .bubble .testimonial,
.post-comments .testimonial > .bubble .testimonial .bubble {
    background: #fff;
}

.post-comments .testimonial > .bubble .testimonial {
    margin: 20px 0 0 0;
    padding: 30px 30px 50px 30px;
}

.post-comments .testimonial > .bubble .testimonial .bubble {
    padding: 0;
}

.post-comments .testimonial > .bubble .testimonial .bubble:after {
    display: none;
}

.post-comments .testimonial > .bubble .testimonial h6 {
    margin-top: 40px;
}

.post-comments .testimonial > .bubble .testimonial img {
    max-width: 60px;
}

.comments-area {
    margin-bottom: 80px;
    padding-top: 40px;
}

.comment-list {
    margin: 80px 0;
    padding: 0;
}

.comment-list .testimonial:after {
    display: block;
    clear: both;

    margin-bottom: 15px;

    content: '';
}

.comment-list .children {
    margin: 50px 0 50px 20px;
}

.comment-reply-link {
    float: right;
}

.comment-reply-link:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;

    display: inline-block;

    margin-right: 5px;

    content: '\f112';

    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/**  Pagination  **/

.pagination {
    width: 100%;
    margin: 0 0 80px 0;

    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination a:first-child,
.pagination a:last-child {
    border-radius: 0;
}

.pagination a,
.pagination a:visited,
.pagination a:active {
    margin: 0 3px;
    padding: 7px 17px;

    color: #7a7a7a;
    border: 1px solid #f0f0f0;
}

.pagination span.current,
.post.pagination > span {
    margin: 0 3px;
    padding: 7px 17px;

    color: #96ae4a;
    border: 1px solid #f0f0f0;
    background: transparent;
    box-shadow: none;
}

.pagination a:hover {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);

    color: #96ae4a;
    border-color: #e6eecb;
    background: transparent;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .06);

    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/**  Footer  **/

footer {
    font-size: 15px;
    font-weight: 600;

    color: #b8b7b7;
    background: #2c2b2b;
}

footer h6 {
    font-size: 20px;

    color: #fff;
}

footer img {
    margin: 20px 0 40px 0;
}

footer .copyright,
footer .copyright a {
    font-size: 14px;

    margin: 0;

    color: rgba(255, 255, 255, .25);
}

footer .menu-footer-1-container {
    display: inline;
    float: left;
}

footer .menu-footer-2-container {
    display: inline;
    float: right;
}

footer ul {
    display: inline-block;

    margin: 0;
    padding: 0;
}

footer ul li {
    list-style: none;
}

footer ul li a,
footer ul li a:link,
footer ul li a:visited,
footer ul li a:active {
    display: block;

    padding-bottom: 7px;

    color: #7a7a7a;
}

footer ul li a:hover {
    color: #abc654;
}

footer i.fa {
    display: inline-block;

    width: 30px;

    color: #abc654;
}

footer .social {
    margin-top: 35px;
}

footer .social * {
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
    text-decoration: none;
}

footer .social a:first-child {
    padding-left: 0;
}

footer .social a {
    font-size: 14px;

    position: relative;

    display: inline-block;
    overflow: hidden;

    margin: 0 0 -5px 0;
    padding: 18px;

    color: rgba(255, 255, 255, .35);
}

footer .social a:before {
    display: inline-block;

    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
}

footer .social a:first-child span {
    text-align: left;
}

footer .social a span {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;

    margin: auto;

    text-align: center;
}

footer .social a:hover {
    color: #abc654;
}

footer .social a:hover:before {
    transform: translateY(-60px);
}

footer .social a:hover span {
    top: 18px;
}

/**  WordPress specific **/

.fw-container-fluid {
    padding: 0;
}

.edit-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.edit-link a {
    display: block;

    padding: 15px 20px;

    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 3px;
    background: rgba(255, 255, 255, .2);
}

.edit-link a:hover {
    color: #fff;
}

/**  WORDPRESS SPECIFIC  **/

table {
    width: 100%;
    margin-bottom: 30px;
}

table thead tr,
table thead tr:nth-child(odd) {
    background: none;
}

table tr:nth-child(odd) {
    background: #f8f8f8;
}

table tr th,
table tr td {
    padding: 8px 10px;
}

dl dd {
    margin-bottom: 30px;
}

.alignleft {
    float: left;

    margin: 0 20px 20px 0;
}

.alignright {
    float: right;

    margin: 0 0 20px 20px;
}

figure {
    max-width: 100%;
}

.wp-caption figcaption {
    margin-bottom: 20px;
    padding: 10px;

    background: #f8f8f8;
}

.format-quote p {
    font-size: 18px;
    font-style: italic;
}

.single-format-chat p:nth-child(odd) {
    font-style: italic;
}

/**  Keyframes  **/

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);

        opacity: 0;
    }
    50% {
        transform: scale(1.1);

        opacity: .5;
    }
    100% {
        transform: scale(1) ;

        opacity: 1;
    }
}
@-moz-keyframes zoomIn {
    0% {
        transform: scale(0);

        opacity: 0;
    }
    50% {
        transform: scale(1.1);

        opacity: .5;
    }
    100% {
        transform: scale(1) ;

        opacity: 1;
    }
}
@-o-keyframes zoomIn {
    0% {
        transform: scale(0);

        opacity: 0;
    }
    50% {
        transform: scale(1.1);

        opacity: .5;
    }
    100% {
        transform: scale(1) ;

        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0);

        opacity: 0;
    }
    50% {
        transform: scale(1.1);

        opacity: .5;
    }
    100% {
        transform: scale(1) ;

        opacity: 1;
    }
}



@-webkit-keyframes slowZoom {
    0% {
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
@-moz-keyframes slowZoom {
    0% {
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
@-o-keyframes slowZoom {
    0% {
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
@keyframes slowZoom {
    0% {
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/**  MEDIA QUERIES  **/

@media (max-width: 1200px) {
    .top-bar .email,
    .top-bar .hours {
        margin-left: 35px;
    }

    .top-bar .social a {
        padding: 18px 13px;
    }

    .nav li a {
        padding: 0 15px;
    }

    .hero {
        height: 60%;
    }

    .hero .carousel-indicators {
        width: 940px;
    }

    hr.height-80 {
        height: 50px;
    }

    .split-btn .btn {
        font-size: 13px;
    }

    #masonry article.post {
        width: 47.8%;
    }

    footer .social a {
        padding: 18px 15px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 60%;
    }

    .hero .blurb h1,
    .page-title h1 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .top-bar .social {
        display: none;
    }

    .navbar .btn {
        display: none;
    }

    .hero {
        height: 50%;
    }

    .hero .carousel-indicators {
        width: 720px;
    }

    .page-title img {
        width: auto;
        max-width: 150%;
        min-height: 100%;
    }

    .tablet-hide {
        display: none;
    }

    .fa.slick-arrow {
        display: none !important;
    }

    .page-title img {
      width: 100%;
    }

    .split-btn .btn {
        font-size: 14px;

        display: block;

        margin-bottom: 2px;
    }

    .split-btn span {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        display: block;

        margin: auto;

        transform: translateX(0px);
    }

    .split-btn .btn.left {
        border-radius: 3px 3px 0 0;
    }

    .split-btn .btn.right {
        transform: translateX(0);

        border-radius: 0 0 3px 3px;
    }

    article.post {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .sidebar .widget {
        margin-bottom: 30px;
    }

    #categories-portfolio {
        text-align: left;
    }

    .pricing-table {
        padding: 20px 20px 30px 20px;
    }

    .counter {
        margin: 10px 0;
    }

    .counter:after {
        display: none;
    }

    .logos img {
        max-width: 85%;
    }

    #masonry article.post {
        width: 100%;
        padding-right: 30px;
    }

    footer .copyright {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .padding-100 {
        padding: 100px 15px;
    }

    .padding-80 {
        padding: 80px 15px;
    }

    .padding-40 {
        padding: 40px 15px;
    }

    .padding-15-80 {
        padding: 15px 15px 80px 15px;
    }

    .padding-80-0 {
        padding: 80px 15px 0 15px;
    }

    .padding-0 {
        padding: 0 15px;
    }

    .padding-0-0-60-0 {
        padding: 0 15px 60px 15px;
    }

    .mobile-padding {
        padding-bottom: 40px;
    }

    .top-bar .hours {
        display: none;
    }

    .nav {
        float: none;

        margin: 0;
    }

    .nav li {
        padding: 0;
    }

    .nav li.active {
        -webkit-box-shadow: none;
           -moz-box-shadow: none;
                box-shadow: none;
    }

    .nav li a {
        display: block;

        height: auto;
        padding: 15px 60px;

        color: rgba(255, 255, 255, .4);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav li a:hover {
        color: #fff;
        background: #879d3e;
    }

    .nav li a:hover span {
        color: #fff;
    }

    .nav li a:hover span,
    .nav li a:focus span {
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
                transform: translateY(0);
    }

    .nav li a:after,
    .nav li a span:before {
        display: none;
    }

    .navbar .navbar-collapse {
        overflow-x: hidden;

        margin: 0 -15px;
        padding: 0;

        background: #3b3a39;
    }

    .navbar .container > div,
    .navbar .container .navbar-collapse {
        height: auto !important;
    }

    .navbar .navbar-header {
        position: relative;
        top: 0;

        padding: 15px 0;

        transform: translateY(0);
    }

    .navbar-toggle {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;

        margin: auto;
        padding: 0;
    }

    .navbar-toggle .icon-bar {
        background: #96ae4a;
    }

    .nav .dropdown-menu,
    .banner--stick .nav .dropdown-menu {
        position: static;

        float: none;

        padding: 0;

        transform: scale(1);

        opacity: 1;
        background: rgba(0, 0, 0, .2);
    }

    .nav .dropdown-menu li a,
    .banner--stick .nav .dropdown-menu li a {
        padding: 15px 50px;

        text-indent: 15px;
    }

    .banner--stick .nav li {
        padding: 0;
    }

    .hero,
    .hero .carousel,
    .hero .carousel-inner,
    .hero .item {
        height: 40%;
        min-height: 400px;
    }

    .hero .item img {
        position: absolute;

        width: auto;
        max-width: none;
        height: 100%;
    }

    .hero .blurb h1,
    .page-title h1 {
        font-size: 46px;
    }

    .hero .blurb p {
        font-size: 24px;
        line-height: 1.2em;
    }

    .hero .carousel-control {
        font-size: 14px;
        line-height: 40px;

        width: 40px;
        height: 40px;
    }

    .hero .carousel-control.right {
        bottom: 72px;
    }

    .hero .carousel-indicators {
        bottom: 20px;

        width: 665px;
    }

    header.title {
        margin-right: 15px;
        margin-left: 15px;
        padding-bottom: 20px;
    }

    .white {
        margin: 0;
    }

    .mobile-hide {
        display: none;
    }

    .carousel.slide {
        margin: 0;
    }

    .slide {
        margin: auto 15px;
    }

    .slide.one-col {
        margin-bottom: 50px;
    }

    .slide.one-col img {
        width: 100%;
    }

    .portfolio-content .portfolio-item {
        width: 50%;
    }

    .cta {
        text-align: center;
    }

    .cta h5 {
        font-size: 16px;
    }

    .cta .btn {
        float: none;

        margin: 20px auto 0 auto;
    }

    i.icon {
        float: left;
    }

    i.icon + h4 + p,
    i.icon + h4 {
        padding-left: 50px;
    }

    .sidebar {
        padding-top: 60px;

        background: #f8f8f8;
    }

    .sidebar .widget {
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    #masonry article.post {
        width: 100%;
        padding: 0 30px 0 0;
    }
}

@media (max-width: 480px) {
    .top-bar .tel {
        margin-left: 0;
        padding: 15px 0 7px 0;
    }

    .top-bar .email {
        margin-left: 0;
        padding: 7px 0 15px 0;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .hero .item img {
        position: static;

        max-width: 100%;
        height: auto;
    }

    .hero .blurb {
        position: static;

        margin: 0;
        padding: 20px 20px 30px 20px;

        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
                transform: translateY(0);

        background: #3b3a39;
        text-shadow: none;
    }

    .hero .item .container {
        position: static;

        padding: 0;
    }

    .hero .blurb h1,
    .page-title h1 {
        font-size: 32px;
    }

    .hero .blurb p {
        font-size: 20px;
        font-weight: 600;
    }

    .hero .btn {
        display: block;

        margin: 5px 0;
    }

    .hero .item img {
        -webkit-animation: none;
           -moz-animation: none;
             -o-animation: none;
                animation: none;
    }

    .hero .carousel-control,
    .hero .carousel-indicators {
        display: none;
    }

    header.title .fa {
        float: none;

        margin: 0 auto 10px auto;
    }

    header.title h2 {
        font-size: 30px;
        line-height: 1.2em;

        text-align: center;
    }

    .padding-80 {
        padding: 60px 15px;
    }

    #categories-portfolio li {
        display: block;

        margin-bottom: 5px;

        text-align: center;
    }

    .portfolio-content .portfolio-item {
        width: 100%;
    }

    .icon-left + h4 + p:after {
        display: block;

        height: 15px;

        content: '';
    }

    .post-comments .testimonial .reply {
        display: block;
        float: none;

        margin-top: 10px;
    }

    .page-nav div:nth-child(2) {
        display: none;
    }

    .social-sharing {
        display: inline-block;

        margin-top: 25px;

        text-align: left;
    }

    .comment-list .children {
        margin: 10px 0;
        padding: 0 0 0 10px;
    }

    footer ul {
        display: block;
    }

    footer ul:last-child {
        float: none;

        margin-bottom: 30px;
    }
}

.col-md-10.col-md-center {
    float: none;

    margin: auto;
}

img.icon {
    float: left;

    margin-top: 8px;
    margin-right: 10px;
    margin-bottom: 20px;
}
