/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Sticky Footer.........Make Footer always stick to bottom.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 * Flexbox...............Emulate modern flexbox layout.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Block-list............Create big blocky lists of content.
 * Matrix................Table like layouts for lists.
 * Multi-list............Multiple column lists.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */

/*------------------------------------*\
    Generic
\*------------------------------------*/

/**
 * Box-sizing
 */

* {
    box-sizing: border-box;
}

input[type='text']::-webkit-input-placeholder {
    opacity: 0.4;
}
input[type='text']::-moz-placeholder {
    opacity: 0.4;
}
input[type='search']::-webkit-input-placeholder {
    opacity: 0.4;
}
input[type='search']::-moz-placeholder {
    opacity: 0.4;
}
input[type='email']::-webkit-input-placeholder {
    opacity: 0.4;
}
input[type='email']::-moz-placeholder {
    opacity: 0.4;
}
input[type='tel']::-webkit-input-placeholder {
    opacity: 0.4;
}
input[type='tel']::-moz-placeholder {
    opacity: 0.4;
}
textarea::-moz-placeholder {
    opacity: 0.4;
}
textarea::-webkit-input-placeholder {
    opacity: 0.4;
}
/**
 * Sticky Footer
 */
@font-face {
    font-family: 'ubuntulight';
    src: url( '../fonts/ubuntu-light-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/ubuntu-light-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ubuntubold';
    src: url( '../fonts/ubuntu-bold-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/ubuntu-bold-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ubuntumedium';
    src: url( '../fonts/ubuntu-medium-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/ubuntu-medium-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubunturegular';
    src: url( '../fonts/ubuntu-regular-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/ubuntu-regular-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotoregular';
    src: url( '../fonts/roboto-regular-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/roboto-regular-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotobold';
    src: url( '../fonts/roboto-bold-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/roboto-bold-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotolight';
    src: url( '../fonts/roboto-light-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/roboto-light-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotomedium';
    src: url( '../fonts/roboto-medium-webfont.woff2' ) format( 'woff2' ),
        url( '../fonts/roboto-medium-webfont.woff' ) format( 'woff' );
    font-weight: normal;
    font-style: normal;
}
.style_guide .all_img {
    display: block;
    float: left;
    margin: 10px;
    width: 146px;
    height: auto;
}
body {
    -webkit-font-smoothing: none; /* Looks very thin and awful */
    -webkit-font-smoothing: subpixel-antialiased; /* It is the default and looks bolder */
    -webkit-font-smoothing: antialiased; /* Looks pretty much the same than Windows */
}
@media ( min-width: 1025px ) {
    html {
        position: relative;
        min-height: 100%;
    }
    body {
        margin: 0 0 0;
        /* TODO: bottom = footer height */
        font-family: 'robotoregular';
    }
}
body {
    font-family: 'robotoregular';
    overflow-x: hidden;
}
/** * Images * * These selectors are hard cast because they are only used * by wordpress wyswyg when adding images to content */
/* TODO: Update image bottom margin to match paragraph margin */
img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
    height: auto;
    max-width: 50%;
}
img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    height: auto;
    max-width: 100%;
}
img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    margin: 0 0 22px 0;
}
img.alignright,
.wp-caption.alignright {
    float: right;
    margin: 0 0 22px 30px;
}
img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 0 30px 22px 0;
}
img.aligncenter,
.wp-caption.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*------------------------------------*\ Typography \*------------------------------------*/
/* Optional: use https://www.gridlover.net/try to create vertical rhythm. Note: you'll most likely need to modify the code generated from gridlover to match the prototypes.*/
/* Please set up line-heights in ems */
body {
    margin: 0;
    padding: 0;
}
h1,
.h1 {
    font-size: 72px;
    font-weight: 400;
    line-height: 65px;
    text-transform: uppercase;
    font-family: 'ubuntubold';
}
h2,
.h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    padding: 0 0 25px;
    margin: 0;
    position: relative;
}
h2::before {
    position: absolute;
    margin-left: -35px;
    margin-top: 0;
    content: '';
    background: url( ../images/title.png );
    width: 21px;
    height: 21px;
}
h3,
.h3 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    position: relative;
}

h3:before {
    position: absolute;
    margin-left: -20px;
    content: '';
    background: url( ../images/h3_after.png );
    width: 14px;
    height: 14px;
}
h4,
.h4 {
    background: rgba( 0, 0, 0, 0.4 );
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'ubuntubold';
    padding: 5px 15px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}

a {
    color: #b7b7b7;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
input:focus {
    outline: none;
}
.uppercase {
    text-transform: uppercase;
}
.testi_img {
    background: #fff;
    padding: 20px;
}
/*------------------------------------*\ COMPONENTS \*------------------------------------*/
/** * Wrappers */
.container {
    position: relative;
}
.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    /* TODO: Update paddings to match your needed grid sizing */
    padding-right: 10px;
}
.contain {
    /* background: url(../images/bg.jpg) 0 0 no-repeat;
    background-size: cover; */
    padding: 95px 0;
    margin: 0;
    color: #fff;
    font-family: 'robotoregular';
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.left_contain {
    max-width: 797px;
    float: left;
    margin: 0;
    padding: 0;
}
.contain h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    padding: 0;
    margin: 0;
}
.contain h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png );
    width: 21px;
    height: 21px;
}
.contain p {
    margin: 0;
    padding: 27px 0 0 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}
.contain ul {
    margin: 0;
    padding: 27px 0 0 35px;
    list-style: none;
}
.contain ul li {
    background: url( ../images/bullet.png ) 0 10px no-repeat;
    padding: 0 0 0 12px;
    margin: 0;
    line-height: 22px;
    font-size: 15px;
}
.right_contain {
    float: right;
    margin: 0;
    padding: 0;
    width: 456px;
    position: relative;
}
.right_contain img {
    border-radius: 5px;
    display: block;
}
.first_pict {
    margin-left: 49px;
}
.first_pict img {
    width: 98%;
}
.second_pict {
    margin-top: -22px;
}
.service {
    background: url( ../images/service_bg.jpg ) center no-repeat;
    margin: 0;
    background-size: cover;
}
.service .container {
    padding: 0;
}
.service_overlay {
    padding: 96px 0;
    background: rgba( 17, 17, 17, 0.9 );
}
.service ul {
    padding: 0;
    margin: 0;
    text-align: center;
}
.service ul li {
    padding: 0;
    margin: 0 13px 0 0;
    display: inline-block;
    width: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}
.service_pict {
    height: 193px;
}
.service ul li img {
    max-width: 100%;
    display: block;
    transition: all 0.1s ease-in-out;
    height: auto;
}
.service ul li:last-child {
    margin-right: 0;
}
.service_title {
    background: #000;
    line-height: 46px;
    font-weight: 400;
    font-size: 18px;
    font-family: 'ubuntumedium';
    display: block;
    color: #fff;
    position: relative;
    z-index: 9;
}
.service-content {
    width: 100%;
    height: 100%;
    padding: 22px;
    background: rgba( 183, 183, 183, 0.9 );
    text-align: left;
}
.service-content p {
    font-family: 'robotoregular';
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    margin: 0;
    color: #000;
}
.service-content span {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    padding-top: 0;
    margin-top: 10px;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}
.service-content span:after {
    background: url( ../images/a_bulet.png ) no-repeat;
    position: absolute;
    right: -15px;
    width: 10px;
    height: 11px;
    top: 4px;
    position: absolute;
    content: '';
}
.up_hover {
    top: 147px;
    position: absolute;
    transition: all 0.3s ease-in-out;
    height: 193px;
    overflow: hidden;
}
.service ul li:hover .up_hover {
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-in-out;
}
.service ul li:hover .service_pict {
    padding-top: 45px;
    transition: all 0.1s ease-in-out;
}
.service ul li:hover .service_title {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.service h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    padding: 0 0 39px 0;
    margin: 0;
    text-align: center;
    color: #fff;
}
.service h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png ) 0 0 no-repeat;
    width: 21px;
    height: 41px;
    padding: 0 0 0 0;
}
.rental {
    padding: 100px 0;
    margin: 0;
}
.rental img {
    display: block;
    max-width: 100%;
}
.rental img.small {
    display: none;
}
.rent_gallery {
    max-width: 645px;
    float: left;
    padding: 0;
    margin: 0;
}
.rental_text {
    max-width: 602px;
    float: right;
    margin: 0;
    padding: 30px 0 0 0;
    font-family: 'robotoregular';
    font-size: 15px;
    line-height: 21px;
    color: #fff;
    font-weight: 400;
}
.rental_text h2 {
    font-family: 'ubuntumedium';
    font-weight: 400;
    font-size: 36px;
    padding: 0 0 30px 0;
    margin: 0;
}
.rental_text h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png ) 0 0 no-repeat;
    width: 21px;
    height: 41px;
    padding: 0 0 0 0;
}
.rental_text p {
    padding-bottom: 30px;
    margin: 0;
}
.home_news {
    background: url( ../images/bg.jpg ) 0 0 no-repeat;
    padding: 0;
    margin: 0;
    background-size: cover;
    font-family: 'robotoregular';
    font-size: 15px;
    line-height: 21px;
    color: #fff;
    font-weight: normal;
}
.home_news .tag {
    background: rgba( 0, 0, 0, 0.4 );
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    padding: 5px 15px;
    max-width: 369px;
    font-family: 'robotobold';
}
.home_news .date {
    background: rgba( 0, 0, 0, 0.4 );
    font-size: 16px;
    line-height: 26px;
    padding: 5px 15px;
    display: inline-block;
    margin: 5px 0 20px 0;
}

