@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css");
@import url("https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/venobox/1.6.0/venobox.min.css");
@import url("http://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css");
@import url("https://fonts.googleapis.com/css?family=Neuton:400,300,400italic,700,200,800%7CSource+Sans+Pro:400,200,200italic,300,700italic,700,600italic,600,400italic,300italic");

/** 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 {
    background: #72AA43;
    color: #fff;
}

::selection {
    background: #72AA43;
    color: #fff;
}

html, body {
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #7a7a7a;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

a,
a:active,
a:visited {
    text-decoration: none;
    color: #72AA43;
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

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

p a:hover,
li a:hover {
    -webkit-transform: rotateX(360deg);
    -webkit-transform-style: preserve-3d;
    transform: rotateX(360deg);
    transform-style: preserve-3d;
}

p {
    margin: 0 0 15px 0;
    line-height: normal;
}

em {
    font-style: normal;
    font-style: 16px;
    font-weight: bold;
    margin: 0 0 15px 0;
    display: inline-block;
}

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

h2,
h3,
h4,
h5,
h6 {
    font-family: 'Neuton', serif;
    font-weight: 700;
    color: #585858;
    margin: 0 0 20px 0;
}

h2 {
    font-size: 40px;
}

h2 span {
    font-family: 'Source Sans Pro', sans-serif;
    color: #72AA43;
    font-size: 20px;
    font-weight: 600;
    display: block;
}

h4 {
    font-size: 26px;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

h5 {
    font-size: 19px;
    margin-bottom: 15px;
}

h6 {
    font-size: 16px;
}

*:focus {
    box-shadow: none;
    outline: none;
}

blockquote {
    font-size: 14px;
    color: #72AA43;
    padding: 0 20px;
    border-left: 2px solid #72AA43;
    margin-left: 10px;
}

blockquote:before {
    content: '\f10d';
    display: inline-block;
    font: normal normal normal 20px/1 FontAwesome;
    background: #fff;
    transform: translateX(-22px);
}

/**  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: #72AA43;
    -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: #72AA43;
    -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-attachment: fixed !important;
    background-repeat: no-repeat !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;
    background: #e6e6e6;
    border: none;
}

hr.height-80 {
    border: none;
    height: 80px;
    margin: 0;
}

hr.height-30 {
    border: none;
    height: 30px;
    margin: 0;
}

hr.height-40 {
    border: none;
    height: 40px;
    margin: 0;
}

.center {
    text-align: center;
}

/**  Top page title  **/

.page-title {
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #585858;
}

.page-title:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-family: 'Neuton', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.page-title .breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-title .breadcrumbs li {
    font-family: 'Neuton', serif;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    padding: 0 5px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.page-title .breadcrumbs li a {
    color: #fff;
}

.page-title .breadcrumbs li:last-child span {
    max-width: 360px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(8px);
}

/**  Header titles  **/

header.title {
    padding-bottom: 25px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

header.title h2 {
    margin: 0;
    padding-top: 10px;
    line-height: 1em;
}

header.title .fa {
    font-size: 15px;
    color: #72AA43;
    float: left;
    height: 52px;
    width: 52px;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    display: block;
    margin: 12px 20px 0 0;
}

header.no-border {
    border: none;
    margin: 0;
    padding-bottom: 30px;
}

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 {
    border: none;
    background: #31302f;
    transform: translateY(-40px);
}

/**  Top bar  **/

.top-bar {
    background: #3b3a39;
    color: #fff;
    font-weight: 600;
}

.top-bar .fa {
    color: #72AA43;
    margin-right: 8px;
}

.top-bar .tel,
.top-bar .email,
.top-bar .hours {
    padding: 15px 0;
    display: inline-block;
}

.top-bar .email,
.top-bar .hours {
    margin-left: 60px;
}

.top-bar .social {
    text-align: right;
}

.top-bar .social * {
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.top-bar .social a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 18px;
    margin: 0 0 -5px 0;
    position: relative;
    overflow: hidden;
}

.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;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 65px;
}

.top-bar .social a:hover {
    background: rgba(0, 0, 0, .25);
    color: #72AA43;
}

.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;
    max-height: 600px;
    background: #100f0e;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hero .item {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.hero .item img {
    width: 100%;
    opacity: 0.8;
    -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;
}

