@import url('../core/custom-fonts.css');

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*:focus {
    outline: 0;
    text-decoration: none;
}
a:focus,
a:active {
    text-decoration: none;
    outline: 0;
}


.inquiry-over-layer {
    background-color: transparent;
    opacity: 0.85;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    -moz-opacity: 0.85;
    -khtml-opacity: 0.85;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    -webkit-animation: fadein 1s; 
    -moz-animation: fadein 1s; 
    -ms-animation: fadein 1s;
    -o-animation: fadein 1s;
    animation: fadein 1s;
}

@keyframes fadein {
    from { 
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
    }
    to { 
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
        -moz-opacity: 0.8;
        -khtml-opacity: 0.8; 
    }
}

@-moz-keyframes fadein { 
     from { 
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
    }
    to { 
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
        -moz-opacity: 0.8;
        -khtml-opacity: 0.8; 
    }
}

@-webkit-keyframes fadein { 
     from { 
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
    }
    to { 
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
        -moz-opacity: 0.8;
        -khtml-opacity: 0.8; 
    }
}

@-o-keyframes fadein { 
     from { 
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -moz-opacity: 0;
        -khtml-opacity: 0;
    }
    to { 
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
        -moz-opacity: 0.8;
        -khtml-opacity: 0.8; 
    }
}


/* ==========================================================================
    2. DOCUMENT STYLES
    ========================================================================= */
html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    line-height: 22px;
    color: #777;
    background-color: #fff;
}

.row{
    margin-bottom: 70px;
}

*[class^="row"] *[class^="row"]:last-child{
    margin-bottom: 0;
}



/* ==========================================================================
    3. TYPOGRAPHY 
    ========================================================================= */
p,
a,
span {
    color: #777;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 22px;
}
p {
    padding-bottom: 15px;
}
a {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 0;
    color: #333;
}

h1{
    font-size: 30px;
    line-height: 30px;
}

h2{
    font-size: 24px;
    line-height: 26px;
}

h3{
    font-size: 21px;
    line-height: 24px;
}

h4{
    font-size: 18px;
    line-height: 22px;
}

h5{
    font-size: 16px;
    line-height: 18px;
}

h6{
    font-size: 15px;
    line-height: 18px;
}

strong{
    font-weight: 600;
}

img {
    height: auto;
    display: block;
}
img.float-left {
    float: left;
    margin: 12px 12px 12px 0;
}
img.float-right {
    float: right;
    margin: 12px 0px 12px 12px;
}

.img-fixed-bottom{
    position: relative;
    bottom: -70px;
}

ul,
ol {
    list-style-position: inside;
	margin: 0;
}
ul li,
ol li {
    padding-bottom: 5px;
}

blockquote + p {
    margin-top: 15px;
}

.required{
    color: #ce292d;
}

.text-big{
    font-size: 18px;
    line-height: 25px;
    color: #333;
}

.align-right{
    text-align: right;
}

a.read-more{
    float: right;
    position: relative;
}

a.read-more span{
    text-transform: uppercase;
    font-weight: 700;  
    display: block;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.read-more:hover span{
    transform: translate(-15px, 0);
    -webkit-transform: translate(-15px, 0);
    -moz-transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0);
}

a.read-more i{
    font-size: 11px;
    line-height: 20px;
    opacity: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.read-more:hover i{
    opacity: 1;   
}

a.download-link{
    width: 100%;
    display: block;
    margin-bottom: 5px;
}


a.download-link span {
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

a.download-link span i{
    padding-right: 5px;
}

.mb-70{
    margin-bottom: 70px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-50{
    margin-bottom: 50px;
}

.mb-0{
    margin-bottom: 0;
}

.svg-white .st0{
    fill: #fff;
}

.clear {
    height: 0;
    display: block;
}


/* ==========================================================================
    4. HEADER 
    ========================================================================= */
.header-wrapper {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-wrapper.header-transparent {
    background-color: transparent;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.header-transparent02{
    background-color: #fff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.header-transparent.solid-color,
.header-wrapper.header-transparent02.solid-color{
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.header-wrapper.header-transparent.solid-color .header-style01 .main-nav{
    background: #fff;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header{
    position: relative;
    z-index: 999;
}

.inquiry {
    width: 40px;
    min-height: 80px;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 30px;
    float: right;
    z-index: 999;
    background-color: transparent;
    padding-top: 20px;
}

a.inquiry-link,
a.inquiry-link:link,
a.inquiry-link:visited {
    display: block;
    background-color: #ffa838;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-decoration: none;
    position: absolute;
    background-image: url('images/global/contact_icon.svg');
    background-repeat: no-repeat;
    background-position: center;
}

a.inquiry-link:active,
a.inquiry-link:hover,
a.inquiry-link:focus {
    outline: 0;
    background-color: #098bc2;
}

a.inquiry-link.active,
a.inquiry-link.active:link,
a.inquiry-link.active:visited,
a.inquiry-link.active:active,
a.inquiry-link.active:hover {
    background-color: #098bc2;
}

.search-submit {
    background-image: url('images/global/search.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 40px;
    min-height: 40px;
    border: none;
    text-indent: -9999px;
    position: absolute;
    cursor: pointer;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/* inquiry form section - start */
.inquiry-form-wrapper {
    display: block;
    position: absolute;
    width: 0;
    background-color: #006db7;
    top: 0;
    right: 0;
    z-index: 1005;
    height: 0;
    visibility:hidden;
     transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
}

.inquiry-form-wrapper.open {
    width: 315px;
    visibility: visible;
    height: 100%;
	min-height: 950px;
	box-shadow: 0 2px 3px -2px #000000;
     transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
}

a.close-btn,
a.close-btn:link,
a.close-btn:visited,
a.close-btn:active,
a.close-btn:hover {
    display: block;
    position: absolute;
    background: transparent url('images/global/close.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    top: 5px;
    right: 5px;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

.inner-form-wrapper {
    display: block;
    padding: 50px 25px;
}

.inner-form-wrapper h2 {
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 25px;
    line-height: 26px;
    color: #fff;
    text-transform: uppercase;
    padding: 50px 0 15px 0;
    margin: 0;
}

.inner-form-wrapper .phone-no {
    display: block;
    color: #1b2936;
    font-family: 'open_sansbold';
    font-size: 22px;
    line-height: 26px;
}

.inner-form-wrapper p {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 15px;
}

input.inquire-fld {
    background-color: #125a7c;
    border: none;
    border-radius: 20px;
    color: #fff;
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    height: 45px;
    line-height: 45px;
    margin: 0;
    padding: 0 20px;
    width: 100%;
}

input.inquire-text-area::-webkit-input-placeholder,
input.inquire-fld::-webkit-input-placeholder { 
    color: #ffffff;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    opacity: 1;
}

input.inquire-text-area:-moz-placeholder,
input.inquire-fld:-moz-placeholder { 
    color: #ffffff;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    opacity: 1;
}

input.inquire-text-area::-moz-placeholder,
input.inquire-fld::-moz-placeholder { 
    color: #ffffff;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    opacity: 1;
}

input.inquire-text-area:-ms-input-placeholder,
input.inquire-fld:-ms-input-placeholder { 
    color: #ffffff;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    opacity: 1;
}

.inquiry-form-wrapper .inquire-text-area {
    border-radius: 20px;
    color: #ffffff;
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 16px;
    margin: 0;
    max-height: 120px;
    min-height: 120px;
    min-width: 100%;
    padding: 15px 20px;
    background-color: #125a7c;
    border: none;
    text-transform: uppercase;
    max-width: 265px;
}

.contact-form-wrapper .inquire-text-area {
    border-radius: 20px;
    color: #ffffff;
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    line-height: 16px;
    margin: 0;
    max-height: 120px;
    min-height: 120px;
    min-width: 100%;
    padding: 15px 20px;
    background-color: #8d949a;
    border: none;
    text-transform: uppercase;
    max-width: 265px;
}

a.link-btn.submit-inquire,
a.link-btn.submit-inquire:link,
a.link-btn.submit-inquire:visited,
a.link-btn.submit-inquire:active,
a.link-btn.submit-inquire:hover {
    margin: 15px 0 0 0;
}

a.cancel-inquire,
a.cancel-inquire:link,
a.cancel-inquire:visited {
    margin: 15px 15px 15px 0;
    border: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "ralewayextrabold";
    font-size: 13px;
    line-height: 14px;
    padding: 15px 25px 15px 25px;
    position: relative;
    text-transform: uppercase;
    background-color: #006db7;
    -webkit-transition: background-color 0.25s linear;
    -moz-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    -ms-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

a.cancel-inquire:active,
a.cancel-inquire:hover {
     background-color: #0b4f6c;
}


/* inquiry form section - end */

a.link-btn,
a.link-btn:link,
a.link-btn:visited {
    display: inline-block;
    border: none;
    border-radius: 20px;
    position: relative;
    background-color: #ffa838;
    padding: 15px 60px 15px 20px;
    color: #fff;
    font-family: 'ralewayextrabold';
    font-size: 13px;
    line-height: 14px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: background-color 0.25s linear;
    -moz-transition: background-color 0.25s linear;
    -o-transition: background-color 0.25s linear;
    -ms-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear;
}

a.link-btn:active,
a.link-btn:hover,
a.link-btn:focus {
    outline: 0;
    background-color: #f38900;
}

a.link-btn::before,
a.link-btn:link::before,
a.link-btn:visited::before,
a.link-btn:active::before,
a.link-btn:hover::before {
    display: block;
    position: absolute;
    content: "";
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -30px;
    width: 34px;
    height: 34px;
    right: 5px;
    top: 50%;
    margin-top: -17px;
}


.inquiry:focus,
.search-submit:focus,
#m_search:focus {
    outline: none;
}
#m_search {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    padding: 10px 25px;
    position: absolute;
    top: 100%;
    width: 170px;
    right: 0;
    font-style: italic;
    color: #666;
    display: none;
}

/* 
    MAIN NAVIGATION 
*/
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus{
    background-color: transparent;
}

.main-nav .row{
    margin-bottom: 0;
}

.main-nav{
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #fcfcfc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#fcfcfc 100%); /* IE10+ */

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    margin-top: 35px;

    -webkit-box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2);
    -moz-box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2);
    box-shadow: 0px -8px 0px 0px rgba(255,255,255,0.2);
}

.navbar{
    min-height: 80px;
    margin-bottom: 0;
}

.navbar-default{
    border: none;
    background: none;
}

#dl-menu {
    display: none;
}

.navbar-nav > li {
    padding-bottom: 0;
}

.navbar-nav > li > a,
.navbar-nav > li > a:link,
.navbar-nav > li > a:visited,
.navbar-nav > li > a:active,
.navbar-nav > li > a:hover {
    line-height: 48px;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    color: #565656;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
}

.navbar-nav > li > a::before,
.navbar-nav > li > a:link::before,
.navbar-nav > li > a:visited::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #ffa838;
    top: -8px;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}

.navbar-nav > li > a:active::before,
.navbar-nav > li > a:hover::before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-nav > li > a:active,
.navbar-nav > li > a:focus {
    outline:0;
    border: none;
}

.navbar-nav > li > a.dropdown-toggle,
.navbar-nav > li > a.dropdown-toggle:link,
.navbar-nav > li > a.dropdown-toggle:visited,
.navbar-nav > li > a.dropdown-toggle:active,
.navbar-nav > li > a.dropdown-toggle:hover {
    position: relative;
}

.navbar-nav > li > a.dropdown-toggle::after,
.navbar-nav > li > a.dropdown-toggle:link::after,
.navbar-nav > li > a.dropdown-toggle:visited::after,
.navbar-nav > li > a.dropdown-toggle:active::after,
.navbar-nav > li > a.dropdown-toggle:hover::after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 7px;
    bottom: 20px;
    left: 50%;
    margin-left: -6px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 0; 
}

/**/
.navbar-nav > li.menu-item-has-children > a,
.navbar-nav > li.menu-item-has-children > a:link,
.navbar-nav > li.menu-item-has-children > a:visited,
.navbar-nav > li.menu-item-has-children > a:active,
.navbar-nav > li.menu-item-has-children > a:hover {
    position: relative;
}

.navbar-nav > li.menu-item-has-children > a::after,
.navbar-nav > li.menu-item-has-children > a:link::after,
.navbar-nav > li.menu-item-has-children > a:visited::after,
.navbar-nav > li.menu-item-has-children > a:active::after,
.navbar-nav > li.menu-item-has-children > a:hover::after {
    position: absolute;
    content: "";
    display: block;
    width: 12px;
    height: 7px;
    bottom: 20px;
    left: 50%;
    margin-left: -6px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 0; 
}
/**/

.nav > li > a,
.nav > li > a:link,
.nav > li > a:visited,
.nav > li > a:active,
.nav > li > a:hover {
    padding: 20px;
    padding-right: 20px;
}

.dropdown-menu {
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #eee;
    min-width: 240px;
    max-width: 400px;
    padding: 0;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.2);
}

.dropdown .dropdown-menu .dropdown-submenu > a,
.dropdown .dropdown-menu .dropdown-submenu > a:link,
.dropdown .dropdown-menu .dropdown-submenu > a:visited,
.dropdown .dropdown-menu .dropdown-submenu > a:active,
.dropdown .dropdown-menu .dropdown-submenu > a:hover {
    position: relative;
}

.dropdown .dropdown-menu .dropdown-submenu > a:after,
.dropdown .dropdown-menu .dropdown-submenu > a:after:link,
.dropdown .dropdown-menu .dropdown-submenu > a:after:visited,
.dropdown .dropdown-menu .dropdown-submenu > a:after:active,
.dropdown .dropdown-menu .dropdown-submenu > a:after:hover {
    position: absolute;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #aaa;
    right: 0;
    top: 50%;
    margin-top: -3px;
}

.dropdown-menu > li:last-child a,
.dropdown-menu > li:last-child a:link,
.dropdown-menu > li:last-child a:visited,
.dropdown-menu > li:last-child a:active,
.dropdown-menu > li:last-child a:hover {
    border: none;
}

.dropdown-menu > li > a:hover, 
.dropdown-menu > li > a:focus{
    background: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-submenu > .dropdown-menu {
    left: 100%;
    top: -3px;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
     box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown.dropdown-submenu > a,
.dropdown.dropdown-submenu > a:link,
.dropdown.dropdown-submenu > a:visited,
.dropdown.dropdown-submenu > a:active,
.dropdown.dropdown-submenu > a:hover {
    position: relative;
}

.logo {
    display: block;
    position: absolute;
    top: -15px;
}

.solid-color .logo {
    top: 10px;
}

.navbar-header{
    padding-top: 18px;
    padding-left: 30px;
    position: relative;
}

.logo img {
    height: 120px;
}

.solid-color .logo img {
    height: 70px;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form{
    border: none;
}

.navbar-collapse{
    float: right;
    padding: 0;
}

/*  HEADER STYLE 01 - WITH TOPBAR
    ------------------------------------------------------------------------- */
.header-style01 #top-bar-wrapper .row{
    margin-bottom: 0;
}

.header-style01 #quick-links{
    padding-top: 8px;
}

.header-style01 #quick-links li{
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style01 #quick-links li span,
.header-style01 #quick-links li a{
    color: #fff;
}

.header-style01 #top-bar-wrapper{
    padding: 20px 0 0;
    width: 100%;
}



/*  HEADER STYLE 02 - LIGHT TOPBAR
    ------------------------------------------------------------------------- */

.header-style02 #top-bar-wrapper .row{
    margin-bottom: 0;
}

.header-style02 #quick-links{
    padding-top: 8px;
}

.header-style02 #quick-links li{
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style02 #top-bar-wrapper{
    background-color: #fcfcfc;
    padding: 10px 0;
    width: 100%;
}