.home_news_inner {
    background: url( ../images/right_pict.jpg ) right 0 no-repeat;
    padding: 80px 0;
    margin: 0;
    background-size: 50% 100%;
    position: relative;
}
.news_text {
    padding-right: 46px;
}
.home_newws_pict {
    display: none;
}
.home_news_inner h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    padding: 0 0 30px 0;
    margin: 0;
}
.home_news_inner h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png ) 0 0 no-repeat;
    width: 21px;
    height: 41px;
    padding: 0 0 0 0;
}
.home_news_inner p {
    padding-bottom: 30px;
    margin: 0;
}
.news_text:after {
    content: '';
    background: url( ../images/arrow.png ) 0 0 no-repeat;
    position: absolute;
    right: -32px;
    width: 32px;
    height: 59px;
    top: 50%;
    margin: -30px 0 0 0;
}
.home_testimonial {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
}
.testimonial_overlay {
    background: rgba( 17, 17, 17, 0.9 );
    margin: 0;
    padding: 95px 0;
}
.home_testimonial h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    padding: 0 0 30px 0;
    margin: 0;
    text-align: center;
    color: #fff;
}
.home_testimonial h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png ) 0 0 no-repeat;
    width: 21px;
    height: 41px;
    padding: 0 0 0 0;
}
.testimonial_content {
    background: #000;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 0 20px;
}
.testimonial_logo {
    text-align: center;
    height: 171px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial_logo img {
    margin: 0 auto;
    display: block;
}
.testimonila_text {
    padding: 40px 23px;
    margin: 0;
}
.testimonila_text p {
    color: #fff;
    padding: 0 28px 25px 28px;
    margin: 0;
    background: url( ../images/tag.png ) 0 0 no-repeat;
    min-height: 105px;
    font-size: 15px;
    line-height: 21px;
}
.blg_title {
    text-align: center;
    padding: 28px 0 15px 0;
    border-top: 1px solid #151515;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.trust ul {
    padding: 22px 0 0 0;
    margin: 0;
    list-style: none;
}
.trust ul li {
    padding: 0 15px 0 0;
    float: left;
}
.blg_designation {
    text-align: center;
    padding: 0;
    color: #ccc;
    font-size: 16px;
    font-weight: 400;
}
.read_more {
    text-align: center;
    padding: 25px 0 0 0;
    margin: 0;
}
.read_more a {
    display: inline-block;
    padding: 0 21px;
    margin: 0;
    line-height: 48px;
    background: #ccc;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 16px;
}
.read_more a:hover {
    opacity: 0.5;
}
.test_btt {
    display: none !important;
}
/* TODO: If using fixed widths per size update widths below */
@media ( max-width: 479px ) {
    .container {
        width: 95%;
        padding: 0;
    }
}
@media ( min-width: 600px ) {
    .container {
        width: 95%;
    }
}
@media ( min-width: 768px ) {
    .container {
        width: 95%;
    }
    .right_contain {
        width: 35%;
    }
    .right_contain img {
        width: 85%;
    }
    .first_pict {
        margin-left: 20px;
    }
    .first_pict img {
        width: 100%;
    }
    .left_contain {
        max-width: 61%;
    }
    .contain h2 {
        font-size: 22px;
    }
    .contain {
        font-size: 14px;
    }
}

@media ( min-width: 1025px ) {
    .container {
        width: 990px;
    }
    .contain h2 {
        font-size: 29px;
    }
}
@media ( min-width: 1100px ) {
    .container {
        width: 1080px;
    }
    .contain h2 {
        font-size: 29px;
    }
}
@media ( min-width: 1200px ) {
    .container {
        width: 1160px;
    }
    .mobile_primary ul li a {
        font-size: 16px;
    }
    .contain h2 {
        font-size: 35px;
    }
    .contain {
        font-size: 16px;
    }
}
@media ( min-width: 1366px ) {
    .container {
        width: 1318px;
    }
    .right_contain img {
        width: auto;
    }
    .first_pict img {
        width: 98%;
    }
    .first_pict {
        margin-left: 49px;
    }
}
@media ( min-width: 1400px ) {
    .first_pict img {
        width: auto;
    }
}
@media ( max-width: 1440px ) {
    .home_news_inner {
        padding: 50px 0;
        background-size: 50% 100%;
    }
}
@media ( max-width: 1365px ) {
    .service ul li {
        margin: 0 16px 16px 0;
        width: 276px;
    }
    .rent_gallery {
        max-width: 506px;
    }
}
@media ( max-width: 1200px ) {
    .rent_gallery {
        max-width: 422px;
    }
}
@media ( max-width: 1169px ) {
    .service ul li {
        margin: 0 15px 16px 0;
        width: 218px;
    }
    .rental img.big {
        display: none;
    }
    .rental img.small {
        display: block;
    }
}
@media ( max-width: 1024px ) {
    .rental img.big {
        display: none;
    }
    .rental img.small {
        display: block;
        margin: 0 auto;
    }
    .rental_text {
        max-width: 335px;
    }
    .rental_text h2 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    .rental_text p {
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 15px;
    }
    .home_news_inner {
        background: none !important;
    }
    .home_newws_pict {
        display: block;
    }
    .home_newws_pict img {
        width: 100%;
        height: auto;
        display: block;
    }
    .news_text:after {
        display: none;
    }
    .testimonial_overlay .col-sm-4:last-of-type {
        display: none;
    }
    .testimonial_overlay .col-sm-4 {
        width: 50%;
        min-height: 545px;
    }
    .test_btt {
        display: inline-block !important;
    }
}
@media ( max-width: 767px ) {
    .contain {
        padding: 50px 0;
    }
    .service ul li,
    .service ul li:last-child {
        margin: 0 auto 15px auto;
        width: 252px;
        display: block;
    }
    .contain h2,
    .service h2,
    .home_news_inner h2 {
        font-size: 23px;
        line-height: 28px;
    }

    .left_contain,
    .rental_text,
    .news_text {
        width: 100%;
        float: none;
        padding: 0 20px;
        max-width: 100%;
    }
    .rent_gallery {
        margin: 0 auto;
        float: none;
    }
    .right_contain {
        display: none;
    }
    .service h2:before {
        background-position: 0 0;
    }
    .testimonial_overlay .col-sm-4 {
        width: 100%;
        display: none;
    }
    .testimonial_overlay .col-sm-4:first-of-type {
        display: block;
    }
    .testimonial_overlay .row,
    .home_news .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .home_news_inner .btn {
        margin-bottom: 10px;
    }
}

/* TODO: if usign a max-width fluid layout remove above media queries and uncomment below */
/* .container {
     max-width: 1160px;
}
 */
/** * Grid System * * Bootstrap v3.3.1 (http://getbootstrap.com) * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * -------------------------------------------------------------------------- * Base setup 20px gutters * * Phones - xxs - < 600px ** Default ** * Small Tablets - xs - >= 600px * Tablets - sm - >= 768px * Desktop - md - >= 1025px * Large Desktop - lg - >= 1200px * -------------------------------------------------------------------------- * Learn more here: http://getbootstrap.com/css/#grid * -------------------------------------------------------------------------- */
.row {
    margin-left: -15px;
    /* TODO: Update margin number to match container padding */
    margin-right: -15px;
}
[class*='col-'] {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
/* Extra Extra small devices (devices, less than 600px) */
[class*='col-xxs-'] {
    float: left;
}
.col-xxs-12 {
    width: 100%;
}
.col-xxs-11 {
    width: 91.66666667%;
}
.col-xxs-10 {
    width: 83.33333333%;
}
.col-xxs-9 {
    width: 75%;
}
.col-xxs-8 {
    width: 66.66666667%;
}
.col-xxs-7 {
    width: 58.33333333%;
}
.col-xxs-6 {
    width: 50%;
}
.col-xxs-5 {
    width: 41.66666667%;
}
.col-xxs-4 {
    width: 33.33333333%;
}
.col-xxs-3 {
    width: 25%;
}
.col-xxs-2 {
    width: 16.66666667%;
}
.col-xxs-1 {
    width: 8.33333333%;
}
.col-xxs-pull-12 {
    right: 100%;
}
.col-xxs-pull-11 {
    right: 91.66666667%;
}
.col-xxs-pull-10 {
    right: 83.33333333%;
}
.col-xxs-pull-9 {
    right: 75%;
}
.col-xxs-pull-8 {
    right: 66.66666667%;
}
.col-xxs-pull-7 {
    right: 58.33333333%;
}
.col-xxs-pull-6 {
    right: 50%;
}
.col-xxs-pull-5 {
    right: 41.66666667%;
}
.col-xxs-pull-4 {
    right: 33.33333333%;
}
.col-xxs-pull-3 {
    right: 25%;
}
.col-xxs-pull-2 {
    right: 16.66666667%;
}
.col-xxs-pull-1 {
    right: 8.33333333%;
}
.col-xxs-pull-0 {
    right: auto;
}
.col-xxs-push-12 {
    left: 100%;
}
.col-xxs-push-11 {
    left: 91.66666667%;
}
.col-xxs-push-10 {
    left: 83.33333333%;
}
.col-xxs-push-9 {
    left: 75%;
}
.col-xxs-push-8 {
    left: 66.66666667%;
}
.col-xxs-push-7 {
    left: 58.33333333%;
}
.col-xxs-push-6 {
    left: 50%;
}
.col-xxs-push-5 {
    left: 41.66666667%;
}
.col-xxs-push-4 {
    left: 33.33333333%;
}
.col-xxs-push-3 {
    left: 25%;
}
.col-xxs-push-2 {
    left: 16.66666667%;
}
.col-xxs-push-1 {
    left: 8.33333333%;
}
.col-xxs-push-0 {
    left: auto;
}
.col-xxs-offset-12 {
    margin-left: 100%;
}
.col-xxs-offset-11 {
    margin-left: 91.66666667%;
}
.col-xxs-offset-10 {
    margin-left: 83.33333333%;
}
.col-xxs-offset-9 {
    margin-left: 75%;
}
.col-xxs-offset-8 {
    margin-left: 66.66666667%;
}
.col-xxs-offset-7 {
    margin-left: 58.33333333%;
}
.col-xxs-offset-6 {
    margin-left: 50%;
}
.col-xxs-offset-5 {
    margin-left: 41.66666667%;
}
.col-xxs-offset-4 {
    margin-left: 33.33333333%;
}
.col-xxs-offset-3 {
    margin-left: 25%;
}
.col-xxs-offset-2 {
    margin-left: 16.66666667%;
}
.col-xxs-offset-1 {
    margin-left: 8.33333333%;
}
.col-xxs-offset-0 {
    margin-left: 0%;
}
/* Extra small devices (phones, 600px and up) */
@media ( min-width: 600px ) {
    [class*='col-xs-'] {
        float: left;
    }
    .col-xs-12 {
        width: 100%;
    }
    .col-xs-11 {
        width: 91.66666667%;
    }
    .col-xs-10 {
        width: 83.33333333%;
    }
    .col-xs-9 {
        width: 75%;
    }
    .col-xs-8 {
        width: 66.66666667%;
    }
    .col-xs-7 {
        width: 58.33333333%;
    }
    .col-xs-6 {
        width: 50%;
    }
    .col-xs-5 {
        width: 41.66666667%;
    }
    .col-xs-4 {
        width: 33.33333333%;
    }
    .col-xs-3 {
        width: 25%;
    }
    .col-xs-2 {
        width: 16.66666667%;
    }
    .col-xs-1 {
        width: 8.33333333%;
    }
    .col-xs-pull-12 {
        right: 100%;
    }
    .col-xs-pull-11 {
        right: 91.66666667%;
    }
    .col-xs-pull-10 {
        right: 83.33333333%;
    }
    .col-xs-pull-9 {
        right: 75%;
    }
    .col-xs-pull-8 {
        right: 66.66666667%;
    }
    .col-xs-pull-7 {
        right: 58.33333333%;
    }
    .col-xs-pull-6 {
        right: 50%;
    }
    .col-xs-pull-5 {
        right: 41.66666667%;
    }
    .col-xs-pull-4 {
        right: 33.33333333%;
    }
    .col-xs-pull-3 {
        right: 25%;
    }
    .col-xs-pull-2 {
        right: 16.66666667%;
    }
    .col-xs-pull-1 {
        right: 8.33333333%;
    }
    .col-xs-pull-0 {
        right: auto;
    }
    .col-xs-push-12 {
        left: 100%;
    }
    .col-xs-push-11 {
        left: 91.66666667%;
    }
    .col-xs-push-10 {
        left: 83.33333333%;
    }
    .col-xs-push-9 {
        left: 75%;
    }
    .col-xs-push-8 {
        left: 66.66666667%;
    }
    .col-xs-push-7 {
        left: 58.33333333%;
    }
    .col-xs-push-6 {
        left: 50%;
    }
    .col-xs-push-5 {
        left: 41.66666667%;
    }
    .col-xs-push-4 {
        left: 33.33333333%;
    }
    .col-xs-push-3 {
        left: 25%;
    }
    .col-xs-push-2 {
        left: 16.66666667%;
    }
    .col-xs-push-1 {
        left: 8.33333333%;
    }
    .col-xs-push-0 {
        left: auto;
    }
    .col-xs-offset-12 {
        margin-left: 100%;
    }
    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-xs-offset-9 {
        margin-left: 75%;
    }
    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-xs-offset-6 {
        margin-left: 50%;
    }
    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-xs-offset-3 {
        margin-left: 25%;
    }
    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-xs-offset-0 {
        margin-left: 0%;
    }
}
/* Small devices (tablets, 768px and up) */
@media ( min-width: 768px ) {
    [class*='col-sm-'] {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}
/* Medium devices (desktops, 1025px and up) */
@media ( min-width: 1025px ) {
    [class*='col-md-'] {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media ( min-width: 1200px ) {
    [class*='col-lg-'] {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}
/** * Clearfix * Apply clearing without adding additional markup */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: ' ';
    display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}
/** * Flexbox * Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate * it, in a way * * Demo: jsfiddle.net/inuitcss/ufUh2 */
.flexbox {
    display: table;
    width: 100%;
}
/** * Nasty hack to circumvent Modernizr conflicts. */
html.flexbox {
    display: block;
    width: auto;
}
.flexbox-item {
    display: table-cell;
    vertical-align: middle;
}
.social_hide {
    display: none;
}
.social_hide img {
    vertical-align: bottom;
    margin-left: 10px;
}
/*--------------------------------------------------------------*\ OBJECTS Objects are independent generic stylibf classes or UI peices. All styles for objects should be self contained. e.g. an object shouldn't rely on trump helpers to apply padding etc. \*--------------------------------------------------------------*/
/** * Buttons */
.btn {
    line-height: 42px !important;
    padding: 0 42px;
    display: inline-block;
    color: #fff !important;
    background: #000 !important;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 5px;
    border: 3px solid #000;
    border-bottom: 3px solid #000;
}

.style_guide p a.btn {
    border-bottom: 3px solid #000;
}

.btn:hover {
    background: rgba( 0, 0, 0, 0.3 ) !important;
    transition: all 0.5s ease-in-out;
}
.btn-primary {
    line-height: 42px !important;
    padding: 0 30px;
    display: inline-block;
    color: #fff !important;
    background: #000 !important;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 5px;
    border: 3px solid #000;
    border-bottom: 3px solid #000 !important;
    line-height: 16px;
}
.btn-primary:hover {
    background: rgba( 0, 0, 0, 0.3 ) !important;
    transition: all 0.5s ease-in-out;
}
.btn-secondary {
    line-height: 42px !important;
    padding: 0 30px;
    display: inline-block;
    color: #000 !important;
    background: #fff !important;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 5px;
    border: 3px solid #fff;
    border-bottom: 3px solid #fff !important;
}
.btn-secondary:hover {
    background: rgba( 255, 255, 255, 0.3 ) !important;
    transition: all 0.5s ease-in-out;
}

.btn-block {
    display: block;
    width: 100%;
}
/** * Icons */

/** * Block-list / Matrix * Create big blocky lists of content * * Demo: jsfiddle.net/inuitcss/hR57q */
.block-list,
.matrix,
.block-list > li,
.matrix > li {
    border: 0 solid #ccc;
}
.block-list,
.matrix {
    list-style: none;
    margin-left: 0;
    border-top-width: 1px;
}
.block-list > li,
.matrix > li {
    border-bottom-width: 1px;
    padding: 12px;
}
.block-list-link,
.matrix-link {
    display: block;
    padding: 12px;
    margin: -12px;
}
/** * Matrix * * Demo: jsfiddle.net/inuitcss/Y2zrU */
.matrix {
    border-left-width: 1px;
}
.matrix > li {
    float: left;
    border-right-width: 1px;
}
/** * Multi-list * * Stack lists into columns * Demo: jsfiddle.net/inuitcss/Y2zrU */
.multi-list {
    list-style: none;
    margin-left: 0;
}
.multi-list > li {
    float: left;
}
.multi-list-padded > li {
    padding-left: 10px;
    padding-right: 10px;
}
/* TODO: update to match container padding */
/** * Apply these classes alongside the `.matrix` or `.multi-list` classes on * lists to determine how wide their columns are. */
.two-cols > li {
    width: 50%;
}
.three-cols > li {
    width: 33.333%;
}
.four-cols > li {
    width: 25%;
}
.five-cols > li {
    width: 20%;
}
/** * Unfortunately we have to qualify this selector in order to bring its * specificity above the `.[number]-cols > li` selectors above. */
.matrix > .all-cols,
.multi-list > .all-cols {
    width: 100%;
}
/** * Tables */
table {
    border-collapse: collapse;
}

/* Removes default webkit form styling */
input:not( [type='radio'] ):not( [type='checkbox'] ),
button,
textarea {
    -webkit-appearance: none;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border: none;
    padding: 0;
}

/* --------------------------------------------------*\ UI UI peices are site specific non generic styles. eg: header, footer, sidebar, page specific styles \* -----------------------------------------------------*/
/** * Page-head */
.page-header {
    background: #111111;
    padding: 0 0;
    margin: 0;
    position: fixed;
    border-bottom: 5px solid #242424;
    height: 154px;
    padding: 27px 0 0 0;
    width: 100%;
    z-index: 9999999999;
}
.home .page-header {
    background: rgba( 17, 17, 17, 0.9 );
}
.logo {
    float: left;
    margin: 0;
    padding: 0;
}
.right_header {
    float: right;
    margin: 0;
    padding: 0;
    position: relative;
}
.top_header {
    margin: 0;
    padding: 20px 0 0 0;
}
.search_top {
    float: right;
    padding: 0 8px 0 11px;
    width: 228px;
    height: 27px;
    background: #ccc;
}
.search_top input[type='search'] {
    background: #ccc;
    float: left;
    margin: 0;
    padding: 0;
    height: 27px;
    width: 180px;
    border: none;
    font-family: 'ubunturegular';
    font-size: 14px;
    color: rgba( 0, 0, 0, 0.4 );
    font-weight: normal;
}
.search_top input[type='submit'] {
    background: url( ../images/search_icon.png ) center center no-repeat;
    float: right;
    margin: 0;
    padding: 0;
    height: 27px;
    width: 14px;
    border: none;
    text-indent: -99999px;
    cursor: pointer;
}
.call_top {
    float: right;
    margin: 0;
    padding: 0 15px 0 0;
    font-family: 'ubuntulight';
    font-size: 15px;
    color: #ccc;
    font-weight: 400;
    line-height: 27px;
}
.call_top a {
    font-size: 18px;
    color: #ccc;
    font-weight: 400;
    text-decoration: none;
    font-family: 'ubuntubold';
}
.menu-button {
    display: none;
}
.mobile_primary ul {
    margin: 0;
    padding: 22px 0 0 0;
}
.mobile_primary li {
    cursor: pointer;
    display: inline-block;
    padding: 0 15px 0 28px;
    position: relative;
    margin: 0;
}
.mobile_primary ul li a {
    color: #fff;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    padding: 0;
    font-size: 17px;
    line-height: 17px;
    display: block;
    position: relative;
    text-decoration: none;
    padding-bottom: 37px;
}
.mobile_primary ul li.current_page_item a {
    color: #999;
}
.mobile_primary ul li a:hover {
    color: #fff;
}

.fixed .sub-menu--button {
    top: 5px;
}
.mobile_primary .sub-menu {
    background: #111;
    display: none;
    position: absolute;
    top: 100%;
    min-width: 300px;
    z-index: 9999;
    padding: 0;
    left: 0;
}
.mobile_primary .sub-menu li {
    display: block;
    position: relative;
    padding: 0;
}
.mobile_primary ul li .sub-menu li a {
    color: #fff;
    text-transform: none;
    font-weight: 400;
    padding: 0 22px;
    font-size: 16px;
    line-height: 45px;
    display: block;
    position: relative;
    text-decoration: none;
    border: 1px solid #181818;
    border-bottom: none;
    font-family: 'robotoregular';
}
.mobile_primary ul li .sub-menu li a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
/* .mobile_primary ul li .sub-menu li .sub-menu--button {
     top:20px;
     background:url(../images/nav_side.png) 0 0 no-repeat;
     right:22px;
     width:4px;
     height:9px;
}*/
/* .mobile_primary ul li .sub-menu li:hover .sub-menu--button {
     background:url(../images/nav_sideh.png) 0 0 no-repeat;
}*/
.mobile_primary .sub-menu li a:after,
.mobile_primary .sub-menu li.current-menu-item > a:after,
.mobile_primary .sub-menu li.current-page-ancestor > a:after,
.mobile_primary .sub-menu li.menu-item-has-children:hover > a:after,
.mobile_primary .sub-menu li.menu-item-has-children > a:hover:after {
    content: none;
}
.mobile_primary .sub-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
}
.mobile_primary li:hover > .sub-menu {
    display: block;
}
.mobile_primary li:hover > .sub-menu li:hover > .sub-menu {
    display: block;
    top: 0;
}
.mobile_primary li:last-child .sub-menu {
    right: 0;
    margin-left: -90px;
}
.mobile_primary li.menu-item-has-children a:after {
    right: -15px;
    background: url( ../images/nav.png ) no-repeat right center;
    width: 11px;
    height: 5px;
    top: 6px;
    position: absolute;
    content: '';
}

.mobile_primary .sub-menu li a:after,
.mobile_primary .sub-menu li.current-menu-item > a:after,
.mobile_primary .sub-menu li.current-page-ancestor > a:after,
.mobile_primary .sub-menu li.menu-item-has-children:hover > a:after,
.mobile_primary .sub-menu li.menu-item-has-children > a:hover:after {
    content: none;
}
.mobile_primary .sub-menu li.menu-item-has-children:hover .sub-menu li a:after {
    content: none;
}
.mobile_primary li.menu-item-has-children li.menu-item-has-children a:after {
    right: 15px;
    background: url( ../images/nav_sideh_nr.png ) no-repeat right center;
    width: 4px;
    height: 9px;
    top: 50%;
    position: absolute;
    margin-top: -4.5px;
    content: '';
}

.mobile_primary
    li.menu-item-has-children
    li.menu-item-has-children
    a:hover:after {
    right: 15px;
    background: url( ../images/nav_sideh.png ) no-repeat right center;
    width: 4px;
    height: 9px;
    top: 50%;
    position: absolute;
    margin-top: -4.5px;
    content: '';
}
.mobile_primary ul li .sub-menu li a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.mobile_primary .sub-menu li.menu-item-has-children:hover a {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    border-bottom: none;
}
.mobile_primary .sub-menu li.menu-item-has-children:hover a:after {
    right: 15px;
    background: url( ../images/nav_sideh.png ) no-repeat right center;
    width: 4px;
    height: 9px;
    top: 50%;
    position: absolute;
    margin-top: -4.5px;
    content: '';
}

.mobile_primary .sub-menu li.menu-item-has-children:hover li a {
    background-color: #111;
    color: #fff;
    border-color: #181818;
    border-bottom: none;
}
.mobile_primary .sub-menu li.menu-item-has-children:hover li a:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}
.fix_search {
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 25px;
    display: none;
    background: url( ../images/search_icon_w.png ) 0 0 no-repeat;
    width: 14px;
    height: 14px;
    text-indent: -99999px;
}
.search-box {
    position: absolute;
    width: 100%;
    z-index: 99999;
    height: 60px;
    display: none;
    background: #ccc;
    padding: 10px 0 10px 0;
}
.search-box input[type='search'] {
    height: 36px;
    background: #ccc;
    border: none;
    width: 80%;
    border-bottom: 1px solid #000;
}
.search-box input[type='submit'] {
    line-height: 34px;
    padding: 0 0;
    color: #fff;
    background: #000;
    transition: all 0.5s ease-in-out;
    font-size: 12px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: 3px solid #000;
    width: 18%;
    float: right;
}
.search-box input[type='submit']:hover {
    background: rgba( 0, 0, 0, 0.3 );
    transition: all 0.5s ease-in-out;
}
.fixed {
    height: 100px;
    padding: 12px 0;
    top: 0;
    z-index: 99999999;
}
.fixed .logo img {
    height: 76px;
    width: auto;
}
.fixed .top_header {
    display: none;
}
.fixed .mobile_primary ul li a {
    font-size: 14px;
    padding-bottom: 47px;
}
.fixed .mobile_primary {
    margin-right: 40px;
}
.fixed .fix_search {
    display: block;
}
.tab_phone {
    background: url( ../images/mobile_icon.png ) 0 0 no-repeat;
    float: right;
    margin: 27px 30px 0 0;
    padding: 0 0 0 25px;
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 17px;
    display: none;
}
.tab_phone a {
    text-decoration: none;
    color: #fff;
}
.mob_header {
    display: none;
}
@media ( min-width: 1100px ) {
    .mobile_primary ul li a {
        font-size: 14px;
    }
}
@media ( min-width: 1200px ) {
    .mobile_primary ul li a {
        font-size: 16px;
    }
}
@media ( max-width: 1099px ) {
    .page-header .container {
        position: static;
    }
    .top_header {
        display: none;
    }
    .right_header {
        float: none;
        position: static;
    }
    .fixed {
        position: relative;
    }
    .page-header {
        height: 100px;
        padding: 12px 0;
        position: relative;
    }
    .page-header .logo img {
        height: 76px;
        width: auto;
    }
    .menu-button {
        background: url( ../images/menu.png ) no-repeat;
        height: 36px;
        width: 41px;
        display: block;
        border: none;
        cursor: pointer;
        margin: 20px 0 0 0;
        float: right;
    }
    .mobile_primary li.menu-item-has-children a::after {
        display: none;
    }
    .fix_search {
        position: relative;
        right: 0;
        cursor: pointer;
        top: 0;
        display: block;
        background: url( ../images/search_mobile.png ) 0 0 no-repeat;
        width: 54px;
        height: 38px;
        text-indent: -99999px;
        float: right;
        margin: 18px 20px 0 0;
    }
    .mobile_primary {
        display: none;
        background: #2c2c2c;
        position: absolute;
        right: 0;
        width: 100%;
        top: 88px;
        z-index: 999999;
        border: 1px solid #535353;
    }
    .mobile_primary ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile_primary li {
        border-bottom: 1px solid #535353;
        display: block;
        position: relative;
        padding: 0;
        background: none;
    }
    .mobile_primary ul li a,
    .fixed .mobile_primary ul li a {
        padding: 17px 8px;
        font-size: 16px;
        font-weight: 500;
    }
    .mobile_primary li:first-child {
        border-top: none;
    }
    .mobile_primary li:last-child {
        border-bottom: none;
    }
    .mobile_primary .sub-menu {
        display: none;
    }
    .mobile_primary li:last-child .sub-menu {
        margin-left: 0;
    }
    .mobile_primary .sub-menu li:first-child {
        border-top: 1px solid #fff;
    }
    .mobile_primary li ul.sub-menu li a {
        padding: 10px 20px;
        line-height: 30px;
    }
    .mobile_primary .sub-menu .sub-menu a {
        padding: 15px 0 15px 50px;
    }
    .mobile_primary .sub-menu--button {
        background: #111 url( ../images/nav.png ) no-repeat center;
        cursor: pointer;
        display: inline-block;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        z-index: 9999999999999;
        border-left: 1px solid #535353;
    }
    .mobile_primary .sub-menu li {
        display: block;
    }
    .mobile_primary li:hover .sub-menu {
        top: 0;
        display: none;
    }
    .page-header__primary {
        display: none;
    }
    .mobile_primary .sub-menu .sub-menu {
        left: auto;
        position: relative;
        top: 0;
    }
    .mobile_primary li ul.sub-menu li:hover ul.sub-menu {
        display: none;
        position: relative;
    }
    .mobile_primary .sub-menu {
        position: relative;
        top: 0;
        width: auto;
    }

    .mobile_primary li:hover > .sub-menu li:hover > .sub-menu {
        display: none;
    }
    .fixed .mobile_primary {
        margin-right: 0;
    }
    .tab_phone {
        display: block;
    }
    .page-header {
        background: #111 !important;
    }
}
@media ( max-width: 767px ) {
    .mob_header {
        display: block;
    }
    .tab_phone {
        display: none;
    }
    .maobile_phone {
        width: 100%;
        background: #2c2c2c;
        margin: 0;
        line-height: 40px;
        display: block;
        padding: 0 0 0 0;
        font-family: 'ubuntubold';
        font-weight: 400;
        font-size: 14px;
        text-align: center;
    }
    .maobile_phone span {
        background: url( ../images/mobile-phone.svg ) 0 0 no-repeat;
        margin: 0 0 0 0;
        padding: 0 0 0 18px;
        background-size: auto 100%;
    }
    .maobile_phone a {
        color: #fff;
        text-decoration: none;
    }
    .page-header {
        height: auto !important;
        padding-bottom: 0;
        border: none;
        background: #111 !important;
    }
    .page-header .logo img {
        width: 165px;
        height: auto;
    }
    .page-header.js-mobile-fixed-header {
        margin-bottom: 72px; /* height of mob_header */
    }
    .page-header.js-mobile-fixed-header .mob_header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .fix_search {
        width: 45px;
        background-size: 100%;
    }
    .menu-button {
        width: 32px;
        background-size: 100%;
    }
    .mob_call {
        background: #111;
        padding: 0;
        margin: 0;
    }
    .mob_call ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .mob_call ul li {
        padding: 0;
        margin: 0;
        font-family: 'ubuntumedium';
        font-weight: 400;
        font-size: 13px;
        width: 50%;
        float: left;
        text-transform: uppercase;
        text-align: center;
        line-height: 32px;
        border-right: 1px solid #2c2c2c;
    }
    .mob_call ul li a {
        color: #ccc;
        text-decoration: none;
        display: block;
    }
    .mobile_primary {
        top: 78px;
    }
}
/**/
/** * Fix Sticky Header Position * for when admin bar visible */
/* TODO: Uncomment if design has sticky header */
/* .admin-bar .page-header {
     top: 32px;
}
 @media screen and (max-width: 782px) {
     .admin-bar .page-header {
         top: 46px;
    }
}
 */
@media ( -webkit-min-device-pixel-ratio: 2 ), ( min-resolution: 192dpi ) {
    /* TODO: Add Retina-specific logo here */
}
/** * Navigation */
.nav-primary {
    margin: 0;
    padding: 0 0 0 0;
}

/** * Page-footer */
.page-footer {
    background: #111;
    padding: 62px 0 85px 0;
    margin: 0;
}
.page-footer a:hover {
    text-decoration: underline;
}
.f-col-1 {
    width: 296px;
    padding: 0;
    margin: 0;
    float: left;
    font-size: 13px;
    color: #fff;
    line-height: 20px;
}
.f-col-1 p {
    padding: 20px 0 0 0;
    margin: 0;
}
.f-col-1 a {
    text-decoration: none;
    color: #fff;
}
.f-col-2 {
    width: 360px;
    float: right;
    margin: 0;
    padding: 0;
}
.f-col-2 ul {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
}
.f-col-2 ul li {
    padding: 0 0 20px 0;
    margin: 0;
}
.f-col-2 ul li a {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    color: #555555;
    font-family: 'ubuntubold';
    font-weight: 400;
    text-decoration: none;
}
.f-col-2 ul li ul {
    float: none;
    padding: 15px 0 0 0;
}
.f-col-2 ul li ul li {
    padding: 0 0 0 0;
    margin: 0;
}
.f-col-2 ul li ul li a {
    color: #fff;
    font-weight: 400;
    font-family: 'robotoregular';
    font-size: 13px;
    line-height: 22px;
}
.social {
    font-size: 14px;
    color: #fff;
    display: block;
    vertical-align: middle;
    padding: 10px 0 0 0;
}
.social img:hover {
    opacity: 0.5;
}
.f-col-2 ul li .social a {
    display: inline-block;
    padding-left: 5px;
    vertical-align: middle;
}
.f-map {
    width: 482px;
    padding: 0;
    margin: 0 0 0 110px;
    float: left;
}
.f-map iframe {
    width: 100%;
    height: 382px;
}
.copyright {
    margin: 0;
    padding: 0;
    background: #000;
}
.copyright ul {
    margin: 0;
    padding: 0;
}
.copyright ul li {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
    color: #555;
    font-size: 14px;
    line-height: 45px;
    background: url( ../images/footer_border.png ) right center no-repeat;
    float: left;
}
.copyright ul li a {
    color: #555;
    text-decoration: none;
}
.copyright ul.no-border li {
    background: none;
}
@media ( max-width: 1365px ) {
    .f-map {
        margin-left: 10px;
        width: 440px;
    }
}
@media ( max-width: 1279px ) {
    .f-map {
        margin-left: 10px;
        width: 360px;
    }
}
@media ( max-width: 1024px ) {
    .f-col-2 ul li ul {
        display: none;
    }
    .f-col-2 ul {
        float: none;
        text-align: center;
        width: 100%;
    }
    .f-col-2 .pull-right {
        float: none !important;
    }
    .f-col-2 ul li {
        padding: 0 0 5px 0;
    }
    .f-map {
        width: 50%;
        padding: 0;
        margin: 20px 0 0 0;
        float: right;
    }
    .f-map iframe {
        width: 100%;
        height: 282px;
    }
    .copyright ul {
        text-align: center;
    }
}
@media ( max-width: 767px ) {
    .f-col-2 {
        display: none;
    }
    .f-map {
        width: 100%;
    }
}
/*------------------------------------*\ Trumps \*------------------------------------*/
@-ms-viewport {
    width: device-width;
}
/** * Images */
.img-responsive {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px !important;
}
.img-circle {
    border-radius: 50% !important;
}
.img-square {
    border-radius: 0 !important;
}
/** * Visiblity */
.show {
    display: block !important;
}
.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}
.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}
@media ( max-width: 599px ) {
    .visible-xxs {
        display: block !important;
    }
    table.visible-xxs {
        display: table;
    }
    tr.visible-xxs {
        display: table-row !important;
    }
    th.visible-xxs,
    td.visible-xxs {
        display: table-cell !important;
    }
    .visible-xxs-block {
        display: block !important;
    }
    .visible-xxs-inline {
        display: inline !important;
    }
    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}
@media ( min-width: 600px ) and ( max-width: 767px ) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
    .visible-xs-block {
        display: block !important;
    }
    .visible-xs-inline {
        display: inline !important;
    }
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}
@media ( min-width: 768px ) and ( max-width: 1024px ) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
    .visible-sm-block {
        display: block !important;
    }
    .visible-sm-inline {
        display: inline !important;
    }
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}
@media ( min-width: 1025px ) and ( max-width: 1199px ) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
    .visible-md-block {
        display: block !important;
    }
    .visible-md-inline {
        display: inline !important;
    }
    .visible-md-inline-block {
        display: inline-block !important;
    }
}
@media ( min-width: 1200px ) {
    .visible-lg {
        display: block !important;
    }
    table.visible-lg {
        display: table;
    }
    tr.visible-lg {
        display: table-row !important;
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
    .visible-lg-block {
        display: block !important;
    }
    .visible-lg-inline {
        display: inline !important;
    }
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}
/** * Hiding */
.hide,
.hidden-xxs-up {
    display: none !important;
}
.hidden {
    display: none !important;
    visibility: hidden !important;
}
.invisible {
    visibility: hidden !important;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
@media ( max-width: 599px ) {
    .hidden-xxs {
        display: none !important;
    }
}
@media ( min-width: 600px ) {
    .hidden-xs-up {
        display: none !important;
    }
}
@media ( min-width: 600px ) and ( max-width: 767px ) {
    .hidden-xs {
        display: none !important;
    }
}
@media ( max-width: 767px ) {
    .hidden-xs-down {
        display: none !important;
    }
}
@media ( min-width: 768px ) {
    .hidden-sm-up {
        display: none !important;
    }
}
@media ( min-width: 768px ) and ( max-width: 1024px ) {
    .hidden-sm {
        display: none !important;
    }
}
@media ( max-width: 1024px ) {
    .hidden-sm-down {
        display: none !important;
    }
    .testimonial_content {
        min-height: 520px;
        margin: 0;
    }
    .right_afc img {
        width: 100%;
    }
}
@media ( min-width: 1025px ) {
    .hidden-md-up {
        display: none !important;
    }
}
@media ( min-width: 1025px ) and ( max-width: 1199px ) {
    .hidden-md {
        display: none !important;
    }
}
@media ( max-width: 1199px ) {
    .hidden-md-down {
        display: none !important;
    }
}
@media ( min-width: 1200px ) {
    .hidden-lg {
        display: none !important;
    }
}
/** * Screen Readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect( 0, 0, 0, 0 );
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}
/** * Print */
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
    .visible-print-block {
        display: block !important;
    }
    .visible-print-inline {
        display: inline !important;
    }
    .visible-print-inline-block {
        display: inline-block !important;
    }
    .hidden-print {
        display: none !important;
    }
}
/** * Clears */
.clear-left {
    clear: left !important;
}
.clear-right {
    clear: right !important;
}
.clear-both {
    clear: both !important;
}
.clear-contain {
    overflow: hidden !important;
}
/** * Text alignment */
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
/** * Font weights */
.weight-light {
    font-weight: 300 !important;
}
.weight-normal {
    font-weight: 400 !important;
}
.weight-semibold {
    font-weight: 600 !important;
}
.weight-bold {
    font-weight: bold !important;
}
/** * Borders */
.border-top {
    border-top: 1px solid #eee;
}
.border-bottom {
    border-bottom: 1px solid #eee;
}
.border-left {
    border-left: 1px solid #eee;
}
.border-right {
    border-right: 1px solid #eee;
}
.border-all {
    border: 1px solid #eee;
}
/** * Positioning */
.affix-top {
    position: fixed !important;
    top: 0 !important;
}
.affix-bottom {
    position: fixed !important;
    bottom: 0 !important;
}
.affix-left {
    position: fixed !important;
    left: 0 !important;
}
.affix-right {
    position: fixed !important;
    right: 0 !important;
}
.pull-right {
    float: right !important;
}
.pull-left {
    float: left !important;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythm */
/** * Add/remove margins */
.push {
    margin: 20px !important;
}
.push-top {
    margin-top: 20px !important;
}
.push-right {
    margin-right: 20px !important;
}
.push-bottom {
    margin-bottom: 20px !important;
}
.push-left {
    margin-left: 20px !important;
}
.push-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.push-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
}
.push-half {
    margin: 10px !important;
}
.push-half-top {
    margin-top: 10px !important;
}
.push-half-right {
    margin-right: 10px !important;
}
.push-half-bottom {
    margin-bottom: 10px !important;
}
.push-half-left {
    margin-left: 10px !important;
}
.push-half-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.push-half-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
}
.flush {
    margin: 0 !important;
}
.flush-top {
    margin-top: 0 !important;
}
.flush-right {
    margin-right: 0 !important;
}
.flush-bottom {
    margin-bottom: 0 !important;
}
.flush-left {
    margin-left: 0 !important;
}
.flush-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.flush-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
/** * Add/remove paddings */
.soft {
    padding: 20px !important;
}
.soft-top {
    padding-top: 20px !important;
}
.soft-right {
    padding-right: 20px !important;
}
.soft-bottom {
    padding-bottom: 20px !important;
}
.soft-left {
    padding-left: 20px !important;
}
.soft-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.soft-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
}
.soft-half {
    padding: 10px !important;
}
.soft-half-top {
    padding-top: 10px !important;
}
.soft-half-right {
    padding-right: 10px !important;
}
.soft-half-bottom {
    padding-bottom: 10px !important;
}
.soft-half-left {
    padding-left: 10px !important;
}
.soft-half-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.soft-half-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
}
.hard {
    padding: 0 !important;
}
.hard-top {
    padding-top: 0 !important;
}
.hard-right {
    padding-right: 0 !important;
}
.hard-bottom {
    padding-bottom: 0 !important;
}
.hard-left {
    padding-left: 0 !important;
}
.hard-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.hard-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
@media ( min-width: 600px ) {
    .flush-xs {
        margin: 0;
    }
    .flush-xs-top {
        margin-top: 0;
    }
    .flush-xs-right {
        margin-right: 0;
    }
    .flush-xs-bottom {
        margin-bottom: 0;
    }
    .flush-xs-left {
        margin-left: 0;
    }
    .flush-xs-ends {
        margin-top: 0;
        margin-bottom: 0;
    }
    .flush-xs-sides {
        margin-right: 0;
        margin-left: 0;
    }
    .push-xs {
        margin: 20px;
    }
    .push-xs-top {
        margin-top: 20px;
    }
    .push-xs-right {
        margin-right: 20px;
    }
    .push-xs-bottom {
        margin-bottom: 20px;
    }
    .push-xs-left {
        margin-left: 20px;
    }
    .push-xs-ends {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .push-xs-sides {
        margin-right: 20px;
        margin-left: 20px;
    }
    .push-half-xs {
        margin: 10px;
    }
    .push-half-xs-top {
        margin-top: 10px;
    }
    .push-half-xs-right {
        margin-right: 10px;
    }
    .push-half-xs-bottom {
        margin-bottom: 10px;
    }
    .push-half-xs-left {
        margin-left: 10px;
    }
    .push-half-xs-ends {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .push-half-xs-sides {
        margin-right: 10px;
        margin-left: 10px;
    }
    .push-double-xs {
        margin: 40px;
    }
    .push-double-xs-top {
        margin-top: 40px;
    }
    .push-double-xs-right {
        margin-right: 40px;
    }
    .push-double-xs-bottom {
        margin-bottom: 40px;
    }
    .push-double-xs-left {
        margin-left: 40px;
    }
    .push-double-xs-ends {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .push-double-xs-sides {
        margin-right: 40px;
        margin-left: 40px;
    }
    .push-triple-xs {
        margin: 60px;
    }
    .push-triple-xs-top {
        margin-top: 60px;
    }
    .push-triple-xs-right {
        margin-right: 60px;
    }
    .push-triple-xs-bottom {
        margin-bottom: 60px;
    }
    .push-triple-xs-left {
        margin-left: 60px;
    }
    .push-triple-xs-ends {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .push-triple-xs-sides {
        margin-right: 60px;
        margin-left: 60px;
    }
    .soft-xs {
        padding: 20px;
    }
    .soft-xs-top {
        padding-top: 20px;
    }
    .soft-xs-right {
        padding-right: 20px;
    }
    .soft-xs-bottom {
        padding-bottom: 20px;
    }
    .soft-xs-left {
        padding-left: 20px;
    }
    .soft-xs-ends {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .soft-xs-sides {
        padding-right: 20px;
        padding-left: 20px;
    }
    .soft-half-xs {
        padding: 10px;
    }
    .soft-half-xs-top {
        padding-top: 10px;
    }
    .soft-half-xs-right {
        padding-right: 10px;
    }
    .soft-half-xs-bottom {
        padding-bottom: 10px;
    }
    .soft-half-xs-left {
        padding-left: 10px;
    }
    .soft-half-xs-ends {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .soft-half-xs-sides {
        padding-right: 10px;
        padding-left: 10px;
    }
    .soft-double-xs {
        padding: 40px;
    }
    .soft-double-xs-top {
        padding-top: 40px;
    }
    .soft-double-xs-right {
        padding-right: 40px;
    }
    .soft-double-xs-bottom {
        padding-bottom: 40px;
    }
    .soft-double-xs-left {
        padding-left: 40px;
    }
    .soft-double-xs-ends {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .soft-double-xs-sides {
        padding-right: 40px;
        padding-left: 40px;
    }
    .soft-triple-xs {
        padding: 60px;
    }
    .soft-triple-xs-top {
        padding-top: 60px;
    }
    .soft-triple-xs-right {
        padding-right: 60px;
    }
    .soft-triple-xs-bottom {
        padding-bottom: 60px;
    }
    .soft-triple-xs-left {
        padding-left: 60px;
    }
    .soft-triple-xs-ends {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .soft-triple-xs-sides {
        padding-right: 60px;
        padding-left: 60px;
    }
    .hard-xs {
        padding: 0;
    }
    .hard-xs-top {
        padding-top: 0;
    }
    .hard-xs-right {
        padding-right: 0;
    }
    .hard-xs-bottom {
        padding-bottom: 0;
    }
    .hard-xs-left {
        padding-left: 0;
    }
    .hard-xs-ends {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hard-xs-sides {
        padding-right: 0;
        padding-left: 0;
    }
}
@media ( min-width: 768px ) {
    .flush-sm {
        margin: 0;
    }
    .flush-sm-top {
        margin-top: 0;
    }
    .flush-sm-right {
        margin-right: 0;
    }
    .flush-sm-bottom {
        margin-bottom: 0;
    }
    .flush-sm-left {
        margin-left: 0;
    }
    .flush-sm-ends {
        margin-top: 0;
        margin-bottom: 0;
    }
    .flush-sm-sides {
        margin-right: 0;
        margin-left: 0;
    }
    .push-sm {
        margin: 20px;
    }
    .push-sm-top {
        margin-top: 20px;
    }
    .push-sm-right {
        margin-right: 20px;
    }
    .push-sm-bottom {
        margin-bottom: 20px;
    }
    .push-sm-left {
        margin-left: 20px;
    }
    .push-sm-ends {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .push-sm-sides {
        margin-right: 20px;
        margin-left: 20px;
    }
    .push-half-sm {
        margin: 10px;
    }
    .push-half-sm-top {
        margin-top: 10px;
    }
    .push-half-sm-right {
        margin-right: 10px;
    }
    .push-half-sm-bottom {
        margin-bottom: 10px;
    }
    .push-half-sm-left {
        margin-left: 10px;
    }
    .push-half-sm-ends {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .push-half-sm-sides {
        margin-right: 10px;
        margin-left: 10px;
    }
    .push-double-sm {
        margin: 40px;
    }
    .push-double-sm-top {
        margin-top: 40px;
    }
    .push-double-sm-right {
        margin-right: 40px;
    }
    .push-double-sm-bottom {
        margin-bottom: 40px;
    }
    .push-double-sm-left {
        margin-left: 40px;
    }
    .push-double-sm-ends {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .push-double-sm-sides {
        margin-right: 40px;
        margin-left: 40px;
    }
    .push-triple-sm {
        margin: 60px;
    }
    .push-triple-sm-top {
        margin-top: 60px;
    }
    .push-triple-sm-right {
        margin-right: 60px;
    }
    .push-triple-sm-bottom {
        margin-bottom: 60px;
    }
    .push-triple-sm-left {
        margin-left: 60px;
    }
    .push-triple-sm-ends {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .push-triple-sm-sides {
        margin-right: 60px;
        margin-left: 60px;
    }
    .soft-sm {
        padding: 20px;
    }
    .soft-sm-top {
        padding-top: 20px;
    }
    .soft-sm-right {
        padding-right: 20px;
    }
    .soft-sm-bottom {
        padding-bottom: 20px;
    }
    .soft-sm-left {
        padding-left: 20px;
    }
    .soft-sm-ends {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .soft-sm-sides {
        padding-right: 20px;
        padding-left: 20px;
    }
    .soft-half-sm {
        padding: 10px;
    }
    .soft-half-sm-top {
        padding-top: 10px;
    }
    .soft-half-sm-right {
        padding-right: 10px;
    }
    .soft-half-sm-bottom {
        padding-bottom: 10px;
    }
    .soft-half-sm-left {
        padding-left: 10px;
    }
    .soft-half-sm-ends {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .soft-half-sm-sides {
        padding-right: 10px;
        padding-left: 10px;
    }
    .soft-double-sm {
        padding: 40px;
    }
    .soft-double-sm-top {
        padding-top: 40px;
    }
    .soft-double-sm-right {
        padding-right: 40px;
    }
    .soft-double-sm-bottom {
        padding-bottom: 40px;
    }
    .soft-double-sm-left {
        padding-left: 40px;
    }
    .soft-double-sm-ends {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .soft-double-sm-sides {
        padding-right: 40px;
        padding-left: 40px;
    }
    .soft-triple-sm {
        padding: 60px;
    }
    .soft-triple-sm-top {
        padding-top: 60px;
    }
    .soft-triple-sm-right {
        padding-right: 60px;
    }
    .soft-triple-sm-bottom {
        padding-bottom: 60px;
    }
    .soft-triple-sm-left {
        padding-left: 60px;
    }
    .soft-triple-sm-ends {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .soft-triple-sm-sides {
        padding-right: 60px;
        padding-left: 60px;
    }
    .hard-sm {
        padding: 0;
    }
    .hard-sm-top {
        padding-top: 0;
    }
    .hard-sm-right {
        padding-right: 0;
    }
    .hard-sm-bottom {
        padding-bottom: 0;
    }
    .hard-sm-left {
        padding-left: 0;
    }
    .hard-sm-ends {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hard-sm-sides {
        padding-right: 0;
        padding-left: 0;
    }
}
@media ( min-width: 1025px ) {
    .flush-md {
        margin: 0;
    }
    .flush-md-top {
        margin-top: 0;
    }
    .flush-md-right {
        margin-right: 0;
    }
    .flush-md-bottom {
        margin-bottom: 0;
    }
    .flush-md-left {
        margin-left: 0;
    }
    .flush-md-ends {
        margin-top: 0;
        margin-bottom: 0;
    }
    .flush-md-sides {
        margin-right: 0;
        margin-left: 0;
    }
    .push-md {
        margin: 20px;
    }
    .push-md-top {
        margin-top: 20px;
    }
    .push-md-right {
        margin-right: 20px;
    }
    .push-md-bottom {
        margin-bottom: 20px;
    }
    .push-md-left {
        margin-left: 20px;
    }
    .push-md-ends {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .push-md-sides {
        margin-right: 20px;
        margin-left: 20px;
    }
    .push-half-md {
        margin: 10px;
    }
    .push-half-md-top {
        margin-top: 10px;
    }
    .push-half-md-right {
        margin-right: 10px;
    }
    .push-half-md-bottom {
        margin-bottom: 10px;
    }
    .push-half-md-left {
        margin-left: 10px;
    }
    .push-half-md-ends {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .push-half-md-sides {
        margin-right: 10px;
        margin-left: 10px;
    }
    .push-double-md {
        margin: 40px;
    }
    .push-double-md-top {
        margin-top: 40px;
    }
    .push-double-md-right {
        margin-right: 40px;
    }
    .push-double-md-bottom {
        margin-bottom: 40px;
    }
    .push-double-md-left {
        margin-left: 40px;
    }
    .push-double-md-ends {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .push-double-md-sides {
        margin-right: 40px;
        margin-left: 40px;
    }
    .push-triple-md {
        margin: 60px;
    }
    .push-triple-md-top {
        margin-top: 60px;
    }
    .push-triple-md-right {
        margin-right: 60px;
    }
    .push-triple-md-bottom {
        margin-bottom: 60px;
    }
    .push-triple-md-left {
        margin-left: 60px;
    }
    .push-triple-md-ends {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .push-triple-md-sides {
        margin-right: 60px;
        margin-left: 60px;
    }
    .soft-md {
        padding: 20px;
    }
    .soft-md-top {
        padding-top: 20px;
    }
    .soft-md-right {
        padding-right: 20px;
    }
    .soft-md-bottom {
        padding-bottom: 20px;
    }
    .soft-md-left {
        padding-left: 20px;
    }
    .soft-md-ends {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .soft-md-sides {
        padding-right: 20px;
        padding-left: 20px;
    }
    .soft-half-md {
        padding: 10px;
    }
    .soft-half-md-top {
        padding-top: 10px;
    }
    .soft-half-md-right {
        padding-right: 10px;
    }
    .soft-half-md-bottom {
        padding-bottom: 10px;
    }
    .soft-half-md-left {
        padding-left: 10px;
    }
    .soft-half-md-ends {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .soft-half-md-sides {
        padding-right: 10px;
        padding-left: 10px;
    }
    .soft-double-md {
        padding: 40px;
    }
    .soft-double-md-top {
        padding-top: 40px;
    }
    .soft-double-md-right {
        padding-right: 40px;
    }
    .soft-double-md-bottom {
        padding-bottom: 40px;
    }
    .soft-double-md-left {
        padding-left: 40px;
    }
    .soft-double-md-ends {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .soft-double-md-sides {
        padding-right: 40px;
        padding-left: 40px;
    }
    .soft-triple-md {
        padding: 60px;
    }
    .soft-triple-md-top {
        padding-top: 60px;
    }
    .soft-triple-md-right {
        padding-right: 60px;
    }
    .soft-triple-md-bottom {
        padding-bottom: 60px;
    }
    .soft-triple-md-left {
        padding-left: 60px;
    }
    .soft-triple-md-ends {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .soft-triple-md-sides {
        padding-right: 60px;
        padding-left: 60px;
    }
    .hard-md {
        padding: 0;
    }
    .hard-md-top {
        padding-top: 0;
    }
    .hard-md-right {
        padding-right: 0;
    }
    .hard-md-bottom {
        padding-bottom: 0;
    }
    .hard-md-left {
        padding-left: 0;
    }
    .hard-md-ends {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hard-md-sides {
        padding-right: 0;
        padding-left: 0;
    }
}
@media ( min-width: 1200px ) {
    .flush-lg {
        margin: 0;
    }
    .flush-lg-top {
        margin-top: 0;
    }
    .flush-lg-right {
        margin-right: 0;
    }
    .flush-lg-bottom {
        margin-bottom: 0;
    }
    .flush-lg-left {
        margin-left: 0;
    }
    .flush-lg-ends {
        margin-top: 0;
        margin-bottom: 0;
    }
    .flush-lg-sides {
        margin-right: 0;
        margin-left: 0;
    }
    .push-lg {
        margin: 20px;
    }
    .push-lg-top {
        margin-top: 20px;
    }
    .push-lg-right {
        margin-right: 20px;
    }
    .push-lg-bottom {
        margin-bottom: 20px;
    }
    .push-lg-left {
        margin-left: 20px;
    }
    .push-lg-ends {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .push-lg-sides {
        margin-right: 20px;
        margin-left: 20px;
    }
    .push-half-lg {
        margin: 10px;
    }
    .push-half-lg-top {
        margin-top: 10px;
    }
    .push-half-lg-right {
        margin-right: 10px;
    }
    .push-half-lg-bottom {
        margin-bottom: 10px;
    }
    .push-half-lg-left {
        margin-left: 10px;
    }
    .push-half-lg-ends {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .push-half-lg-sides {
        margin-right: 10px;
        margin-left: 10px;
    }
    .push-double-lg {
        margin: 40px;
    }
    .push-double-lg-top {
        margin-top: 40px;
    }
    .push-double-lg-right {
        margin-right: 40px;
    }
    .push-double-lg-bottom {
        margin-bottom: 40px;
    }
    .push-double-lg-left {
        margin-left: 40px;
    }
    .push-double-lg-ends {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .push-double-lg-sides {
        margin-right: 40px;
        margin-left: 40px;
    }
    .push-triple-lg {
        margin: 60px;
    }
    .push-triple-lg-top {
        margin-top: 60px;
    }
    .push-triple-lg-right {
        margin-right: 60px;
    }
    .push-triple-lg-bottom {
        margin-bottom: 60px;
    }
    .push-triple-lg-left {
        margin-left: 60px;
    }
    .push-triple-lg-ends {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .push-triple-lg-sides {
        margin-right: 60px;
        margin-left: 60px;
    }
    .soft-lg {
        padding: 20px;
    }
    .soft-lg-top {
        padding-top: 20px;
    }
    .soft-lg-right {
        padding-right: 20px;
    }
    .soft-lg-bottom {
        padding-bottom: 20px;
    }
    .soft-lg-left {
        padding-left: 20px;
    }
    .soft-lg-ends {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .soft-lg-sides {
        padding-right: 20px;
        padding-left: 20px;
    }
    .soft-half-lg {
        padding: 10px;
    }
    .soft-half-lg-top {
        padding-top: 10px;
    }
    .soft-half-lg-right {
        padding-right: 10px;
    }
    .soft-half-lg-bottom {
        padding-bottom: 10px;
    }
    .soft-half-lg-left {
        padding-left: 10px;
    }
    .soft-half-lg-ends {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .soft-half-lg-sides {
        padding-right: 10px;
        padding-left: 10px;
    }
    .soft-double-lg {
        padding: 40px;
    }
    .soft-double-lg-top {
        padding-top: 40px;
    }
    .soft-double-lg-right {
        padding-right: 40px;
    }
    .soft-double-lg-bottom {
        padding-bottom: 40px;
    }
    .soft-double-lg-left {
        padding-left: 40px;
    }
    .soft-double-lg-ends {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .soft-double-lg-sides {
        padding-right: 40px;
        padding-left: 40px;
    }
    .soft-triple-lg {
        padding: 60px;
    }
    .soft-triple-lg-top {
        padding-top: 60px;
    }
    .soft-triple-lg-right {
        padding-right: 60px;
    }
    .soft-triple-lg-bottom {
        padding-bottom: 60px;
    }
    .soft-triple-lg-left {
        padding-left: 60px;
    }
    .soft-triple-lg-ends {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .soft-triple-lg-sides {
        padding-right: 60px;
        padding-left: 60px;
    }
    .hard-lg {
        padding: 0;
    }
    .hard-lg-top {
        padding-top: 0;
    }
    .hard-lg-right {
        padding-right: 0;
    }
    .hard-lg-bottom {
        padding-bottom: 0;
    }
    .hard-lg-left {
        padding-left: 0;
    }
    .hard-lg-ends {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hard-lg-sides {
        padding-right: 0;
        padding-left: 0;
    }
}
/* * Core Owl Carousel CSS File * v1.3.3 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d( 0px, 0px, 0px );
    transform: translate3d( 0px, 0px, 0px );
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d( 0, 0, 0 );
    -moz-transform: translate3d( 0, 0, 0 );
    -ms-transform: translate3d( 0, 0, 0 );
    transform: translate3d( 0, 0, 0 );
}
/* * Owl Carousel Owl Demo Theme * v1.3.3 */
.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
    color: #fff;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: Alpha( Opacity=50 );
    /*IE7 fix*/
    opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha( Opacity=100 );
    /*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha( Opacity=50 );
    /*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha( Opacity=100 );
    /*IE7 fix*/
    opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #fff;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
    min-height: 150px;
}
.banner {
    position: relative;
    border-bottom: 17px solid #000;
    box-shadow: 0 0 5px #000;
}
#mainbanner .item {
    padding: 0;
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#mainbanner .item h1 {
    font-family: 'ubuntubold';
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 30px;
    font-size: 72px;
}
#mainbanner .item p {
    font-family: 'ubuntumedium';
    font-weight: 400;
    margin: 0 0 50px 0;
    padding: 10px 40px 12px;
    font-size: 30px;
    line-height: 36.18px;
    display: inline-block;
    background: rgba( 17, 17, 17, 0.8 );
}
#mainbanner .owl-buttons {
    display: none !important;
}
#mainbanner .owl-pagination {
    bottom: 30px;
    position: absolute;
    right: 0%;
}
#mainbanner .owl-controls .owl-page span {
    width: 30px;
    height: 5px;
    opacity: 1;
    background: #fff;
    border-radius: 0;
}
#mainbanner .owl-controls .owl-page.active span {
    background: #000;
}
#mainbanner .owl-controls {
    margin: 0 auto;
    max-width: 1318px;
    position: relative;
}
.banner_overlay {
    background: rgba( 0, 0, 0, 0.35 );
    margin: 0;
    padding: 85px 0;
}
@media ( max-width: 767px ) {
    #mainbanner .item h1 {
        font-size: 30px;
        line-height: 35px;
    }
    #mainbanner .item p {
        font-size: 15px;
        margin: 0 0 25px 0;
        font-weight: 500;
        line-height: 24px;
        padding: 10px 25px 12px;
    }
    #mainbanner .owl-pagination {
        width: 100%;
    }
}
@media ( min-width: 768px ) {
    #mainbanner .item h1 {
        font-size: 45px;
    }
    #mainbanner .item p {
        font-size: 21px;
    }
    .banner_overlay {
        padding: 100px 0;
    }
    .service_overlay,
    .rental {
        padding: 45px 0;
    }
}
@media ( min-width: 1025px ) {
    #mainbanner .item h1 {
        font-size: 60px;
        height: 130px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #mainbanner .item p {
        font-size: 30px;
    }
}
@media ( min-width: 1100px ) {
    #mainbanner .item h1 {
        font-size: 70px;
    }
    .banner_overlay {
        padding: 318px 0 140px 0;
    }
}

@media ( min-width: 1200px ) {
    #mainbanner .item h1 {
        font-size: 72px;
    }
}

.contact-form-tab {
    cursor: pointer;
    float: right;
    height: 44px;
    width: 339px;
    background: #ebebeb;
    color: #000;
    text-transform: uppercase;
    font-family: 'ubuntumedium';
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 44px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.contact-form-tab img {
    max-width: 100%;
    height: auto;
}
.contact-form {
    background: rgba( 54, 54, 54, 0.95 );
    float: right;
    height: 434px;
    width: 577px;
    clear: right;
    border-top: 10px solid #e1e1e1;
    padding: 30px;
}
.fm_row {
    padding: 0;
    margin: 0 0 18px;
}
.fm_row_l {
    width: 245px;
    float: left;
}
.fm_row_r {
    width: 245px;
    float: right;
}
.contact-form input {
    background: #fff;
    border-radius: 5px;
    height: 37px;
    width: 100%;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 16px;
    font-size: 16px;
    padding: 0 10px;
    color: #141617;
    border: 1px solid #fff;
}
.contact-form textarea {
    background: #fff;
    border-radius: 5px;
    height: 120px;
    width: 100%;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 16px;
    font-size: 16px;
    padding: 10px;
    color: #141617;
    border: 1px solid #fff;
}
.contact-form label {
    padding: 0;
    margin: 0 0 10px;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 16px;
    font-size: 16px;
    color: #fff;
    display: block;
}

.contact-form input[type='submit'] {
    line-height: 42px;
    padding: 0 42px;
    display: inline-block;
    color: #fff;
    background: #000;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: 3px solid #000;
    height: 52px;
    width: auto;
    cursor: pointer;
}
.contact-form input[type='submit']:hover {
    background: rgba( 0, 0, 0, 0.3 );
    transition: all 0.5s ease-in-out;
}
.contact-form-wrapper {
    width: auto;
    position: fixed;
    bottom: -434px;
    right: 0;
    margin-right: 55px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 99999;
}
.contact-form-wrapper.js-active {
    bottom: 0;
}
.cross {
    display: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    position: absolute;
    right: 13px;
    text-align: center;
    line-height: 30px;
    bottom: 28px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    padding: 0 26px;
}
@media ( max-width: 768px ) {
    .f-col-1 {
        text-align: center;
    }
    .trust ul {
        text-align: center;
    }
    .trust ul li {
        padding: 0 7px;
        float: none;
        display: inline-block;
    }
    .social {
        display: none;
    }
    .social_hide {
        display: block;
        padding: 10px 0;
        color: #555555;
        text-transform: uppercase;
        font-family: 'robotobold';
        text-align: center;
        font-size: 16px;
        line-height: 18px;
    }
}
@media ( max-width: 767px ) {
    .contact-form-wrapper {
        width: 100%;
        margin-right: 0;
    }
}
@media ( max-width: 600px ) {
    .contact-form-tab {
        width: auto;
        padding: 0 20px;
    }
    .contact-form {
        width: 100%;
        padding: 10px;
    }
    .fm_row_l,
    .fm_row_r {
        width: 100%;
        float: none;
    }
    .fm_row_r {
        padding-top: 10px;
    }
    .contact-form textarea {
        height: 60px;
    }
}
section {
    position: relative;
}
.section {
    height: 600px;
    width: 100%;
    position: relative;
}

.masthead-banner-section {
    height: 473px;
}

.image {
    height: 100%;
    width: 100%;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.content {
    position: absolute;
    z-index: 2;
}

.innerbanner {
    margin: 0;
    padding: 280px 0 0;
    min-height: 473px;
    height: 100%;
    position: relative;
}
.innerbanner:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.35 );
    top: 0;
    left: 0;
    content: '';
}
.innerbanner h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 400;
    line-height: 65px;
    padding: 0;
    margin: 0 0 50px;
    text-transform: uppercase;
    font-family: 'ubuntubold';
}
.innerbanner .container {
    position: relative;
    z-index: 9999;
    padding: 0;
}
.breadcome {
    padding: 15px 0;
    margin: 0;
    background: #141617;
}
.breadcome ul {
    padding: 0;
    margin: 0;
}
.breadcome ul li {
    padding: 0;
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-family: 'robotoregular';
    line-height: 15px;
    text-transform: capitalize;
    font-weight: 400;
    text-decoration: none;
}
.breadcome ul li:last-child:after {
    display: none;
}
.breadcome ul li:after {
    background: url( ../images/bulet2.png ) no-repeat;
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    top: 9px;
    right: -5px;
}
.breadcome ul li a {
    color: #fff;
    font-size: 15px;
    font-family: 'robotoregular';
    line-height: 15px;
    text-transform: capitalize;
    font-weight: 400;
    text-decoration: none;
    padding: 0;
    margin: 0;
}
.breadcome ul li a.active {
    font-weight: 400;
}
.page-body {
    position: relative;
}
.bodycontent {
    padding: 95px 0 0 0;
    margin: 0;
}
.background-texture {
    z-index: -9;
    height: 100%;
    top: 0;
    object-fit: cover;
}
.fixed-background {
    position: fixed;
    top: 0;
}
.contact_top h4 {
    margin: 0 0 15px;
}
.left_contact_us {
    width: 522px;
    float: left;
}
.right_contact_us {
    width: 683px;
    float: right;
}
.contat_row {
    padding: 0;
    margin: 0 0 25px;
}
.contact_page label {
    padding: 0;
    margin: 0 0 5px;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 16px;
    font-size: 16px;
    color: #fff;
    display: block;
    text-transform: capitalize;
}
.contact_page input {
    background: #fff;
    border-radius: 6px;
    height: 38px;
    width: 100%;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 38px;
    font-size: 15.836px;
    padding: 0 10px;
    color: #000;
    border: none;
}
.contact_page input:focus {
    background: #fff;
}
.contact_page textarea {
    background: #fff;
    border-radius: 6px;
    height: 195px;
    width: 100%;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 16px;
    font-size: 15.83px;
    padding: 10px;
    color: #141617;
    border: none;
    margin-bottom: 15px;
}
.contact_page input[type='submit'] {
    line-height: 42px;
    padding: 0;
    width: 180px;
    height: 50px;
    cursor: pointer;
    display: block;
    color: #fff;
    background: #000;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
    font-weight: 400;
    font-family: 'ubuntubold';
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 3px solid #000;
}
.contact_page input[type='submit']:hover {
    background: rgba( 0, 0, 0, 0.3 );
    transition: all 0.5s ease-in-out;
}
.contact_page h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    line-height: 39px;
    padding: 0 0 45px;
    margin: 0;
    color: #fff;
    position: relative;
}
.contact_page h2:before {
    position: absolute;
    content: '';
    background: url( ../images/title.png );
    width: 21px;
    height: 21px;
}
.address_one {
    width: 228px;
    float: left;
}
.contact_page .title {
    background: rgba( 0, 0, 0, 0.4 );
    font-weight: 700;
    padding: 5px 15px;
    font-family: 'robotoregular';
    font-size: 20px;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
}
.contact_page p {
    font-family: 'robotoregular';
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 20px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.contact_page p a {
    color: #fff;
}
.contact_page p span {
    font-size: 12px;
    line-height: 16px;
    display: block;
}
.contact_page .gap {
    height: 30px;
    padding: 0;
    margin: 0;
}
.address_two {
    float: right;
    width: 270px;
}
.contact_bot {
    margin-top: 50px;
}
.contact_bot iframe {
    width: 100%;
    height: 326px;
}

.contact_bot #map1 {
    width: 100%;
    height: 328px;
}

@media ( max-width: 767px ) {
    .left_contact_us,
    .right_contact_us {
        margin: 0 auto;
        float: none;
        width: 100%;
    }
    .contact-form-tab {
        display: none;
    }
    .cross {
        display: block;
    }
}

@media ( max-width: 1099px ) {
    .innerbanner {
        padding: 100px 0 0;
        min-height: 250px;
    }
    .masthead-banner-section {
        height: 250px;
    }
}
@media ( max-width: 1200px ) {
    .left_contact_us,
    .right_contact_us {
        margin: 0 auto;
        float: none;
    }
}

@media ( max-width: 479px ) {
    .service ul li img {
        width: 100%;
    }
    .contain p,
    .home_news_inner p {
        margin: 0;
        padding: 18px 0;
        font-size: 14px;
        line-height: 20px;
    }
    .contain ul li {
        font-size: 14px;
        line-height: 20px;
    }
    .contain ul {
        padding-left: 0;
    }
    .service_overlay,
    .rental,
    .home_news_inner,
    .testimonial_overlay,
    .page-footer {
        padding: 50px 0;
    }
    .service ul li,
    .service ul li:last-child {
        width: 100%;
    }
    .left_contain,
    .rental_text,
    .news_text {
        padding: 0 20px;
    }
    .rental_text h2::before,
    .contain h2::before {
        left: -25px;
        margin: 0;
    }
    .rental_text h2 {
        font-size: 23px;
    }
    .rent_gallery {
        max-width: 100%;
    }
    .home_news .tag {
        font-size: 18px;
    }
    .btn {
        padding: 0 25px;
    }
    .testimonial_content {
        margin: 0;
    }
    .f-col-1 {
        text-align: center;
        width: 100%;
    }
    .innerbanner h1 {
        font-size: 35px;
    }
    .address_one,
    .address_two {
        width: 100%;
        margin-bottom: 25px;
    }
}
.bodycontent.style_guide .container {
    width: 870px;
}
.style_guide h2 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    position: relative;
}
.style_guide h2::before {
    position: absolute;
    content: '';
    background: url( ../images/title.png );
    width: 21px;
    height: 21px;
}
.style_guide h3 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    position: relative;
}
.style_guide h3 a {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
}
.style_guide h3:before {
    position: absolute;
    content: '';
    background: url( ../images/h3_after.png );
    width: 14px;
    height: 14px;
}
.style_guide p {
    font-family: 'robotoregular';
    font-size: 15px;
    line-height: 21px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.style_guide p a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px #fff solid;
    line-height: 16px;
}
.style_guide p a:hover {
    color: #b7b7b7;
    text-decoration: none;
    border-bottom: 1px #b7b7b7 solid;
}
.style_guide ul.services_box {
    padding: 0;
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 80px;
}
.style_guide ul.services_box li {
    padding: 0;
    margin: 0 8px 16px;
    display: inline-block;
    width: 269px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: none;
    border-radius: 5px;
}
.service_pict {
    height: 193px;
    border-radius: 5px;
    overflow: hidden;
}
.style_guide ul.services_box li img {
    width: 100%;
    display: block;
    transition: all 0.1s ease-in-out;
    height: 156px;
}

.style_guide ul.services_box li:hover .up_hover {
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-in-out;
}
.style_guide ul.services_box li:hover .service_pict {
    padding-top: 45px;
    transition: all 0.1s ease-in-out;
}
.style_guide ul.services_box li:hover .service_title {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.style_guide .service_title {
    text-align: center;
}
.style_guide .service-content p {
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}
.style_guide ul {
    margin: 0;
    padding: 8px 0 25px 40px;
    list-style: none;
}
.style_guide ul li {
    background: url( ../images/st_li.png ) 0 10px no-repeat;
    font-family: 'robotoregular';
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 0 12px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.style_guide ul li ul {
    padding-top: 0;
}
.style_guide ol {
    margin: 0;
    padding: 8px 0 35px 55px;
}
.style_guide ol li {
    font-family: 'robotoregular';
    font-size: 16px;
    line-height: 22px;
    padding: 0 0 0 0;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.advance_field {
    padding: 0;
    margin: 80px 0;
    position: relative;
    text-align: center;
    background-image: url( ../images/advance.jpg );
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.advance_field img {
    max-width: 100%;
    height: auto;
    display: block;
}
.adv_overlay {
    background: rgba( 17, 17, 17, 0.9 );
    width: 100%;
    height: 100%;
    padding-top: 110px;
    padding-bottom: 20px;
}
.advance_field h2 {
    display: inline-block;
}
.style_guide .advance_field p {
    font-size: 19px;
    line-height: 27px;
    padding: 0 157px 35px 157px;
}
.style_guide h4 {
    background: rgba( 0, 0, 0, 0.4 );
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'ubuntubold';
    padding: 5px 15px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}
.style_guide .right_img {
    float: right;
    margin: 0 0 45px 40px;
}
.table,
.style_guide .tablepress {
    width: 100%;
    text-align: center;
    margin: 50px 0 80px;
}
.table thead tr {
    background: #000000;
}
.table tbody tr {
    background: #ffffff;
}
.table tbody tr:nth-child( 2n ) {
    background: #f3f3f3;
}
.table th,
.style_guide .tablepress thead th,
.style_guide .tablepress tfoot th {
    padding: 10px 0;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-family: 'robotobold';
    font-weight: 400;
    line-height: 26px;
    background: #000;
    text-align: center;
}
.table td,
.style_guide .tablepress tbody td {
    padding: 10px 0;
    margin: 0;
    color: #151d27;
    font-size: 18px;
    font-family: 'robotoregular';
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    border: none !important;
}
.he_space {
    height: 60px;
    margin: 0;
    padding: 0;
    display: block;
}
.guide_team.addm .owl-wrapper {
    text-align: center;
    width: 100% !important;
}
.guide_team.addm .owl-carousel .owl-item {
    float: none;
    display: inline-block;
}
.guide_team .item {
    margin: 0 20px;
    background: #000000;
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    min-height: 230px;
}
.style_guide .guide_team .item h1 {
    padding: 0 0 15px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-family: 'robotomedium';
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
}
.style_guide .guide_team .item h6 {
    padding: 0 0 10px;
    margin: 0 0 15px;
    color: #cccccc;
    font-size: 16px;
    font-family: 'robotolight';
    font-weight: 400;
    line-height: 22px;
    border-bottom: 1px solid #151515;
    text-transform: capitalize;
}
.style_guide.guide_team .item h2:before {
    display: none;
}
.style_guide .guide_team .owl-pagination {
    display: none;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
    opacity: 1;
    padding: 0;
    margin: 0;
    position: absolute;
    left: -25px;
    top: 50%;
    background: url( ../images/team_left.png ) no-repeat;
    width: 20px;
    height: 35px;
    margin-top: -17.5px;
    text-indent: -99999px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
    opacity: 1;
    padding: 0;
    margin: 0;
    position: absolute;
    right: -25px;
    top: 50%;
    background: url( ../images/team_right.png ) no-repeat;
    width: 20px;
    height: 35px;
    margin-top: -17.5px;
    text-indent: -99999px;
}
.style_guide .guide_team .item p {
    padding: 0;
}
.style_guide .guide_team h3 {
    display: inline-block;
    padding-bottom: 40px;
}
.style_guide .guide_team {
    text-align: center;
}

.f-map #map {
    width: 100%;
    height: 393px;
}

.style_afc {
    padding: 0;
    margin: 0;
    background: url( ../images/rental_bg.jpg ) center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}
.afc_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.left_afc {
    width: 50%;
    float: left;
}
.right_afc {
    width: 50%;
    float: right;
}
.right_afc img {
    max-width: 100%;
    height: auto;
    display: block;
}
.style_afc h3 {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    position: relative;
}
.style_afc h3:before {
    position: absolute;
    content: '';
    background: url( ../images/h3_after.png );
    width: 14px;
    height: 14px;
}
.style_afc p {
    font-family: 'robotoregular';
    font-size: 15px;
    line-height: 21px;
    padding: 0 0 25px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}
.style_afc p a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}
.afc_content {
    padding: 70px 70px 0 0;
}
@media ( min-width: 1441px ) and ( max-width: 2000px ) {
    .afc_content {
        padding: 165px 95px 0 0;
    }
}
@media ( min-width: 1367px ) and ( max-width: 1440px ) {
    .afc_content {
        padding: 80px 95px 0 0;
    }
}
.widget_call {
    display: inline-block;
}
.widget_call p {
    margin: 0;
    padding: 0;
}
.screen-reader-text {
    display: none;
}
.products_page #product_BigImage .item {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
}
.products_page #product_BigImage .item img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: auto;
    max-width: 100%;
    min-width: none;
    min-height: 512px;
}
.products_page #product_SmallImage .item {
    background: #c9c9c9;
    padding: 0;
    margin: 0 8px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    height: 81px;
}
.products_page #product_SmallImage .item img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.products_page .owl-theme .owl-controls .owl-buttons .owl-prev {
    opacity: 1;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: -80px;
    top: inherit;
    background: url( ../images/team_left.png ) no-repeat;
    z-index: 99999;
    width: 20px;
    height: 35px;
    text-indent: -99999px;
}
.products_page .owl-theme .owl-controls .owl-buttons .owl-next {
    opacity: 1;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 0;
    bottom: -80px;
    top: inherit;
    background: url( ../images/team_right.png ) no-repeat;
    width: 20px;
    height: 35px;
    text-indent: -99999px;
    z-index: 99999;
}
.products_page .bothsidemargin {
    padding: 0 55px;
}
.products_page .owl-theme .owl-controls {
    margin-top: 20px;
}
.products_slider {
    margin: 40px 0 80px;
}
.draw_img {
    text-align: center;
}
.draw_img img {
    max-width: 100%;
    height: auto;
    background: #fff;
    padding: 20px;
    margin-bottom: 40px;
}
.table_div {
    width: 100%;
    padding: 0;
    margin: 0;
}
.screen-reader-response,
.wpcf7-response-output {
    display: none !important;
}
.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 13px;
}
.contact-form input.wpcf7-not-valid,
.contact-form textarea.wpcf7-not-valid {
    border: 1px solid #f00;
}
.invalid .fm_row {
    margin: 0;
}
.inner-background {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
@media ( max-width: 980px ) {
    .bodycontent.style_guide .container {
        width: 700px;
    }
    .right_afc {
        width: 100%;
    }
    .left_afc {
        width: 100%;
    }
    .afc_overlay {
        position: inherit;
    }
}
@media ( max-width: 767px ) {
    .bodycontent.style_guide .container {
        width: 580px;
    }
    .afc_content {
        padding: 30px 0;
    }
    .style_guide .advance_field p {
        font-size: 16px;
        line-height: 22px;
        padding: 0 30px 30px;
    }
}
@media ( max-width: 640px ) {
    .bodycontent,
    .testimonial_overlay {
        padding: 40px 0;
    }
    .style_guide ul.services_box {
        margin-bottom: 40px;
    }
    .advance_field {
        margin: 40px 0;
    }
    .owl-theme .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
    .owl-theme .owl-controls .owl-buttons .owl-next {
        right: 0;
    }
}
@media ( max-width: 599px ) {
    .bodycontent.style_guide .container {
        width: 480px;
    }
    .table_div {
        overflow-x: scroll;
        margin-bottom: 40px;
    }
    .table {
        margin-bottom: 0;
    }
    .table th {
        padding: 10px 20px;
    }
    .table,
    .style_guide .tablepress {
        margin-bottom: 0;
    }
}
@media ( min-width: 1439px ) {
    .right_afc img {
        max-width: 100%;
        height: 690px;
        display: block;
    }
}
@media ( max-width: 479px ) {
    .copyright ul li {
        float: none;
    }
    .bodycontent.style_guide .container {
        width: 291px;
    }
    .style_guide p {
        clear: both;
    }
    .style_guide ul.services_box {
        margin-left: 0;
        margin-right: 0;
    }
    .style_guide .advance_field p {
        font-size: 16px;
        padding: 0 0 15px 0;
    }
    .owl-theme .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
    .owl-theme .owl-controls .owl-buttons .owl-next {
        right: 0;
    }
    .style_guide .tablepress {
        width: 500px;
    }
}
@media ( max-width: 1099px ) {
    .innerbanner h1 {
        font-size: 36px;
        line-height: 38px;
    }
}
.page-item-192 {
    display: none !important;
}
ul.main-test {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.main-test li {
    padding: 0 0 30px 0;
    border-bottom: 1px solid #757575;
    list-style: none;
    background: none !important;
    margin-bottom: 30px;
}
ul.main-test li:last-child {
    border-bottom: none;
}
.blg_img {
    width: 100%;
    padding: 5px;
    background: #fff;
    margin-top: 0;
    margin-bottom: 40px;
}
.blg_img img {
    width: 100%;
    height: auto;
    display: block;
}
.test_title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #757575;
}
.pict_white {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.pict_white img {
    display: block;
    margin: 0 auto;
}
.style_guide .blog_main h3 {
    padding-bottom: 0;
}
.style_guide .blog_main p.auth {
    padding: 5px 0 30px 0;
}
.style_guide .blog_main p.auth span {
    color: #999;
}
.share {
    padding-bottom: 50px;
}
.bodycontent.style_guide.bl .container {
    width: 1200px;
}
.sid_bar {
    background: #111;
    padding: 20px 10px;
    margin: 0 0 60px 0;
    border-radius: 5px;
}
.style_guide .sid_bar h3:before {
    display: none;
}
ul.main-test.blog_main {
    padding-left: 25px;
}
.style_guide .sid_bar ul {
    padding: 0 0 30px 15px;
}
@media ( min-width: 1200px ) and ( max-width: 1365px ) {
    .afc_content {
        padding-top: 40px;
    }
    .style_afc p {
        font-size: 14px;
        padding: 0 0 15px;
    }
    .right_contact_us {
        width: 583px;
    }
}
@media ( min-width: 981px ) and ( max-width: 1199px ) {
    .left_afc,
    .right_afc {
        width: 100%;
    }
    .bodycontent.style_guide.bl .container {
        width: 100%;
    }
}
.projects__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.contact_page input.wpcf7-not-valid,
.contact_page textarea.wpcf7-not-valid {
    border: 1px solid #f00;
}
.project {
    background: #ccc;
    border-radius: 5px;
    margin-bottom: 30px;
    height: calc( 100% - 30px );
}
.style_guide .project p {
    text-align: left;
    color: #000;
    min-height: 195px;
}
.project img {
    width: 100%;
    height: auto;
    text-align: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.project_text {
    padding: 20px;
}
.project_title {
    text-align: left;
    padding: 0 0 10px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'ubuntubold';
}
@media ( max-width: 1024px ) {
    .afc_overlay {
        position: static;
    }
}
@media ( max-width: 768px ) {
    .tabletview {
        margin: 0 -30px;
    }
    .home_news_inner {
        padding-bottom: 0;
        overflow-x: hidden;
    }
    .f-map #map {
        height: 200px;
    }
    .page-footer {
        padding: 40px 0;
    }
    .copyright {
        padding-bottom: 50px;
    }
    .copyright .container {
        max-width: 70%;
        margin: 0 auto;
    }
}
@media ( max-width: 768px ) {
    .f-col-1 {
        text-align: center;
        margin: 0 auto;
        float: none;
    }
}
@media ( max-width: 479px ) {
    .copyright .container {
        max-width: 95%;
        margin: 0 auto;
    }
    .trust ul li {
        float: none;
        display: inline-block;
    }
    .btn.btn-large {
        padding: 3px 25px;
        text-align: center;
        line-height: 21px;
    }
}

.white_bg {
    background: #fff;
    padding: 10px;
    display: inline-block;
}
.products_slider.no-padd {
    margin: 20px 0;
}
.back-to-top {
    display: none;
}
.back-to-top a {
    position: fixed;
    right: 0;
    bottom: 0;
    background: url( ../images/back-to-top.png ) 0 0 no-repeat;
    text-indent: -99999px;
    width: 49px;
    height: 49px;
    cursor: pointer;
    display: none !important;
    z-index: 9999;
}
@media ( max-width: 599px ) {
    .address_one,
    .address_two {
        width: 100%;
        margin-bottom: 25px;
    }
}
@media ( max-width: 1025px ) {
    .back-to-top a {
        display: block !important;
    }
    .bodycontent.style_guide.bl .container {
        width: 96%;
    }
    ul.main-test.blog_main {
        padding: 0;
    }
    .social {
        display: none;
    }
    .social_hide {
        display: block;
        padding: 10px 0;
        color: #555555;
        text-transform: uppercase;
        font-family: 'robotobold';
        text-align: center;
        font-size: 16px;
        line-height: 18px;
    }
    .f-col-1 {
        text-align: center;
    }
}
.style_guide ul li.cat-item-6,
.style_guide ul li.cat-item-7,
.style_guide ul li.cat-item-8 {
    display: none;
}
.es_form_container .es_lablebox .es_shortcode_form_email {
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 0 0 5px;
    margin: 0;
    color: #fff;
}
.es_form_container input {
    background: #fff;
    border-radius: 6px;
    height: 38px;
    width: 100%;
    font-family: 'robotoregular';
    font-weight: normal;
    line-height: 50px;
    font-size: 15.836px;
    padding: 0 10px;
    color: #000;
    border: none;
}
.es_form_container input[type='submit'] {
    display: inline-block;
    padding: 0 21px;
    margin: 0;
    line-height: 40px;
    width: auto;
    background: #ccc;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'ubuntubold';
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
}
.es_form_container input[type='submit']:hover {
    opacity: 0.5;
}

@media ( min-width: 768px ) and ( max-width: 980px ) {
    .service_pict {
        position: relative;
        margin: 8px;
    }
    .style_guide ul.services_box li {
        width: 50%;
        float: left;
        margin: 0;
    }
}
@media ( min-width: 320px ) and ( max-width: 479px ) {
    .style_guide .right_img {
        float: none;
        margin: 0 0 20px;
        text-align: center;
        background: none;
        padding: 0;
    }
    .style_guide .right_img img {
        max-width: 100%;
        padding: 20px;
        background: #ffffff;
    }
    #mainbanner .item {
        min-height: 415px;
    }
    .banner_overlay {
        min-height: 41;
    }
}

/*404 page updates*/

.error404 .innerbanner {
    padding: 50px 0 0;
}
.error404 h2 {
    color: #fff;
}
.links404 .btn {
    margin-bottom: 15px;
    line-height: 1.3em !important;
    padding: 12px 42px;
}
.links404 .btn + .btn {
    margin-left: 15px;
}
.search404 .search_top,
.contact404 .btn {
    margin: 0 auto;
}
.search404,
.contact404 {
    padding: 50px 0;
    border-top: 1px solid #555;
}

@media ( max-width: 1099px ) {
    .error404 .masthead-banner-section {
        height: 150px;
    }
}

@media ( min-width: 1025px ) {
    .error404 .innerbanner {
        padding: 100px 0 0;
    }
    .search404 {
        border-right: 1px solid #555;
    }
    .links404 {
        padding-bottom: 40px;
    }
}

/*
 * WP PAGE NAVI STYLES 
 */

.wp-pagenavi {
    margin-bottom: 35px;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page.larger,
.wp-pagenavi a.page.smaller {
    padding: 8px 12px;
    border: 1px solid #ffa726;
    margin: 4px;
    border-radius: 5px;
}

.wp-pagenavi span.current {
    background: #ffa726;
}

.wp-pagenavi a.page.larger,
.wp-pagenavi a.page.smaller {
    color: #ffffff;
    background: #000000;
}

.wp-pagenavi span.pages {
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #ffa726;
    margin-right: 10px;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
    border: none;
    color: #ffa726;
    font-size: 18px;
    font-weight: 600;
}
