/* 
    TABLE OF CONTENTS
    ========================================================================= */
/*      1. CSS RESET
        2. DOCUMENT STYLES
        3. TYPOGRAPHY 
        4. HEADER 
        5. PAGE TITLES 
        6. CUSTOM SECTION BACKGROUNDS
        7. ELEMENTS
            7.1. ACCORDION
            7.2. BLOCKQUOTE
            7.3. BUTTONS
            7.4. CALL TO ACTION
            7.5. CLIENT CAROUSEL
            7.6. CLIENT LIST
            7.7. COMPANY TIMELINE
            7.8. CUSTOM HEADING
            7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
            7.10. DRIVER APPLICATION
            7.11. EVENTS
            7.12. INTRO TITLE
            7.13. LATEST POSTS STYLE 01
            7.14. LATEST POSTS STYLE 02
            7.15. LATEST POSTS STYLE 03
            7.16. LIST WITH ICONS
            7.17. NUMBERS COUNTER
            7.18. PROMO BOXES
            7.19. SERVICES FEATURE BOX
            7.20. SERVICES GALLERY
            7.21. SERVICE ICON CENTER
            7.22. SERVICE ICON CENTER BOXED
            7.23. SERVICES ICON LEFT 
            7.24. SERVICES ICON LEFT BOXED
            7.25. SERVICE LIST - small icons and text
            7.26. SERVICES LIST BIG ICONS 
            7.27. SERVICES LIST BIG ICONS + DETAILS (text)
            7.28. SHIPPING QUOTE FORM
            7.29. SLIDER - MASTER SLIDER
            7.30. STATEMENT ELEMENT
            7.31. TABLE 
            7.32. TABS
            7.33. TEAM MEMBERS
            7.34. TEAM MEMBERS LIST
            7.35. TESTIMONIAL
            7.36. TRACKING FORM
            7.37. VEHICLE GALLERY FULL
        8. HOME MINIMAL CUSTOM STYLES
        9. BLOG
        10. LOCATIONS PAGE
        11. CONTACT
        12. WIDGETS
        13. FOOTER
*/

/* 
    1. CEE RESET 
----------------------------------------------------------------------------- */



#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #fff; /* change if the mask should have another color then white */
    background-image:url(../img/lik-intro.svg);  /*path to your loading animation */
    background-repeat:no-repeat;
	background-position: center calc(50% - 55px);
	
    /*background-position:center;
	
	transition: background 1s linear;*/
    z-index:999999; /* makes sure it stays on top */
}

#status {
    width:100px;
    height:80px;
    position:absolute;
    left:50%; /* centers the loading animation horizontally one the screen */
    top:50%; /* centers the loading animation vertically one the screen */
/*    background-image:url(../img/gears3.svg); /* path to your loading animation */
    background-repeat:no-repeat;
    background-position:center;
    margin:10px 0 0 -50px; /* is width and height divided by two */
}



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;
}

/* ==========================================================================
    2. DOCUMENT STYLES
    ========================================================================= */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 23px;
    color: #656565;
    background-color: #fff;
}

/*.row{
    margin-bottom: 70px;
}*/

*[class^="row"] *[class^="row"]:last-child{
    margin-bottom: 0;
}



/* ==========================================================================
    3. TYPOGRAPHY 
    ========================================================================= */
p,
a,
span {
    color: #656565;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 23px;
	font-size:14px;
}
p {
    padding-bottom: 10px;
}
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;
	color:#f7941e;
}
a:hover {
    text-decoration: underline;
	color:#353535;
}

h1, h2, h3, h4, h5, h6{
    font-family: '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 {
    max-width: 100%;
    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;
}
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-0{
    margin-bottom: 0px;
}

.mb-10{
    margin-bottom: 10px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-50{
    margin-bottom: 50px;
}

.mb-60{
    margin-bottom: 60px;
}

.mb-70{
    margin-bottom: 70px;
}

.mb-80{
    margin-bottom: 80px;
}






.mt-0{
    margin-top: 0px;
}

.mt-10{
    margin-top: 10px;
}

.mt-20{
    margin-top: 20px;
}

.mt-30{
    margin-top: 30px;
}

.mt-40{
    margin-top: 40px;
}

.mt-50{
    margin-top: 50px;
}

.mt-60{
    margin-top: 60px;
}

.mt-70{
    margin-top: 70px;
}

.mt-80{
    margin-top: 80px;
}











.pb-0{
    padding-bottom: 0px;
}

.pb-10{
    padding-bottom: 10px;
}

.pb-20{
    padding-bottom: 20px;
}

.pb-30{
    padding-bottom: 30px;
}

.pb-40{
    padding-bottom: 40px;
}

.pb-50{
    padding-bottom: 50px;
}

.pb-60{
    padding-bottom: 60px;
}

.pb-70{
    padding-bottom: 70px;
}

.pb-80{
    padding-bottom: 80px;
}






.pt-0{
    padding-top: 0px;
}

.pt-10{
    padding-top: 10px;
}

.pt-20{
    padding-top: 20px;
}

.pt-30{
    padding-top: 30px;
}

.pt-40{
    padding-top: 40px;
}

.pt-50{
    padding-top: 50px;
}

.pt-60{
    padding-top: 60px;
}

.pt-70{
    padding-top: 70px;
}

.pt-80{
    padding-top: 80px;
}















.svg-white .st0{
    fill: #fff;
}



/* ==========================================================================
    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: 1000;
}

#search {
    width: 40px;
    min-height: 80px;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 30px;
    float: right;
    z-index: 1005;
    background-color: transparent;
    padding-top: 20px;
}
.search-submit {
    background-image: url('../img/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;
}

#search: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: 70px;*/
    margin-bottom: 0;
}

.navbar-default{
    border: none;
    background: none;
}

#dl-menu{
    display: none;
}

.navbar-nav > li {
    padding-bottom: 0;
}

.navbar-nav>li>a{
    line-height: 18px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #454545;
    text-transform: uppercase;
	padding:23px 10px !important;
	letter-spacing:-0.03em;
}

/*.sticky .navbar-nav>li>a{
	padding:12px 12px !important;
}*/

.navbar-default .navbar-nav>li>a{
    color: #333;    
    border-bottom: 0px solid transparent;
}

.nav>li>a{
    padding-left: 25px;
    padding-right: 25px;
}

.header-style01 .navbar-default .navbar-nav>li>a:hover{
    border-bottom: 3px solid;
}