.hero .item .container {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.hero .blurb {
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
}

.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-family: 'Neuton', serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.hero .blurb p {
    font-family: 'Neuton', serif;
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 30px 0;
}

.hero .btn-ghost {
    background: none;
    color: #fff;
    border-color: #fff;
    margin-left: 5px;
}

.hero .btn-ghost:hover {
    background: #72AA43;
    border-color: #72AA43;
    border-bottom: 2px solid #72AA43;
}

.hero .carousel,
.hero .carousel-inner,
.hero .item {
    height: 100%;
    max-height: 600px;
}

.hero .carousel-indicators {
    text-align: left;
    width: 1140px;
    margin: auto;
    right: 0;
    bottom: 40px;
    left: 0;
    z-index: 1;
}

.hero .carousel-indicators li {
    height: 5px;
    width: 50px;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;

    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hero .carousel-indicators .active,
.hero .carousel-indicators li:hover {
    border: none;
    background: #72AA43;
}

.hero .carousel-control {
    position: absolute;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    text-shadow: none;
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
    z-index: 1;
    bottom: 30px;
    right: 30px;
    left: auto;
    top: auto;
    opacity: 1;
    color: #fff;
}

.hero .carousel-control.right {
    bottom: 92px;
}

.hero .carousel-control:hover {
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
}

/**  Navigation  **/

.navbar {
    border-radius: 0;
    margin: 0;
    border: none;
    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 {
    margin-left: 20px;
    float: right;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.nav {
    float: right;
}

.nav li {
    padding: 40px 0;
}

.nav li a {
    font-size: 18px;
    font-weight: 700;
    color: #585858;
    overflow: hidden;
    padding: 0 30px;
    height: 1.2em;
    font-family: 'Neuton', serif;
}

.nav li a:after {
    content: "";
    display: block;
    width: 1px;
    background: #e2e2e1;
    height: 15px;
    position: absolute;
    right: 0;
    top: 5px;
}

.nav li:last-child a:after {
    display: none;
}

.nav li a span {
    position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.nav li 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);
}

.nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transform: rotateX(0deg);
}

.nav li a:hover span,
.nav li a:focus span {
    color: #72AA43;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.nav li.active {
    -webkit-box-shadow: inset 0px -4px 0px 0px #72AA43;
    -moz-box-shadow: inset 0px -4px 0px 0px #72AA43;
    box-shadow: inset 0px -4px 0px 0px #72AA43;
}

.nav li.active a {
    color: #72AA43;
}

.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 li.dropdown:hover .dropdown-menu {
    opacity: 1;
    z-index: 10;

    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.nav .dropdown-menu {
    top: 93px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0 0 0;
    display: block;
    opacity: 0;
    z-index: 0;
    background: rgba(255, 255, 255, .95);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;

    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
}

.nav .dropdown-menu li {
    padding: 0;
}

.nav .dropdown-menu li a {
    font-size: 16px;
    height: auto;
    padding: 10px;
    text-indent: 11px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

body .nav .dropdown-menu li a:hover,
body .nav .dropdown-menu li.active a {
    background: #72AA43;
    color: #fff;
}

/**  Scroll navigation  **/

.admin-bar .banner--clone {
    top: 32px;
}

.banner--clone {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid #e7e7e7;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.banner--clone .nav .dropdown-menu {
    display: none;
}

.banner--stick {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}

.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 {
    opacity: 1;
    z-index: 10;

    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.banner--stick .nav .dropdown-menu {
    top: 103px;
    border: none;
    box-shadow: none;
    display: block;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    z-index: 0;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .15);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;

    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
}

.banner--stick .nav .dropdown-menu li {
    padding: 0;
}

.banner--stick .nav .dropdown-menu li a {
    font-size: 16px;
    height: auto;
    padding: 10px;
    text-indent: 11px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/**  Testimonials  **/

.testimonial .bubble {
    padding: 30px;
    background: #f0f0f0;
    position: relative;
    margin-bottom: 30px;
}

.testimonial .bubble:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #dedede transparent transparent;
}

.testimonial .bubble p:last-child {
    margin-bottom: 0;
}

.testimonial img {
    float: left;
    margin: 0 25px 0 0;
}

.testimonial h6 {
    font-size: 15px;
    margin: 50px 0 0 0;
}

.testimonial span {
    font-size: 15px;
    color: #72AA43;
}

/**  Accordion  **/

.accordion h5 {
    font-size: 16px;
    border: 1px solid #f0f0f0;
    border-left-width: 60px;
    padding: 16px 20px;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.accordion h5:hover {
    border-color: #72AA43;
}

.accordion h5:hover span:before {
    color: #fff;
}

.accordion h5 span {
    font-size: 12px;
    display: block;
    font-family: FontAwesome;
    position: relative;
}

.accordion h5 span:before {
    content: "\f067";
    position: absolute;
    left: -52px;
    top: 3px;
    color: #72AA43;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.accordion h5.ui-state-active {
    border-color: #72AA43;
    color: #72AA43;
}

.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;
}

article a.img-bg{
    max-height: 220px !important;
}

a.img-bg,
header.img-bg {
    display: block;
    background: #151414;
    text-align: center;

    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

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 {
    width: 100%;
    display: block;
}

.img-bg:hover img {
    opacity: 0.15;
    transform: scale(1.1);
}

.img-bg span:first-child {
    font-family: 'Neuton', serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1.3em;
}

.img-bg span {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #72AA43;
    display: block;
}

.img-bg i {
    color: #fff;
    margin-top: 15px;
}

.img-bg:hover aside {
    opacity: 1;
    transform: scale(1);
}

.img-bg aside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 80px;
    opacity: 0;
    height: 70px;
    transform: scale(1.5);
    z-index: 1;
}

.img-bg .social a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 15px 2px 0 2px;
}

.img-bg .social a:hover {
    color: #72AA43;
    border-color: #72AA43;
}

.fa.slick-arrow {
    background: none;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    display: inline-block;
    font-size: 12px;
    color: #72AA43;
    position: absolute;
    right: 0;
    top: -120px;

    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.fa.slick-arrow.fa-chevron-left {
    right: 42px;
}

.fa.slick-arrow:hover {
    border-color: #72AA43;
    background: #72AA43;
    color: #fff;
    cursor: pointer;
}

.one-col .fa.slick-arrow {
    top: 50%;
    transform: translateY(-19px);
    z-index: 1;
}

.one-col .fa.slick-arrow {
    border: none;
    background: #fff;
}

.one-col .fa.slick-arrow:hover {
    background: rgba(255, 255, 255, 0.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 {
    border-radius: 3px 0 0 3px;
    right: -1px;
}

.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;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    margin: 0;
}

.cta .btn {
    float: right;
}

.cta.dark h4 {
    color: #72AA43;
}

/**  Projects  **/

.projects div {
    padding: 0;
}

.projects a.img-bg {
    margin-bottom: 0;
}

#filters {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

#filters li {
    display: inline-block;
}

#filters li span {
    display: block;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    text-transform: uppercase;
    color: #7a7a7a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    margin: 0 0 0 10px;

    /*-webkit-transition: all 0.3s ease-in-out;*/
    /*-moz-transition: all 0.3s ease-in-out;*/
    /*transition: all 0.3s ease-in-out;*/
}

#filters li span.active {
    color: #72AA43;
}

#filters li span.active:hover {
    color: #72AA43;
    background: none;
    border-color: #e6e6e6;
}

#filters li span:hover {
    color: #fff;
    border-color: #72AA43;
    background: #72AA43;
}