.header-style02 .navbar-header{
    padding-left: 0;
}

.header-style02 .inquiry {
    margin-right: 0;
}


.wpml-languages{
    display: block;
    float: right;
    position: relative;

}

.wpml-languages a.active{
    display: block;
    padding: 8px 6px 8px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}

.wpml-languages a.active i{
    font-size: 9px;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.wpml-languages a.active img{
    width: 22px;
    float: left;
}

.wpml-languages a img{
    width: 22px;
}

.wpml-lang-dropdown{
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 102%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    overflow: hidden;
    border: 1px solid #ddd;
    width: 100%;
    display: none;
    z-index: 10001;
}

.wpml-lang-dropdown li{
    list-style: none;
    padding: 8px 15px;
}

.wpml-languages:hover ul.wpml-lang-dropdown{
    display: block;
}

.header-style02 .header-inner{
    padding: 20px 0;
}

.header-style02 .header-inner .main-nav{
    margin-top: 0;
    background: none;
}

.header-style02 .navbar-default .navbar-nav>li>a:hover, 
.header-style02 .nav > li.current-menu-item > a{
    border: none;
    border-bottom: none;
    border-color: transparent;
}

.header-style02 .navbar-default .navbar-nav>li>a{
    border-bottom: none;
}


/*  HEADER STYLE 02 - DARK TOPBAR
    ------------------------------------------------------------------------- */
.header-style02 #top-bar-wrapper.dark{
    background-color: #333333;
}

.header-style02 #top-bar-wrapper.dark #quick-links li span,
.header-style02 #top-bar-wrapper.dark #quick-links li a{
    color: #ccc;
}

#top-bar-wrapper.dark .wpml-languages a.active,
#top-bar-wrapper.dark .wpml-lang-dropdown{
    background-color: #444;
    border: 1px solid #555;
}

#top-bar-wrapper.dark .wpml-languages a.active i{
    color: #ccc;
}


/*  HEADER STYLE 02 - DARK HEADER
    ------------------------------------------------------------------------- */
.header-wrapper.dark #top-bar-wrapper{
    background-color: #222;
}

.header-wrapper.dark #quick-links li span,
.header-wrapper.dark #quick-links li a{
    color: #ccc;
}

.header-wrapper.dark .wpml-languages a.active,
.header-wrapper.dark .wpml-lang-dropdown{
    background-color: #333;
    border: 1px solid #444;
}

.header-wrapper.dark .wpml-languages a.active i{
    color: #ccc;
}

.header-wrapper.dark{
    background-color: #333;
}

.header-wrapper.dark .main-nav{
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.header-wrapper.dark .navbar-default .navbar-nav>li>a{
    color: #fff;
}

.header-wrapper.dark .dropdown-menu{
    background-color: #333;
    border: 1px solid #444;
}

.header-wrapper.dark .dropdown-menu>li>a{
    color: #888;
    border-bottom: 1px dotted #444;
}

.header-wrapper.dark .dropdown-menu>li>a:hover{
    color: #fff;
}

.header-wrapper.dark .dropdown .dropdown-menu .dropdown-submenu > a:after{
    border-left: 5px solid #888;
}

.header-wrapper.dark .dropdown .dropdown-menu .dropdown-submenu > a:hover:after{
    border-left: 5px solid #fff;
}

.header-wrapper.dark #m_search{
    background: #333;
    border: 1px solid #444;
    color: #ccc;
}


/*  HEADER STYLE 03
    ------------------------------------------------------------------------- */
.header-style03 .info-container{
    float: right;
}

.header-style03 .info-container #quick-links,
.header-style03 .info-container .wpml-languages,
.header-style03 .info-container .inquiry {
    float: left;
    padding: 0 10px;
}

.header-style03 .info-container #quick-links{
    padding-top: 10px;
}

.header-style03 #quick-links{
    padding-top: 8px;
}

.header-style03 #quick-links li{
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
}

.header-style03 .wpml-lang-dropdown{
    width: auto;
    left: 10px;
}

.header-style03 .inquiry {
    min-height: 60px;
}

.header-style03 .logo-info-container{
    padding: 20px 0;
}

.header-style03 .logo-info-container .row{
    margin-bottom: 0;
}

.header-style03 .main-nav{
    margin-top: 0;
    border-top: 1px solid #eee;
    background: none;
}

.header-style03 .navbar-default .navbar-collapse, .navbar-default .navbar-form{
    float: left;
    width: 100%;
}

.header-style03 .navbar-nav>li>a{
    line-height: 30px;
}

.header-style03 .navbar{
    min-height: 30px;
}

.header-style03 .nav > li.current-menu-item > a{
    border-bottom: none;
}

.header-style03 .navbar a.btn{
    position: relative;
    top: 10px;
}

/*  HEADER STYLE 03 DARK
    ------------------------------------------------------------------------- */
.header-wrapper.dark .header-style03 .main-nav{
    border-top: 1px solid #444;
}




/* ==========================================================================
    5. PAGE TITLES 
    ========================================================================= */
.page-title-style01{
    padding-top: 70px;
    padding-bottom: 120px;
}

.page-title-negative-top{
    margin-top: 0 !important;
    padding-top: 200px;
	background-size: center center !important;
	background-color: #b2b2b2 !important;
}

.page-title-style01 .row,
.page-title-style02 .row{
    margin-bottom: 0;
}