.dropdown-menu{
	width:200px;
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #eee;
    min-width: 240px;

    -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{
    position: relative;
}

.dropdown .dropdown-menu .dropdown-submenu > a:after{
    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{
    padding: 0px 20px;
}

.dropdown-menu>li>a{
    font-size: 13px;
    color: #333;
    padding: 15px 0px;
    border-bottom: 1px dotted #ddd;
	white-space: normal;
}

.dropdown-menu>li:last-child a{
    border: none;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus{
    background: none;
}

.dropdown-submenu {
    position: relative;
}
.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 {
    position: relative;
}

.navbar-header{
    padding-top: 0px;
    padding-left: 30px;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form{
    border: none;
}

.navbar-collapse{
    float: right;
    padding: 0;
}

.nav > li.current-menu-item > a{
    border-bottom: 3px solid;
}


/*  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: 7px 0;
    width: 100%;
}

.header-style02 .navbar-header{
    padding-left: 0;
}

.header-style02 #search{
    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: 12px 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: #009bdf;
	background-image: url('../img/bg_fakture_blue.jpg');
	background-position:top center;
	background-repeat:no-repeat;
}

.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{
    float: left;
    padding: 0 0px;
    padding-top: 0px;
}



.header-style03 #quick-links li{
    list-style: none;
    float: left;
    padding-right: 30px;
    padding-bottom: 0;
	line-height:65px;
}

.header-style03 #quick-links .fa{
	font-size:15px;
}

.header-style03 #quick-links a:hover {
	text-decoration:underline;
	color:#009bdf;
}


.header-style03.sticky #quick-links li{
	line-height:42px;
}













.header-style03 .logo-info-container{
    padding: 12px 0;
}

.header-style03 .logo-info-container .row{
    margin-bottom: 0;
}

.header-style03 .main-nav{
    margin-top: 0;
    background: none;
}

.header-style03 .navbar-default .navbar-collapse{
    float: none;

	margin:auto;
}

.header-style03 .navbar-nav>li>a{
    line-height: 18px;
}

.header-style03 .navbar{
    min-height: 14px;
}

.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: 70px;
    margin-bottom: 70px;
}

.page-title-negative-top{
    margin-top: 0 !important;
    padding-top: 185px;
}

.page-title-style01 .row,
.page-title-style02 .row{
    margin-bottom: 0;
}

.page-title-style01 h1{
    color: #fff;
    text-align: center;
	text-transform: uppercase;
	font-weight:700;
	line-height:36px;
	font-size:28px;
}

.breadcrumb-container{
    width: 100%;
    float: left;
}

.page-title-style01 .breadcrumb{
    margin: 0 auto;
    display: table;
}

.breadcrumb li{
    list-style: none;
    float: left;
    padding: 0 0px 0 3px;
    color: #fff;
}

.breadcrumb li a{
    color: #fff;
}

.breadcrumb li + li::before {
    font-size: 12px;
    content: '/';
    color: #fff;
    padding: 0 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('../img/pics/page-title01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg02{
    background-image: url('../img/pics/page-title02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg03{
    background-image: url('../img/pics/page-title03.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg04{
    background-image: url('../img/pics/page-title04.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg05{
    background-image: url('../img/pics/page-title05.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg06{
    background-image: url('../img/pics/page-title06.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg07{
    background-image: url('../img/pics/page-title07.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg08{
    background-image: url('../img/pics/page-title08.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg09{
    background-image: url('../img/pics/page-title09.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg10{
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg11{
    background-image: url('../img/pics/page-title11.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg12{
    background-image: url('../img/pics/page-title12.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg13{
    background-image: url('../img/pics/page-title13.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg14{
    background-image: url('../img/pics/page-title14.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg15{
    background-image: url('../img/pics/page-title15.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.pt-bkg16{
    background-image: url('../img/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('../img/pics/img-bkg01.jpg');
}

.img-bkg02{
    background-image: url('../img/pics/img-bkg02.jpg');
}

.img-bkg03{
    background-image: url('../img/pics/img-bkg03.jpg');
}

*[class*="img-bkg"]{
    background-size: cover;
}

.custom-bkg.bkg-grey{
    background-color: #f5f5f5;
}

.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: 70px;
    padding-bottom: 70px;*/
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax01{
    background-image: url('../img/bg_fakture_orange.jpg');
}

.parallax02{
    background-image: url('../img/bg_fakture_blue.jpg');
}

.parallax03{
    background-image: url('../img/pics/parallax03.jpg');
}

.parallax04{
    background-image: url('../img/pics/parallax04.jpg');
}

.parallax05{
    background-image: url('../img/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: '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('../img/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('../img/accordion-opened.png');
    background-repeat: no-repeat;
    background-position: center;
}

.accordion.careers .title:hover::after{
    background-image: url('../img/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;
    display: inline-block;
    float: left;
	font-family:Open Sans;

/*    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
	overflow: hidden;
	backface-visibility: hidden;
	*/
}

/*.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;
}*/


.btn.big {
    padding: 11px 30px;
    font-size: 14px;
}

.btn.medium {
    padding: 8px 20px;
    font-size: 12px;
}

.btn.small {
    padding: 4px 20px;
    font-size: 11px;
}


.btn.round {
	border-radius: 1000px;
}


.btn.radius {
	border-radius: 3px;
}

.btn.ghost {
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    background-color: transparent;
    border-color: #333;
    color: #333;
}

.btn.white{
    background-color: #ffffff;
	border-color:#ffffff;
	color:#333333;
}

.btn.red{
    background-color: #dc4437;
	border-color:#dc4437;
	color:#ffffff;
}

.btn.dark{
    background-color: #333333;
	border-color:#333333;
	color:#ffffff;
}

.btn.white.ghost, .btn.red.ghost, .btn.dark.ghost {
    background-color: transparent;
}


.btn.dark.ghost{
	color:#333;
}

.btn.white.ghost{
	color:#fff;
}

.btn.red.ghost{
	color:#dc4437;
}

.btn.white:hover {
    background-color: #dc4437;
	border-color:#dc4437;
	color:#ffffff;
}

.btn.white.ghost:hover, .btn.whiteghost:hover {
    background-color: #fff;
	border-color:#fff;
	color:#333;
}

.btn.red:hover {
    background-color: #bb2d21;
	border-color:#bb2d21;
	color:#ffffff;
}

.btn.red.ghost:hover {
    background-color: #dc4437;
	border-color:#dc4437;
	color:#ffffff;
}

.btn.dark:hover {
    background-color: #222;
	border-color:#222;
	color:#ffffff;
}

.btn.dark.ghost:hover {
    background-color: #333;
	border-color:#333;
	color:#ffffff;
}





/*  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{

	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	/* IE 5.5+ */
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;


    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{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	/* IE 5.5+ */
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0);
	
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	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;
    padding-top: 12px;
    text-transform: uppercase;
}



#about-main .custom-heading{
  border-right: 3px #ee633f solid !important;
  padding: 15px 15px 15px 0px !important;
}



#about-main .custom-heading h2 {
	font-family:Open Sans;
	font-size:27px;
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:0px;
}

/*#about-main p {
	font-size:15px;
	font-weight:400;
	color:#333;
	line-height:1.7em;
}*/




/*.custom-heading::after{
    position: absolute;
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    left: 0;
    top: 0;
}*/

.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;
}

.parallax01 .custom-heading02{
    margin-bottom: 20px;
}

.parallax01 .custom-heading02:after {
	background-color: #fff;
}

.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;
	text-transform:uppercase;
	font-weight:700;
	padding-bottom:20px;
}



/*.custom-heading02 h2:after{
    position: absolute;
    display: block;
    content: "";
    width: 200px;
    height: 3px;
    bottom: 0px;
    left: 50%;
    margin-left: -100px;
	background-color: #d6393a;
}
*/


.custom-heading-desc{
    text-transform: uppercase;
    text-align: center;
	font-size:14px;
	color:#787878;
	margin-top:-25px;
	margin-bottom:40px;
}


.dark .custom-heading-desc{
    text-transform: uppercase;
    text-align: center;
	font-size:14px;
	color:#f4f4f4;
	margin-top:-25px;
}




.custom-heading02 p{
    text-transform: uppercase;
    text-align: center;
	font-size:14px;
}

.custom-heading02:after{
    position: absolute;
    display: block;
    content: "";
    width: 96px;
    height: 2px;
    bottom: 0px;
    left: 50%;
    margin-left: -48px;
}

.custom-heading02.simple h1,
.custom-heading02.simple h2,
.custom-heading02.simple h3,
.custom-heading02.simple h4{
    padding-bottom: 15px;
}
















/*
    7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
    ------------------------------------------------------------------------- */
/*.col-md-12 .custom-heading03:only-child{
    margin-bottom: 0;
}

.row .custom-heading03:only-child{
    margin-bottom: -30px;
}*/

.custom-heading03{
    position: relative;
    margin-bottom: 40px;
}

.custom-heading03 h1,
.custom-heading03 h2,
.custom-heading03 h3,
.custom-heading03 h4{
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
	text-transform:uppercase;
	font-weight:700;
	padding-bottom:20px;
}



/*.custom-heading02 h2:after{
    position: absolute;
    display: block;
    content: "";
    width: 200px;
    height: 3px;
    bottom: 0px;
    left: 50%;
    margin-left: -100px;
	background-color: #d6393a;
}
*/


.custom-heading03 p{
    text-transform: uppercase;
    text-align: center;
	font-size:14px;
}

.custom-heading03:after{
    position: absolute;
    display: block;
    content: "";
    width: 200px;
    height: 3px;
    bottom: 0px;
    left: 50%;
    margin-left: -100px;
}

.custom-heading03.simple h1,
.custom-heading03.simple h2,
.custom-heading03.simple h3,
.custom-heading03.simple h4{
    padding-bottom: 15px;
}

















/*
    7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
    ------------------------------------------------------------------------- */
/*.col-md-12 .custom-heading04:only-child{
    margin-bottom: 0;
}

.row .custom-heading04:only-child{
    margin-bottom: -30px;
}*/

.custom-heading04{
    position: relative;
    margin-bottom: 40px;
}

.custom-heading04 h1,
.custom-heading04 h2,
.custom-heading04 h3,
.custom-heading04 h4{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
	text-transform:uppercase;
	font-weight:700;
	padding-bottom:10px;
}



.custom-heading04 h2:after{
    position: absolute;
    display: block;
    content: "";
    width: 94px;
    height: 2px;
    bottom: 0px;
    left: 50%;
    margin-left: -47px;
	background-color: #c6c6c6;
}








.custom-heading04 p{
    text-transform: uppercase;
    text-align: center;
	font-size:13px;
}

.custom-heading04.simple h1,
.custom-heading04.simple h2,
.custom-heading04.simple h3,
.custom-heading04.simple h4{
    padding-bottom: 15px;
}








/*
    7.9. CUSTOM HEADING02 - CENTERED WITH SUBTITLE
    ------------------------------------------------------------------------- */
/*.col-md-12 .custom-heading05:only-child{
    margin-bottom: 0;
}

.row .custom-heading05:only-child{
    margin-bottom: -30px;
}*/

.custom-heading05{
    position: relative;
    margin-bottom: 40px;
}

.custom-heading05 h1,
.custom-heading05 h2,
.custom-heading05 h3,
.custom-heading05 h4{
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
	text-transform:uppercase;
	font-weight:600;
	padding-bottom:10px;
}



.custom-heading05 h2:after{
    position: absolute;
    display: block;
    content: "";
    width: 94px;
    height: 2px;
    bottom: 0px;
    left: 50%;
    margin-left: -47px;
	background-color: #c6c6c6;
}








.custom-heading05 p{
    text-transform: uppercase;
    text-align: center;
	font-size:13px;
}

.custom-heading05.simple h1,
.custom-heading05.simple h2,
.custom-heading05.simple h3,
.custom-heading05.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;
}


/*  7.12. INTRO TITLE
    ------------------------------------------------------------------------- */
.intro-title{
    width: 100%;
}

.intro-title p{
    font-size: 24px;
    line-height: 30px;
    color: #333;
    font-family: '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;
}

.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: #565f66;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.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-item {
	display:block;
	float:left;
	width:20%;
}