#portfoliolist {
    padding-top: 40px;
}

#portfoliolist .portfolio {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    width: 33.3%;
    padding: 0 15px;
    display: none;
    float: left;
    text-align: center;
    margin-bottom: 40px;
}

#portfoliolist .portfolio h5 {
    margin-bottom: 5px;
}

#portfoliolist .portfolio mark {
    color: #72AA43;
    font-style: 15px;
    padding: 0;
    background: none;
}

/**  Latest news  **/

.latest-news article {
    position: relative;
}

.latest-news .time {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    padding: 10px 10px 5px 10px;
    z-index: 1;
}

.latest-news .time p {
    text-align: center;
    font-family: 'Neuton', serif;
    font-weight: 700;
    font-size: 46px;
    color: #72AA43;
    line-height: .7em;
    margin: 0;
}

.latest-news .time p span {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #585858;
    text-transform: uppercase;
    display: block;
}

/** Form styles  **/

input,
textarea {
    border: 1px solid #e6e6e6;
    color: #a4a4a4;
    border-radius: 3px;
    box-shadow: none;
    padding: 12px;
    width: 100%;
    margin: 0 0 0 0;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

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;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 700;
    color: #fff;
    padding: 15px 30px;
    width: auto;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#map {
    height: 550px;
}

/**  Icon sidebar  **/

