/*------------------------------------*\
    STYLESHEET INDEX:
    01: RESET
    02: GLOBAL
    03: TYPOGRAPHY
    04: HEADER
    05: NAVIGATION
    06: FOOTER
    07: UTILITY
    08: WPCF7(WORDPRESS CONTACT FORM 7)
    09: BLOG
    10: INTERIOR
    11: GALLERY
    12: HELPER CLASSES
    13: MISC
\*------------------------------------*/
/*------------------------------------*\
    01: RESET
\*------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong {
    font-weight: 700;
}
em {
    font-style: italic;
}
/*------------------------------------*\
    02: GLOBAL
\*------------------------------------*/
body.page-template-full {
    height: 100vh;
    background: #252525;
}
*, *:after, *:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
html:not(.no-js) .wow {
    visibility: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #444;
    text-decoration: none;
    outline: none;
}
a:hover {
    color: #444;
}
input, textarea {
    outline: none;
}
input:focus {
    border: 1px solid #04A4CC;
}
.default-page-header {
    font-family: 'Lato';
    font-size: 2rem;
    font-weight: 300;
    margin-top: 2rem;
}
.default-page-header h1, .default-page-header h2, .default-page-header h3 {
    line-height: 1;
    margin: .2em 0;
}
.default-page-header p {
    line-height: 1.4em;
}
.default-page-header h1 {
    font-size: 1.5em;
    font-weight: 400;
}
.default-page-header h2 {
    font-size: 1em;
    font-weight: 400;
}
.default-page-header p {
    font-size: .6em;
}
.main-row {
    margin-bottom: 1em;
}
/*------------------------------------*\
  03: TYPOGRAPHY
\*------------------------------------*/
/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
    font-family: 'Lato';
}
/* base font size */
:root {
    font-size: 18px;
}
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h1, h2, h3 {
    line-height: 1.5;
}
p, ul, ol {
    font-size: 1rem;
    line-height: 2;
}
/* content */
article p, article li, article a {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}
/* screen < mobile */
@media only screen and (max-width: 767px) {
     :root {
        font-size: 3.5vw;
    }
}
/* mobile < screen < tablet */
@media (min-width: 768px) and (max-width: 991px) {
     :root {
        font-size: 1.75vw;
    }
}
/* tablet < screen < laptop */
@media (min-width: 992px) and (max-width: 1199px) {
     :root {
        font-size: 1.5vw;
    }
}
/*------------------------------------*\
  04: HEADER
\*------------------------------------*/
header {
    position: relative;
    z-index: 9000;
    background: #fff;
    color: #f6f6f6;
}
header .logo img {
    padding: 15px 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
header #header-border {
    margin: 0;
    opacity: 0.5;
    margin-top: 10px;
}
header.shrink #header-border {
    display: none;
}
header.full .logo {
    position: absolute;
    transform: translateY(-50%);
}
header.full .logo img {
    padding: 0;
}
@media ( min-width: 768px) {
    header.full {
        position: absolute;
        top: 10%;
        left: 0;
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    header.full .logo {
        transform: none;
        position: relative;
    }
    header.full .logo {
        margin: 5rem 0 2rem 0;
    }
    header.full .logo img {
        margin: 0 auto;
    }
}
body.page-template-home header #header-border, body.page-template-index header #header-border {
    display: none;
}
header .meta-wrap {
    font-size: 1.6rem;
    text-align: right;
    font-family: 'Lato';
    font-weight: 400;
    margin: .6em 0;
}
header .meta-wrap a {
    color: #36352A;
}
/* mobile toolbar ( shows icons next to menu toggle on mobile ) */
header .mobile-toolbar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
header .mobile-toolbar a {
    color: #fff;
    padding: .5rem 1rem;
}
header .mobile-toolbar a.mobile-icon {
    font-size: 34px;
}
header .mobile-toolbar a:hover {
    color: #252525;
}
header .mobile-toolbar>* {
    display: inline-block;
    vertical-align: middle;
}
header .mobile-toolbar>*:not(:last-child) {
    margin-right: 5px;
}
/* header conditional styles */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
}
header.shrink {
    padding: 0;
    background: #FFF;
    box-shadow: 0 2px 5px -2px #000;
}
header.shrink .logo img {
    display: none;
    max-width: 0;
}
/* meta wrap contains phone number & misc. above nav */
header.shrink .meta-wrap {
    display: none;
    height: 0;
}
header.shrink .col-xs-12 {
    min-height: 0;
}
@media only screen and (min-width: 991px) {
    header .mobile-toolbar {
        display: none;
    }
    header .menu {
        float: right;
    }
}
@media only screen and (max-width: 991px) {
    header .meta-wrap {
        display: none;
    }
    header nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9000;
        background: #d3af37;
    }
    header .logo img {
        margin: 60px auto 15px;
    }
}
@media only screen and (max-width: 767px) {
    #fancybox-overlay {
        display: none !important;
    }
    #fancybox-wrap {
        display: none !important;
    }
}
/*------------------------------------*\
    05: NAVIGATION
\*------------------------------------*/
/* nav general */
nav {
    background: none;
    font-family: 'Lato';
    text-transform: uppercase;
    font-size: 2rem;
    position: relative;
    z-index: 5000;
    float: right;
}
nav a {
    padding: .3em .6em;
    display: block;
    color: #36352A;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}
nav a:focus {
    color: #36352A;
}
nav a i {
    padding-right: .4rem;
}
@media only screen and (max-width: 767px) {
    nav a {
        font-size: 1.1em;
    }
}
/* nav level one */
.menu-item.open>a, .menu-item:hover>a, .menu-item.active a, .menu-item.active:hover>a {
    background: #006dcc;
    color: #fff;
}
/* nav level two */
.dropdown-menu {
    margin-top: 0px;
    border-radius: 0;
    border: none;
    padding: 0;
    width: 18em;
    display: none;
}
nav .dropdown-menu .menu-item {
    float: none;
}
nav .dropdown-menu a {
    background: #006dcc;
    color: #fff;
}
.dropdown-menu>li:hover>a, .dropdown-menu>li.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    background: #0044cc;
    color: #fff;
}
/* downward arrow for nav dropdown */
.dropdown .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 0 3px 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
/* nav mobile */
nav #mobile {
    position: relative;
    height: 48px;
    width: 30px;
    background: none;
    outline: none;
    border: none;
    float: right;
}
.hamburger {
    display: block;
    position: absolute;
    width: 30px;
    height: 20px;
    background: #FFF;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 2
}
.hamburger:hover {
    cursor: pointer;
}
.hamburger:before, .hamburger:after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 20%;
    background: #265593;
    -webkit-transition-property: -webkit-transform, top;
    -moz-transition-property: -moz-transform, top;
    -o-transition-property: -o-transform, top;
    -ms-transition-property: -ms-transform, top;
    transition-property: transform, top;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0)
}
.hamburger:after {
    top: 60%
}
body.header-menu-open #mobile, body.header-menu-open #mobile .hamburger {
    background: transparent;
}
body.header-menu-open #mobile>.hamburger:before, body.header-menu-open #mobile>.hamburger:after {
    top: 40%;
    background: #FFF;
}
body.header-menu-open #mobile>.hamburger:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}
body.header-menu-open #mobile>.hamburger:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
body.transparent header {
    position: absolute;
    width: 100%;
    background: rgba(25, 25, 25, 0.5);
}
/* screen > mobile */
@media (min-width: 992px) {
    header .menu-item {
        float: left;
        position: relative;
    }
    header .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
    }
    nav .menu-item-has-children:hover>ul.dropdown-menu {
        display: block;
    }
}
/* screen < mobile */
@media (max-width: 991px) {
    header nav {
        padding: 0 15px;
        width: 100%;
    }
    header nav a {
        color: #fff;
    }
    header nav .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transition: opacity 0.25s;
        z-index: -1;
        background: #265593;
        box-shadow: 0 3px 3px -2px #000;
        pointer-events: none;
        opacity: 0;
    }
    body.header-menu-open header nav .menu {
        pointer-events: auto;
        opacity: 1;
    }
    header .menu-item-has-children.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        width: 100%;
    }
    .dropdown-menu>li>a {
        padding-left: 2.5em;
    }
}
/* gmap section */
.gmap-wrap {
    font-family: 'Lato';
    font-size: 2rem;
    color: #363636;
    position: relative;
}
.gmap-wrap .map-info-wrap {
    z-index: 10;
    padding: .6em;
    background: #fff;
}
.gmap-wrap .map-info-wrap .title-wrap {
    display: block;
    border-bottom: 2px solid #363636;
    margin-bottom: .3em;
}
.gmap-wrap .map-info-wrap .title-wrap h1, .gmap-wrap .map-info-wrap .title-wrap a {
    display: inline-block;
    line-height: 1em;
}
.gmap-wrap .map-info-wrap .title-wrap h1 {
    font-size: 1.25em;
    margin-bottom: .3em;
    font-weight: 300;
}
.gmap-wrap .map-info-wrap .title-wrap a {
    font-size: .75em;
    padding: .1em .6em;
    border: 1px solid #363636;
    margin-left: 8em;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    -moz-transition: .2s ease;
    transition: .2s ease;
    color: #363636;
}
.gmap-wrap .map-info-wrap .title-wrap a:hover {
    background: #363636;
    color: #fff;
}
.gmap-wrap .map-info-wrap ul {
    text-align: left;
    padding: .5em 0 0 1em;
    font-weight: 400;
}
.gmap-wrap .map-info-wrap ul li {
    line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
    .gmap-wrap .map-info-wrap {
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
        position: absolute;
    }
}
/*------------------------------------*\
    06: Footer
\*------------------------------------*/
footer .design a {
    text-decoration: none;
}
.footer-01 {
    background: #363636;
    color: #f6f6f6;
    padding: 5px 0;
}
/* .footer-01 */
.footer-01 .fa-stack-2x {
    color: #265593;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
    color: #265593;
}
.footer-01 .social .fa-stack-1x {
    color: #fff;
}
.footer-01 .social a:hover .fa-stack-2x {
    color: #836b3b;
}
.footer-01 .social a:hover .fa-stack-1x {
    color: #fff;
}
.footer-01 nav a {
    padding: 5px;
    display: inline-block;
}
.footer-01 a, .footer-01 a:hover, .footer-01 a:focus {
    color: #f6f6f6;
}
@media (min-width: 768px) {
    .footer-01 {
        text-align: center;
    }
    .footer-01 nav a {
        display: block;
    }
    .footer-01 .menu-item {
        display: inline-block;
    }
}
.footer-01 {
    padding: 0;
    font-family: 'Lato';
    background: #252525;
    font-weight: 300;
    text-align: center;
}
.footer-01 .text-wrap {
    margin: 4rem 0 0 0;
}
.footer-01 .text-wrap h1 {
    font-size: 2rem;
    font-weight: 300;
}
.footer-01 .text-wrap h3 {
    font-size: 1rem;
    font-weight: 300;
}
.footer-01 .cred-wrap {
    border-top: 1px solid #FFF;
    width: 75vw;
    padding: .5rem;
    margin: 5rem auto 6rem auto;
}
.footer-01 .design {
    display: inline-block;
}
.footer-01 .social {
    display: inline-block;
}
.footer-01 .fa-stack-2x {
    color: #265593;
}
.footer-01 .social a:hover .fa-stack-2x {
    color: #36352A;
}
.footer-01 p {
    font-size: 1rem;
}
.footer-01 .design span a {
    padding: 0 1px;
}
.footer-01 .design span a strong {
    font-weight: 600;
}
@media only screen and (min-width: 768px) {
    .footer-01 .design {
        float: left;
        text-align: left;
        margin: .5em 0;
    }
    .footer-01 .social {
        float: right;
        text-align: right;
    }
}
@media only screen and (max-width: 767px) {
    .footer-01 .design {
        margin: 1rem 0;
    }
    footer.full {
        display: block;
        position: relative;
        background: #949494;
    }
}
/*------------------------------------*\
    07: UTILITY
\*------------------------------------*/
.va-parent {
    font-size: 0px;
}
.va-parent>* {
    font-size: 18px;
}
.va-parent>.va-top, .va-parent>.va-middle, .va-parent>.va-bottom {
    float: none !important;
    display: inline-block !important;
}
.va-top {
    vertical-align: top;
}
.va-middle {
    vertical-align: middle;
}
.va-bottom {
    vertical-align: bottom;
}
.va-col {
    font-size: 2rem;
    font-family: 'Lato';
}
.no-pad {
    padding: 0 !important;
}
.no-pad-right {
    padding-right: 0 !important;
}
.no-pad-left {
    padding-left: 0 !important;
}
.no-margin {
    margin: 0 !important;
}
@media ( max-width: 1199px) and ( min-width: 992px) {
    .va-middle.hidden-md {
        display: none !important;
    }
}
@media ( max-width: 991px) and ( min-width: 768px) {
    .va-middle.hidden-sm {
        display: none !important;
    }
}
@media ( max-width: 767px) {
    .va-middle.hidden-xs {
        display: none !important;
    }
}
/*------------------------------------*\
    08: WPCF7(WORDPRESS CONTACT FORM 7)
\*------------------------------------*/
.form-wrap input:not([type="submit"]), .form-wrap textarea {
    width: 100%;
}
.form-wrap {
    position: relative;
    padding: 15px;
}
.form-wrap p {
    line-height: 2;
    font-weight: 700;
}
.form-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 50;
    -webkit-animation: fadeIn 0.2s forwards;
    -moz-animation: fadeIn 0.2s forwards;
    -o-animation: fadeIn 0.2s forwards;
    animation: fadeIn 0.2s forwards;
}
.form-wrap:after {
    content: '';
    border-bottom: 6px solid rgba(0, 0, 0, .1);
    border-left: 6px solid rgba(0, 0, 0, .1);
    border-right: 6px solid rgba(0, 0, 0, .1);
    border-top: 6px solid rgba(255, 255, 255, 1);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
    animation: rotate .6s infinite linear;
    transition: opacity 0.2s;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    left: 50%;
    z-index: 75;
}
.form-wrap.active:before {
    display: block;
}
.form-wrap.active:after {
    opacity: 1;
}
/* AJAX load animation */
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.form-wrap .ajax-loader {
    display: none !important;
}
.form-wrap .wpcf7-form-control-wrap {
    display: block;
}
.form-wrap .wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 10px;
    background: #fff;
    line-height: 1.5;
    color: #fff;
    background: #d92128;
}
.form-wrap .wpcf7-form-control-wrap input:focus+.wpcf7-not-valid-tip {
    display: none;
}
.form-wrap .wpcf7-form-control-wrap:hover .wpcf7-not-valid-tip {
    display: none;
}
.form-wrap div.wpcf7-response-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: none;
    background: #252525;
    opacity: 0;
}
.wpcf7-contact-page input[type="text"], .wpcf7-contact-page input[type="email"] {
    line-height: inherit;
}
.form-wrap form.sent div.wpcf7-response-wrap {
    background: rgba(57, 143, 20, 0.9);
}
.form-wrap form.invalid div.wpcf7-response-wrap {
    background: rgba(217, 33, 40, 0.9);
}
.form-wrap form.failed div.wpcf7-response-wrap {
    background: rgba(217, 33, 40, 0.9);
}
.form-wrap .vertical-wrap {
    position: relative;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form-wrap div.wpcf7-response-output {
    height: auto !important;
    margin: 0;
    padding: 10px 15px;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    background: none;
    line-height: 1.5;
    font-family: 'Hind';
}
.wpcf7-response-wrap .button {
    display: none;
}
.form-wrap .wpcf7-response-wrap .button {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #252525;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 5px -2px #000;
    transition: background 0.1s;
}
.form-wrap .wpcf7-response-wrap .button:hover {
    background: #e8e8e8;
}
div.wpcf7 img.ajax-loader {
    display: block;
    margin: 0 0 0 auto;
}
.contact-page {
    font-family: 'Lato';
}
.wpcf7-contact-page {
    color: #252525;
    width: 100%;
    font-size: 15px;
    line-height: 30px;
}
.wpcf7-contact-page .wpcf7-not-valid-tip {
    border-radius: 10px;
}
.wpcf7-contact-page input, .wpcf7-contact-page textarea {
    padding: 10px 15px;
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    display: block;
    transition: border-color 0.5s;
    -webkit-transition: border-color 0.5s;
}
.wpcf7-contact-page input[type="text"], .wpcf7-contact-page input[type="email"], .wpcf7-contact-page textarea {
    font-size: 16px;
}
.wpcf7-contact-page textarea {
    height: 186px;
}
.wpcf7-contact-page input:focus, .wpcf7-contact-page textarea:focus {
    border-color: #c4161c;
}
.wpcf7-contact-page span.wpcf7-form-control-wrap {
    margin-bottom: 15px;
    display: block;
    font-size: 20px;
}
.wpcf7-contact-page .contact-captcha>img {
    height: 62px;
    width: 174px;
    float: left;
    margin-right: 15px;
    border-radius: 5px;
}
.wpcf7-contact-page .contact-captcha>span {
    overflow: auto;
}
.wpcf7-contact-page .contact-captcha>span>input {
    width: 100%;
}
.wpcf7-contact-page .captcha-wrapper {
    padding: 13px 10px;
    background: #c4161c;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    height: 62px;
}
@media only screen and (min-width: 992px) {
    .wpcf7-contact-page .captcha-wrapper {
        width: 50%;
        float: left;
        margin-right: 15px;
    }
}
.wpcf7-contact-page .captcha-wrapper>img {
    max-width: 100%;
    margin: auto;
    display: block;
}
.wpcf7-contact-page img.ajax-loader {
    display: inline-block;
}
.wpcf7-contact-page .submit-wrapper {
    text-align: right;
}
.wpcf7-contact-page .submit-wrapper input {
    width: auto;
    display: inline-block;
    background: #265593;
    padding: 10px 30px;
    color: #fff;
    border: none;
    transition: background 0.25s;
    font-size: 18px;
    -webkit-appearance: none;
}
.wpcf7-contact-page .submit-wrapper input:hover {
    background: #193d6c;
}
::-webkit-input-placeholder {
    color: #999999;
}
:-moz-placeholder {
    color: #999999;
}
::-moz-placeholder {
    color: #999999;
}
:-ms-input-placeholder {
    color: #999999;
}
/*WPCF7 Employment Form*/
.wpcf7-apply-form input[type="text"]::-webkit-input-placeholder, .wpcf7-apply-form input[type="email"]::-webkit-input-placeholder {
    color: #FFF;
}
/* ---end---WPCF7 Employment Form*/
/*------------------------------------*\
    09: BLOG
\*------------------------------------*/
.blog-wrap {
    font-family: 'Lato';
    font-size: 2rem;
    font-weight: 300;
}
.blog-wrap .post-item-header {
    background: #265593;
    display: block;
}
.blog-wrap .post-item .right, .blog-wrap .post-item .left {
    display: inline-block;
    padding: .5em;
}
.blog-wrap .post-item .right {
    float: right;
}
.blog-wrap .post-item-header h1 a {
    font-size: 0.75em;
    font-weight: 400;
    display: inline-block;
}
.blog-wrap .post-item h1, .blog-wrap .post-item h2, .blog-wrap .post-item h3 {
    line-height: 1;
}
.blog-wrap .post-item h2 {
    font-size: .5em;
    margin: .5em 0 .25em 0;
    display: inline-block;
}
.blog-wrap .post-item p {
    border: 1px solid #265593;
    padding: 1em;
    line-height: 1.5;
}
.blog-wrap .post-item .post-content a {
    font-size: .5em;
    font-weight: 400;
    colo r: #fff;
    text-transform: uppercase;
    padding: .7em;
    background: #252525;
    display: inline-block;
    margin-top: 1em;
}
.blog-wrap .post-item img {
    margin: .5em 0;
}
.blog-wrap .post-item a i {
    padding-left: 10px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
.blog-wrap .post-item a:hover i {
    padding-left: 15px;
}
.blog-section.active {
    animation: fadeIn 0.15s forwards;
    -webkit-animation: fadeIn 0.15s forwards;
}
.blog-section.no-content {
    text-align: center;
}
.loading {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgba(0, 0, 0, 0.2);
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    top: 50%;
    border-top-color: black;
    -webkit-animation: cssLoader 1s infinite linear;
    animation: cssLoader 1s infinite linear;
}
@-webkit-keyframes cssLoader {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(360deg);
        transform: translateY(-50%) rotate(360deg);
    }
}
@keyframes cssLoader {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(360deg);
        transform: translateY(-50%) rotate(360deg);
    }
}
@media only screen and (min-width: 768px) {
    .blog-wrap .post-item {
        margin: .5em 0;
    }
}
/* Taglist Style */
.taglist {
    position: relative;
    text-align: center;
    margin: 30px 0;
    padding: 25px 15px 20px 15px;
    border-radius: 3px;
    border: 1px solid #d6d6d6;
}
.taglist .topics {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
}
.taglist .topics h3 {
    background: #fff;
    display: inline-block;
    padding: 0 5px;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
}
.taglist a {
    font-size: 16px;
    color: #fff;
    transition: background 0.25s;
    background: #252525;
    padding: 5px 10px;
    border-radius: 3px;
}
.taglist a:hover, .taglist a:active {
    background: #363636;
}
/*Blog Page Thumbnail Image*/
.article-bg {
    position: relative;
    border-radius: 3px;
    height: 450px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .article-bg {
        height: 450px;
        margin: 25px 0;
    }
}
.article-bg-overlay {
    border-radius: 3px;
    display: block;
    width: 100%;
    min-height: 450px;
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.25s;
    background-color: rgba(0, 0, 0, 0.3);
}
.article-bg:hover .article-bg-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}
/*Blog Page Thumbnail Content*/
.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
}
.article-content h2, .article-content p, .article-content a {
    color: #fff;
    font-family: 'Hind';
}
.article-content h2 {
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
}
.article-content h2:after {
    content: '';
    z-index: 99;
    width: 100%;
    height: 5px;
    display: block;
    background: #363636;
    margin: 15px 0;
}
.article-content p {
    line-height: 1.5;
    font-size: 18px;
}
/*Pagination Style*/
.pagination {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.pagination .page-numbers {
    border-radius: 3px;
    padding: 3px 15px;
    background: #363636;
    color: #fff;
    transition: background 0.25s;
}
.pagination .page-numbers:hover, .pagination .page-numbers:focus {
    background: #1c3e59;
}
.pagination span.page-numbers.current {
    background: #1c3e59;
}
/* Tag Template*/
.blog.tag-template .article-topic h1 {
    background: #fff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
/* BLOG POST
================================ */
/*General Styles */
.blog-post {
    font-family: hind;
    line-height: 1.5;
}
/*Single Post Header */
body.single-post header {
    background: transparent;
}
.blog-post-header {
    position: relative;
    min-height: 700px;
}
.blog-post-overlay {
    display: block;
    width: 100%;
    min-height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
    .blog-post-header {
        min-height: 250px;
    }
    .blog-post-overlay {
        min-height: 250px;
    }
}
.blog-post-content h1 {
    position: absolute;
    text-transform: uppercase;
    color: #fff;
    font-size: 52px;
    bottom: 25%;
}
@media only screen and (max-width: 767px) {
    .blog-post-content h1 {
        top: 20%;
        font-size: 28px;
    }
}
/*Single Post Body */
.blog-post-content {
    padding: 40px 0;
}
h2#topics-h2 {
    font-size: 28px;
}
h2#topics-h2 span {
    color: #707070;
}
h2#topics-h2 a {
    color: #363636;
    text-decoration: underline;
}
.blog-post-content p {
    font-size: 20px;
    margin-bottom: 20px;
}
.blog-post-content .blog-explore {
    margin: 20px;
}
.blog-post-content .blog-explore h2 {
    font-size: 28px;
    text-align: center;
}
.blog-return {
    text-align: center;
    padding-top: 30px;
}
.blog-return a.blog-return-btn {
    border-radius: 3px;
    background: #363636;
    color: #fff;
    text-transform: uppercase;
    font-size: 26px;
    padding: 8px 12px;
    transition: background 0.25s;
}
.blog-return a.blog-return-btn:hover {
    background: #1C3E59;
}
/* POST SIDEBAR
================================ */
.blog-sidebar {
    background: #eee;
    padding: 20px 0;
}
.blog-sidebar h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}
.blog-sidebar article h2 {
    margin-top: 5px;
    line-height: 1;
    font-size: 20px;
    text-align: left;
}
@media only screen and (max-width: 991px) {
    .blog-sidebar article h2 {
        font-size: 16px;
    }
}
.blog-sidebar .sidebar-thumbnail {
    overflow: hidden;
    max-height: 169px;
}
@media only screen and (max-width: 1198px) {
    .blog-sidebar .sidebar-thumbnail {
        max-height: 124px;
    }
}
@media only screen and (max-width: 991px) and (min-width: 767px) {
    .blog-sidebar .sidebar-thumbnail {
        max-height: 105px;
    }
}
/*------------------------------------*\
    10: INTERIOR
\*------------------------------------*/
.interior-page {
    display: block;
    position: relative;
    font-family: "Lato";
    font-size: 2rem;
}
@media only screen and (max-width: 767px) {
    body:not(.home) header .logo {
        display: none;
    }
    .interior-page {
        padding-top: 4rem;
    }
}
.interior-page h1 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.interior-page h2 {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.interior-page h3 {
    font-size: .8em;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: .7rem;
}
.interior-page h4 {
    font-size: .7em;
    font-weight: 400;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.interior-page p {
    font-size: .6em;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.interior-page ul {
    font-size: 2rem;
    display: inline-block;
    list-style: none;
}
.interior-page ul li {
    font-weight: 300;
    font-size: 2rem;
    position: relative;
    padding: .2rem 0;
    line-height: 0;
    margin-bottom: .5rem;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.interior-page ul li p {
    display: inline-block;
    font-size: .6em;
    max-width: 90%;
    vertical-align: middle;
    margin: 0;
}
.font-reset {
    font-size: 2rem;
}
.interior-page ul li i {
    font-size: .6em;
    padding-right: .75rem;
    vertical-align: middle;
}
.interior-page .img-wrap {
    margin-bottom: 1.5rem;
}
.interior-page .img-wrap img {
    min-width: 100%;
}
/* Hover List*/
.interior-page .hover-list li {
    display: block;
    cursor: default;
}
.interior-page .hover-list li:hover {
    padding-left: .5rem;
    color: #00627e;
    transform: translateX(7px);
}
/* Accordion List */
.interior-page .accordion-list h3 {
    margin-bottom: .5rem;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.interior-page .accordion-list h3 i {
    font-size: 1rem;
    padding: .5rem;
    vertical-align: top;
    cursor: pointer;
    margin-left: .5rem;
}
.interior-page .accordion-list h3 i:hover {
    background: #00627e;
}
.interior-page .accordion-list .open {
    display: inline-block;
}
.interior-page .accordion-list .closed {
    display: none;
}
/* SEO Footer */
.content.seo {
    font-family: "Lato";
    background: #949494;
    padding: 2rem 0;
    font-size: 2rem;
}
.content.seo i.fa {
    color: #fff;
    font-size: 45px;
    display: inline-block;
    float: left;
    padding-right: 20px;
    margin-top: -10px;
}
.content.seo strong {
    font-weight: 700;
}
.content.seo p {
    font-size: .5em;
    padding: 0;
    margin: 0;
    color: #fff;
    overflow-y: hidden;
    overflow-x: auto;
    line-height: 1.2;
    font-weight: 400;
}
.content.seo p a {
    color: #fff;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}
.content.seo p a:hover {
    text-decoration: none;
    color: #86b0ff;
}
/*------------------------------------*\
    11: GALLERY
\*------------------------------------*/
.nextgen_pro_thumbnail_grid .image-wrapper {
    overflow: hidden;
    width: 24%;
}
.nextgen_pro_thumbnail_grid .image-wrapper img {
    min-width: 100%;
    max-height: none !important;
    height: 100%;
}
@media (max-width: 1199px) and (min-width: 992px) {
    .nextgen_pro_thumbnail_grid .image-wrapper {
        width: 31% !important;
        overflow: hidden;
    }
    .nextgen_pro_thumbnail_grid .image-wrapper a img {
        height: auto !important;
        min-width: 100% !important;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .nextgen_pro_thumbnail_grid .image-wrapper {
        width: 48% !important;
    }
}
@media only screen and (max-width: 767px) {
    .nextgen_pro_thumbnail_grid .image-wrapper {
        display: inline-block;
        float: left;
        width: 100%;
        margin: 0 0 1rem 0 !important;
    }
    .nextgen_pro_thumbnail_grid .image-wrapper img {
        min-width: 100% !important;
        max-height: none !important;
        height: 100%;
    }
}
/*------------------------------------*\
    13: HELPER CLASSES
\*------------------------------------*/
/* ---- BORDERS / BACKKGROUND ----*/
.obj-underline {
    border-bottom: 1.5px solid #949494;
    padding-bottom: .5rem;
}
.obj-overline {
    border-top: 1px solid #949494;
    padding-top: 1rem;
}
.obj-border {
    padding: 1rem 2rem;
    border: 1px solid #949494;
}
.obj-border-left {
    border-left: .8rem solid #CBCBCB;
    padding-left: 1rem;
}
.obj-border-right {
    border-right: .8rem solid #CBCBCB;
}
.obj-border-both {
    border-right: .8rem solid #CBCBCB;
    border-left: .8rem solid #CBCBCB;
}
.obj-border-bottom {
    border-bottom: .8rem solid #CBCBCB;
}
.obj-border-top {
    border-top: .8rem solid #CBCBCB;
}
.obj-radius {
    border-radius: 1rem;
}
.obj-background {
    padding: 1rem 2rem !important;
    background: #CBCBCB;
    color: #FFF;
}
.obj-offset {
    border-color: rgba(203, 203, 203, 0.7);
    background: rgba(203, 203, 203, 0.7);
}
/* ---- FILTERS ----*/
.obj-grayscale {
    -webkit-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.obj-saturate {
    -webkit-filter: saturate(2);
    -o-filter: saturate(2);
    filter: saturate(2);
}
.obj-brightness {
    -webkit-filter: brightness(130%);
    -o-filter: brightness(130%);
    filter: brightness(130%);
}
.obj-hue-yellow {
    -webkit-filter: hue-rotate(20deg);
    -o-filter: hue-rotate(20deg);
    filter: hue-rotate(20deg);
}
.obj-hue-green {
    -webkit-filter: hue-rotate(90deg);
    -o-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
}
.obj-hue-blue {
    -webkit-filter: hue-rotate(190deg);
    -o-filter: hue-rotate(190deg);
    filter: hue-rotate(190deg);
}
.obj-hue-purple {
    -webkit-filter: hue-rotation(250deg);
    -o-filter: hue-rotation(250deg);
    filter: hue-rotation(250deg);
}
.obj-hue-pink {
    -webkit-filter: hue-rotation(320deg);
    -o-filter: hue-rotation(320deg);
    filter: hue-rotation(320deg);
}
.obj-sepia {
    -webkit-filter: sepia(100%);
    -o-filter: sepia(100%);
    filter: sepia(100%);
}
.obj-contrast {
    -webkit-filter: contrast(150%);
    -o-filter: contrast(150%);
    filter: contrast(150%);
}
/*------------------------------------*\
    13: MISC
\*------------------------------------*/
.font-reset {
    font-size: 2rem;
}
/* Slick carousel */
.slick-slide {
    outline: none;
}
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Blog */
/* Main blog page ( recent posts etc ) */
.blog-header-wrap {
    margin: 30px 0;
}
body div.container .post-item-header {
    background: #265593;
}
body div.container .post-item-header h2 {
    padding: 18px 0;
}
body div.container .post-item-header a, body div.container .post-item-header h1, body div.container .post-item-header h2 {
    color: #fff;
}
body div.container .post-item .post-content a {
    background: #d3af37;
    color: #fff;
}
body div.container .post-item .post-content a:hover {
  background: #9f852c;
}
body div.container .post-item p {
    border-color: #265593;
}
/* Blog sidebar */
.blog-wrap .blog-sidebar {
    margin-top: 20px;
}
.blog-sidebar {
    background: transparent;
    padding: 0;
    border: 1px solid #265593;
}
.blog-sidebar h2 {
    margin-bottom: 0;
}
.blog-sidebar a.blog-sidebar-link {
    display: block;
    padding: 15px;
    box-shadow: 0 2px 5px -2px #000;
    background: #fff;
    transition: box-shadow 0.1s, transform 0.2s;
    background: #fff;
    position: relative;
}
.blog-sidebar a.blog-sidebar-link:hover {
    box-shadow: 0 5px 25px -6px #000;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
}
.sidebar-thumbnail img {
    margin: auto;
}
.blog-sidebar article h2 {
    text-align: center;
}
/* Single blog post page */
body.single-post header {
    background: #fff;
}
.blog-header {
    margin: 15px 0;
}
.blog-post-content {
    padding: 15px 0;
    font-family: 'Lato';
}
.blog-post-content h1 {
    position: relative;
    bottom: auto;
    font-size: 2.5rem;
    color: #000;
}
.blog-return {
    padding: 15px 0 45px;
}
.blog-return a.blog-return-btn {
    display: inline-block;
    background: #d3af37;
}
.blog-return a.blog-return-btn:hover {
  background: #9f852c;
}