.numbers-counter{
    padding: 0px 20px 0px;
}

.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: 50px;
    line-height: 50px;
    font-weight: 700;
    text-align: center;
    color: #fff !important;
    width: 100%;
    display: block;
    margin-bottom: 15px;
	margin-top:12px;
}

.numbers-counter p{
    text-align: center;
	color: #fff !important;
	font-size:14px;
	text-transform:uppercase;
	font-weight:400;
	line-height:20px;
}


.counter-container table {
	width:100%;
	height:50px;
}





@media only screen and (min-width: 768px) and (max-width: 991px){
			.numbers-counter-item {
				display:block;
				float:left;
				width:20%;
			}
	
	
			.numbers-counter{
				padding: 15px;
			}
	
			.numbers-counter .number{
				font-size: 32px;
				line-height: 32px;
				margin-bottom: 15px;
				margin-top:12px;
			}
	
			.numbers-counter p{
				font-size:13px;
				font-weight:400;
				line-height:20px;
			}
	
	
			.counter-container table {
				height:35px;
			}
}


@media only screen and (min-width: 481px) and (max-width: 767px){
			.numbers-counter-item {
				display:block;
				float:left;
				width:33%;
			}
	
	
			.numbers-counter{
				padding: 0px 15px 15px;
			}
	
			.numbers-counter .number{
				font-size: 32px;
				line-height: 32px;
				margin-bottom: 10px;
				margin-top:10px;
			}
	
			.numbers-counter p{
				font-size:13px;
				font-weight:400;
				line-height:20px;
			}
	
	
			.counter-container table {
				height:35px;
			}
}


@media only screen and (max-width: 480px){
			.numbers-counter-item {
				display:block;
				float:left;
				width:80%;
				margin-left:10%;
			}
	
	
			.numbers-counter{
				padding: 15px 15px 10px;
				border-bottom:1px solid rgba(255,255,255,0.2);
			}
	
			.numbers-counter .number{
				font-size: 32px;
				line-height: 32px;
				margin-bottom: 10px;
				margin-top:10px;
			}
	
			.numbers-counter p{
				font-size:13px;
				font-weight:400;
				line-height:20px;
			}
	
	
			.counter-container table {
				height:35px;
			}
}





/*  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('../img/pics/promo01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.promo-bkg02{
    background-image: url('../img/pics/promo02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


/*
    7.19. SERVICES FEATURE BOX
    ------------------------------------------------------------------------- */
#services .services-negative-top{
    margin-top: -316px;
}

#services .service-feature-box{
	border: 1px solid #eee;
	background-color:#fdfdfd;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
	padding:20px 20px 30px;
}



#services .service-feature-box .service-media{
    position:relative; 
    margin:0 auto; 
    height: 100px;
    width:100px;
    display: block;
	margin:20px auto;
}

#services .service-feature-box .service-media img{
	width: auto;
	
	left: 0; 
	position:absolute; 
	top: 0;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}


#services .service-feature-box .service-media img.one{
opacity:1;filter:alpha(opacity=100);
}

#services .service-feature-box:hover .service-media img.one{
opacity:0;filter:alpha(opacity=0);
}

#services .service-feature-box .service-media img.two{
opacity:0;filter:alpha(opacity=0);
}

#services .service-feature-box:hover .service-media img.two{
opacity:1;filter:alpha(opacity=100);
}






#services .service-feature-box .service-media:hover img{
}


#services .service-feature-box .service-body {
	text-align:center;
	font-family:Open Sans;
}

#services .service-feature-box .service-body h4 {
	font-size:14px;
	color:#333;
	font-weight:600;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin:0px;
	padding:0px;
	margin-top:30px;		
}

#services .service-feature-box:hover{
    border: 1px solid #c1030d;
	background-color:#c1030d;
	
}


#services .service-feature-box:hover h4{
	color:#fff;
}




#services-carousel {
	margin:20px 0 20px;
}





/*
    7.19. SERVICES FEATURE BOX
    ------------------------------------------------------------------------- */

/*#products.custom-bkg.bkg-grey {
  background-color: #f4f4f4;
}*/


#products hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 0;
  border-top: 1px solid #ddd;
}

#products .custom-heading04 {
	margin-top:10px;
}

.products-feature-box{
	background: #fff;
	box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.1);
	moz-box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.1);
	webkit-box-shadow: 0px 0px 4px 0px rgba(50, 50, 50, 0.1);
    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;
	width:100%;
}

.products-feature-box:hover{
box-shadow:0px 0px 10px 0px rgba(50, 50, 50, 0.3);moz-box-shadow:0px 0px 10px 0px rgba(50, 50, 50, 0.3);webkit-box-shadow:0px 0px 10px 0px rgba(50, 50, 50, 0.3);
}



.products-feature-box .products-media{
    position: relative;
    overflow: hidden;
	border-bottom:1px solid #f4f4f4;
	width:100%;
	height:220px;
}

.products-feature-box .products-media img{
    width: 100%;
    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;
    opacity: 1;
}

.products-feature-box .products-media:hover img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    opacity: 0.7
}

.products-feature-box .products-media a{
    background-color: #1b2936;
    position: absolute;
    bottom: 0;
    right: 0;
	font-size:11px;
    text-transform: uppercase;
}

.products-feature-box .products-media span{
    color: #fff;    
    padding-left: 15px;
    font-weight: 600;
}

.products-feature-box .products-media i{
    background-color: #2f3840;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 18px;
    margin-left: 15px;

    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;
}

.products-feature-box .products-body{
    background-color: #fff;
    padding: 20px;
}



.products-feature-box .products-body .custom-heading {
  position: relative;
  width: 100%;
  display: block;
}