.icon-sidebar {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-sidebar li {
    overflow: hidden;
    margin-bottom: 25px;
}

.icon-sidebar li i {
    height: 65px;
    width: 65px;
    line-height: 65px;
    border-radius: 50%;
    border: 1px solid #efefef;
    text-align: center;
    color: #72AA43;
    font-size: 24px;
    float: left;
    margin-right: 30px;
}

.icon-sidebar li h5 {
    margin: 5px 0;
}

/**  Icons  **/

i.icon {
    font-size: 34px;
    color: #72AA43;
    margin-bottom: 20px;
}

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;
    background: #fff;
    border: 1px solid #e6e6e6;
    text-align: center;
}

.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: #72AA43;
}

.pricing-table ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-table ul li {
    list-style: none;
    display: block;
    padding: 10px 0;
}

/**  Button styles  **/

a.btn,
a.btn:hover,
.btn:focus {
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 700;
    color: #fff;
    padding: 15px 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}


.btn-contact {
    background: #72AA43;
    border-color: #72AA43;
    color: #fff;
    border-bottom: 4px solid #5e8e35;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}

.btn-contact:hover,
.btn-contact:focus {
    color: #fff;
    background: #3b3a39;
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
}

.btn-default {
    background: #72AA43;
    border-color: #72AA43;
    color: #fff;
    border-bottom: 4px solid #5e8e35;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
}

.btn-default:hover,
.btn-default:focus {
    color: #fff;
    background: #3b3a39;
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
}

.btn-ghost {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: #3b3a39;
    border-color: #3b3a39;
}

.split-btn {
    position: relative;
    margin-top: 30px;
}

.split-btn .btn.left {
    border-radius: 3px 0 0 3px;
}

.split-btn .btn.right {
    border-radius: 0 3px 3px 0;
    transform: translateX(-36px);
    background: #72AA43;
    border-color: #72AA43;
    border-bottom-color: #778a36;
}

.split-btn .btn.right:hover,
.split-btn .btn.right:focus {
    background: #3b3a39;
    border-color: #3b3a39;
    border-bottom-color: #2f2e2d;
}

.split-btn span {
    display: inline-block;
    text-align: center;
    height: 32px;
    width: 32px;
    line-height: 26px;
    background: #31302f;
    border-radius: 50%;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    transform: translateX(-20px);
    position: relative;
    z-index: 1;
}

.btn i {
    margin-right: 10px;
}

/**  Services  **/

.service {
    margin-bottom: 30px;
    display: none;
}

.show {
    display: block;
}

/**  Number counter  **/

.counter {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: 'Neuton', serif;
    font-weight: 600;
    position: relative;
}

.counter span {
    display: block;
    font-size: 60px;
    font-weight: 300;
    font-family: 'Source Sans Pro', sans-serif;
}

.counter:after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
}

/**  Logos  **/

.logos img {
    opacity: 0.4;
    margin: 0 auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);

    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.logos img:hover {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/**  Masonry blog  **/

#masonry-home article.post {
    width: 33.3%;
    float: left;
    border-bottom: none;
    margin: 0 0 30px 0;
    padding: 0 15px;
    box-sizing: border-box;
}

#masonry-home .post:nth-child(even) {

}

#masonry-home .post:nth-child(odd) {

}

#masonry-home article.post a {
    margin: 0;
    max-height: 242px;
}

#masonry-home article.post .time {
    border: none;
    border-radius: 0;
    background: #fff;
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 1;
    font-family: 'Source Sans Pro', sans-serif;
}

#masonry-home article.post a:hover .time {
    opacity: 0;
}

#masonry-home article.post .content {
    padding: 30px;
    border: 1px solid #e6e6e6;
    border-top: none;
}

#masonry-home article.post .content h4 a {
    color: #444;
}

#masonry-home article.post .content p:last-child {
    margin: 0;
}

#masonry article.post {
    width: 48%;
    border-bottom: none;
    margin: 0 0 30px 0;
    padding: 0 15px;
    box-sizing: border-box;
}

#masonry .post:nth-child(even) {

}

#masonry .post:nth-child(odd) {

}

#masonry article.post a {
    margin: 0;
    max-height: 242px;
}

#masonry article.post .time {
    border: none;
    border-radius: 0;
    background: #fff;
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 1;
    font-family: 'Source Sans Pro', sans-serif;
}

#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 h4 a {
    color: #444;
}