.page-title-style01 h2 {
    color: #fff;
    text-align: center;
    font-family: 'ralewayextrabold';
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.breadcrumb-container {
    width: 100%;
    float: left;
}

.page-title-style01 .breadcrumb{
    margin: 0 auto;
    display: table;
}

.breadcrumbs {
    display: block;
    text-align: center;
	margin: 2px 5px;
}

.breadcrumbs span {
	color: #fff;
    font-family: "ralewaybold";
    font-size: 13px;
    line-height: 15px;
    list-style: outside none none;
    text-transform: uppercase;
}

.interior-top-tab .breadcrumbs span {
	color: #626262;
}

.breadcrumb li{
    list-style: none;
    float: left;
    padding: 0 0px 0 3px;
    color: #fff;
    font-family: 'ralewaybold';
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
}

.breadcrumbs a span,
.breadcrumbs a:link span,
.breadcrumbs a:visited span {
    color: #ffa838;
    text-decoration: none;
}

.breadcrumbs a:active span,
.breadcrumbs a:hover span,
.breadcrumbs a:focus span {
    outline: 0;
    color: #006db7;
}

.breadcrumbs .bc-separator {
	background: transparent url("images/global/seymourcrushing_sprite.svg") no-repeat scroll 0 -310px;
    display: inline-block;
    height: 11px;
    width: 6px;
	margin: 0 5px;
}

.interior-top-tab .breadcrumbs .bc-separator {
    background-position: -20px -310px;
}

.breadcrumb li + li {
    position: relative;
    padding-left: 20px;
}

.breadcrumb li + li::before {
    content: '';
    display: block;
    position: absolute;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -310px;
    width: 6px;
    height: 11px;
    top: 2px;
    left: 8px;
}

.breadcrumb li:nth-child(2)::before {
    color: transparent;
}

.page-title-style02{
    padding: 70px 0;
    margin-bottom: 70px;
}

.page-title-style02 h1{
    color: #fff;
    margin-bottom: 0;
}

.page-title-style02 .breadcrumb-container{
    float: right;
    width: auto;
}



.pt-bkg01{
    background-image: url('images/pics/page-title01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg02{
    background-image: url('/images/pics/page-title02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg03{
    background-image: url('/images/pics/page-title03.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg04{
    background-image: url('/images/pics/page-title04.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg05{
    background-image: url('/images/pics/page-title05.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg06{
    background-image: url('/images/pics/page-title06.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg07{
    background-image: url('/images/pics/page-title07.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg08{
    background-image: url('/images/pics/page-title08.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg09{
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg10{
    background-image: url('/images/pics/page-title10.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg11{
    background-image: url('/images/pics/page-title11.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg12{
    background-image: url('/images/pics/page-title12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg13{
    background-image: url('/images/pics/page-title13.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg14{
    background-image: url('/images/pics/page-title14.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg15{
    background-image: url('/images/pics/page-title15.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg16{
    background-image: url('/images/pics/page-title16.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


/* ==========================================================================
    6. CUSTOM SECTION BACKGROUNDS
    ========================================================================= */
.page-content.custom-bkg{
    padding-top: 70px;
}

.page-content.column-img-bkg{
    padding: 0;
}

.page-content.column-img-bkg .row{
    margin-bottom: 0;
}

.custom-col-padding-both{
    padding: 120px 70px;
}

.custom-col-padding-bottom{
    padding-bottom: 120px;
}

.img-bkg01{
    background-image: url('/images/pics/img-bkg01.jpg');
}

.img-bkg02{
    background-image: url('/images/pics/img-bkg02.jpg');
}

.img-bkg03{
    background-image: url('/images/pics/img-bkg03.jpg');
}

*[class*="img-bkg"]{
    background-size: cover;
}

.custom-bkg.bkg-grey{
    background-color: #f6f6f6;
}

.custom-bkg.bkg-light-blue{
    background-color: #f4fcfc;
}

.custom-bkg.bkg-dark-blue{
    background-color: #2c3741;
}

.custom-bkg.bkg-dark-blue.transparent01{
    background-color: rgba(37, 39, 46, 0.7);
}

.custom-bkg.bkg-dark-blue.transparent02{
    background-color: rgba(37, 39, 46, 0.8);
}

.custom-bkg.bkg-dark-blue.transparent03{
    background-color: rgba(37, 39, 46, 0.9);
}

.page-title-style01 + .page-content.custom-bkg,
.page-title-style02 + .page-content.custom-bkg{
    margin-top: -70px;
}

.page-content.parallax{
    padding-top: 100px;
    padding-bottom: 30px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1b2936;
}

.parallax01{
    background-image: url('images/homepage/paralla_bg.svg');
}

.parallax02{
    background-image: url('/images/pics/parallax02.jpg');
}

.parallax03{
    background-image: url('/images/pics/parallax03.jpg');
}

.parallax04{
    background-image: url('/images/pics/parallax04.jpg');
}

.parallax05{
    background-image: url('/images/pics/parallax05.jpg');
}

.page-content.dark h1,
.page-content.dark h2,
.page-content.dark h3,
.page-content.dark h4,
.page-content.dark h5,
.page-content.dark h6{
    color: #fff;
}


.page-content.dark p,
.page-content.dark span,
.page-content.dark li,
.page-content.dark a{
    color: #eee;
}

*[class^="col-"].custom-bkg{
    padding: 30px;
}

*[class^="col-"].custom-bkg.dark h1,
*[class^="col-"].custom-bkg.dark h2,
*[class^="col-"].custom-bkg.dark h3,
*[class^="col-"].custom-bkg.dark h4,
*[class^="col-"].custom-bkg.dark h5,
*[class^="col-"].custom-bkg.dark h6{
    color: #fff;
}

*[class^="col-"].custom-bkg.dark p,
*[class^="col-"].custom-bkg.dark a,
*[class^="col-"].custom-bkg.dark span,
*[class^="col-"].custom-bkg.dark li,
*[class^="col-"].custom-bkg.dark label{
    color: #eee;
}


/* ==========================================================================
    7. ELEMENTS
    ========================================================================= */

/*  7.1. ACCORDION
    ------------------------------------------------------------------------- */
.accordion .title {
    width: 100%;
    background-color: #f6f6f6;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 15px;
    float: left;
}

.accordion .title a{
    font-size: 15px;
    color: #333;
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    position: relative;
    width: 100%;
    padding-left: 20px;
    display: block;
    float: left;
}

.accordion .title::before{
    content: "\f067";
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    display: block;  
}

.accordion .title.active::before{
    content: "\f068";
    font-family: 'FontAwesome';
    font-size: 15px;
    position: absolute;
    display: block;
}

.accordion .title a::after{
    display: none;
}

.accordion.careers .title{
    padding: 15px 62px 15px 20px;    
}

.accordion.careers .title a{
    padding-left: 0;
}

.accordion.careers .title::before{
    display: none;
}

.accordion.careers .title a span{
    color: #333;
    font-weight: 600;
    width: 30%;
    display: block;
    float: left;
    font-size: 13px;
}

.accordion .job-position,
.accordion .job-end-date{
    text-transform: uppercase;
}

.accordion.careers .title::after{
    position: absolute;
    content: "";
    display: block;
    width: 52px;
    height: 100%;
    background-color: #e6e6e6;
    background-image: url('images/global/accordion-closed.png');
    background-repeat: no-repeat;
    background-position: center;
    right: 0;
    top: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.accordion.careers .title.active::after{
    background-image: url('images/global/accordion-opened.png');
    background-repeat: no-repeat;
    background-position: center;
}

.accordion.careers .title:hover::after{
    background-image: url('images/global/accordion-opened.png');
    background-repeat: no-repeat;
    background-position: center;    
}

.accordion .content {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-top: 20px;
}



/*
    7.2. BLOCKQUOTE
    ------------------------------------------------------------------------- */
blockquote{
    margin-left: 30px;
    border-left: 3px solid;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 25px;
    font-style: italic;
    color: #333;
}


/*  7.3. BUTTONS
    ------------------------------------------------------------------------- */
.btn {
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    display: inline-block;
    backface-visibility: hidden;
    float: right;

    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.btn span {
    color: #fff;
}

.dark .btn span{
    color: #fff;
}

.btn-big {
    padding: 12px 60px;
    font-size: 12px;
}

.btn-medium {
    padding: 10px 40px;
    font-size: 12px;
}

.btn-small {
    padding: 4px 20px;
    font-size: 11px;
}

.btn-yellow{
    background-color: #fac312 !important;
}

.btn-centered{
    float: none;
    display: table;
    margin: 0 auto;
}

.btn-yellow:hover{
    background-color: #fcc820 !important;
}


/*  7.4. CALL TO ACTION
    ------------------------------------------------------------------------- */
.call-to-action .text{
    width: 70%;
    float: left;
}

.call-to-action .btn{
    float: right;
    position: relative;
    top: 30px;
}



/*
    7.5. CLIENT CAROUSEL
    ------------------------------------------------------------------------- */
#client-carousel .owl-item img{
    opacity: 0.7;

    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
}

#client-carousel .owl-item:hover img{
    opacity: 1;
}


/*  7.6. CLIENT LIST
    ------------------------------------------------------------------------- */
.clients-li{
    width: 100%;
}

.clients-li li{
    list-style: none;
    float: left;
    width: 33.33333333%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid #eee;
}

.clients-li li:first-child{
    padding-left: 0;
}

.clients-li:nth-child(3n){
    padding-right: 0;
}

.clients-li li img{
    opacity: 0.7;

    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;

    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.clients-li li:hover img{
    opacity: 1;
}

.col-md-6 .clients-li li{
    max-height: 92px;
}


/*  7.7. COMPANY TIMELINE
    ------------------------------------------------------------------------- */
.company-timeline{
    width: 100%;
}

.company-timeline li{
    list-style: none;
    float: left;
    width: 100%;
    position: relative;
}

.company-timeline li .timeline-item-details::before{
    position: absolute;
    content: "";
    display: block;
    left: 35px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    z-index: 1;
}

.company-timeline .icon-date-container{
    width: 70px;
    height: 70px;
    float: left;
    border: 2px solid #ddd;
    background-color: #fff;
    z-index: 2;
    position: relative;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.company-timeline .icon-date-container i{
    width: 70px;
    height: 70px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 24px;
}

.company-timeline .timeline-item-details{
    padding-left: 100px;
    position: relative;
    padding-bottom: 30px;
}

.company-timeline li:last-child .timeline-item-details{
    padding-bottom: 0;
}


/*
    7.8. CUSTOM HEADING
    ------------------------------------------------------------------------- */
.row .custom-heading:only-child{
    margin-bottom: -70px;
}

.custom-heading {
    position: relative;
    width: 100%;
    display: block;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.custom-heading::after{
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 5px;
    left: 0;
    bottom: 0;
}

.custom-heading h4 {
    display: block;
    margin: 0;
    color: #565656;
    font-family: 'ralewayextrabold';
    font-size: 18px;
    line-height: 20px;
}

.service-body p {
    display: block;
    color: #787878;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 20px;
}

.custom-heading.centered{
    text-align: center;
}

.custom-heading.centered:after{
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    left: 50%;
    margin-left: -20px;
    top: 0;
}

/*
    7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
    ------------------------------------------------------------------------- */
.col-md-12 .custom-heading02:only-child{
    margin-bottom: 0;
}

.row .custom-heading02:only-child{
    margin-bottom: -30px;
}

.custom-heading02{
    position: relative;
    margin-bottom: 40px;
}

.custom-heading02 h1,
.custom-heading02 h2,
.custom-heading02 h3,
.custom-heading02 h4{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
}

.custom-heading02 p{
    text-transform: uppercase;
    text-align: center;
}

.custom-heading02:after{
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}

.custom-heading02.simple h1,
.custom-heading02.simple h2,
.custom-heading02.simple h3,
.custom-heading02.simple h4{
    padding-bottom: 15px;
}


/*  7.10. DRIVER APPLICATION
    ------------------------------------------------------------------------- */
.driver-app-form fieldset{
    width: 33.33333333%;
    padding-right: 15px;
    float: left;
}

.driver-app-form fieldset:nth-child(3n){
    padding-right: 0;
}

.driver-app-form .wpcf7-select{
    max-height: 34px;
}

/*
    7.11. EVENTS
    ------------------------------------------------------------------------- */
.table-responsive{
    overflow-y: hidden;
}

.events-table thead{
    border-bottom: 1px solid #e6e6e6;
}

.events-table thead th{
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    padding-left: 15px;
    padding-bottom: 10px;
}

.events-table thead th:first-child{
    padding-left: 0;
}

.events-table tbody td{
    padding: 0 15px;
    vertical-align: middle;
}

.events-table .event-date{
    padding: 20px 0;
}

.events-table .event-date .day{
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.events-table .event-date .month{
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

ul.pi-latest-posts.clearfix {
    margin: 0;
}

ul.pi-latest-posts.clearfix li {
    list-style: none;
}

/*  7.12. INTRO TITLE
    ------------------------------------------------------------------------- */
.intro-title{
    width: 100%;
}

.intro-title p{
    font-size: 24px;
    line-height: 30px;
    color: #333;
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
    text-align: center;
}



/*  7.13. LATEST POSTS STYLE 01
    ------------------------------------------------------------------------- */
.pi-latest-posts li{
    list-style: none;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.pi-latest-posts li:last-child{
    margin-bottom: 0;
}

.pi-latest-posts li .post-media{
    width: 100px;
    height: 100px;
    float: left;
    margin-bottom: 0;
}

.pi-latest-posts li .post-details{
    padding-left: 120px;
    padding-right: 15px;
}

.pi-latest-posts li .post-details h4{
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts .post-date p {
    color: #333333;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-family: 'open_sansregular';
}

.pi-latest-posts .post-date i{
    padding-right: 3px;
}


/*  7.14. LATEST POSTS STYLE 02
    ------------------------------------------------------------------------- */
.pi-latest-posts02 li{
    width: 30%;
    float: left;
    margin-right: 30px;
    list-style: none;
}

.col-md-8 .pi-latest-posts02 li,
.col-md-9 .pi-latest-posts02 li{
    width: 46%;
}


.col-md-6 .pi-latest-posts02 li,
.col-md-4 .pi-latest-posts02 li,
.col-md-3 .pi-latest-posts02 li{
    width: 100%;
    margin-bottom: 20px;
}

.pi-latest-posts02 li:nth-child(3n){
    padding-right: 0;
}

.pi-latest-posts02 .post-date,
.pi-latest-posts02 .post-date{
    width: 100px;
    float: left;
}

.pi-latest-posts02 .post-date .day{
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.pi-latest-posts02 .post-date .month{
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.pi-latest-posts02 .post-details{
    padding-left: 120px;
}

.pi-latest-posts02 li .post-details h4{
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts02 .post-category p{
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.pi-latest-posts02 .post-category i{
    padding-right: 3px;
}



/*  7.15. LATEST POSTS STYLE 03
    ------------------------------------------------------------------------- */
.pi-latest-posts03 li{
    list-style: none;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.pi-latest-posts03 li:last-child{
    margin-bottom: 0;
}

.pi-latest-posts03 li .post-media{
    width: 60px;
    height: 60px;
    float: left;
    margin-bottom: 0;
}

.pi-latest-posts03 li .post-media i{
    font-size: 36px;
}

.pi-latest-posts03 li .post-details{
    padding-left: 70px;
}

.pi-latest-posts03 li .post-details h4{
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    margin-bottom: 10px;
}

.pi-latest-posts03 .post-date p{
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.col-md-8 .pi-latest-posts03 li,
.col-md-9 .pi-latest-posts03 li{
    margin-right: 30px;
    width: 48%;
}

.col-md-8 .pi-latest-posts03 li:nth-child(2n),
.col-md-9 .pi-latest-posts03 li:nth-child(2n){
    margin-right: 0;
}

.col-md-6 .pi-latest-posts03 li,
.col-md-4 .pi-latest-posts03 li,
.col-md-3 .pi-latest-posts03 li{
    width: 100%;
    margin-bottom: 20px;
}




/*   7.16. LIST WITH ICONS
    ------------------------------------------------------------------------- */
.fa-ul li i{
    line-height: 20px;
}

.fa-ul.large-icons{
    margin-left: 0;
}

.fa-ul.large-icons li{
    margin-bottom: 20px;
}

.fa-ul.large-icons li:last-child{
    margin-bottom: 0;
}

.fa-ul.large-icons li i{
    font-size: 24px;
    width: 30px;
    height: 30px;
}

.fa-ul.large-icons .icon-container{
    float: left;
    width: 30px;
    height: 30px;
}

.fa-ul.large-icons .li-content{
    padding-left: 40px;
}

.fa-ul.large-icons .li-content h4{
    padding-top: 3px;
}



/*  7.17. NUMBERS COUNTER
    ------------------------------------------------------------------------- */
.numbers-counter{
    padding: 20px;
    background-color: #fcfcfc;
}

.numbers-counter .counter-container{
    width: 100%;
    position: relative;
}

.numbers-counter .counter-container::after{
    position: absolute;
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 50%;
    margin-left: -15px;
}

.numbers-counter .number{
    font-size: 40px;
    line-height: 40px;
    font-weight: 800;
    text-align: center;
    color: #333;
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.numbers-counter p{
    text-align: center;
}




/*  7.18. PROMO BOXES
    ------------------------------------------------------------------------- */
.promo-box{
    padding: 90px 20px;
}

.promo-box02{
    padding: 30px 30px 90px 30px;
}

.promo-box02 p{
    text-align: center;
}

.promo-box h4,
.promo-box p{
    text-align: center;
}

.promo-box .btn{
    float: none;
    margin: 0 auto;
    display: table;
}

.promo-bkg01{
    background-image: url('/images/pics/promo01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-bkg02{
    background-image: url('/images/pics/promo02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


/*
    7.19. SERVICES FEATURE BOX
    ------------------------------------------------------------------------- */
.services-negative-top{
    margin-top: -316px;
}

.custom-bkg .service-feature-box,
.parallax .service-feature-box {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: none;
    position: relative;
}

.service-feature-box {
    box-shadow: 1px 0px 3px 0 #ddd;
    -webkit-box-shadow: 1px 0px 3px 0 #ddd;
    -moz-box-shadow: 1px 0px 3px 0 #ddd;
    border: 1px solid #eee;
    z-index: 999;
}

.service-feature-box .service-media {
    position: relative;
    overflow: hidden;
}

.service-feature-box .service-media img{
    width: 100%;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;
}

.service-feature-box .service-media:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.service-feature-box .service-media a{
    background-color: #1b2936;
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
}

.service-feature-box .service-media span{
    color: #fff;    
    padding-left: 20px;
    font-weight: 600;
}

.service-feature-box .service-media i{
    background-color: #2f3840;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 22px;
    margin-left: 20px;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-feature-box .service-body {
    background-color: #fff;
    padding: 20px;
    min-height: 200px;
}

.service-body.services-slider {
    background-color: #098bc2;
    min-height: 150px;
}

.service-body.services-slider h4,
.service-body.services-slider p {
    color: #fff;
}

.service-body.services-slider .custom-heading::after {
    background-color: #ffa838;
}

.service-feature-box.welcome-content {
    background-color: #006db7;
    min-height: 415px;
    padding: 20px;
    z-index: 999;
}

.service-feature-box.welcome-content h4 {
    display: block;
    font-family: 'ralewaybold';
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    margin: 5px 0;
    text-transform: uppercase;
    padding: 0;
}

.service-feature-box.welcome-content h3 {
    display: block;
    font-family: 'ralewaybold';
    color: #fff;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.welcome-content .custom-heading {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    width: 100%;
}

.welcome-content .custom-heading::after {
    bottom: 0;
    content: "";
    display: block;
    height: 5px;
    left: 0;
    position: absolute;
    width: 30px;
    background-color: #ffa838;
}

.service-feature-box.welcome-content p {
    display: block;
    font-family: 'open_sansregular';
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}

/*
    7.20. SERVICES GALLERY
    ------------------------------------------------------------------------- */
.services-gallery .col-md-3{
    padding: 0;
    list-style: none;
}

.service-item-container{
    position: relative;
    overflow: hidden;
}

.service-item-container .service-item{
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.service-item-container .service-item img{
    width: 100%;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;
}

.service-item-container .hover-mask-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(49, 57, 63, 0.5);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-item-container .service-item:hover .hover-mask-container{
    opacity: 1;
}

.service-item-container figcaption{
    position: absolute;
    width: 100%;
    top: 40px;
}

.service-item-container figcaption h1,
.service-item-container figcaption h2,
.service-item-container figcaption h3,
.service-item-container figcaption h4,
.service-item-container figcaption h5{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.service-item-container figcaption h1:after,
.service-item-container figcaption h2:after,
.service-item-container figcaption h3:after,
.service-item-container figcaption h4:after,
.service-item-container figcaption h5:after{
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;  
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}

.hover-mask-container .hover-details{
    position: absolute;
    bottom: 40px;
    left: 50%;

    transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.hover-mask-container .hover-details span{
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    border: 3px solid;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.service-item-container .service-item:hover .hover-details{
    transform: translate(0,0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
}

.service-item-container .service-item:hover img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

/*
    7.21. SERVICE ICON CENTER
    ------------------------------------------------------------------------- */
.service-icon-center .icon-container{
    width: 100px;
    height: 100px;
    display: table;
    margin: 0 auto 20px;
    background-color: #fcfcfc;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-icon-center .icon-container i{
    font-size: 36px;
    color: #333;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100px;
    height: 100px;
}

.service-icon-center .icon-container img{
    width: 60px;
    height: 60px;
    position: relative;
    left: 50%;
    margin-top: 15px;
    margin-left: -30px;
}

.service-icon-center h1,
.service-icon-center h2,
.service-icon-center h3,
.service-icon-center h4,
.service-icon-center h5{
    text-align: center;
    margin-bottom: 15px;
}

.service-icon-center p{
    text-align: center;
}


/*  7.22. SERVICE ICON CENTER BOXED
    ------------------------------------------------------------------------- */
.service-icon-center-boxed{
    width: 100%;
    background-color: #fcfcfc;
    padding: 30px 20px;
}

.service-icon-center-boxed .service-title{
    display: table;
    margin: 0 auto 10px;
}

.service-icon-center-boxed .service-title .icon-container{
    width: 60px;
    height: 60px;
    float: left;
}

.service-icon-center-boxed .service-title h4{
    padding-left: 70px;
    padding-top: 20px;
}

.service-icon-center-boxed p{
    text-align: center;
    padding-bottom: 0;
}

.service-icon-center-boxed .icon-container i{
    width: 60px;
    height: 60px;
    font-size: 46px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


/*
    7.23. SERVICES ICON LEFT 
    ------------------------------------------------------------------------- */
.service-icon-left{
    width: 100%;
}

.service-icon-left .icon-container{
    float: left;
    width: 100px;
    height: 100px;
    background-color: #fff;

    border: 2px solid #ddd;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-icon-left .icon-container img,
.service-icon-left .icon-container svg{
    width: 60px;
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    height: 60px;
    position: relative;
    top: 20px;
}

.service-icon-left .service-details{
    padding-left: 120px;
}

.service-icon-left .service-details h1,
.service-icon-left .service-details h2,
.service-icon-left .service-details h3,
.service-icon-left .service-details h4{
    margin-bottom: 15px;
}

.service-icon-left .icon-container i{
    font-size: 60px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 100px;
    width: 100px;
}

/*
    7.24. SERVICES ICON LEFT BOXED
    ------------------------------------------------------------------------- */
.service-icon-left-boxed{
    background-color: #fcfcfc;
    padding: 30px 40px;
}

.service-icon-left-boxed .icon-container{
    float: left;
    width: 100px;
}

.service-icon-left-boxed .service-details{
    padding-left: 120px;
}

.service-icon-left-boxed .service-details h1,
.service-icon-left-boxed .service-details h2,
.service-icon-left-boxed .service-details h3,
.service-icon-left-boxed .service-details h4{
    margin-bottom: 15px;
}

.service-icon-left-boxed .service-details p{
    padding-bottom: 0;
}

.col-md-3 .service-icon-left-boxed .icon-container{
    float: none;
    margin: 0 auto 20px;
}

.col-md-3 .service-icon-left-boxed .service-details{
    padding-left: 0;
}


.col-md-3 .service-icon-left-boxed .service-details h1,
.col-md-3 .service-icon-left-boxed .service-details h2,
.col-md-3 .service-icon-left-boxed .service-details h3,
.col-md-3 .service-icon-left-boxed .service-details h4,
.col-md-3 .service-icon-left-boxed .service-details p{
    text-align: center;
}

.service-icon-left-boxed i{
    font-size: 70px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100px;
}


/*  7.25. SERVICE LIST - small icons and text
    ------------------------------------------------------------------------- */
.service-list li{
    list-style: none;
    width: 100%;
    float: left;
    padding-bottom: 10px;
}

.service-list li:last-child{
    padding-bottom: 0;
}

.service-list li .icon-container{
    width: 70px;
    height: 70px;
    float: left;
}

.service-list li p{
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    padding-top: 20px;
    padding-left: 95px;
}

.service-list li i{
    font-size: 46px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 70px;
}


/*  7.26. SERVICES LIST BIG ICONS 
    ------------------------------------------------------------------------- */
.col-md-9 .service-list-big-icons li{
    width: 33.3%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.col-md-9 .service-list-big-icons li:nth-child(3n){
    padding-right: 0;
}

.col-md-9 .service-list-big-icons li:first-child{
    padding-left: 0;
}

.service-list-big-icons{
    width: 100%;
}

.service-list-big-icons li{
    list-style: none;
    float: left;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.service-list-big-icons li .icon-container{
    background-color: #fff;
    width: 80px;
    height: 80px;
    float: left;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}


.service-list-big-icons .icon-container svg,
.service-list-big-icons .icon-container img{
    width: 60px;
    display: block;
    margin: 0 auto;
    height: 100%;
}

.service-list-big-icons li h4{
    font-weight: normal;
    padding-left: 100px;
    padding-top: 30px;
}

.service-list-big-icons .icon-container i{
    font-size: 36px;
    width: 80px;
    height: 80px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


/*  7.27. SERVICES LIST BIG ICONS + DETAILS (text)
    ------------------------------------------------------------------------- */
.service-list-big-icons-details li{
    margin-bottom: 20px;
}

.col-md-9 .service-list-big-icons-details li{
    width: 33.3%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}

.col-md-9 .service-list-big-icons-details li:nth-child(3n){
    padding-right: 0;
}

.col-md-9 .service-list-big-icons-details li:first-child{
    padding-left: 0;
}

.service-list-big-icons-details{
    width: 100%;
}

.service-list-big-icons-details li{
    list-style: none;
    float: left;
}

.service-list-big-icons-details li .icon-container{
    background-color: #fff;
    width: 100px;
    height: 100px;
    float: left;
    border: 2px solid #ddd;

    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.service-list-big-icons-details li .icon-container svg,
.service-list-big-icons-details li .icon-container img{
    width: 60px;
    height: 100%;
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
}

.service-list-big-icons-details li .service-details{
    padding-left: 125px;
    padding-top: 10px;
}

.service-list-big-icons-details li .service-details h4{
    margin-bottom: 15px;
}

.service-list-big-icons-details .icon-container i{
    width: 100px;
    height: 100px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 50px;
}


/*
    7.28. SHIPPING QUOTE FORM
    ------------------------------------------------------------------------- */
.wpcf7.shipping-quote{
    padding: 20px;
    background-color: #fcfcfc;
}

.wpcf7.shipping-quote label{
    width: 50%;
    float: left;
    padding-top: 8px;
}

.wpcf7.shipping-quote fieldset{
    width: 100%;
    margin-bottom: 5px;
}

.wpcf7.shipping-quote input.wpcf7-text{
    width: 50%;
    float: left;
    padding: 5px 15px;
}

.wpcf7.shipping-quote .submit{
    padding: 8px 30px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    float: right;
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}


/* Main Slide (bx-slider) - start */
.md-slide  li {
    height: 800px;
    max-height: 800px;
}
.md-slide-wrapper {
    position: relative;
    height: 800px;
    overflow: hidden;
}
.md-slide li img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1920px;
    height: 800px;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.content-slide {
    top: 0;
    text-align: center;
    font-family: 'mongolian_baitiregular';
    color: #FFF;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    display: table;
    height: 100%;
}
.content-slide .container {
    height: 100%;
    min-height: 100%;
}
.content-slide .home-content {
    display: table-cell;
    vertical-align: middle;    
    width: 1200px;
    /*max-width: 1200px;*/
    z-index: 999;
}

.content-slide .slide-title {
    line-height: 48px;
    text-transform: uppercase;
}

.content-slide h2.slide-title {
    color: #fff;
    display: block;
    font-family: "ralewayextrabold";
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    font-size: 55px;
    line-height: 58px;
    padding: 0 0 15px 0;
    background: transparent url('images/homepage/slider-line.svg') no-repeat bottom center;
    margin-bottom: 15px;
}

/* Dark */
.content-slide.dark .title-inner {
	position: relative;
	font-size: 40px;
	line-height: 48px;
	display: inline-block;
	margin: 0 10px;
	vertical-align: top;
}
.content-slide.dark .title-inner:after,
.content-slide.dark .title-inner:before {
	background-color: #350e00;
	height: 2px;
	left: 0;
	right: 0;
	bottom: 100%;
	content: "";
	position: absolute;
}
.content-slide.dark .title-inner:after {
	top: 100%;
}

.content-slide h3.slide-title {
    font-size: 50px; 
    letter-spacing: 15px;
}
    .content-slide h3.slide-title.alter {
        font-family: 'Open Sans';
        font-size: 46px;
        line-height: 55px;
        font-weight: 600;
        font-style: italic;
        letter-spacing: 0;
        text-transform: none;
        margin: 10px 0;
    }
.dots-line span {
    display: inline-block;
    content: "";
    height: 18px;
    width: 10px;
    background-color: #FFF;
    margin: 16px 5px 14px 0;

    -webkit-transform: skewX(-35deg);
    -moz-transform: skewX(-35deg);
    -ms-transform: skewX(-35deg);
    -o-transform: skewX(-35deg);
    transform: skewX(-35deg);
}

.content-slide .slide-description {
    width: 100%; 
    color: #fff;
    display: block;
    font-family: "open_sansregular";
    font-size: 22px;
    line-height: 25px;
    text-align: center;
}

.content-slide.dark .slide-description {
	color: #3e0402;
}
.content-slide .btn {font-size: 20px; color: #FFF; letter-spacing: 6px;}
.content-slide.dark .btn {
	color: #3e0402;
	border-color: #6a1c00;
}
.content-slide.dark .btn:hover {
	color: #FFF;
	border-color: #242424;
}

/* HOME PAGE  jquery bxslider */

.bx-wrapper .bx-controls-direction a {
    width: 47px;
    height: 47px;
    background-color: transparent;
    display: block;
    z-index: 9999;
    background-image: url("images/global/seymourcrushing_sprite.svg");
    background-repeat: no-repeat;
}

.bx-wrapper .bx-controls-direction a.bx-prev,
.bx-wrapper .bx-controls-direction a.bx-prev:link,
.bx-wrapper .bx-controls-direction a.bx-prev:visited {
    left: 30px;
    background-position: 0 -120px;
}

.bx-wrapper .bx-controls-direction a.bx-prev:active,
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
    background-position: -50px -120px;
}

.bx-wrapper .bx-controls-direction a.bx-next,
.bx-wrapper .bx-controls-direction a.bx-next:link,
.bx-wrapper .bx-controls-direction a.bx-next:visited {
    right: 30px;
    background-position: 0 -70px;
}

.bx-wrapper .bx-controls-direction a.bx-next:active,
.bx-wrapper .bx-controls-direction a.bx-next:hover {
    background-position: -50px -70px;
}

.bx-outer-prev:hover, .bx-outer-next:hover, 
.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-next:hover, 
.bx-wrapper .bx-prev i, 
.bx-wrapper .bx-next i {
    color: rgb(255, 255, 255);
    font-size: 32px;
    line-height: 68px;
}

.bx-outer-prev, 
.bx-outer-next, 
.bx-wrapper .bx-controls-direction a {
    text-indent: initial !important;
}


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	z-index: 89;
	position: absolute;
	bottom: 25px;
	width: 100%;
}


/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	/*background: url(../../images/status.gif) center center no-repeat #fff;*/
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 21;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #ffffff;
	padding-top: 25px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #ffffff;
	text-indent: -9999px;
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 3px;
	outline: 0;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #bba454;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-outer-prev,
.bx-outer-next,
.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
	color: #ffffff;
	font-size: 42px;
}

.bx-outer-prev:hover,
.bx-outer-next:hover,
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-next:hover {
	color: #ffffff;
	font-size: 56px;
}

.bx-wrapper .bx-controls-direction a,
.bx-wrapper .bx-controls-direction a:link,
.bx-wrapper .bx-controls-direction a:visited,
.bx-wrapper .bx-controls-direction a:active,
.bx-wrapper .bx-controls-direction a:hover {
	position: absolute;
	top: 50%;
	margin-top: -24px;
	outline: 0;
	width: 47px;
	height: 47px;
	line-height: 40px;
	text-indent: -9999px;
	z-index: 88;
	text-align: center;
    text-decoration: none;

}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

.main-slider-wrapper {
    display: block;
    margin: 0 !important;
}

.bx-viewport {
    height: 800px !important;
}
	
/* Main Slide (bx-slider) - end */	





/*   7.30. STATEMENT ELEMENT
    ------------------------------------------------------------------------- */
.statement p{
    padding: 0 50px;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}


/*
    7.31. TABLE 
    ------------------------------------------------------------------------- */
.table{
    width: 100%;
}

.table caption{
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.table thead{
    background-color: #f6f6f6;
}

.table thead tr th{ 
    padding: 10px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.table thead tr th:first-child{
    text-align: left;
}

.table tbody{
    background-color: #fcfcfc;
}

.table tbody tr td{
    padding: 10px;
    text-align: center;
}

.table tbody tr td:first-child{
    text-align: left;
    color: #333;
    font-weight: 700;
}



/*  7.32. TABS
    ------------------------------------------------------------------------- */
.tabs{
    overflow: hidden;
}

.tabs li{
    list-style: none;
    float: left;
    background-color: #fcfcfc;
    overflow: hidden;
    position: relative;
    padding: 0;
    line-height: 55px;
    list-style: none;
    top: 3px;
    cursor: pointer;
    margin-right: 2px;
}

.tabs li a{
    color: #333;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 800;
    line-height: 55px;
    text-transform: uppercase;
    display: block;
}

.tab-content-wrap{
    width: 100%;
    overflow: hidden;
    float: left;
    padding-top: 30px;
}

.tabs li.active a{
    color: #fff;
}


/*
    7.33. TEAM MEMBERS
    ------------------------------------------------------------------------- */
.team-member img{
    margin-bottom: 20px;
}

.team-details{
    position: relative;
}

.team-details:after{
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.team-details h1,
.team-details h2,
.team-details h3,
.team-details h4,
.team-details h5{
    margin-bottom: 0;
    text-transform: uppercase;
}

.team-details .position{
    font-style: italic;
}

/*
    7.34. TEAM MEMBERS LIST
    ------------------------------------------------------------------------- */
.team-list li{
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    float: left;
}

.team-list li:last-child{
    margin-bottom: 0;
}

.team-list li img{
    float: left;
}

.team-list li .team-details-container{
    padding-left: 293px;
}

.team-list li .team-details{
    margin-bottom: 20px;
}

.col-md-3 .team-list li img,
.col-md-4 .team-list li img{
    float: none;
    display: table;
    margin: 0 auto 20px;
    width: 100%;
}

.col-md-3 .team-list li .team-details-container,
.col-md-4 .team-list li .team-details-container{
    padding-left: 0;
}


/*
    7.35. TESTIMONIAL
    ------------------------------------------------------------------------- */
.testimonial {
    padding: 30px;
    position: relative;
}

.testimonial p{
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    color: #333333;
    font-family: 'open_sansregular';
}

.testimonial-author p {
    font-size: 13px;
    text-transform: uppercase;
    color: #656565;
    font-family: 'ralewayextrabold';
}

.testimonial::after {
    display: block;
    position: absolute;
    content: "";
    background-color: transparent;
    background-image: url('images/homepage/close_quote.svg');
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 30px;
}

.testimonial::before {
    display: block;
    position: absolute;
    content: "";
    background-color: transparent;
    background-image: url('images/homepage/open_quote.svg');
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 36px;
    height: 30px;
}

/*   7.36. TRACKING FORM
    ------------------------------------------------------------------------- */
.tracking{
    width: 100%;
    position: relative;
}

.tracking .package-id{
    padding: 5px 60px 5px 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    min-width: 100%;
}

.tracking .submit{
    width: 40px;
    height: 40px;
    background-image: url('images/global/tracking-arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top:0;
    right: 0;
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}


/*  7.37. VEHICLE GALLERY FULL
    ------------------------------------------------------------------------- */
.vehicle-gallery .col-md-3{
    padding: 0;
    list-style: none;
}

.gallery-item-container{
    position: relative;
    overflow: hidden;
}

.gallery-item-container .gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.gallery-item-container .gallery-item img{
    width: 101%;
    height: auto;
    transition: all 2s ease-in-out 0s;
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;

    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
}

.page-content .gallery-item p {
    margin-bottom: 0;
}

.gallery-item-container .hover-mask-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(49, 57, 63, 0.5);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
}

.gallery-item-container .gallery-item:hover .hover-mask-container{
    opacity: 1;
}

.gallery-item-container figcaption{
    position: absolute;
    width: 100%;
    top: 40px;
}

.gallery-item-container figcaption h1,
.gallery-item-container figcaption h2,
.gallery-item-container figcaption h3,
.gallery-item-container figcaption h4,
.gallery-item-container figcaption h5{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.gallery-item-container figcaption h1:after,
.gallery-item-container figcaption h2:after,
.gallery-item-container figcaption h3:after,
.gallery-item-container figcaption h4:after,
.gallery-item-container figcaption h5:after{
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3px;  
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}

.hover-mask-container .hover-zoom{
    position: absolute;
    bottom: 50%;
    left: 50%;

    width: 50px;
    height: 50px;

    margin-bottom: -25px;
    margin-left: -25px;

    transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);

    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;

    border: 2px solid;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}


.hover-mask-container .hover-zoom a{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 18px;
    width: 50px;
    height: 50px;
}

.gallery-item-container .gallery-item:hover .hover-zoom{
    transform: translate(0,0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
}

.gallery-item-container .gallery-item:hover img{
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

/*  VEHICLE GALLERY GRID
    ------------------------------------------------------------------------- */
.vehicle-gallery .col-md-4{
    padding: 0;
    list-style: none;
}

.col-md-4 .gallery-item-container figcaption{
    top: 20px;
}


/* ==========================================================================
    8. HOME MINIMAL CUSTOM STYLES
    ========================================================================= */
.page-content.fixed.centered .container{
    position: absolute;
    top: 50%;
    left: 50%;
}

.page-content.fixed.centered .container .row{
    max-width: 100%;
}

.page-content.fixed.bottom .row{
    margin-bottom: 0;
    max-width: 100%;
}

.page-content.fixed.bottom .container{
    position: absolute;
    bottom: 0;
    left: 50%;
}

/* ==========================================================================
    9. BLOG
    ========================================================================= */


.blog-posts li{
    list-style: none;
}

.blog-posts .pagination{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.blog-posts .pagination ul{
    float: right;
}

.blog-posts .pagination li{
    float: left;
    background-color: #f5f9fc;
    border: 1px solid #ddd;
    list-style: none;
    margin-right: 5px;
    width: 30px;
    height: 30px;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.blog-posts .pagination li a{
    display: table-cell;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    text-align: center;
}

.blog-posts .pagination li.active a,
.blog-posts .pagination li:hover a{
    color: #fff;
}

.blog-post .post-body h3{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*
    BLOG LIST
    ------------------------------------------------------------------------- */
.blog-posts.post-list .blog-post{
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px dotted #ddd;
}

.post-list .blog-post .post-date,
.post-single .blog-post .post-date{
    width: 100px;
    float: left;
}

.post-list .blog-post .post-date .day,
.post-single .blog-post .post-date .day{
    background-color: #fcfcfc;
    font-size: 36px;
    line-height: 36px;
    color: #333;
    font-weight: 800;
    text-align: center;
    padding: 20px 30px;
}

.post-list .blog-post .post-date .month,
.post-single .blog-post .post-date .month{
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.post-list .blog-post .post-body, 
.post-single .blog-post .post-body{
    padding-left: 130px;
}

.post-list .blog-post .post-body h3{
    font-size: 18px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/*
    BLOG STANDARD
    ------------------------------------------------------------------------- */

.post-media{
    width: 100%;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 25px;
}

.post-media .post-img img{
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    transition: all 2s ease 0s;
    opacity: 1;
}

.post-media .post-img:hover img{
    opacity: 0.7;

    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}


/*
    BLOG MASONRY
    ------------------------------------------------------------------------- */
.blog-posts.isotope.masonry{
    padding: 0;
}

.blog-posts.isotope.masonry li.blog-post.isotope-item{
    margin-bottom: 30px;
    width: 30%;
    margin-right: 15px;
    margin-left: 15px;
    background-color: #fff;
    float: left;
}

.blog-post.isotope-item .post-info{
    margin-bottom: 30px;
}

.blog-post.isotope-item .post-date{
    float: left;
    width: 50%;
}

.blog-post.isotope-item .post-date p{
    color: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0 0 20px;
}

.blog-post.isotope-item .post-date i{
    padding-right: 3px;
}

.blog-post.isotope-item .post-info .post-category{
    width: 50%;
    float: right;
    position: relative;
}

.blog-post.isotope-item .post-info .post-category a{
    text-transform: uppercase;
    color: #eee;
    background-color: #565f66;
    padding: 7px 15px;
    position: absolute;
    right: 0;  
}

.blog-post.isotope-item .post-body{
    padding: 0 20px;
}

.blog-post.isotope-item .post-media{
    margin-bottom: 15px;
}

.blog-post.isotope-item .post-footer{
    padding: 0 15px 15px 20px;
}

.post-footer .post-meta{
    width: 50%;
    float: left;
    padding-top: 3px;
}

.post-footer .post-meta li{
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px solid #ddd;
}

.post-footer .post-meta li:first-child{
    padding-left: 0;
}

.post-footer .post-meta li:last-child{
    border-right: none;
}

.post-footer .post-meta li.comments a{
    padding-left: 3px;
}

.post-footer .post-meta li.post-like:before{
    float: right;
    position: relative;
    top: 6px;
}

.post-footer .post-meta li.post-like .box{
    position: relative;
    top: -12px;
    padding-top: 12px;
}

.post-footer .post-meta li.post-like .box a{
    padding-right: 15px;
}

.post-footer a.read-more span{
    text-transform: none;
    font-weight: normal;
}

.post-footer .post-meta li.post-like:hover:before{
    color: #ff0101;
}


/*
    BLOG SINGLE POST
    ------------------------------------------------------------------------- */

/*  POST COMMENTS
    ------------------------------------------------------------------------- */
.post-comments {
    width: 100%;
    float: left;
    margin-top: 30px;
}
.comments-li {
    float: left;
    margin-bottom: 30px;
    background: none;
    padding-left: 0;
    list-style: none;
}
.comments-li > li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    list-style: none;
    min-height: 75px;
}
.comments-li > li:last-child .comment {
    border: none;
    margin-bottom: 0;
}
.comments-li .comment {
    float: left;
    min-height: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}
.post-comments .comment + .children {
    margin-top: 30px;
}
.post-comments .children + .children {
    margin-top: 30px;
}
.comment .avatar {
    width: 70px;
    height: 70px;
    margin-right: 30px;
    float: left;
    border: 3px solid #eee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.comment-meta li {
    font-style: italic;
    list-style: none;
}
.comment-meta .author {
    font-size: 15px;
    font-family: 'Raleway', Arial, sans-serif;
    color: #252525;
    font-weight: 600;
    font-style: normal;
}
.comment .comment-body {
    margin-left: 100px;
    margin-top: 15px;
}
.comment .comment-reply-link {
    display: block;
    margin-top: 15px;
    background: url('/images/blog/reply.png') no-repeat 0 center;
    padding-left: 22px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    float: right;
}
.post-comments .children {
    margin-left: 10%;
    float: left;
    padding: 0 0 0 20px;
    width: calc(90%);
}
.children li {
    list-style: none;
}

/*  COMMENT FORM
    ------------------------------------------------------------------------ */
.comment-form{
    width: 100%;
    float: left;
}

.comment-form fieldset{
    width: 50%;
    float: right;
    padding-right: 30px;
    margin-bottom: 20px;
}

.comment-form fieldset:nth-child(2n + 1){
    padding-right: 0;
}

.comment-form .wpcf7-message{
    width: 100%;
}

.comment-form label{
    width: 100%;
    margin-bottom: 5px;
    display: block;
}

.comment-reply{
    padding: 13px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    float: right;
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

/* ==========================================================================
    10. LOCATIONS PAGE
    ========================================================================= */
.page-title-map.page-title-negative-top #map{
    height: 800px;
    margin-top: -186px;
}

.locations-li > li{
    list-style: none;
    margin-bottom: 30px;
}

.locations-li > li h3{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.locations-li > li .fa-ul{
    margin-left: 20px;
}


/* ==========================================================================
    11. CONTACT
    ========================================================================= */
.wpcf7 fieldset{
    margin-bottom: 15px;
}

.wpcf7 label{
    width: 100%;
    padding-bottom: 10px;
}

.wpcf7-text, 
.wpcf7-select,
.wpcf7-textarea{
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 8px 15px;
}

.wpcf7 .wpcf7-submit{
    padding: 13px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    color: #fff;
	background: #ffa838 !important;
    position: relative;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

div.wpcf7-validation-errors {
    border: 2px solid #f00  !important;
}
div.wpcf7-response-output {
    margin: 0 10px !important;
    padding: 5px 10px !important;
	color: #f00;
	font-family: "open_sansregular" !important;
    font-size: 14px !important;
    line-height: 18px !important;
}

#map{
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}

#map img{
    max-width: none;
}

/* ==========================================================================
    12. WIDGETS
    ========================================================================= */
.aside-widgets > li{
    list-style: none;
}

.widget{
    display: block;
    width: 100%;
}

.widget .title h3{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.widget ul > li{
    list-style: none;
    padding-left: 0;
}

.widget li a{
    padding-top: 5px;
    display: block;
}

/* 
   ASIDE SEARCH WIDGET
   -------------------------------------------------------------------------- */
.widget_search form {
    position: relative;
}
.widget_search .a_search {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    display: block;
    color: #777;
    font-style: italic;
    left: 0;
    top: 0;
    padding: 10px 60px 10px 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.widget_search .search-submit {
    background-image: url('images/global/search.png');
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 100%;
    border: none;
    text-indent: -9999px;
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    min-height: 40px;
    border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
}

/*
    LATEST POSTS WIDGET 01
    ------------------------------------------------------------------------- */
.rpw_posts_widget ul > li{
    position: relative;
    background: none;
    background-image: none !important;
    padding-left: 18px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.rpw_posts_widget ul > li::before{
    position: absolute;
    display: block;
    content: "\f073";
    font-family: 'FontAwesome';
    font-size: 11px;
    top: 5px;
    left: 0;
}

.rpw_posts_widget ul > li:last-child{
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.rpw_posts_widget li h4{
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    margin-bottom: 0;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}




/*  NAV MENU WIDGET
    ------------------------------------------------------------------------- */
.widget_nav_menu ul li{
    background-position: right center;
    padding-left: 0;
    border-bottom: 1px solid #ddd;
}

.widget_nav_menu ul li:last-child{
    border-bottom: none;
}


/*
    NEWSLETTER WIDGET
    ------------------------------------------------------------------------- */
.widget_newsletterwidget .newsletter{
    width: 100%;
    float: left;
    position: relative;
}

.widget_newsletterwidget .newsletter .email{
    padding: 5px 60px 5px 15px;
    font-style: italic;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    height: 40px;
    border: 1px solid #ddd;
    min-width: 100%;
}

.footer-dark .footer-widget-container .newsletter .email{
    color: #bcc0c4;
    background-color: #565f66;
    border: none;
}

.newsletter .submit{
    width: 40px;
    height: 40px;
    background-image: url('images/global/subscribe.png');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}


/*  NEWS CAROUSEL
    ------------------------------------------------------------------------- */
.news-carousel-container .icon-title{
    float: left;
    border-right: 3px solid #1f2830;
    padding-right: 20px;
    margin-right: 20px;
    padding-top: 25px;
    padding-left: 15px;
    min-height: 80px;
}

.news-carousel-container .icon-title i,
.news-carousel-container .icon-title h3{
    float: left;
    font-size: 24px;
}

.news-carousel-container .icon-title i{
    padding-right: 10px;
}

.news-carousel-container .owl-item {
    padding-top: 5px;
}

.news-carousel-container .owl-item h4{
    margin-bottom: 5px;
}

.news-carousel-container .owl-item span{
    text-transform: uppercase;
}

*[class^="col-"].custom-bkg .news-carousel-container{
    margin: -15px;
}



/* ==========================================================================
     13. FOOTER
    ========================================================================= */
.footer .row{
    margin-bottom: 25px;
}

.footer-wrapper {
    padding-top: 50px;
    position: relative;
    background-image: url('images/homepage/paralla_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1b2936;
}


.footer-dark .footer-widget-container .text-big{
    color: #fff;
}

.footer-dark .footer-widget-container .widget .title h3{
    color: #fff;
}

.footer-widget-container > li{
    list-style: none;
}

.footer-dark .footer-widget-container p,
.footer-dark .footer-widget-container a,
.footer-dark .footer-widget-container address,
.footer-dark .footer-widget-container span,
.footer-dark .copyright-container p,
.footer-dark .copyright-container a,
.footer-dark .copyright-container span{
    color: #bcc0c4;
}

.footer-social-icons{
    margin-top: 15px;
}

.footer-social-icons > li{
    list-style: none !important;
    background-image: none !important;
    float: left;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    padding: 0 !important;
}

.footer-social-icons li a{
    width: 30px;
    height: 30px;
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    text-align: center;

    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.footer-social-icons li a:hover{
    color: #fff;
}

.footer-dark .footer-social-icons li a{
    background-color: #565f66;
    color: #fff;
}

.footer-light .footer-social-icons li a{
    background-color: #f6f6f6;
}

.copyright-container .row{
    margin-bottom: 0;
}

.footer-dark .copyright-container .row{
    border-top: 1px solid #384653;
    padding: 15px 0 10px 0;
}

.footer-light .copyright-container .row{
    border-top: 1px solid #ddd;
    padding: 15px 0 10px 0;
}

.copyright-container a,
.copyright-container p,
.copyright-container span{
    font-size: 11px;
}

/*
    SCROLL UP
    ------------------------------------------------------------------------- */
.scroll-up {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 15px;
    right: 100px;
    display: none;
    text-indent: -9999px;
    background-image: url('images/global/to-top.png');
    background-repeat: no-repeat;
    background-color: #252525;
    z-index: 100;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

/* default template color - start */

.wpcf7 .wpcf7-submit,
.footer-social-icons li a:hover,
.newsletter .submit,
.post-list .blog-post .post-date .month,
.post-single .blog-post .post-date .month,
.blog-posts .pagination li.active,
.blog-posts .pagination li:hover,
.scroll-up:hover,
.pixely_widget_sharre .box .share:hover,
.nivo-wrapper .nivo-directionNav a:hover,
.blog-post.isotope-item .post-category a:hover,
.comment-reply,
.service-feature-box .service-media:hover a,
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span,
.btn,
.events-table .event-date .month,
.accordion .title.active::after,
.accordion .title:hover::after,
.tracking .submit,
.pi-latest-posts02 .post-date .month,
.shipping-quote .submit,
.custom-heading::after,
.custom-heading02:after,
.service-item-container figcaption h1:after,
.service-item-container figcaption h2:after,
.service-item-container figcaption h3:after,
.service-item-container figcaption h4:after,
.service-item-container figcaption h5:after,
.gallery-item-container figcaption h1:after,
.gallery-item-container figcaption h2:after,
.gallery-item-container figcaption h3:after,
.gallery-item-container figcaption h4:after,
.gallery-item-container figcaption h5:after,
.hover-details:hover span,
.team-details:after,
.hover-mask-container .hover-zoom:hover,
.tabs li.active,
.numbers-counter .counter-container::after,
.master-slider .pi-button:hover,
.master-slider .tooltip h6::after,
.ms-skin-default .ms-tooltip-point .ms-point-center{  
  background-color: #006db7;
}

.search-submit {
    background-color: #ffa838;
}

.colored,
.footer-widget-container a:hover,
.copyright-container a:hover,
.blog-post .post-body a:hover h3,
a.read-more span,
.rpw_posts_widget ul > li::before,
.rpw_posts_widget li a:hover h4,
.post-footer .post-meta li.comments:hover,
.comment-meta .date,
a.download-link:hover span,
.widget_nav_menu .menu-item.current-menu-item a,
.company-timeline .icon-date-container i,
.pi-latest-posts a:hover h4,
.pi-latest-posts02 li .post-details a:hover h4,
.header-style02 #quick-links li i,
.header-style02 .navbar-default .navbar-nav>li>a:hover, 
.header-style02 .nav > li.current-menu-item > a,
.header-style01 #quick-links li i,
.header-style01 #quick-links li a:hover,
.header-style02 #top-bar-wrapper.dark #quick-links li a:hover,
.header-wrapper.dark .navbar-default .navbar-nav>li.current-menu-item>a,
.header-style03 #quick-links i,
.header-style03 .navbar-nav>li>a:hover,
.header-style03 .navbar-nav>li.current-menu-item>a,
.custom-bkg.dark a:hover,
.custom-bkg.dark a:hover span,
.custom-bkg.dark a:hover i,
.blog-post.isotope-item .post-date i,
.fa-ul li i,
.text-base-color02,
.pi-latest-posts .post-date i,
.pi-latest-posts02 .post-category i,
.accordion .title::before,
.pi-latest-posts03 li .post-media i,
.news-carousel-container .icon-title i{
    color: #006db7;
}

.hover-mask-container .hover-details span,
.hover-mask-container .hover-zoom,
.master-slider .pi-button{
    border-color: #006db7;
}

.dropdown .dropdown-menu .dropdown-submenu > a:hover:after,
blockquote{
    border-left-color: #006db7;
}

/* Lighter base 01 */
.search-submit:hover,
.wpcf7 .wpcf7-submit:hover,
.newsletter .submit:hover,
.comment-reply:hover,
.service-feature-box .service-media:hover i,
.btn:hover,
.tracking .submit:hover,
.shipping-quote .submit:hover{
    background-color: #0275c4;
}


.icon-container .st1{
    fill: #006db7;
}
/* default template color - end */

.dropdown-menu > li > a,
.dropdown-menu > li > a:link,
.dropdown-menu > li > a:visited {
    font-size: 14px;
    line-height: 15px;
    color: #101010;
    padding: 15px 20px 15px 15px;
    border-bottom: 1px solid #e3e3e3;
    font-family: 'open_sansregular';
}

.dropdown-menu > li > a:active,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    outline: 0;
    background: #ffa838;
}

.dropdown-menu li a.dropdown-toggle,
.dropdown-menu li a.dropdown-toggle:link,
.dropdown-menu li a.dropdown-toggle:visited,
.dropdown-menu li a.dropdown-toggle:active,
.dropdown-menu li a.dropdown-toggle:hover {
    display: block;
    position: relative;
}

.dropdown-menu li a.dropdown-toggle::after,
.dropdown-menu li a.dropdown-toggle:link::after,
.dropdown-menu li a.dropdown-toggle:visited::after,
.dropdown-menu li a.dropdown-toggle:active::after,
.dropdown-menu li a.dropdown-toggle:hover::after {
    display: block;
    position: absolute;
    content: "";
    width: 7px;
    height: 12px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -10px;
    top: 50%;
    margin-top: -6px;
    right: 15px;
}

/* product services slider */
.product-services-link-wrapper {
    display: block;
    text-align:center;
    margin-bottom: 50px;
}

a.slider-btn,
a.slider-btn:link,
a.slider-btn:visited {
    background-color: #b2b2b2;
    border: medium none;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-family: "ralewayextrabold";
    font-size: 13px;
    line-height: 14px;
    padding: 15px 25px;
    position: relative;
    text-transform: uppercase;
    margin: 0 10px;
}

a.slider-btn:active,
a.slider-btn:hover,
a.slider-btn:focus {
    background-color: #ffa838;
    outline: 0;
}

a.slider-btn.active,
a.slider-btn.active:link,
a.slider-btn.active:visited,
a.slider-btn.active:active,
a.slider-btn.active:hover,
a.slider-btn.active:focus {
    background-color: #ffa838;
    position: relative;
}

a.slider-btn.active::before,
a.slider-btn.active:link::before,
a.slider-btn.active:visited::before,
a.slider-btn.active:active::before,
a.slider-btn.active:hover::before,
a.slider-btn.active:focus::before {
    display: block;
    position: absolute;
    content: "";
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent; 
    border-right: 8px solid transparent; 
    border-top: 8px solid #ffa838;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
}

.owl-carousel.owl-loaded.product-carousel,
.owl-carousel.owl-loaded.services-carousel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
}

.owl-carousel.owl-loaded.product-carousel.show-slide,
.owl-carousel.owl-loaded.services-carousel.show-slide {
    opacity: 1;
    visibility: visible;
}

.carousel-container.product-service-slider-wrapper {
    display: block;
    position: relative;
    min-height: 345px;
}

.page-content.home-company-news {
    background-color: #f6f6f6;
}

.page-content.home-company-news > .container > .row {
    margin-bottom: 0;
}

.bottom-slidr-row {
    background-color: #e9e9e9;
    padding-bottom: 20px;
    min-height: 400px;
}

.page-content.home-company-news .custom-heading {
    padding-top: 20px;
    margin-bottom: 20px;
}

.page-content.home-company-news .custom-heading > h3 {
    margin-bottom: 0;
    color: #565656;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 15px;
}

.post-date {
    display: block;
    padding-left: 25px;
    position: relative;
}

.post-date::before {
    display: block;
    position: absolute;
    content: "";
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -170px;
    width: 15px;
    height: 16px;
    left: 0;
    top: 0;
}

.pi-latest-posts li .post-details a h4,
.pi-latest-posts li .post-details a:link h4,
.pi-latest-posts li .post-details a:visited h4 {
    display: block;
    font-family: 'ralewaybold';
    color: #656565;
    font-size: 16px;
    line-height: 18px;
}

.pi-latest-posts li .post-details a:active h4,
.pi-latest-posts li .post-details a:hover h4,
.pi-latest-posts li .post-details a:focus h4 {
    outline: 0;
    color: #006db7;
}


.post-details a.read-more,
.post-details a.read-more:link,
.post-details a.read-more:visited {
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 12px;
    line-height: 13px;
    color: #ffa838;
    text-transform: uppercase;
}

.post-details a.read-more:active,
.post-details a.read-more:hover,
.post-details a.read-more:focus {
    outline: 0;
    color: #006db7;
}

.bottom-slidr-row .owl-controls {
    display: none;
}

a.loaction-read-more,
a.loaction-read-more:link,
a.loaction-read-more:visited {
    color: #ffa838;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 12px;
    line-height: 13px;
    text-transform: uppercase;
    float: right;
    text-decoration: none;
    margin-bottom: 15px;
}

a.loaction-read-more:active,
a.loaction-read-more:hover,
a.loaction-read-more:focus {
    outline: 0;
    color: #006db7;
}

.page-content ul {
    display: block;
    margin: 10px 18px;
}

.page-content ul li {
    color: #303030;
    font-size: 14px;
    line-height: 16px;
    font-family: 'open_sansregular';
    list-style-image: url("images/global/list_icon.svg");
    list-style-position: outside;
    margin: 0;
    padding: 5px 0;
}

.title h3 {
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 15px;
    color: #fff;
    line-height: 18px;
    text-transform: uppercase;
}

ul.quick-link-list {
    list-style: none;
}

ul.quick-link-list li {
    list-style: none;
}

ul.quick-link-list > li {
    display: block;
    float: left;
    width: 30%;
    list-style: none;
}

ul.quick-link-list li a,
ul.quick-link-list li a:link,
ul.quick-link-list li a:visited {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}

ul.quick-link-list li a:active,
ul.quick-link-list li a:hover,
ul.quick-link-list li a:focus {
    outline: 0;
    color: #ffa838;
}

.fotter-nav-wrapper select.tinynav {
    display: none;
}

.footer-address {
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.footer-address::before {
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 16px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -190px;
    top: 4px;
    left: 0;
}

.footer-address span {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 24px;
    color: #fff;
}

.footer-contact {
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.footer-contact::before {
    display: block;
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -210px;
    top: 5px;
    left: 0;
}

.footer-contact span {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 24px;
    color: #fff;
}

.footer-mail {
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.footer-mail::before {
    display: block;
    position: absolute;
    content: "";
    width: 14px;
    height: 10px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -230px;
    top: 8px;
    left: 0;
}

.footer-mail a,
.footer-mail a:link,
.footer-mail a:visited {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}

.footer-mail a:active,
.footer-mail a:hover,
.footer-mail a:focus {
    outline: 0;
    color: #ffa838;
}

.copyright-container > .container {
    border-top: 1px solid #384653;
}

.copyright-text {
    display: block;
    font-family: 'open_sansregular';
    font-size: 12px;
    line-height: 15px;
    color: #b9ccde;
    padding: 10px 0;
    text-transform: uppercase;
}

.development-by {
    display: block;
    font-family: 'open_sansregular';
    font-size: 12px;
    line-height: 15px;
    color: #b9ccde;
    padding: 7px 0 0 0;
    text-transform: uppercase;
    text-align: right;
}

.development-by a,
.development-by a:link,
.development-by a:visited {
    color: #ffa838;
}

.development-by a:active,
.development-by a:hover,
.development-by a:focus {
    outline: 0;
    text-decoration: underline;
}

.social-media-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 7px 0 0 0;
}

.social-media-link a.fb-link,
.social-media-link a.fb-link:link,
.social-media-link a.fb-link:visited {
    display: inline-block;
    width: 21px;
    height: 21px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -250px;
}

.social-media-link a.fb-link:active,
.social-media-link a.fb-link:hover,
.social-media-link a.fb-link:focus {
    outline: 0;
    background-position: -30px -250px;
}

.social-media-link a.tw-link,
.social-media-link a.tw-link:link,
.social-media-link a.tw-link:visited {
    display: inline-block;
    width: 21px;
    height: 21px;
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -280px;
    margin-right: 5px;
}

.social-media-link a.tw-link:active,
.social-media-link a.tw-link:hover,
.social-media-link a.tw-link:focus {
    outline: 0;
    background-position: -30px -280px;
}

.interior-top-tab {
    display: block;
    background-color: #efefef;
}

.interior-top-tab .interior-top-text {
    color: #727272;
    display: block;
    font-family: "ralewaybold";
    font-size: 25px;
    line-height: 28px;
    padding: 30px 50px;
    text-align: center;
}

.page-content {
    margin: 50px 0;
}

.page-content.parallax {
    margin: 0;
}

.page-content.home-company-news {
    margin: 0;
}

.page-content.prd-ser-slider {
    margin: 50px 0 0 0;
}

aside .title h3 {
    display: block;
    color: #333333;
    font-family: 'ralewayextrabold';
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

a.aside-download-link,
a.aside-download-link:link,
a.aside-download-link:visited {
    display: block;
    font-family: 'open_sansbold';
    font-size: 13px;
    line-height: 15px;
    color: #ffa838;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 5px;
}

a.aside-download-link:active,
a.aside-download-link:hover,
a.aside-download-link:focus {
    outline: 0;
    color: #7c7c7c;
}

.menu-about-nav-container ul.menu {
    margin: 0 0 20px 0;
}

.menu-about-nav-container ul.menu li {
    padding: 0;
    list-style: none;
}

ul.aside-widgets {
    margin: 0;
}

.menu-about-nav-container ul.menu li a,
.menu-about-nav-container ul.menu li a:link,
.menu-about-nav-container ul.menu li a:visited {
    display: block;
    font-family: 'open_sansregular';
    font-size: 13px;
    line-height: 15px;
    padding: 10px 0;
    text-decoration: none;
    color: #565656;
    position: relative;
    transition: padding 0.25s linear 0s;
    -o-transition : padding 0.25s linear 0s;
    -ms-transition: padding 0.25s linear 0s;
    -moz-transition: padding 0.25s linear 0s;
    -webkit-transition: padding 0.25s linear 0s;
}

.menu-about-nav-container ul.menu li a:active,
.menu-about-nav-container ul.menu li a:hover,
.menu-about-nav-container ul.menu li a:focus {
    outline: 0;
    background-color: #ffa838;
    padding-left: 20px;
}

.menu-about-nav-container ul.menu li a::before,
.menu-about-nav-container ul.menu li a:link::before,
.menu-about-nav-container ul.menu li a:visited::before,
.menu-about-nav-container ul.menu li a:active::before,
.menu-about-nav-container ul.menu li a:hover::before,
.menu-about-nav-container ul.menu li a:focus::before {
    display: block;
    position: absolute;
    content: "";
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat -20px -310px;
    width: 6px;
    height: 11px;
    top: 50%;
    margin-top: -6px;
    right: 10px;
}

.menu-about-nav-container ul.menu li.current-menu-item a,
.menu-about-nav-container ul.menu li.current-menu-item a:link,
.menu-about-nav-container ul.menu li.current-menu-item a:visited,
.menu-about-nav-container ul.menu li.current-menu-item a:active,
.menu-about-nav-container ul.menu li.current-menu-item a:hover,
.menu-about-nav-container ul.menu li.current-menu-item a:focus {
    background-color: #ffa838;
    padding-left: 20px;
}

.custom-heading.interior-content h3 {
    display: block;
    margin: 0;
    font-family: 'ralewayextrabold';
    font-size: 22px;
    line-height: 25px;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #565656;
}

.page-content p {
    display: block;
    color: #303030;
    font-size: 14px;
    line-height: 22px;
    font-family: 'open_sansregular';
    margin-bottom: 15px;
    padding: 0;
}

.interior-img-wrapper {
    display: block;
    padding: 10px;
}

.interior-img-wrapper img {
    display: block;
    width: 100%;
}

.page-content .row {
    margin-bottom: 25px;
}

.page-content h4 {
    display: block;
    width: 100%;
    font-family: 'ralewayextrabold';
    font-size: 16px;
    line-height: 18px;
    color: #565656;
    text-transform: capitalize;
    padding: 0 0 10px 0;
    margin-bottom: 0;
}

.service-body h4 {
    padding: 0 0 15px 0;
}

.page-title-negative-top.map {
    padding-top: 0;
}

.page-title-style01.map {
    padding-bottom: 0;
}

.interior-top-tab.with-header {
    display: block;
    padding: 35px 0;
    text-align: center;
}

.interior-top-tab.with-header h2 {
    display: block;
    color: #626262;
    font-family: 'ralewayextrabold';
    font-size: 55px;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.interior-top-tab.with-header .breadcrumb-container {
    overflow: hidden;
}

.interior-top-tab.with-header .breadcrumb-container ul {
    display: block;
    position: relative;
    float: left;
    left: 50%;
}

.interior-top-tab.with-header .breadcrumb-container ul li {
    display: block;
    position: relative;
    right: 50%;
    color: #565656;
}

.interior-top-tab.with-header .breadcrumb li + li::before {
    background-position: -20px -310px;
}

.interior-address {
    display: block;
    margin-top: 15px;
    padding-left: 25px;
    position: relative;
    width: 100%;
    float: left;
}

.interior-address::before {
    background: transparent url("images/global/seymourcrushing_sprite.svg") no-repeat scroll -20px -190px;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 12px;
}

.interior-address span {
    color: #565656;
    display: block;
    font-family: "open_sansregular";
    font-size: 13px;
    line-height: 24px;
}

.interior-mail {
    display: block;
    margin-top: 15px;
    padding-left: 25px;
    position: relative;
    width: 100%;
    float: left;
}

.interior-mail::before {
    background: transparent url("images/global/seymourcrushing_sprite.svg") no-repeat scroll -20px -230px;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 14px;
}

.interior-mail a, 
.interior-mail a:link, 
.interior-mail a:visited {
    color: #565656;
    display: block;
    font-family: "open_sansregular";
    font-size: 13px;
    line-height: 24px;
    text-decoration: none;
}

.interior-mail a:active, 
.interior-mail a:hover, 
.interior-mail a:focus {
    color: #ffa838;
    outline: 0 none;
}

.interior-contact {
    display: block;
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
    width: 100%;
    float: left;
}

.interior-contact::before {
    background: transparent url("images/global/seymourcrushing_sprite.svg") no-repeat scroll -20px -210px;
    content: "";
    display: block;
    height: 14px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 14px;
}

.interior-contact span {
    color: #565656;
    display: block;
    font-family: "open_sansregular";
    font-size: 13px;
    line-height: 24px;
}

.contact-form-wrapper {
    display: block;
    padding: 10px 0;
    max-width: 400px;
}

.contact-form-wrapper input.inquire-fld {
    background-color: #8d949a;
    margin-bottom: 0;
}

span.wpcf7-not-valid-tip {
    color: #f00 !important;
    display: block;
    font-family: "open_sansregular" !important;
    font-size: 14px !important;
    line-height: 22px !important;
	padding-left: 18px;
}

ul.vehicle-gallery {
    margin: 0;
}

ul.vehicle-gallery .col-md-3 {
    list-style: none;
    padding: 0;
}

.vehicle-gallery li {
    width: 25%;
}

.view-more-link-wrapper {
    top: 50%;
    height: auto;
    left: 0;
    position: absolute;
    width: 100%;
    text-align: center;
}

.page-content.product-landing {
    margin: 0;
}

.page-content.product-landing .row {
    margin-bottom: 0;
}

.interior-top-tab.light {
    background-color: #fff;
    padding: 45px 0 30px 0;
}

.gallery-item-container figcaption h3::after {
    display: none;
}

/* error page */
.error-page  {
    background-color: #f6f6f6;
    display: block;
    margin-bottom: 0;
    min-height: 400px;
}

.error-page h2 {
    display: block;
    margin: 30px 0;
    text-align: center;
    font-family: 'open_sansbold';
    font-size: 50px;
    line-height: 52px;
    color: #565656;
    text-transform: uppercase;
}

.error-wrapper h3 {
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 25px;
    line-height: 28px;
    text-transform: uppercase;
    color: #565656;
}

.error-wrapper a,
.error-wrapper a:link,
.error-wrapper a:visited {
    display: block;
    color: #ffa838;
    font-family: 'open_sansregular';
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
}

.error-wrapper a:active,
.error-wrapper a:hover {
    color: #006db7;
}

.server-error-wrapper {
    background-color: #ffffff;
    box-shadow: 0 0 3px 1px #919695;
    color: #fff;
    display: block;
    margin: 150px auto;
    max-width: 800px;
    padding: 25px;
    text-align: center;
    width: 100%;
}

.server-error-wrapper h1 {
    display: block;
    width: 250px;
    margin: 0 auto 15px auto;
}

.server-error-wrapper img {
    display: block;
    width: 100%;
}

.server-error-wrapper h2 {
    display: block;
    text-align: center;
    font-family: 'open_sansbold';
    font-size: 35px;
    line-height: 38px;
    text-transform: uppercase;
    color: #565656;
}

.server-error-wrapper h3 {
    display: block;
    text-align: center;
    font-family: 'open_sansbold';
    font-size: 25px;
    line-height: 28px;
    text-transform: uppercase;
    color: #565656;
}

/* owl carousel - start */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    display: none;
}
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* CUSTOM CSS */
.carousel-container{
    /*overflow: hidden;*/
}
.owl-carousel{
    cursor: pointer;
    min-height: 80px;
}

.owl-carousel-navigation .owl-controls .owl-nav{
    position: absolute;
    top: 50%;
    height: 60px;
    right: 0;
    margin-top: -20px;
}

.owl-carousel-navigation .owl-controls .owl-nav .owl-prev,
.owl-carousel-navigation .owl-controls .owl-nav .owl-next{
    position: absolute;
    right: -30px;
    width: 30px;
    height: 30px;
    background-color: #353e44;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;

    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
}

.owl-carousel-navigation .owl-controls .owl-nav .owl-prev{ 
    top: -15px;  
    background-image: url('../img/nivo-prev-nav.png');

}

.owl-carousel-navigation.owl-carousel:hover .owl-controls .owl-nav .owl-prev,
.owl-carousel-navigation.owl-carousel:hover .owl-controls .owl-nav .owl-next{
    right: 0;
}

.owl-carousel-navigation .owl-controls .owl-nav .owl-next{
    top: 15px;
    background-image: url('../img/nivo-next-nav.png');
}

.owl-theme .owl-dots{
    text-align: center;
    display: table;
    margin: 20px auto 0;
}

.owl-controls .owl-dot{
    float: left;
}

.owl-controls span{
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #ddd;
}

.owl-buttons .owl-nav{
    text-align: center;
}

.owl-buttons .owl-nav{
    margin-top: 30px;
}

.owl-buttons .owl-prev,
.owl-buttons .owl-next{
    display: inline-block;
    margin: 0 5px;
    padding: 10px 25px;
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}

.owl-buttons .owl-prev:hover,
.owl-buttons .owl-next:hover{
    color: #fff;
}

.owl-carousel .owl-nav .owl-prev, 
.owl-carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    top: -90px;
    width: 34px;
    height: 34px;
    background-image: url('images/global/seymourcrushing_sprite.svg');
    background-repeat: no-repeat;
    background-color: transparent;
    text-indent: -9999px;
}

.owl-carousel .owl-nav .owl-prev {
    background-position: -120px -30px;
    left: 0;
}

.owl-carousel .owl-nav .owl-next {
    background-position: -40px -30px;
    right: 0;
}

.owl-carousel .owl-nav .owl-prev:hover {
    background-color: transparent;
    background-position: -160px -30px;
}

.owl-carousel .owl-nav .owl-next:hover {
    background-color: transparent;
    background-position: -200px -30px;
}
/* owl carousel - end */


/* -------- Error Message Content - Start ----- */
.error-summary-wrapper{
    display:block;
} 

.error-summary-wrapper h3 {
    background-color: #ad2f2f;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.error-summary-container {
    background-color: #ffcbcb;
    border: 2px solid #ad2f2f;
    display: block;
    position: relative;
    overflow: hidden;
}

.error-summary-container p {
    margin: 0;
    padding: 0;
}

.error-content {
    display: block;
    padding: 20px;
    position: relative;
}


/* -------- Error Message Content - End ----- */
    
/* -------- Successfully Message Content - Start ----- */   
.success-summary-wrapper{
    display:block;
} 

.success-summary-wrapper h3 {
    background-color: #6f9549;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.success-summary-container {
    background-color: #e1f1cc;
    border: 2px solid #6f9549;
    display: block;
    position: relative;
    overflow: hidden;
}

.success-summary-container p {
    margin: 0;
    padding: 0;
}

.success-content {
    display: block;
    padding: 20px;
    position: relative;
}


/* -------- Successfully Message Content - End ----- */
    
/* -------- Warning Message Content - Start ----- */  
.warning-summary-wrapper{
    display:block;
}     

.warning-summary-wrapper h3 {
    background-color: #e6d227;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
} 

.warning-summary-container {
    background-color: #fffcb6;
    border: 2px solid #e6d227;
    display: block;
    position: relative;
    overflow: hidden;
}

.warning-summary-container p {
    margin: 0;
    padding: 0;
}

.warning-content {
    display: block;
    padding: 20px;
    position: relative;
}

/* -------- Warning Message Content - End ----- */
      
/* -------- Information Message Content - Start ----- */
.info-summary-wrapper {
    display:block;
} 

.info-summary-wrapper h3 {
    background-color: #2b96d3;
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: block;
    font-family: "ralewayextrabold";
    font-size: 20px;
    line-height: 22px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.info-summary-container {
    background-color: #cfe6f3;
    border: 2px solid #2b96d3;
    display: block;
    position: relative;
    overflow: hidden;
}

.info-summary-container p {
    margin: 0;
    padding: 0;
}

.info-content {
    display: block;
    padding: 20px;
    position: relative;
}

/* -------- Information Message Content - End ----- */
/* -------------- Messages - Interior Page Container - End --------------- */


.home-company-news .date {
	display: block;
    padding-left: 25px;
    position: relative;
	color: #333333;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-family: 'open_sansregular';
}

.home-company-news .date::before {
	display: block;
    position: absolute;
    content: "";
    background: transparent url('images/global/seymourcrushing_sprite.svg') no-repeat 0 -170px;
    width: 15px;
    height: 16px;
    left: 0;
    top: 0;
}

.home-company-news  a .title span,
.home-company-news  a:link .title span,
.home-company-news  a:visited .title span {
    display: block;
    font-family: 'ralewaybold';
    color: #656565;
    font-size: 16px;
    line-height: 30px;
	margin: 5px 0 20px 0;
	height: 30px !important;
}

.home-company-news a:active .title span,
.home-company-news a:hover .title span,
.home-company-news a:focus .title span {
    outline: 0;
    color: #006db7;
}

.home-company-news a .read-more,
.home-company-news a:link .read-more,
.home-company-news a:visited .read-more,
.home-company-news a:active .read-more,
.home-company-news a:hover .read-more {
    display: block;
    font-family: 'ralewayextrabold';
    font-size: 12px;
    line-height: 13px;
    color: #ffa838;
    text-transform: uppercase;
}

/* News Landing Page.... */
dl.news-box-des {
	display: block;
	border-bottom : 1px solid #b2b2b2;
	padding-bottom: 20px;
	margin-bottom: 20px;
	float: left;
	width: 100%;
}

dl.news-box-des dt {
	display: black;
	float: left;
	padding-right: 20px;
}

a.news-blog-box-title,
a.news-blog-box-title:link,
a.news-blog-box-title:visited {
	display: black;
	padding-bottom: 10px;
	font-family: "ralewayextrabold";
    line-height: 18px;
	font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
	color: #565656;
	text-decoration: none;
}

a.news-blog-box-title:active,
a.news-blog-box-title:hover {
	color: #006db7;
}

dl.news-box-des a.more,
dl.news-box-des a.more:link,
dl.news-box-des a.more:visited {
	display: black;
	font-family: "ralewayextrabold";
    line-height: 18px;
	font-size: 13px;
    text-transform: uppercase;
	color: #ffa838;
	text-decoration: none;
}

dl.news-box-des a.more:active,
dl.news-box-des a.more:hover {
	color: #006db7;
}

.slider-more-link, 
.slider-more-link:link, 
.slider-more-link:visited {
    color: #ffa838;
    display: inline-block;
    font-family: "ralewaybold";
    font-size: 15px;
    line-height: 16px;
    margin: 0 0 0 5px;
}
.slider-more-link:active, 
.slider-more-link:hover, 
.slider-more-link:focus {
    color: #b2b2b2;
    outline: 0 none;
}

.server-more-link, 
.server-more-link:link, 
.server-more-link:visited {
    color: #ffa838;
    display: inline-block;
    font-family: "ralewaybold";
    font-size: 15px;
    line-height: 16px;
    margin: 0 0 0 5px;
}
.server-more-link:active, 
.server-more-link:hover, 
.server-more-link:focus {
    color: #b2b2b2;
    outline: 0 none;
}


/*  Large scale screen */
@media (min-width: 1200px) {
    .md-slide  li {
        height: 750px;
        max-height: 750px;
    }

    .md-slide-wrapper {
        height: 750px;
    }

    .md-slide li img {
        height: 750px;
    }

    .bx-viewport {
        height: 750px !important;
    }


}

/*  Small Screen to Large screen */
@media (min-width: 1024px) and (max-width: 1199px) {


}


/* Landscape Tablet to Small Desktop Screen */
@media (min-width: 769px) and (max-width: 1023px)  {
    
}


/* Landscape phone to Portrait Tablet  */
@media (max-width: 768px) {

    .interior-top-tab span {
        font-size: 20px;
        line-height: 25px;
        padding: 20px;
    }
	
	.interior-top-tab .breadcrumbs span {
		font-size: 13px;
		line-height: 15px;
		padding: 0;
	}

    .interior-top-tab.with-header h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .vehicle-gallery li {
        width: 100%;
    }

    .page-title-style01 h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .inquiry {
        margin-right: 5px;
    }

    .error-page h2 {
        font-size: 40px;
        line-height: 45px;
        margin: 20px 0;
    }

    .fotter-nav-wrapper ul.quick-link-list {
        display: none;
    }

    .fotter-nav-wrapper {
        display: block;
        width: 300px;
        margin: 0 auto;
        background-color: #ffa838;
        overflow: hidden;
        border-radius: 20px;
        background-image: url('images/global/down-arrow.svg');
        background-repeat: no-repeat;
        background-position: 262px center;
    }

    .fotter-nav-wrapper select.tinynav {
        display: block;
        width: 335px;
        background-color: transparent;
        height: 40px;
        border: none;
        padding: 0 40px 0 15px;
        color: #fff;
        font-family: "ralewayextrabold";
        font-size: 14px;
        line-height: 40px;
        text-transform: uppercase;
    }

    .footer-widget-container .title {
        text-align: center;
    }

    .footer-address,
    .footer-contact,
    .footer-mail {
        display: inline-block;
    }


    .md-slide  li {
        height: 550px;
        max-height: 550px;
    }

    .md-slide-wrapper {
        height: 550px;
    }

    .md-slide li img {
        height: 550px;
    }

    .bx-viewport {
        height: 550px !important;
    }

    .content-slide h2.slide-title {
        font-size: 35px;
        line-height: 40px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content-slide .slide-description {
        font-size: 18px;
        line-height: 22px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .bx-wrapper .bx-controls-direction a, 
    .bx-wrapper .bx-controls-direction a:link, 
    .bx-wrapper .bx-controls-direction a:visited, 
    .bx-wrapper .bx-controls-direction a:active, 
    .bx-wrapper .bx-controls-direction a:hover {
        top: 85%;
        margin-top: 0;
    }

    .development-by {
        padding: 7px 0;
    }

}


/* Landscape Phone and below  */
@media (max-width: 480px) {
    .carousel-container.product-service-slider-wrapper {
        min-height: 340px;
    }

    a.slider-btn, 
    a.slider-btn:link, 
    a.slider-btn:visited,
    a.slider-btn:active,
    a.slider-btn:hover {
        font-size: 11px;
        margin: 0 5px;
    }

    img.loaction-img {
        width: 100%;
    }

    .page-title-style01 h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .fotter-nav-wrapper {
        width: 200px;
        background-position: 162px center;
    }

    .fotter-nav-wrapper select.tinynav {
        width: 235px;
    }

    .bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		bottom: 15px;
	}

    .md-slide  li {
        height: 450px;
        max-height: 450px;
    }

    .md-slide-wrapper {
        height: 450px;
    }

    .md-slide li img {
        height: 450px;
    }

    .bx-viewport {
        height: 450px !important;
    }

    .content-slide h2.slide-title {
        font-size: 30px;
        line-height: 34px;
    }

    .content-slide .slide-description {
        font-size: 16px;
        line-height: 20px;
    }

}

/* Portrait Phones and Below */
@media (max-width: 320px) {
    .inquiry-form-wrapper.open {
        width: 280px;
    }

    .carousel-container.product-service-slider-wrapper {
        min-height: 375px;
    }
}