.products-feature-box .products-body .custom-heading:after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  left: 0;
  top: 0;
}

.products-feature-box .products-body .custom-heading h4 {
  font-size: 17px;
  line-height: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  color: #333;  
}


.products-feature-box .products-body p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  margin: 0px;
  padding:0px;
  color: #555;
  margin-top:5px; 
}

#products-carousel .owl-item {
	padding:5px;
}








#products-carousel div.owl-nav {
  text-align: center;
  margin: 30px 0 0px;
  height:40px;
}


#products-carousel div.owl-nav a.owl-prev, #products-carousel div.owl-nav a.owl-next {
/*  margin: 0 8px;*/
}


#products-carousel a.owl-prev, #products-carousel a.owl-next {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  padding: 0px;
  color: #111;
  font-size: 12px;
  width:38px;
  border: 1px solid #111;
  margin: 0;
}


#products-carousel a.owl-prev:hover, #products-carousel a.owl-next:hover {
  color: #fff;
  border: 1px solid #111;
  background-color:#111;
}



#products-carousel a.owl-prev i, #products-carousel a.owl-next i {
  font-size:20px;
  line-height:38px;
}



#products-carousel a.owl-prev {
	position:absolute;
	left:0;
	margin-left:5px;
}

#products-carousel a.owl-next {
	position:absolute;
	right:0;
	margin-right:5px;
}




.all-prod {
  text-align: center;
  height:40px;
  margin-top:-40px;
  width:100%;
  padding:0px  15px;
}

.all-prod a.btn-all {
  display: inline-block;
  position:relative;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  padding: 0px 20px;
  color: #111;
  line-height:38px;
  text-transform:uppercase;
  font-weight:600;
  font-size: 12px;
  border: 1px solid #111;
  margin: 0px auto;
  z-index:999;
}

.all-prod a.btn-all:hover {
  color: #fff;
  border: 1px solid #111;
  background-color:#111;
}



#products .info {
	font-size:15px;
	font-weight:300;
	color:#333;
	line-height:22px;
	text-align:center;
	padding:0px 5% 0px;
}









/*
    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%;
	display:block;
	float:left;
}

.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: 85px;
}

.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: '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;
}




/*   7.29. SLIDER - MASTER SLIDER
    ------------------------------------------------------------------------- */
.header-style01 + .master-slider{
    margin-top: -185px !important;
}



.master-slider .ms-caption{
	left:0px;
	top:110px;
}

.master-slider .ms-caption h2{
    color: #fff;
    font-size: 38px;
    font-weight: 800;
	line-height:1.4em;
    text-transform: uppercase;
	margin:0px;
	margin-bottom:15px;
}


.master-slider .ms-caption p{
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 20px;
	line-height:1.8em;
    color: #fff;
	font-weight: 400;
	margin-bottom:10px;
	text-transform:uppercase;
}

.master-slider .ms-caption.pi-caption-dark h2, .master-slider .ms-caption.pi-caption-dark p{
    color: #222;
}







.master-slider .pi-caption01{
    color: #fff;
    font-size: 36px;
    font-weight: 800;
	line-height:1.4em;
    text-transform: uppercase;
}

.master-slider .pi-text{
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 22px;
	line-height:1.8em;
    color: #fff;
	font-weight: 600;
}

/*.master-slider{
    margin-bottom: 70px !important;
}*/

.master-slider.mb-0{
    margin-bottom: 0 !important;
}

.master-slider.mb-30{
    margin-bottom: 30px !important;
}

.master-slider .pi-caption02{
    font-size: 21px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}
/*
.master-slider .pi-button{
    padding: 12px 50px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;

    border: 2px solid;
	border-color: #d6393a;

    -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;
}



.master-slider .pi-button:hover,
.master-slider .tooltip h6::after,
.ms-skin-default .ms-tooltip-point .ms-point-center{  
  background-color: #d6393a;
}*/








.master-slider .pi-caption-dark, .master-slider .pi-dark{
    color: #222;
}

.master-slider .ms-view{
    background: transparent;
}













.master-slider .tooltip h1,
.master-slider .tooltip h2,
.master-slider .tooltip h3,
.master-slider .tooltip h4,
.master-slider .tooltip h5,
.master-slider .tooltip h6{
    color: #454545;
    text-transform: uppercase;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 0px;
	font-weight:700;
	font-size:14px;
}

.ms-skin-default-map .ms-tooltip-cont {
    padding: 12px;
}

.master-slider .tooltip p{
	padding-bottom:5px;
}

.master-slider .tooltip p, 
.master-slider .tooltip a,
.master-slider .tooltip span{
    color: #454545;
	font-size:12px;
	line-height:17px;
}

.master-slider .tooltip p b {
	font-weight:600;
}


.master-slider .tooltip a{
	text-decoration:underline;
}


.master-slider .tooltip img{
    float: left;
}

.ms-skin-default .ms-tooltip{
    max-width: 300px;
}






































/**
 *  Master Slider
 *  Default Skin
 */

.ms-skin-default .ms-slide .ms-slide-vpbtn,
.ms-skin-default .ms-video-btn{
	width: 50px;
	height: 51px;
	background: url(../img/masterslider/light-skin-1.png) no-repeat -14px -150px;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
}

.ms-skin-default .ms-slide .ms-slide-vcbtn {
	width: 30px;
	height: 30px;
	background: url(../img/masterslider/light-skin-1.png) no-repeat -24px -28px;
	top: 18px;
	right: 30px;
}

/* controls */

.ms-skin-default .ms-nav-next,
.ms-skin-default .ms-nav-prev {
	width: 53px;
	background: url(../img/masterslider/light-skin-1.png);
	background-position: -81px -26px;
	height: 44px;
	cursor: pointer;
	top: 50%;
	left: 30px;
	margin-top: -22px;
	position: absolute;
	z-index: 110;
}
.ms-skin-default .ms-nav-next {
	right: 30px;
	left: auto;
	background-position: -81px -103px;
}



.ms-skin-default .ms-bullet {
	width: 14px;
	height: 14px;
	background: url(../img/masterslider/light-skin-1.png) no-repeat;
	margin: 4px;
	background-position: -32px -115px;
}

.ms-skin-default .ms-bullet-selected {
	background-position: -32px -82px;
}


.ms-skin-default .ms-time-bar {
	height: 3px;
	background: #FFFFFF;
	border-top: solid 1px rgba(0, 0, 0, 0.41);
}


.ms-skin-default .ms-tooltip{
	position: absolute;
	z-index: 210;
	cursor: auto;
}

.ms-skin-default .ms-tooltip-top .ms-tooltip-arrow,
.ms-skin-default .ms-tooltip-bottom .ms-tooltip-arrow{
	border-left: solid 10px transparent;
	border-right: solid 10px transparent;
	position: absolute;
	left: 50%;
	margin-left: -10px;
}

.ms-skin-default .ms-tooltip-top .ms-tooltip-arrow{
	border-top: solid 10px;
	border-top-color: silver;
	border-top-color: rgba(240, 240, 240, 0.88);
	bottom: -10px;
}

.ms-skin-default .ms-tooltip-bottom .ms-tooltip-arrow {
	border-bottom: solid 10px;
	border-bottom-color: silver;
	border-bottom-color: rgba(240, 240, 240, 0.88);
	top: -10px;
}

.ms-skin-default .ms-tooltip-right .ms-tooltip-arrow,
.ms-skin-default .ms-tooltip-left .ms-tooltip-arrow{
	border-top: solid 10px transparent;
	border-bottom: solid 10px transparent;
	position: absolute;
	top: 50%;
	margin-top: -10px;
}

.ms-skin-default .ms-tooltip-right .ms-tooltip-arrow{
	border-right: solid 10px;
	border-right-color: silver;
	border-right-color: rgba(240, 240, 240, 0.88);
	left: -10px;
}

.ms-skin-default .ms-tooltip-left .ms-tooltip-arrow {
	border-left: solid 10px;
	border-left-color: silver;
	border-left-color: rgba(240, 240, 240, 0.88);
	right: -10px;
}