#masonry article.post .content p:last-child {
    margin: 0;
}

/**  Blog posts  **/

article.post {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e6e6e6;
}

article.post:last-child {
    margin-bottom: 30px;
}

article.post .time {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    float: left;
    margin-right: 15px;
    padding: 5px 10px;
}

article.post .time p {
    font-size: 22px;
    color: #72AA43;
    font-weight: 600;
    margin: 0;
    line-height: 0.85em;
}

article.post .time p span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #7a7a7a;
}

article.post h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

article.post h2 a {
    color: #585858;
}

/**  Blog sidebar  **/

.sidebar .widget {
    margin-bottom: 60px;
}

.sidebar .search {
    position: relative;
}

.sidebar .search input {
    margin: 0;
}

.sidebar .search i {
    position: absolute;
    top: 16px;
    right: 16px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    display: block;
    padding: 10px 0;
}

.sidebar ul li a span {
    display: inline-block;
    margin-left: 10px;
    color: #9f9f9f;
}

.sidebar .tag {
    display: inline-block;
    padding: 8px 12px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
    color: #7a7a7a;
    margin: 0 5px 8px 0;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.sidebar .tag:hover {
    color: #72AA43;
    border-color: #e6eecb;
    background: transparent;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
}

/**  Single blog post  **/

.post.single {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post.single > img {
    margin-bottom: 30px;
}

.page-nav {
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px;
    margin: 0 15px 30px 15px;
}

.page-nav a {
    transform: translateY(10px);
}

.page-nav div:nth-child(2) {
    text-align: center;
}

.page-nav div:nth-child(2) a {
    border: 1px solid #f0f0f0;
    padding: 10px 12px;
    transform: translateY(0);

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.page-nav div:nth-child(2) a:hover {
    border-color: #72AA43;
    background: #72AA43;
    color: #fff;
    border-radius: 50%;
    transform: rotate(180deg);
}

.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: #72AA43;
}

.social-sharing {
    text-align: right;
    font-style: 15px;
}

.social-sharing a {
    color: #9d9d9d;
    display: inline-block;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    margin-left: 2px;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.social-sharing a:hover {
    color: #72AA43;
    border-color: #72AA43;
    background: #72AA43;
    color: #fff;
}

/**  Comments  **/

.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 {
    padding: 30px 30px 50px 30px;
    margin: 20px 0 0 0;
}

.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;
}

/**  Pagination  **/

.pagination {
    margin: 0 0 80px 0;
    width: 100%;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a:first-child,
.pagination li a:last-child {
    border-radius: 0;
}

.pagination li a {
    margin: 0 3px;
    border: 1px solid #f0f0f0;
    color: #7a7a7a;
    padding: 7px 17px;
}

.pagination > li:last-child > span,
.pagination > li:first-child > span {
    border-color: #f0f0f0 !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    padding: 7px 17px !important;
}

.pagination > .active > span,
.pagination li.active a,
.pagination li.active a:hover {
    background: transparent !important;
    color: #72AA43 !important;
    border-radius: 0;
    border-color: #f0f0f0 !important;
    box-shadow: none;
    padding: 7px 17px !important;
}

.pagination li a:hover {
    color: #72AA43;
    border-color: #e6eecb;
    background: transparent;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);

    -webkit-transform: rotateX(0deg);
    -webkit-transform-style: preserve-3d;
    transform: rotateX(0deg);
    transform-style: preserve-3d;
}

/**  Footer  **/

footer {
    background: #2c2b2b;
    color: #b8b7b7;
    font-size: 15px;
    font-weight: 600;
}

footer h6 {
    color: #fff;
    font-size: 20px;
}

footer img {
    margin: 20px 0 40px 0;
}

footer .copyright,
footer .copyright a {
    font-size: 14px;
    color: #777676;
    margin: 0;
}

footer ul:first-child {
    float: left;
}

footer ul:last-child {
    float: right;
}

footer ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}

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 {
    color: #7a7a7a;
    display: block;
    padding-bottom: 7px;
}

footer ul li a:hover {
    color: #72AA43;
}

footer i.fa {
    color: #72AA43;
    display: inline-block;
    width: 30px;
}

footer .social {
    margin-top: 35px;
}

footer .social * {
    text-decoration: none;
    -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 {
    padding-left: 0;
}

footer .social a {
    display: inline-block;
    font-size: 14px;
    color: #828282;
    padding: 18px;
    margin: 0 0 -5px 0;
    position: relative;
    overflow: hidden;
}

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;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 65px;
}

footer .social a:hover {
    color: #72AA43;
}

footer .social a:hover:before {
    transform: translateY(-60px);
}

footer .social a:hover span {
    top: 18px;
}

/**  Keyframes  **/

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: .5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: .5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: .5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: .5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(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%;
    }
    #masonry-home article.post {
        width: 33.33%;
    }

    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;
        min-height: 100%;
        max-width: 150%;
    }

    .tablet-hide {
        display: none;
    }

    .fa.slick-arrow {
        display: none !important;
    }

    .split-btn .btn {
        font-size: 14px;
        display: block;
        margin-bottom: 2px;
    }

    .split-btn span {
        display: block;
        margin: auto;
        transform: translateX(0px);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .split-btn .btn.left {
        border-radius: 3px 3px 0 0;
    }

    .split-btn .btn.right {
        border-radius: 0 0 3px 3px;
        transform: translateX(0);
    }

    article.post {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .sidebar .widget {
        margin-bottom: 30px;
    }

    #filters {
        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;
    }

    #masonry-home 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;
        padding: 15px 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        height: auto;
        color: rgba(255, 255, 255, 0.4);
    }

    .nav li a:hover {
        background: #72AA43;
        color: #fff;
    }

    .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 {
        padding: 0;
        margin: 0 -30px;
        background: #3b3a39;
    }

    .navbar .container > div,
    .navbar .container .navbar-collapse {
        height: auto !important;
    }

    .navbar .navbar-header {
        top: 0;
        transform: translateY(0);
    }

    .navbar-header img {
        padding: 15px 0;
    }

    .navbar-toggle {
        padding: 0;
        margin: 45px 0 0 0;
    }

    .navbar-toggle .icon-bar {
        background: #72AA43;
    }

    .nav .dropdown-menu,
    .banner--stick .nav .dropdown-menu {
        position: static;
        opacity: 1;
        background: rgba(0, 0, 0, .2);
        padding: 0;
        float: none;
        transform: scale(1);
    }

    .nav .dropdown-menu li a,
    .banner--stick .nav .dropdown-menu li a {
        padding: 15px 50px;
        text-indent: 30px;
    }

    .banner--stick .navbar-toggle {
        padding: 0;
        margin: 35px 0 0 0;
    }

    .banner--stick .nav li {
        padding: 0;
    }

    .hero {
        height: 40%;
        min-height: 400px;
    }

    .hero .blurb h1,
    .page-title h1 {
        font-size: 46px;
    }

    .hero .carousel-control {
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .hero .carousel-control.right {
        bottom: 72px;
    }

    .hero .carousel-indicators {
        width: 665px;
        bottom: 20px;
    }

    header.title {
        margin-left: 15px;
        margin-right: 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%;
    }

    #portfoliolist .portfolio {
        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 {
        background: #f8f8f8;
        padding-top: 60px;
    }

    .sidebar .widget {
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    #masonry article.post {
        width: 100%;
        padding: 0 30px 0 0;
    }
    #masonry-home article.post {
        width: 100%;
        padding: 0 30px 0 0;
    }

}

@media (max-width: 480px) {

    .top-bar .tel {
        padding: 15px 0 7px 0;
        margin-left: 0;
    }

    .top-bar .email {
        padding: 7px 0 15px 0;
        margin-left: 0;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .hero .blurb {
        text-shadow: none;
        position: static;
        background: #3b3a39;
        padding: 20px 20px 30px 20px;
        margin: 0;
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    .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 .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 {
        text-align: center;
        font-size: 30px;
        line-height: 1.2em;
    }

    .padding-80 {
        padding: 60px 15px;
    }

    #filters li {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }

    #portfoliolist .portfolio {
        width: 100%;
    }

    .icon-left + h4 + p:after {
        content: '';
        display: block;
        height: 15px;
    }

    .post-comments .testimonial .reply {
        float: none;
        display: block;
        margin-top: 10px;
    }

    footer ul {
        display: block;
    }

    footer ul:last-child {
        float: none;
        margin-bottom: 30px;
    }

}
article.post h2 a{
    font-size: 35px !important;
}

.color-white{
    color: #fff;
}

.border-bottom-none{
    border: none !important;
    margin-bottom: 0 !important;
}
/*# sourceMappingURL=frontend.css.map */