.ms-skin-default .ms-tooltip-point {cursor: pointer;}
.ms-skin-default .ms-tooltip-point .ms-point-center {
	width: 12px;
	height: 12px; 
	border-radius: 15px;
	border: solid 2px #BBB;
	background: white;
	margin: -8px 0 0 -8px;
	position: absolute;
	z-index: 105;
}

.ms-skin-default .ms-tooltip-point .ms-point-border {
	width: 22px;
	height: 22px; 
	background: black;
	background:rgba(0, 0, 0, 0.36);
	margin: -11px 0 0 -11px;
	position: absolute;
	border-radius: 15px;
	
	animation: point-anim 1.5s infinite ;
	-moz-animation: point-anim 1.5s infinite;
	-webkit-animation: point-anim 1.5s infinite;
	-o-animation: point-anim 1.5s infinite;
}

.ms-skin-default .ms-tooltip {
	max-width:200px;
}

.ms-skin-default .ms-tooltip-cont {
	padding: 10px;
	background: silver;
	background: rgba(240, 240, 240, 0.88);
	text-shadow: 0 1px 0px white;
	margin-left: -1px;
}

/* retina */
@media 
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
	
	.ms-skin-default .ms-slide .ms-slide-vpbtn,
	.ms-skin-default .ms-video-btn,
	.ms-skin-default .ms-slide .ms-slide-vcbtn,
	.ms-skin-default .ms-nav-next,
	.ms-skin-default .ms-nav-prev,
	.ms-skin-default .ms-bullet{
		background-image:url(../img/masterslider/light-skin-1-retina.png);
		background-size: 152px 225px;
	}
	
}

















/*   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{
    background-color: #fcfcfc;
    padding: 30px;
}

.testimonial p{
    font-size: 14px;
    line-height: 22px;
    font-style: italic;
    text-align: center;
}

.testimonial-author p{
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    color: #333;
}




/*   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('../img/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: 100%;
    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);
}

.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: 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('../img/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: 6px 10px;
}

.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;
    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;
}

#map{
    width: 100%;
    height: 450px;
    margin-bottom: 0px;
}

#map img{
    max-width: none;
}

/* ==========================================================================
    12. WIDGETS
    ========================================================================= */
.aside-widgets > li{
    list-style: none;
}

.widget{
    display: block;
    width: 100%;
    margin-bottom: 45px;
}

.widget .title h3{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.widget ul > li{
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-position: 0 center;
    list-style: none;
    padding-left: 15px;
}


.widget ul > li.menu-item {
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    background-position: right center;
    list-style: none;
    padding-right: 15px;
}



.widget li a{
    padding: 7px 0px;
    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('../img/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 dotted #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('../img/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-wrapper .row{
    margin-bottom: 20px;
}

#footer-wrapper{
    padding-top: 20px;
    position: relative;
/*    background-image: url('../img/footer-bkg.png');
    background-repeat: no-repeat;
    background-size: cover;*/
}

#footer-wrapper.footer-dark{
    background-color: #4b4b4b;
}

#footer-wrapper.footer-light{
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.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 p,
.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: #ccc;
}



.footer-dark .phone{
    color: #ccc;
	font-size:20px;
}

.footer-dark .phone b, .footer-dark .phone strong{
	font-weight:700;
}



.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('../img/to-top.png');
    background-repeat: no-repeat;
    background-color: #252525;
    z-index: 100;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}






#goods .service-details h3 {
	font-size:15px;
	font-weight:600;
	color:#fff;
	font-family:Open Sans;
	text-transform:uppercase;
}










.services-number {
  color: #fff;
  width: 58px;
  height: 58px;
  line-height: 56px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  float:left;
/*  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -27px;
  z-index: 2;  cursor: pointer;*/
  background-color:;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #fff;
  margin-bottom:40px;

}

.service-icon-left:hover .services-number {
	border: 2px solid #d6393a;
}






.prosto td {
  color: #ccc;
  line-height:18px;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}


.prosto img {
	float:left;
	margin-right:15px;
}

.prosto table {
	float:right;
}





#products .firms-main table {
  width: 100%;
  height: 50px;
}

#products .firms-main table td img {
  max-width: 100px;
  max-height:50px;
  height: auto;
  width: auto;   
}






















.map_gis {
	width:280px;
	padding:0px 0px;}
	
.map_gis .head_baloon {
	color:#ff7561;
	font-family:Open Sans;
	font-size:16px;
	font-weight:600;
	padding:0px 0px 7px;
	margin:0px;
}

.map_gis address {
	color:#ffffff;
	font-family:Open Sans;
	font-size:14px;
	font-weight:400;
    background-image:url(../img/location.svg);
    background-repeat:no-repeat;
    background-position:0px 6px;
	padding:0px 0px 5px 20px;
	margin:0px 0px;	
}

.map_gis address span {
	color:#cccccc;
	font-family:Open Sans;
	font-size:12px;
	font-weight:400;	
}

.map_gis .phone {
	color:#ffffff;
	font-family:Open Sans;
	font-size:14px;
	font-weight:400;
    background-image:url(../img/phone.svg);
    background-repeat:no-repeat;
    background-position:0px 5px;
	padding:0px 0px 5px 20px;	
}


.map_gis .phone span {
	color:#cccccc;
	font-family:Open Sans;
	font-size:11px;
	font-weight:400;	
}


.map_gis .site {
	font-family:Open Sans;
	font-size:14px;
	font-weight:400;
    background-image:url(../img/web.svg);
    background-repeat:no-repeat;
    background-position:0px 5px;
	padding:0px 0px 5px 20px;	
}

.map_gis .site a {
	color:#f3624e;
	text-decoration:underline;
}

.map_gis .site a:hover {
	color:#cccccc;
	text-decoration: none;
}


.map_gis .time {
	color:#ffffff;
	font-family:Open Sans;
	font-size:12px;
	font-weight:400;
    background-image:url(../img/time.svg);
    background-repeat:no-repeat;
    background-position:0px 5px;
	padding:3px 0px 5px 20px;	
}


.map_gis .time span {
	color:#cccccc;
	font-family:Open Sans;
	font-size:11px;
	font-weight:400;	
}






/*#contacts p {
	color:#333;
	font-size:16px;
}

#contacts a {
	color:#333;
}

#contacts a:hover {
	color:#333;
	text-decoration:underline;
}


#contacts .fa {
	color:#c1030d;
	font-size:40px;
	margin-bottom:30px;
}


#contacts .fa-mobile {
	font-size:45px;
}*/






/*.background-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.background-overlay.shade-75 {
  background: rgba(0, 0, 0, 0.75);
}

.page-title-style01 {
	overflow:hidden;
}

.page-content {
	background-color:#fff;
}*/







/*.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}

.nav:before, .nav:after {
  content: " ";
  display: table;
}

.nav > li {
  position: relative;
  display: block;
}

li {
  line-height: 24px;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}*/

/* LEFT MENU */
.side-menu{ background: #f9f9f9; }
.side-menu > li > a{ text-decoration: none; position: relative; border-bottom: 3px solid white; color: #444; line-height:20px; padding:18px 22px !important;}
.side-menu > li:last-child > a{ border-bottom: 0; }
.side-menu > li.child > a:before{
  color: #888;
  position: absolute;
  font-family: FontAwesome;
  content: "\f054";
  font-size: 9px;
  right: 8px;
  font-weight: normal;
  top: 11px;
}
.side-menu > li.active > a, .side-menu > li > a:hover, .side-menu > li > a:focus{ color: white; }
.side-menu > li.active > a:before, .side-menu > li > a:hover:before, .side-menu > li > a:focus:before{ color: white; }


.side-menu > li > a:before {
  color: #888;
  position: absolute;
  font-family: FontAwesome;
  content: "\f054";
  font-size: 9px;
  right: 12px;
  font-weight: normal;
  top: 50%;
  margin-top:-10px;
}



.side-menu > li.active.child > a:before{ content: "\f078"; }
.side-menu .submenu{ margin: 0; padding: 14px 0 14px 14px; background: white; list-style: none; }
.side-menu .submenu > li{ margin-bottom: 10px;}
.side-menu .submenu > li:last-child{ margin: 0; }
.side-menu .submenu > li > a{ text-decoration: none; color:#555;}
.side-menu .submenu > li > a:hover{ text-decoration: underline; color:#c21f13;}
/*.side-menu .submenu > li.active > a:hover, .side-menu > li.active > a:hover{cursor:default;}*/
.side-menu .submenu > li.active > a{ color: #c21f13; text-decoration:underline;}
.side-menu .submenu > li.active > a:hover{text-decoration: none;}



.side-menu > li.active > a,
.side-menu > li > a:hover,
.side-menu > li > a:focus {
  background: #c21f13;
}



.aside-left .title h3 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}


#dl-menu {
	margin:0px auto;
}








@media only screen and (min-width: 1000px) {
.wrap-figure {
    position: relative;
}

.section-figure {
    background: #fff;
    bottom: -88px;
    display: inline-block;
    left: 0;
    height: 40px;
    position: absolute;
    width: 100%;
    z-index: 99;
}

.figure-top {
    top: -90px;
}

.sf-left-top {
    background: none repeat scroll 0 0 #fff;
    border-radius: 2px;
    height: 30px;
    left: -14px;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 30px;
}

.sf-right-top {
    background: #fff;
    height: 30px;
    right: -16px;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 30px;
}
}



.gray-bg {
	background-color:#f6f6f6;
}





#services .tabs nav li {
    top: 0px; 
    overflow: visible;
	text-align:center;
}

#services .tabs nav li img {
	margin:0px auto;
}









 

.custom-heading-left {
    border-left: 3px #222222 solid !important;
    padding: 5px 0px 5px 15px !important;
}

.custom-heading-left h2 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
	text-align:left;
	line-height:22px;
}




.services-firms {
	padding:0px 60px;
	margin-top:60px;
}



.services-firms .item table {
    width: 100%;
    height: 75px;
}


/*.services-firms .item table td {
	padding:10px;
}*/

.services-firms .item table td {
	padding:0px 10px;
}



.services-firms .item {
    width: 22%;
    float: left;
    min-height: 1px;
	margin:10px 10px;
	border:1px #d0d0d0 solid;
	border-radius:2px;	
}


.service_desc {
	padding:30px 60px 0px;
	font-size:14px;
	line-height:1.4;
	color:#656565;
}

/*.service_desc p {
	font-size:14px;
	line-height:23px;
	color:#656565;
}*/


@media only screen and (min-width: 992px) and (max-width: 1199px){
.services-firms .item {
    width: 20%;
	margin:10px 10px;
}
.service_desc {
	padding:30px 10px 0px;
}

.services-firms {
	padding:0px 60px;
	margin-top:60px;
}

}


@media only screen and (min-width: 640px) and (max-width: 991px){
.services-firms .item {
    width: 22%;
	margin:7px 7px;
}

.service_desc {
	padding:30px 10px 0px;
}

.services-firms {
	padding:0px 40px;
	margin-top:40px;
}

}


@media only screen and (min-width: 481px) and (max-width: 639px){
.services-firms .item {
    width: 28%;
	margin:7px 7px;
}
.service_desc {
	padding:30px 10px 0px;
	font-size:14px;
	line-height:22px;
}

.service_desc p {
	font-size:14px;
	line-height:22px;
}

.service_desc {
	padding:30px 10px 0px;
}

.services-firms {
	padding:0px 20px;
	margin-top:20px;
}


}


@media only screen and (min-width: 381px) and (max-width: 480px){
.services-firms .item {
    width: 95%;
	margin:0px 5px;
}

.service_desc {
	padding:30px 10px 0px;
	font-size:14px;
	line-height:22px;
}

.service_desc p {
	font-size:14px;
	line-height:22px;
}

.service_desc {
	padding:30px 10px 0px;
}

.services-firms {
	padding:0px 20px;
	margin-top:20px;
}

}


@media only screen and (min-width: 200px) and (max-width: 380px){
.services-firms .item {
    width: 90%;
	margin:7px 7px;
}

.service_desc {
	padding:20px 0px 0px;
	font-size:13px;
	line-height:18px;
}

.service_desc p {
	font-size:13px;
	line-height:18px;
}


.service_desc {
	padding:30px 10px 0px;
}

.services-firms {
	padding:0px 20px;
	margin-top:20px;
}


}























.owl-clients .item img{

	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	/* IE 5.5+ */
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
-moz-opacity: 0.6;
-khtml-opacity: 0.6;
opacity: 0.6;


    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;
}

.owl-clients .item:hover img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	/* IE 5.5+ */
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0);
	
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}


.owl-clients .item table {
    width: 100%;
    height: 90px;
}



.owl-clients .item {
    width: 16%;
    float: left;
    min-height: 1px;
    margin: 0px 2% 30px;
    border: 0px #d0d0d0 solid;
}



@media only screen and (min-width: 481px) and (max-width: 640px){
.owl-clients .item {
    width: 80%;
    float: left;
    min-height: 1px;
    margin: 0px 15px 0px;
}

}

@media only screen and (min-width: 200px) and (max-width: 480px){
.owl-clients .item {
    width: 80%;
    float: left;
    min-height: 1px;
    margin: 0px 10px 0px;
}

}



/*#clients .clients-main table {
  width: 100%;
  height: 65px;
}

#clients .clients-main table td img {
  height: auto;
  width: auto; 
  max-width: 120px;
  max-height:65px;
}

#clients .owl-item {
	border-right: 1px solid #eee;
}*/





































.custom-heading03-left {
    position: relative;
    margin-bottom: 40px;
}
.custom-heading03-left h1, .custom-heading03-left h2, .custom-heading03-left h3, .custom-heading03-left h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: none;
    text-align: left;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
}

.custom-heading03-left:after {
    position: absolute;
    display: block;
    content: "";
    width: 96px;
    height: 2px;
    bottom: 0px;
    left: 0px;
	background-color: #fd9b00;
}















.contacts {
	padding: 0px 60px;
}





















































































































header .logo {
	float:left;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

/* Header STicky */

/*header.sticky .logo {
    margin: 0px 0 0px;
	
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
header.sticky .logo img {
    width: 65%;
	
	-webkit-transition:all 0.4s ease 0s;
	-moz-transition:all 0.4s ease 0s;
	-ms-transition:all 0.4s ease 0s;
	-o-transition:all 0.4s ease 0s;
	transition:all 0.4s ease 0s;
}*/

header.sticky {
    z-index: 9999 !important;
}
/*header.sticky .header-top {
    display: none;
	
    opacity: 0;
	 filter:alpha(opacity=0);
	 
	 -webkit-transition:all 0.4s ease 0s;
	 -moz-transition:all 0.4s ease 0s;
	 -ms-transition:all 0.4s ease 0s;
	 -o-transition:all 0.4s ease 0s;
	 transition:all 0.4s ease 0s;
}*/


























#project-terms {
	text-align:left;
	margin-bottom:30px;
	border-bottom:#51a1cf 2px solid;
	padding:0px 0px 6px;
}

#project-terms a {
	font-size:15px;
	color: rgba (255,255,255,0.7);
	margin:0px 22px 0px 0px;
	font-weight:600;
	padding:0px 0px 8px;
}

#project-terms a.active, #project-terms a:hover {
	color: #fff;
	font-weight:600;
	border-bottom:2px #f7941e solid;
}


#owl-works .owl-item > div img {
    display: block;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom:4px;
}


#owl-works .owl-item > div {
    padding: 0px 2px
}

.hide {
    display: none;
}




















.scroll-top {
    opacity: 0;
    bottom: 35px;
    cursor: pointer;
    display: inline-block;
    margin-top: -4px;
    position: fixed;
    z-index: 777;
    right: 35px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.scroll-top-view {
    opacity: 1;
}



.btn-action .hb {
	display:block;
	border-radius:3px;
    background-color: #656565;
	border:1px solid rgba(255,255,255,0.15);
	/*box-shadow:0px 0px 5px rgba(0,0,0,0.2);*/
    color: #fff;
}

.btn-action .hb i {
	font-size:22px;
    color: #fff;
	height:36px;
	width:36px;
	text-align:center;
	line-height:32px;
}



/*
.btn-action .hb, .btn-action .hb:after, .btn-action .hb:before {
    background-color: #f7941e;
    border-left: 1px solid #f7941e;
    border-right: 1px solid #f7941e;
    color: #fff;
}




.btn-action .hb-xs, .btn-action .hb-xs:after, .btn-action .hb-xs:before {
    height: 25.5px;
    width: 43px;
}


.hb-xs, .hb-xs:after, .hb-xs:before {
    height: 18.5px;
    width: 32px;
}




.hb-xs {
    line-height: 18.5px;
    font-size: 18.5px;
    margin: 9.5px 0;
}




.hb {
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 0;
}



.hb, .hb:after, .hb:before {
    background-color: #f7941e;
    border-left: 1px solid #f7941e;
    border-right: 1px solid #f7941e;
    color: #fff;
	box-sizing: border-box;
}










.hb:before {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
}

.hb:after, .hb:before {
    position: absolute;
    content: "";
    left: -1px;
    top: 0;
    z-index: -1;
}











.hb:after {
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    transform: rotate(-60deg);
}




.btn-action .hb i {
    font-size: 21px;
    position: relative;
    top: 1px;
}
.hb i {
    z-index: 9;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
*/




.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




.fa-angle-up:before {
    content: "\f106";
}























/*.cbp-btn-action .cbp-plus, .cbp-btn-action .cbp-plus:after, .cbp-btn-action .cbp-plus:before {
    background-color: #f7941e;
    border-left: 2px solid #f7941e;
    border-right: 2px solid #f7941e;
    color: #fff;
}*/




/*.cbp-btn-action .cbp-plus-xs, .cbp-btn-action .cbp-plus-xs:after, .cbp-btn-action .cbp-plus-xs:before {
    height: 25.5px;
    width: 43px;
}*/




.cbp-plus {
    height: 43px;
    width: 25.5px;
    line-height: 37px;
    font-size: 36px;
	font-weight:400;
	font-family:Open Sans;
	
    margin: 0px 0;
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 0;
    /*background-color: #f7941e;*/
    border-top: 2px solid #f7941e;
    border-bottom: 2px solid #f7941e;
    color: #fff;
	box-sizing: border-box;
}


.cbp-plus:after, .cbp-plus:before {
    height: 25.5px;
    width: 43px;
    /*background-color: #f7941e;*/
    border-left: 2px solid #f7941e;
    border-right: 2px solid #f7941e;
    color: #fff;
	box-sizing: border-box;
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
	margin-top:-12.75px;
	margin-left:-21.5px;
    z-index: -1;
}


.cbp-plus:before {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}


.cbp-plus:after {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    transform: rotate(-30deg);
}




.cbp-plus i {
    font-size: 21px;
    position: relative;
    z-index: 9;
	line-height:31px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}






/*.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}




.fa-angle-up:before {
    content: "\f106";
}*/












/*
.cbp-plus-xs, .cbp-plus-xs:after, .cbp-plus-xs:before {
    height: 32px;
    width: 18.5px;
}




.cbp-plus-xs {
    line-height: 32px;
    font-size: 18.5px;
    margin: 9.5px 0;
}



.cbp-plus {
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 0;
}



.cbp-plus, .cbp-plus:after, .cbp-plus:before {
    background-color: #f7941e;
    border-left: 1px solid #f7941e;
    border-right: 1px solid #f7941e;
    color: #fff;
	box-sizing: border-box;
}


.cbp-plus:before {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
}

.cbp-plus:after, .cbp-plus:before {
    position: absolute;
    content: "";
    left: -1px;
    top: 0;
    z-index: -1;
}



.cbp-plus:after {
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    transform: rotate(-60deg);
}



.cbp-plus i {
    z-index: 9;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.cbp-plus .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/




.maincontent {
	
}








#phone-head {
    width: 200px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    float: left;
    z-index: 1005;
    padding: 20px 0px;
	text-align:center;
}

#phone-head, #phone-head a {
	color:#f7941e;
	font-size:22px;
	font-weight:600;
}


/*.sticky #phone-head {
    padding: 8px 0px;
	margin-left:-10px;
}*/


#phone-head i {
    color:#656565;
	font-size:16px;
	padding-right:5px;
}






#phone-head-top {
	color:#fff;
	font-size:19px;
	line-height:28px;
	font-weight:600;
}


/*.sticky #phone-head-top {
    padding: 8px 0px;
	margin-left:-10px;
}*/


#phone-head-top i {
    color:#fff;
	font-size:15px;
	padding-right:5px;
}



.header-style02 .btn {
	font-size:14px;
	font-weight:400;
	border-radius:2px;
	padding:0px 20px;
	text-transform:uppercase;
	text-decoration:none;
	line-height:28px;
}

.header-style02 .btn.btn-orange {
	color:#fff;
	background-color:#;f7941e;
}

.head-mail {
	color:#fff;
	font-size:13px;
	line-height:28px;
}

.head-mail a {
	color:#fff;
}

.head-mail i {
	color:#fff;
}

.header-style02 .navbar {
	min-height:30px;
}




/*.sticky .dl-menuwrapper button {
	margin-top:0px;
}
*/



@media only screen and (min-width: 992px) and (max-width: 1199px){
.header-style02 .header-inner {
    padding: 9px 0;
}
	
.navbar-nav>li>a {
    font-size: 13px;
    font-weight: 600;
    padding: 18px 8px !important;
	letter-spacing:-0.05em;
}

/*.sticky .navbar-nav>li>a {
    padding: 7px 8px !important;
}*/

#phone-head {
    width: 200px;
    margin-left: 0px;
    margin-right: 20px;
    padding: 14px 0px;
}
/*.sticky #phone-head {
    padding: 5px 0px;
	margin-left:-15px;
}*/
}


@media only screen and (min-width: 768px) and (max-width: 991px){
/*.header-style02.sticky .header-inner {
    padding: 8px 0;
}*/
	
#phone-head {
    width: 200px;
    margin-left: 0px;
    margin-right: 20px;
    padding: 10px 0px;
}
}


@media only screen and (min-width: 481px) and (max-width: 767px){
	
#phone-head {
    width: 200px;
    margin-left: 0px;
    margin-right: 20px;
    padding: 10px 0px;
}
}



@media only screen and (min-width: 600px) and (max-width: 767px){
	
#phone-head {
    width: 200px;
    margin-left: 0px;
    margin-right: 20px;
    padding: 10px 0px;
}

}































.error_message, .error {
    position: absolute;
    padding: 5px 18px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-color: #fff;
    opacity: 0.95;
    z-index: 10;
    border-radius: 2px;
	width:80%;
}
.errors {
    color: red;
    margin: 5px 0 10px;
    font-size: 0.9em;
	line-height:12px;
}  



.result.error_message {
    position: relative;
    padding: 15px 18px;
	margin-top:15px;
    box-shadow: none;
    background-color: #fff;
    opacity: 1;
    border-radius: 0px;
    width: 100%;
	line-height: 26px;
}





.overlay-auth {position:absolute;top:0;left:0;height:100%;width:100%;background:url(../img/overlay.png) repeat;z-index:999999;display:none}

.overlay-window .auth-close-window { padding:15px; top:0px;right:0px;width:11px;height:11px;background:url(../img/close-window-btn.png) no-repeat center center #f7941e;display:block;position:absolute;cursor:pointer}



.overlay_act{display:block}


.overlay-window {
	position:fixed;
	background:#fff;
	top:50%;
	left:50%;
	margin:-240px 0 0 -185px;
	-webkit-box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	padding:10px;
}




.overlay-window .errors.error {
border: 0px solid #77aa44;
background: none;
font-size: 18px;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
text-align:center;
color:#333;
font-weight:100;
}


.overlay-window .fb-form{width:350px;padding:10px 15px}




@media only screen and (min-width: 100px) and (max-width: 380px){

.overlay-window {
	position:fixed;
	background:#fff;
	top:50%;
	left:50%;
	margin:-220px 0 0 -140px;
	-webkit-box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	box-shadow:0px 0px 10px 10px rgba(0, 0, 0, 0.15);
	padding:10px;
}

.overlay-window .fb-form{width:260px;padding:10px 15px}


}



.overlay-window .fb-form .form_title{font-size:20px;font-family:'Open Sans';color:#333;text-align:center;padding:0 0 10px 0; font-weight:600; text-transform:uppercase;}


.overlay-window .fb-form .form-item {padding:7px 0px}

.overlay-window .fb-form .form-item {width:100%; text-align:left;}


.overlay-window .fb-form .form-buttons{overflow:hidden;padding:0 0 0 0px;width:100%;}

.overlay-window .fb-form .form-buttons .form-links{float:left; margin-bottom:15px;}

.overlay-window .fb-form .form-buttons .form-links a{display: inline-block;font-size:13px;color:#777; padding-right:7px;}

.overlay-window .fb-form .form-buttons .form-links a:hover {color:#dc4437; text-decoration:underline;}
	
.overlay-window input, .overlay-window textarea {
width: 100%;
}


.overlay-window input:focus, .overlay-window input:active, .overlay-window textarea:focus, .overlay-window textarea:active {
	border-color: #dc4437;
}



.registration_form .form-control {
	margin-bottom:15px;
}



#p5 {
	display:none;}
	
	
	
	
	
	
.policy-bl {
	font-weight:600;
	padding:7px 15px;
	background-color:rgba(255,255,255,0.75);
	border-radius:4px;
}

.login-form .policy-bl {
	font-weight:600;
	margin:0px 0px 17px;
	padding:0px;
	font-size:12px;
	line-height:16px;
}


.fb-form h3 {
	text-transform:uppercase;
	font-weight:600;;
}

.fb-form fieldset {
	margin-top:5px;
}

.fb-form fieldset label {
	color:#757575;
}


.fb-form .required_field {
	font-size:13px;
	line-height:18px;
	margin-top:10px;
}


.btn-send {
	
    display: inline-block;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
	
		
    color: #ffffff;
    background-color: #009bdf;
		
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 10px 10px 0;
    border-radius: 3px;
	
    border: 1px solid #009bdf;
		
}

.main-nav .head-mail a {
	color:#f7941e;
}


.owl-buttons {
    position: absolute;
    /*top: 50%;*/
    height: 26px;
	width:100%;
    margin-top: -20px;
	margin-bottom:-26px;
}


.owl-buttons .owl-prev, .owl-buttons .owl-next {
    position: absolute;
    width: 26px;
    height: 26px;
    text-indent: -9999px;
    background-repeat: no-repeat;
    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;
	color:#999 !important;
}

.owl-buttons .owl-prev {
	left:-25px;
	top:-52px;
}


.owl-buttons .owl-next {
	right:-25px;
	top:-52px;
}

.owl-buttons .owl-prev:after, .owl-buttons .owl-next:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url("../img/cbp-sprite.png") no-repeat;
    height: 20px;
    width: 12px;
	color:#999 !important;
	border-radius:2px;
}


.owl-buttons .owl-next:after {
    background-position: -63px -58px;
}

.owl-buttons .owl-prev:after{
	background-position: -17px -58px;
}

.owl-clients .owl-pagination {
	display:none;
}


#clients .col-md-12 {
	margin-bottom:0px;
}


.instalink-panel-counter-value {
color:#333;
font-style: normal;
font-weight: 700;
font-size: 13px;
}

span.instalink-panel-counter-label {
    overflow: hidden;
    margin-top: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #727272 !important;
	font: 400 11px/1.2 Arial,sans-serif;
}

.instalink-panel-subscribe {
    font: 400 11px/1.2 Arial,sans-serif;
}



.cbp-l-project-city {
  color: #787878;
  font: 600 18px/23px "Open Sans", sans-serif;
  margin: 0 auto 0px;
  max-width: 500px;
  text-align: center;
}



#top-bar-wrapper .lang-container {
	margin-top:2px;
	margin-right:10px;
	float:right;
}

#top-bar-wrapper a.lang {
	color:#fff;
	border:1px #eee solid;
	font-size:12px;
	font-weight:600;
	margin-right:5px;
	line-height:20px;
	padding:0px 7px;
	border-radius:2px;
	background-color:transparent;
	text-decoration:none;
    transition: all 0.25s ease-in-out 0s;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;	
}

#top-bar-wrapper a.lang:hover {
	color:#fff;
	border:1px #fff solid;
	background-color:transparent;
	text-decoration:none;
}

#top-bar-wrapper a.lang.active {
	color:#333;
	border:1px #fff solid;
	background-color:#fff;
}



.m-lang {
	display:none;
}

.mm-lang {
	display:none;
}

@media only screen and (max-width: 540px){

.m-lang {
	display: block;
}

.m-lang a.lang {
	color:#0097d9;
	border:1px #0097d9 solid;
	font-size:10px;
	font-weight:600;
	margin-left:5px;
	line-height:17px;
	padding:0px 4px;
	border-radius:2px;
	background-color:transparent;
	text-decoration:none;
    transition: all 0.25s ease-in-out 0s;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;	
}

.m-lang a.lang:hover {
	color:#0097d9;
	border:1px #0097d9 solid;
	background-color:transparent;
	text-decoration:none;
}

.m-lang a.lang.active {
	color:#fff;
	border:1px #0097d9 solid;
	background-color:#0097d9;
}
}








@media only screen and (min-width: 541px) and (max-width: 767px){

.mm-lang {
	display:block;
	position:absolute;
	z-index:1010;
	right:50px;
	top:0px;
}

.mm-lang a.lang {
	display:block;
}

.mm-lang .lang-container {
	padding-left:10px;
	width:100px !important;
	margin-bottom:-5px;
}

.mm-lang a.lang {
	width:40px;
	text-align:center;
	color:#0097d9;
	border:1px #0097d9 solid;
	font-size:11px;
	font-weight:600;
	margin-bottom:3px;
	line-height:16px;
	padding:0px 4px;
	border-radius:2px;
	background-color:transparent;
	text-decoration:none;
    transition: all 0.25s ease-in-out 0s;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;	
}

.mm-lang a.lang:hover {
	color:#0097d9;
	border:1px #0097d9 solid;
	background-color:transparent;
	text-decoration:none;
}

.mm-lang a.lang.active {
	color:#fff;
	border:1px #0097d9 solid;
	background-color:#0097d9;
}
}
























.works-header {
	margin-right:210px;
}

.presentation {
	position:absolute;
	top:110px;
	right:0px;
	z-index:900;
}

.presentation a {
	border:0px solid #fff;
	font-size:14px;
	font-weight:600;
	padding:10px 15px;
	border-radius:0px;
    transition: all 0.25s ease-in-out 0s;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;	
    margin: 0px 5px 3px 0;
    overflow: visible;
    display: block;
    font-size: 15px;
    color: #e1e1e1;
    font-weight: 600;
    padding: 5px 17px 5px;
    border-bottom: 0px transparent solid;
    background-color: rgba(0,0,0,0.1);		
}

.presentation a:hover {
	text-decoration: none;
    color: #fff;
    background-color: rgba(0,0,0,0.25);	
}

.presentation a.file-pdf {
    position: relative;
    padding-left: 50px;
}


.presentation a.file-pdf:before {
    content: "";
    background: url(../img/pdf3.svg) no-repeat left top;
    background-size: contain;
    width: 30px;
    height: 60px;
    display: inline-block;
    position: absolute;
    left: 10px;
	top:5px;
}


@media only screen and (max-width: 767px){
.works-header {
	margin-right:0px;
}
	
.presentation {
	position: relative;
	top:0px;
	right:0px;
	text-align:center;
	margin:-20px auto 18px;
}

.presentation a {
    transition: all 0.25s ease-in-out 0s;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    margin: 0px auto;
    width: 210px;
}


.presentation a.file-pdf {
    position: relative;
    padding-left: 50px;
}


.presentation a.file-pdf:before {
    content: "";
    background: url(../img/pdf3.svg) no-repeat left top;
    background-size: contain;
    width: 30px;
    height: 60px;
    display: inline-block;
    position: absolute;
    left: 10px;
	top:5px;
}

}



@media only screen and (min-width: 768px) and (max-width: 991px){
.presentation {
	top:90px;
}
}