/**
 * Theme main style
 */


/* Import the necessary Bootstrap WP CSS additions */

@import url(bootstrap-wp.css );

/* Import the font-awesome css */

@import url(../font-awesome/css/font-awesome.css );

/* Import the Open Sans font */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');

/* font-family: "MyriadProRegular"; */
@font-face {
    font-family: "MyriadProRegular";
    src: url("../fonts/MyriadProRegular/MyriadProRegular.eot");
    src: url("../fonts/MyriadProRegular/MyriadProRegular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProRegular/MyriadProRegular.woff") format("woff"),
    url("../fonts/MyriadProRegular/MyriadProRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "MyriadProBold"; */
@font-face {
    font-family: "MyriadProBold";
    src: url("../fonts/MyriadProBold/MyriadProBold.eot");
    src: url("../fonts/MyriadProBold/MyriadProBold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProBold/MyriadProBold.woff") format("woff"),
    url("../fonts/MyriadProBold/MyriadProBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "MyriadProItalic"; */
@font-face {
    font-family: "MyriadProItalic";
    src: url("../fonts/MyriadProItalic/MyriadProItalic.eot");
    src: url("../fonts/MyriadProItalic/MyriadProItalic.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProItalic/MyriadProItalic.woff") format("woff"),
    url("../fonts/MyriadProItalic/MyriadProItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "MyriadProSemiBold"; */
@font-face {
    font-family: "MyriadProSemiBold";
    src: url("../fonts/MyriadProSemiBold/MyriadProSemiBold.eot");
    src: url("../fonts/MyriadProSemiBold/MyriadProSemiBold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProSemiBold/MyriadProSemiBold.woff") format("woff"),
    url("../fonts/MyriadProSemiBold/MyriadProSemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "MyriadProBoldItalic"; */
@font-face {
    font-family: "MyriadProBoldItalic";
    src: url("../fonts/MyriadProBoldItalic/MyriadProBoldItalic.eot");
    src: url("../fonts/MyriadProBoldItalic/MyriadProBoldItalic.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProBoldItalic/MyriadProBoldItalic.woff") format("woff"),
    url("../fonts/MyriadProBoldItalic/MyriadProBoldItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "MyriadProSemiBoldItalic"; */
@font-face {
    font-family: "MyriadProSemiBoldItalic";
    src: url("../fonts/MyriadProSemiBoldItalic/MyriadProSemiBoldItalic.eot");
    src: url("../fonts/MyriadProSemiBoldItalic/MyriadProSemiBoldItalic.eot?#iefix")format("embedded-opentype"),
    url("../fonts/MyriadProSemiBoldItalic/MyriadProSemiBoldItalic.woff") format("woff"),
    url("../fonts/MyriadProSemiBoldItalic/MyriadProSemiBoldItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}


/* This is a small security for too long strings titles */

body {
    word-wrap: break-word;
}
::selection {
    background: #1ABC9C;
    color: #FFF;
}
::-moz-selection {
    background: #1ABC9C;
    color: #FFF;
}
a {
    outline: 0;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
footer a{
   color: #fff; 
}
.footer_logo_img{
    text-align: center;
}
.footer_logo_img img{
    max-width: 300px;
    width: 100%;
}
a:hover, a:focus {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #1797a6;
}
.italic {
    font-style: italic;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #3A3C41;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #1ABC9C;
    text-decoration: none;
}

/* Read More Buttons */

.read-more {
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    background-color: #1ABC9C;
    padding: 10px 30px;
    color: #FFF;
    text-decoration: none;
    display: inline-block;
}
.read-more:hover {
    color: #FFF;
    background-color: #3a3c41;
    text-decoration: none;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.read-more.outline {
    background-color: transparent;
    border: 2px solid #FFF;
    color: #FFF;
}
.read-more.outline:hover {
    background-color: #FFF;
    color: #3a3c41;
}
.read-more.black {
    background-color: #3a3c41;
}
.read-more.black:hover {
    background-color: #1ABC9C;
}
.read-more.red {
    background-color: #EA3200;
}
.read-more.red:hover {
    background-color: #3a3c41;
    color: #FFF;
}
.read-more.orange {
    background-color: #ffa13c;
}
.read-more.orange:hover {
    background-color: #e19132;
}
.read-more.yellow {
    background-color: #ffd543;
}
.read-more.yellow:hover {
    background-color: #e1b63f;
}
.read-more.green {
    background-color: #6dc068;
}
.read-more.green:hover {
    background-color: #65b760;
}
.read-more.white {
    background-color: #FFF;
    color: #262932;
}
.read-more.white:hover {
    background-color: #f1f1f1;
    color: #2C2D31;
}

/* Alignment */

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}
.center{
    text-align: center;
    clear: both;
}

/* Images and wp-captions should always fit and be responsive */

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}
.wp-caption {
    margin-bottom: 10px;
    max-width: 100%;
    border: 1px solid #1ABC9C;
    border-radius: 4px;
    -mo-zborder-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 0 10px;
}
.wp-caption.aligncenter {
    margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
}
.wp-caption .wp-caption-text {
    text-align: center;
    margin-top: 10px;
}

/* WP Gallery */

.gallery {
    margin-bottom: 1.5em;
}
.gallery a img {
    border: none;
    height: auto;
    max-width: 90%;
}
.gallery dd {
    margin: 0;
}
.gallery .gallery-item img {
    border: 2px solid #1ABC9C!important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.gallery .gallery-item img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.gallery-caption {
    background-color: rgba(26, 188, 156, 0.7);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-height: 50%;
    opacity: 0;
    padding: 6px 8px;
    text-align: left;
    width: 100%;
}
.gallery-caption:before {
    content: "";
    height: 100%;
    min-height: 49px;
    top: 0;
    left: 0;
    width: 100%;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
}
.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
    display: none;
}
.div_products{
margin-bottom: 20px;
    overflow: hidden;
}


/* Make sure embeds and iframes fit their containers */

embed, iframe, object {
    max-width: 100%;
}

/* Text meant only for screen readers */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}
.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar */
}

/* Content */

.main-content-inner {
    margin-bottom: 30px;
}
.entry-meta{display: none;}
.hentry {
    margin: 0 0 1.5em;
}
.project_row{
    padding-top: 1px;
}
/* Clearing */

.clear {
    clear: both;
}

/* Here some needed widget styles
 * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */

.widget {
    margin-bottom: 2em;
}
.widget_nav_menu ul.sub-menu li, .widget_pages ul.children li {
    padding-left: 15px;
}
.ubermenu .ubermenu-submenu >.ubermenu-item:hover{
background-color: #1698a8;
width: 100%;
}
.ubermenu .ubermenu-submenu .ubermenu-column-auto{
    width: 100% !important;
}
/* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
 * Note: you can change the whole appearance of the search_form() function in our searchform.php */

.widget_search .search-form input[type="submit"] {
    display: none;
}

/* Make sure select elements fit in widgets */

.widget select {
    max-width: 100%;
}

/* Nested comments? They are threaded and nested already, you just need to add your own styling to finalize!
 * For example with some margin, like the line below ;) Delete, modify, change classes in HTML if you desire another style */

.comment .children {
    margin-left: 1.5em;
}

/* =Global
----------------------------------------------- */

body {
    font-family: 'Open Sans', sans-serif, arial;
    font-size: 13px;
}
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Open Sans', sans-serif, arial;
}
a, a:link {}

/* My Minimal WordPress Styling comes here */


/* =Header
---------------------------------------------------------------------------------- */

.site-header {
    padding: 0px;
    position: relative;
    box-shadow: 1px 1px 4px #ddd;
    -moz-box-shadow: 1px 1px 4px #ddd;
    -webkit-box-shadow: 1px 1px 4px #ddd;
    min-height: 186px;
}
.site-branding {
    padding-top: 0;
}
.site-branding h1.site-title a {
    font-weight: bold;
    color: #1ABC9C;
}
.site-branding h1.site-title a:hover {
    color: #3A3C41;
}
.site-branding .site-description {
    font-size: 12px;
    margin: 6px 0 0 0;
}
.header-top {
    background: #444444;
    min-height: 30px;
    color: #FFF;
    font-size: 12px;
    padding: 2px 0;
}
.header-top a {
    color: #FFF;
    text-transform: uppercase;
  font-size: 13px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.9px;
      line-height: 26px;
}
.header-top a:hover {
    color: #1ABC9C;
}
.mail-info .phone-info {
    padding-right: 10px;
    display: inline-block;
}
ul.top_menu {
    margin: 0;
    list-style: none;
    font-size: 14px;
    text-align: right;
}
ul.top_menu li.top_menu {
    display: inline-block;
    margin: 0 15px 0 0;
}
ul.top_menu li.last-child, ul.top_menu li:last-child {
    margin: 0;
}
ul.top_menu li.top_menu a {
    display: block;
}
.header-bottom {
    padding: 27px 0 30px;
    background: #FFF;
}
#header-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 1px 1px 8px #AAA;
    -webkit-box-shadow: 1px 1px 8px #AAA;
    -moz-box-shadow: 1px 1px 8px #AAA;
}
.site-header h1 {
    font-size: 30px;
    padding: 0px;
    margin: 0px;
    color: #fff;
    max-width: 70%;
    display: inline;
}

/* =Header Search
---------------------------------------------------------------------------------- */

.header-search {
    margin-top: 0;
    cursor: pointer;
}
.header-search:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
#header-search-button {
    background: #F4F4F4;
    border: 1px solid #DDD;
    color: #BABEC4;
    padding: 5px 10px;
    font-size: 18px;
    margin-left: 5px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}
.header-search-form-wrap {
    display: none;
    position: absolute;
    top: 113px;
    padding: 15px 0;
    background: #F5F5F5;
    border-bottom: 2px solid #E9E9E9;
    width: 100%;
    z-index: 999;
}
.header-search-form-wrap.sticky {
    position: fixed;
    border-bottom: 2px solid transparent;
    box-shadow: 0px 3px 7px #CCC;
    -webkit-box-shadow: 0px 3px 7px #CCC;
    -moz-box-shadow: 0px 3px 7px #CCC;
}
.header-search-form {
    font-size: 30px;
    color: #B3B3B3;
}
.header-search-form .search-field {
    background: none;
    border: none;
    display: inline-block;
    width: 90%;
    padding-left: 5px;
    font-size: 30px;
    color: #a2a2a2;
    height: auto;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    -webkit-opacity: 0.6;
    opacity: 0.6;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(opacity=60);
    filter: alpha(opacity=60);
}
.header-search-form .search-field:focus {
    border: none;
}
.header-search-form .search {
    display: none;
}

/* =Menu
---------------------------------------------------------------------------------- */

.site-navigation .navbar-default, .site-navigation .navbar {
    background: none;
    border: none;
    margin: 0;
}
.site-navigation {
    margin-top: 0;
}
nav.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav.main-menu ul > li {
    margin: 0;
    float: left;
    position: relative;
}
nav.main-menu ul > li a{
    width: 100%;
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #027C8D;
    cursor:pointer;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase;
}
nav.main-menu ul > li > span{
    width: 100%;
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #027C8D;
    cursor:pointer;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase;

}
.brd_bred{
    cursor: context-menu;
}
.brd_bred:hover{
    text-decoration: none;
}
.ubermenu .ubermenu-item.ubermenu-active.ubermenu-in-transition>.ubermenu-submenu-drop, .ubermenu .ubermenu-item.ubermenu-in-transition>.ubermenu-submenu-drop{
        overflow: auto !important;
    max-height: 80vh !important;
}
nav.main-menu ul > li .ubermenu-submenu li a span{
        padding: 2px 0px;
    font-size: 12px;
}
nav.main-menu ul > li a:hover {
    text-shadow: none;
}
nav.main-menu ul > li:last-child a{
padding: 8px 0px 8px 15px;
}
nav.main-menu ul > li ul {
    z-index: 999;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 34px;
    left: 0;
    width: 190px;
    display: none;
    border-top: 2px solid #1ABC9C;
    background-color: #444444;
}
.widget_wrap_button{
    padding:20px 23px;
    border: 1px solid #dddddd;
    border-radius: 7px;
}
.widget_wrap_button button, .widget_wrap_button button:hover{
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  text-align: center;
  padding:10px 15px;
}
.modal-content{
    border-radius: 7px;
    overflow: hidden;
}
.widget_key_features .ul_type1{
    margin-bottom: 0;
    margin-top: 0;
}
.modal-header{
    background-color: #f2f4f5;
}
nav.main-menu ul > li ul li {
    list-style: none;
    float: none;
    position: relative;
    border-bottom: 1px solid #444;
}
nav.main-menu ul > li ul li a {
    color: #FFF;
    padding: 10px 20px;
}

nav.main-menu{
    position: relative;
    z-index: 999;
}
nav.main-menu ul > li ul li ul {
    position: absolute;
    left: 190px;
    top: 0;
}
nav.main-menu ul .current_page_item > a {
}
nav.main-menu ul > li:hover > a{
}
.mean-container a.meanmenu-reveal {
    background: #1ABC9C;
    left: auto!important;
    right: 0!important;
    text-align: right!important;
}
.mean-container a.meanmenu-reveal .fa {
    display: block;
}
.pager li > a:hover, .pager li > a:focus {
    background-color: #1ABC9C;
    border-color: #1ABC9C;
    color: #FFF;
}
.nav > li > a:hover, .nav > li > a:focus {
    background-color: #E7F6F3;
}

/* = Main content
---------------------------------------------------------------------------------- */
.right_section p{
    text-align: right;
}
.process_page{
    background-image: url(../images/process_bg.png);
    background-repeat: repeat-y;
    background-position: top center;
    margin-top: -28px;
    margin-bottom: -30px;
}
.process_page .entry-content{margin-top: 170px;}
.process_page .entry-content > .vc_row .wpb_column .wpb_wrapper a{
  font-size: 16px;
  line-height: 2.625;
  text-align: center;
  display: inline-block;
  padding: 0 12px;
  font-weight: 600;
  line-height: 43px;
  border-radius: 7px;
  border: 1px solid;
  margin-top: 30px;
}
.process_page .entry-content > .vc_row .wpb_column .wpb_wrapper a:hover{
  font-size: 16px;
  line-height: 2.625;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  line-height: 43px;
  border-radius: 7px;
  border: 1px solid;
  text-decoration: none;
}    
.process_page .entry-content > .vc_row:nth-child(1) .wpb_column:first-child .wpb_wrapper a{border-color: #469d69;}
.process_page .entry-content > .vc_row:nth-child(1) .wpb_column:last-child .wpb_wrapper a{border-color: #4aad9e;}

.process_page .entry-content > .vc_row:nth-child(2) .wpb_column:first-child .wpb_wrapper a{border-color: #4bb1c9;}
.process_page .entry-content > .vc_row:nth-child(2) .wpb_column:last-child .wpb_wrapper a{border-color: #467dcc;}

.process_page .entry-content > .vc_row:nth-child(3) .wpb_column:first-child .wpb_wrapper a{border-color: #5553b7;}
.process_page .entry-content > .vc_row:nth-child(3) .wpb_column:last-child .wpb_wrapper a{border-color: #dd5d36;}

.process_page .entry-content > .vc_row:nth-child(4) .wpb_column:first-child .wpb_wrapper a{border-color: #ea8a3b;}
.process_page .vc_row > div{
    margin-top: -110px;
}
.process_page .vc_row > div:last-child{
    margin-top: 150px;
}
.process_page .vc_row .wpb_wrapper .wpb_wrapper p{
    margin-bottom: 0;
}
.process_page .vc_row .wpb_wrapper .wpb_wrapper h2{
    color: black;
    font-weight: 100;
}
.process_page .vc_row .wpb_wrapper .wpb_wrapper h2 span{
    display: block;
    font-weight: 600;
}
.process_page .vc_row .wpb_wrapper .wpb_wrapper{
        display: flex;
    align-items: flex-end;
    margin-bottom: 31px;
    flex-direction: row;
}
.process_page .form_column{
    max-width: 450px;
    border:1px solid #dddddd;
    border-radius: 7px;
    float: right;
        padding-left: 25px;
        padding-right: 32px;
    padding-top: 7px;
}
.process_page .form_column form{
    margin-top: 55px;
}
.process_page .form_column .wpb_wrapper .wpb_wrapper{
    display: block;
}
.process_page .vc_row > div:last-child .wpb_wrapper .wpb_wrapper{
    flex-direction: row-reverse;
}
.left_section{
    float: left;
}
.right_section{
    float: right;
}


.process_section{
    width: 48%;
}
.process_section{
    margin-bottom: 170px;
}
.b_main{clear: both;}
.process_section .b_main a, .process_section .b_2 a{
    margin-top: 22px !important;
}
.sec_header{
        display: flex;
    flex-direction: row;
    align-items: flex-end;
        margin-bottom: 31px;
}
.process_section:nth-child(1){    margin-top: 75px;}
.process_section:nth-child(1) .sec_title, .process_section:nth-child(1) .b_2 a, .process_section:nth-child(1) .b_2 a:hover{
    color: #469d69;
    border-color:#469d69;
}
.process_section:nth-child(2){
        margin-top: 345px;
}
.process_section:nth-child(2) .sec_title, .process_section:nth-child(2) .b_2 a, .process_section:nth-child(2) .b_2 a:hover{
    color: #4aad9e;
    border-color:#4aad9e;
}
.process_section:nth-child(3) .sec_title, .process_section:nth-child(3) .b_2 a, .process_section:nth-child(3) .b_2 a:hover{
    color: #4bb1c9;
    border-color:#4bb1c9;
}
.process_section:nth-child(4) .sec_title, .process_section:nth-child(4) .b_2 a, .process_section:nth-child(4) .b_2 a:hover{
    color: #467dcc;
    border-color:#467dcc;
}
.process_section:nth-child(5) .sec_title, .process_section:nth-child(5) .b_2 a, .process_section:nth-child(5) .b_2 a:hover{
    color: #5553b7;
    border-color:#5553b7;
}
.process_section:nth-child(6) .sec_title, .process_section:nth-child(6) .b_2 a, .process_section:nth-child(6) .b_2 a:hover{
    color: #dd5d36;
    border-color:#dd5d36;
}
.process_section:nth-child(7) .sec_title, .process_section:nth-child(7) .b_2 a, .process_section:nth-child(7) .b_2 a:hover{
    color: #ea8a3b;
    border-color:#ea8a3b;
}
.left_section{float: left;}
.right_section{float: right;}
.right_section .name_sec{    text-align: right;    margin: 0 41px -7px 0;}

.left_section .sec_header{
    flex-direction: row;
}
.right_section .sec_header{
    flex-direction: row-reverse;
}
.sec_header img{
    margin-top: 0;
    margin-bottom: 0;
}
.name_sec{
        margin: 0 0 -7px 41px;
}
.sec_subtitle{
        font-weight: 100;
}
.sec_title{
    font-weight: bold;
}
.name_sec{
    display: inline-block;
}
.sec_title, .sec_subtitle{
  font-size: 36px;
  line-height: 1.167;
}
.clients_row{
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
}
.clients_row.products_sec{
    padding-bottom: 0;
    margin-bottom: 0px;
}
.clients_row:before{
    content: " " !important;
        position: absolute;
    height: 100%;
    left: -1500px;
    right: -1500px;
    background-color: #f2f4f5;
    z-index: -1;
    display: block !important;
}
.clients_row p{
    padding:45px 0; 
  font-size: 20px;
  color: rgb(0, 107, 122);
  line-height: 1.5;
  text-align: left;
}
.main-content {
    padding: 30px 0 0 0;
    overflow: hidden;   
}
.row_products{
    margin-top: 10px;
    margin-bottom: -40px;
}
.project_details.main-content {
    padding: 0px 0 0 0;
    overflow: hidden;   
}
.project_details > div.container{
    width: 100%;
}
.projects_bunner_slider .vc_col-sm-12{padding-left: 0px !important;}
.projects_bunner_slider.vc_row{    width: calc(100% + 80px);} 
.page-header h1.entry-title, .page-header {
    margin-top: 0;
    border: none;
    padding-bottom: 0;
}
.entry-title {
    font-weight: bold;
}
body.page .page-header h1.entry-title {
    padding-bottom: 10px;
}

/* = Home Carousel
---------------------------------------------------------------------------------- */
#owl-home-project .item > div{
    display: block;
    width: 100%;
    height: auto;
}
#owl-projects .item img{
    display: block;
    width: 100%;
    height: auto;
}
.slider_clients{
        position: relative;
        background-color: #f2f4f5;
        padding-top: 15px
}
.clients_row  h2{
    margin-bottom: 30px;
    margin-top: 35px;
}
#wpaft-logo-slider-home-carousel.container{
    padding-left: 0;
    padding-right: 0;
}
#wpaft-logo-slider-home-carousel .item{
    padding: 0px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#owl-projects .owl-pagination{
    bottom: 0;
        position: absolute;
    z-index: 999;
    width: 100%;
}
#wpaft-logo-slider-home-carousel .owl-pagination, #owl-home-projects .owl-pagination{
    display: none;
}
#wpaft-logo-slider-home-carousel .owl-controls, #owl-projects .owl-controls, #owl-home-projects .owl-controls{
    position: absolute;
    top: 50%;
    margin-top: -20px;   
    width: 100%;
}
#owl-projects .owl-controls{
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 100%;
    height: 50%;
}
.owl-buttons.container{width: 100%;}
#owl-projects .owl-buttons.container{
    height: 60px;
    position: relative;
    width: 1180px;
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons div, #owl-home-projects .owl-controls .owl-buttons > div{
    z-index: 299;
    position: absolute;
    background-color: inherit;
    height: 22px;
    width: 15px;
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons .owl-prev, #owl-home-projects .owl-controls .owl-buttons .owl-prev{
         left: -5%;   
         background-image: url(../images/prev_clients.png);
         background-repeat: no-repeat;
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons .owl-next, #owl-home-projects .owl-controls .owl-buttons .owl-next{
         right: -5%;   
         background-image: url(../images/next_client.png);
         background-repeat: no-repeat;
}
#home-slider .main-owl-carousel .owl-item .gallery-post-single, #owl-projects .owl-item .gallery-post-single {
    width: 100%;
}
#home-slider .main-owl-carousel .owl-prev,
#owl-projects .owl-prev {
    left: 0px;
    background: transparent url(../images/prev.png) no-repeat center center !important;
}

#home-slider .main-owl-carousel .owl-next,
#owl-projects .owl-next{
    right: 0px;
    background: transparent url(../images/next.png) no-repeat center center !important;
}

#home-slider .main-owl-carousel .owl-prev,
#home-slider .main-owl-carousel .owl-next,
#owl-projects .owl-prev,
#owl-projects .owl-next {
    width: 60px;
    height: 60px;
    position: absolute;
}
#home-slider .main-owl-carousel .owl-prev,
#owl-projects .owl-prev{
    left: 15px;
}
#home-slider .main-owl-carousel .owl-next,
#owl-projects .owl-next {
    right: 15px;
}

#home-slider .main-owl-carousel .owl-prev:hover,
#home-slider .main-owl-carousel .owl-next:hover,
#owl-projects .owl-prev:hover,
#owl-projects .owl-next:hover {
    opacity: 1;
}

#home-slider .owl-theme .owl-controls,
#owl-projects .owl-theme .owl-controls{
    margin: 0;
}
#home-slider .owl-theme .owl-controls.clickable .owl-buttons .owl-prev, 
#home-slider .owl-theme .owl-controls.clickable .owl-buttons .owl-next,
#owl-projects .owl-buttons .owl-prev,
#owl-projects .owl-buttons .owl-next{
    z-index: 1005;
}
#owl-projects .item img{
    display: block;
    width: 100%;
    height: auto;
}
#home-slider, #owl-projects {
    position: relative;
}
#home-slider .content-wrapper {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    margin-top: -50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
}
#home-slider .owl-theme .owl-controls{
position: absolute;
    margin: auto;
    top: 0px;
    width: 100%;
    height: 100%;
}
#home-slider .owl-theme .owl-controls .owl-buttons{
    position: relative;
    margin:auto;
    top: 45%;
}
#home-slider .owl-theme .owl-controls .owl-pagination{
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 40px;
}
.owl-carousel .owl-wrapper-outer .owl-wrapper{
    z-index: 200;

}
.owl_wrap{
    position: relative;
}
.carousel_title{
        position: absolute;
    color: white;
    z-index: 998;
    margin: auto;
    bottom: 30px;
        left: 0;
    right: 0;
    bottom: 80px;
}
.carousel_title{
    margin: auto;
}
.carousel_title h4{
    color: white;
    font-weight: 100;
    letter-spacing: 2px;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-indicators li{
    width: 12px;
    height: 12px;
}
.projects_bunner_slider .vc_images_carousel ol.vc_carousel-indicators {
    margin: 0px 0 30px -30% !important;
    z-index: 1155 !important;
}
.projects_bunner_slider .vc_item{
background: -moz-linear-gradient(top,  rgba(30,87,153,0) 1%, rgba(22,100,149,0) 35%, rgba(6,125,140,1) 100%); 
background: -webkit-linear-gradient(top,  rgba(30,87,153,0) 1%,rgba(22,100,149,0) 35%,rgba(6,125,140,1) 100%); 
background: linear-gradient(to bottom,  rgba(30,87,153,0) 1%,rgba(22,100,149,0) 35%,rgba(6,125,140,1) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#067d8c',GradientType=0 ); 
}
#home-slider .owl-theme .owl-controls .owl-buttons,
#home-slider .owl-theme .owl-controls .owl-pagination{
    z-index: 202;
}

#home-slider .video-frame {
    height: 330px;
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
}
#home-slider .slide-content {
    color: #FFF;
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.143;
  width: 60%;
  margin: auto;
}
#home-slider .slide-content h1, #home-slider .slide-content h2 {
    font-size: 48px;
    margin: 0 0 20px;
    font-weight: 400;
    color: #FFF;
}
#home-slider .slide-content h1 span, #home-slider .slide-content h2 span {
    font-weight: 800;
    color: #FFF;
}
#home-slider .slide-content p {
    font-size: 18px;
    color: #3a3c41;
    margin-bottom: 20px;
    line-height: 26px;
    color: #FFF;
}
#home-slider .slide-content .btn {
    padding: 10px 30px;
    background-color: #1ABC9C;
    text-transform: uppercase;
    font-size: 14px;
}
#home-slider .slide-content .btn:hover {
    background-color: #262932;
    color: #FFF;
}
#home-slider .bg-overlay {
    left: 0;
    top: 0;
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
}
#home-slider.video_type .bg-overlay {
    display: none;
}
/* = Table Format
---------------------------------------------------------------------------------- */
.table_h3{
    margin-bottom: 0 !important;
    margin-right: 1px;
    margin-left: 1px;
}
.table_h3 h3{
    border: 1px solid #dddddd;
    border-bottom:0px;
    border-radius: 7px 7px 0 0;
    margin-bottom: 0;
    background-color: #f2f4f5;
        padding: 21px 30px;
}
table {
    border: 1px solid #dddddd;
    border-top: 0;
    font-size: 13px;
    background-color: #FFF;
    color: #3a3c41;
    border-radius: 0 0 7px 7px;
}
table th, table td {
    padding: 7px 15px;
}
table thead {
    background-color: #1ABC9C;
    border: 0;
    font-weight: 700;
    color: #3a3c41;
    padding: 0 1px;
}
table thead tr {
    border: 0;
}
table thead tr:first-child {
    border-top: 0;
}
table thead th {
    border: 0;
    border-right: 1px solid #dddddd;
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 15px;
}
table thead th:first-child {
    border-left: 1px solid #dddddd;
}
table thead th:last-child {
    border-right: 1px solid #dddddd;
}
table tbody tr {
    border-top: 1px solid #dddddd;
}
table tbody th {
    font-weight: 100;
    color: #3a3c41;
        width: 25%;
    text-align: center;
    vertical-align: middle;
    background-color: #027c8d;
    color:#fff;
  font-size: 16px;
  line-height: 26px;
  border: 1px solid #dddddd;
}
table tbody td {
    border: 1px solid #dddddd;
    padding: 5px 7px;
  font-size: 16px;
  color: rgb(68, 68, 68);
  text-align: center;
  line-height: 37px;
}
table tbody tr:nth-child(2n + 1) td{
    background-color: #f2f4f5;
}
.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
    padding: 16px;
}
.sidebar .table thead > tr > th, .sidebar .table tbody > tr > th, .sidebar .table tfoot > tr > th, .sidebar .table thead > tr > td, .sidebar .table tbody > tr > td, .sidebar .table tfoot > tr > td {
    padding: 10px;
}

/* =Attachment
---------------------------------------------------------------------------------- */

article.attachment {
    padding-bottom: 20px;
}
article.attachment .entry-header .entry-title {
    margin-top: 0;
}
article.attachment .entry-meta {
    font-size: 12px;
}
article.attachment .entry-header #image-navigation {
    overflow: hidden;
    padding-top: 10px;
}
article.attachment .entry-header #image-navigation .nav-previous {
    float: left;
}
article.attachment .entry-header #image-navigation .nav-next {
    float: right;
}
.entry-attachment .attachment {
    padding: 15px 0;
}

/* =Footer
---------------------------------------------------------------------------------- */

#colophon {
    background: #F2F4F5;
    color: #4C4D4D;
}
#colophon li a {
        font-size: 15px;
    color: rgb(51, 51, 51);
        line-height: 29px;
padding: 0 0px;
}
.site-footer-inner {
    padding: 40px 0;
}
.sidebar-padder .nav > li > a:hover, .sidebar-padder .nav > li > a:focus{
background-color: inherit;
}
/*#colophon aside.widget {
    background: transparent;
    color: #fff;
    float: left;
    margin-right: 5%;
    width: 20%;
}*/
#colophon select, #colophon aside.widget select {
    color: #333;
}
#colophon .nav > li > a:hover, #colophon .nav > li > a:focus {
    text-decoration: underline;
}
#footer-info {
    background: #292A2F;
    padding: 12px 0;
    font-size: 12px;
}
#footer-info .site-info{
    text-align: center;
    text-transform: uppercase;
  font-size: 13px;
  color: rgb(255, 255, 255);
  -moz-transform: matrix( 0.99960457806471,0,0,1,0,0);
  -webkit-transform: matrix( 0.99960457806471,0,0,1,0,0);
  -ms-transform: matrix( 0.99960457806471,0,0,1,0,0);

}
#footer-info .site-info a{
    margin: 0 7px;
    letter-spacing: 1.2px;
}
#colophon .widget_calendar table {
    width: 100%;
}
#colophon .widget_calendar table caption {
    color: #aab4bf;
}
#colophon .widget_calendar table th, #colophon .widget_calendar table td {
    padding: 6px 10px;
    background: transparent;
}
#colophon .widget_calendar table a:hover {
    color: #1ABC9C;
}
#colophon .widget .widget-title {
    font-size: 20px;
    padding-bottom: 11px;
}
#colophon .widget .widget-title{
    margin-top: 0px;
    line-height: 11px;
  font-size: 15px;
  color: rgb(166, 166, 166);
  font-weight: bold;
}
#colophon .widget .textwidget ul{
    list-style: none;
    padding-left: 1px;
}
#colophon .widget .textwidget ul li{
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 29px;
  min-height: 29px;
}
/* =Post Images
---------------------------------------------------------------------------------- */

.post figure {
    overflow: hidden;
    margin-bottom: 20px;
}
.wp-post-image {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
a#scroll-top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 50px;
    height: 42px;
    width: 42px;
    z-index: 999;
    line-height: 3em;
    background: #2662b5 url("../images/scroll-top.png") center center no-repeat;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
a#scroll-top:hover {
    background-color: #292A2F;
}
article.post {
    margin-bottom: 30px;
    border-bottom: 1px solid #CCC;
    padding-bottom: 30px;
}
.sticky .entry-date {}
.bypostauthor {}
article.post .entry-content {
    padding-bottom: 10px;
}
.page-header .entry-title {
    margin-top: 0;
}
.page-header .page-title {
    margin-top: 0;
    font-size: 22px;
}
.page-header .page-title span {
    font-weight: bold;
}
.entry-author {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 12px;
}
.loop-more-link {
    margin-bottom: 10px;
}
.entry-content blockquote {
    background: #E7F6F3;
    padding: 20px 20px 20px 30px;
    border-left: 5px solid #1ABC9C;
    font-family: 'PT Sans', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
}
.entry-content blockquote p {
    margin: 0;
    font-family: 'PT Sans', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
}
.post-meta-info .entry-meta {
    margin-right: 20px;
    border-top: 2px solid #1ABC9C;
    background-color: #E7F6F3;
}
.post-meta-info .entry-meta time {
    padding: 18px 0 20px;
    font-size: 18px;
    color: #3a3c41;
    display: block;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}
.post-meta-info .entry-meta time strong {
    font-size: 30px;
    font-weight: 800;
    line-height: 38px;
    display: block;
}
.post-meta-info .entry-meta .comments_count {
    display: block;
    padding: 14px 0 18px;
    text-align: center;
    background-color: #1ABC9C;
}
.post-meta-info .entry-meta .comments_count a {
    display: inline-block;
    padding: 0 0 0 25px;
    background: url("../images/comment-count-icon.png") 0 3px no-repeat;
    font-weight: 700;
    color: #FFF;
}
.post-meta-info .entry-meta .comments_count a:hover {
    text-decoration: none;
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    -webkit-opacity: 0.6;
    opacity: 0.6;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(opacity=60);
    filter: alpha(opacity=60);
}
.post-meta-info .entry-meta .comments_count span {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    color: #FFF;
    text-align: center;
    text-align: center;
    display: block;
}
article .footer-meta {
    margin-top: 15px;
}
.footer-meta .tags-meta, .footer-meta .cats-meta {
    display: block;
    font-size: 12px;
}

/* = Comment Body
---------------------------------------------------------------------------------- */

.comment-body {
    position: relative;
}
.comment-body .media-body {
    background-color: #f6f6f6;
    border-bottom: 1px solid #DDDBDB;
    padding: 20px;
    margin-bottom: 15px;
}
.comment-body .comment-content {
    padding-top: 10px;
}
.comment-body .comment-heading {
    padding-right: 30px;
}
.comment-body .comment-reply {
    position: absolute;
    top: 20px;
    right: 20px;
}
.comment-meta {
    font-size: 12px;
}
.comment a.btn {
    background: #1ABC9C;
    border-color: #1ABC9C;
}
.comment a.btn:hover {
    background: #3A3C41;
    border-color: #3A3C41;
}
.comment-form .alert-info {
    background-color: #E7F6F3;
}
.error-404 {
    margin-bottom: 40px;
    background: #1ABC9C;
    color: #FFF;
}
.error-404 a {
    color: #E7F6F3;
}
.error-404 a:hover {
    color: #FFF;
}
.large-text {
    font-size: 100px;
    font-weight: 800;
    letter-spacing: 9px;
}

/* = Form Elements
---------------------------------------------------------------------------------- */

body input[type="text"], body input[type="email"], body input[type="url"], body input[type="tel"], body input[type="number"], body input[type="date"], body input[type="range"], body input[type="password"], body input[type="text"], body textarea, body .form-control {
    width: 100%;
    background-color: #FFF;
    margin-bottom: 20px;
    padding: 11px 10px;
    color: #3a3c41;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
body input[type="text"]:focus, body input[type="email"]:focus, body input[type="url"]:focus, body input[type="tel"]:focus, body input[type="number"]:focus, body input[type="date"]:focus, body input[type="range"]:focus, body input[type="password"]:focus, body input[type="text"]:focus, body textarea:focus, body .form-control:focus {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
select {
    background-color: #FFF;
    width: 100%;
    padding: 11px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    cursor: pointer;
}
select option{
    cursor: pointer;
}
select:focus {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
body input[type="file"] {
    margin-bottom: 30px;
    color: #3a3c41;
}
body input[type="submit"] {
    padding: 12px 25px;
    background-color: #3a3c41;
    font-size: 13px;
    color: #FFF;
    font-weight: 700;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
body input[type="submit"]:hover, body input[type="submit"]:focus {
    background-color: #1ABC9C;
    color: #FFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
body .comments-area .btn {
    border-radius: 0;
}
body input.error, body textarea.error {
    border: 2px solid #ff0000;
}
body fieldset label {
    font-size: 13px;
    color: #999ca5;
    font-weight: 500;
    border-bottom: 2px solid #dcdee4;
    padding: 5px;
    float: left;
}
body textarea, body input {
    -webkit-border-radius: 0px;
}
label {
    width: 100%;
}
.form_column{
border:1px solid #dddddd;
border-radius: 7px;
max-width: 450px;
padding: 17px 31px 17px 27px;
}
.form_column h5{
font-size: 35px;
line-height: 40px;
}
.form_column p{
text-align: left;
margin-top: 17px;
font-size: 16px;
}
.form_column label{
    float: left;
    width: auto;
    line-height: 42px;
    font-weight: 400;
}
.form_column input, .form_column textarea{
    float: right;
    max-width: 223px;
    border: 1px solid #dddddd;
    border-radius: 7px;
    height: 42px;
}
.form_column br{
    display: none;
}
.form_column label{
    width: 100%;
}
.form_column label input{
    margin-bottom: 13px;
}
.form_column textarea{
    height: 90px;
}
p.p_button{
    text-align: right;
}
.widget_ask_modal_button .b_main{
    text-align: center;
}
.logo-container{
    padding: 0 0 !important;
    margin:0 20px;
    background-color: #fff;
        height: 140px;
        display: flex;
    justify-content: center;
    align-items: center;
}
#wpaft-logo-slider-home-carousel .logo-container img{
    -webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
#wpaft-logo-slider-home-carousel .logo-container:hover img{
    -webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-ms-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: grayscale(0%);
}
/*WP Google Maps*/
.wpgmza_markerbox{
    text-align: center;
}
.wpgmza_markerbox p{  
    font-size: 12px;
  font-family: "Open Sans";
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  letter-spacing: 2px;
      font-weight: 500;
}
.wpgmza_markerbox .wpgmza_infowindow_image{
    float: none !important;
}
.wpgmza_markerbox .wpgmza_infowindow_title{
  font-size: 22px;
  text-transform: none;
  font-family: "Open Sans";
  color: rgb(2, 124, 141) !important;
  font-weight: bold;
  line-height: 1.091;
  text-align: left;
}
.wpgmza_markerbox .wpgmza_infowindow_address{
  font-size: 14px;
  font-family: "Open Sans";
  color: rgb(51, 51, 51);
  line-height: 1.714;
  text-transform: none;
  letter-spacing: 1px;
      font-weight: 500;
}
/*WP Google Maps*/
/*site map*/
ul.page-list li{
    list-style-type: none;
}
.page-list  > li > a{
        font-size: 20px;
    color: rgb(2, 124, 141);
    font-weight: bold;
}
.page-list ul.children  > li {
    font-size: 15.5px;
    color: rgb(68, 68, 68);
    line-height: 15px;
    padding: 14px 0;
    width: auto;
}
.page-list ul.children  > li a{
    border-bottom: 1px solid #dddddd;
}
.page-list ul.children  > li a:hover{
    border-bottom: 0px solid #dddddd;
    text-decoration: none;
}
.all_product_list{
    margin-bottom: 40px;
}

/* = Responsive
---------------------------------------------------------------------------------- */

@media (min-width: 0px) and (max-width: 991px) {
    .site-header h1 {
        margin-bottom: 18px;
    }
    .post-meta-info .entry-meta {
        margin: 0;
        background: none;
        border: none;
        font-size: 13px;
    }

    .post-meta-info .entry-meta time {
        display: inline-block;
        text-align: left;
        font-weight: normal;
        text-transform: none;
        padding: 0;
        font-size: 14px;
    }
    .post-meta-info .entry-meta time strong {
        display: inline-block;
        text-align: left;
        font-weight: normal;
        text-transform: none;
        font-size: 14px;
        padding-left: 10px;
    }
    .post-meta-info .entry-meta .comments_count {
        display: inline-block;
        text-align: left;
        font-weight: normal;
        background: none;
        padding: 0;
    }
    .post-meta-info .entry-meta .comments_count a {
        background: none;
        display: inline;
        color: #3A3C41;
        padding: 0 0 0 10px;
    }
}
.container_project {
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 40px;
}
.footer_b.container_project{
    padding-left: 40px;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control .icon-next, .projects_bunner_slider .vc_images_carousel .vc_carousel-control .icon-prev{
    width: 60px;
    height: 60px;
}
.projects_bunner_slider .vc_item{
    position: relative;
}
.projects_bunner_slider .vc_item .vc_inner .gradient_wrap{
    display: inline-block;
    position: relative;
}
.projects_bunner_slider .vc_item .vc_inner .gradient_wrap:after{
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top,  rgba(30,87,153,0) 1%, rgba(22,100,149,0) 35%, rgba(6,125,140,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(30,87,153,0) 1%,rgba(22,100,149,0) 35%,rgba(6,125,140,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(30,87,153,0) 1%,rgba(22,100,149,0) 35%,rgba(6,125,140,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#067d8c',GradientType=0 ); /* IE6-9 */
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control {
    position: absolute;
    padding: 0;
    top: 50%;
    left: 50%;
    bottom: 0;
    margin-top: -50px;
    margin-left: -580px;    width: 60px;
    height: 30px;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 30px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    -webkit-tap-highlight-color: transparent;
    z-index: 8998;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control span{
     background: transparent url(../images/prev.png) no-repeat center center !important;
}
.vc_images_carousel .vc_carousel-control .icon-prev:before{
    display: none;
}
.vc_images_carousel .vc_carousel-control .icon-next:before{
    display: none;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control.vc_right span{
    background: transparent url(../images/next.png) no-repeat center center !important;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control.vc_right {
    left: auto;
    right: 50%;
        margin-left: 0;
    margin-right: -560px;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control .icon-next, .projects_bunner_slider .vc_images_carousel .vc_carousel-control .icon-prev {
    width: 60px;
    height: 60px;
}
.process_page.row{
    margin-left: 0;
    margin-right: 0;
}

/* The Responsive CSS */

@media (max-width: 768px) {
    .site-header h1 {
        display: block;
        text-align: center;
        max-width: none;
    }
    .header-search-form {
        font-size: 22px;
    }
    .header-search-form .search-field {
        font-size: 22px;
        width: 80%;
    }
}
@media (min-width: 0px) and (max-width: 767px) {
    #masthead {
        margin-bottom: 20px;
    }
    .site-branding {
        text-align: center;
    }
    .site-branding .site-description {
        padding: 0 0 10px 0;
        margin-top: -10px;
    }
    .header-search {
        display: none;
    }
    .mail-info {
        padding-bottom: 10px;
        text-align: center;
    }
    ul.top_menu {
        text-align: center;
    }
    .site-navigation {
        width: 100%;
    }
    .mean-container .mean-bar {
    }
    #nav{
        display: none;
    }
    .mean-container .mean-bar .meanmenu-reveal {
        background: #1698a8;
    }
    .mean-container .mean-bar .mean-nav ul li a {
        border-color: rgba(255, 255, 255, 0.1);
    }
    .mean-container .mean-bar .mean-nav ul li a.mean-expand {
        height: 22px;
    }
    .mean-container .mean-bar .mean-nav ul li a.mean-expand:hover {
        background-color: #17A88B;
    }
    .mean-container .mean-bar .mean-nav ul li a.meanmenu-reveal {
        background-color: #1ABC9C;
        padding: 13px 14px;
        top: -40px;
    }
    nav.site-navigation ul > li ul li ul {
        left: 0;
    }
    #responsive-menu-container .navbar {
        min-height: inherit;
    }
    a#scroll-top {
        display: none;
    }
    #colophon .site-footer-inner {
        overflow: hidden;
        margin: 0 15px;
    }
    #colophon aside.widget {
        margin-top: 20px;
        margin-bottom: 0;
    }
}



/*NEW STYLES*/
/*text*/
*{
    font-family: "Open Sans";
}
.tal{
    text-align: left;
}
.tac{
    text-align: center;
}
.tar{
text-align: right;
}
p{
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  text-align: left;
  margin-bottom:22px;
  clear: both;
}
.p_subtitle p{
    color: #006b7a;
    margin-bottom: 37px;
    line-height: 27px;
    font-size: 20px;
}
h1 + p{
  font-size: 19px;
  color: rgb(255, 255, 255);
  line-height: 30px;
  font-weight: 100;
}
.sub_p p{
max-width: 540px;
    margin: auto;
    font-size: 16px;
    letter-spacing: -0.3px;
    color: rgb(51, 51, 51);
    line-height: 23px;
    text-align: center;
    margin-bottom: 55px;
    margin-top: 40px;
}
.products_carousel{
    border:1px solid #dddddd;
        border-radius: 7px;
        padding-top:15px;
}
.wpb_wrapper .wpb_wrapper > div{
    padding-bottom: 40px;
}
.vc_images_carousel .vc_carousel-indicators li{
        border: 1px solid #dddddd !important;
    background-color: #dddddd !important;
}
.vc_images_carousel .vc_carousel-indicators .vc_active{
        background-color: #005e6b !important;
    border: 1px solid #005e6b !important;
}
.products_carousel .vc_carousel-indicators{
    margin-bottom: -10px !important;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-indicators li{
        border: 1px solid #005e6b !important;
    background-color: #005e6b !important;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-indicators .vc_active{
         background-color: #ffffff !important;
    border: 1px solid #ffffff !important;   
}
/*text*/
/*Buttons*/
.b_main a{
  font-size: 16px;
  color: #fff;
  line-height: 2.625;
  text-align: center;
  background-color:#2662b5;
  display: inline-block;
  padding: 6px 12px;
  font-weight: 600;
  line-height: 30px;
  border-radius: 7px;
  border: 1px solid #2662b5;
  text-align: center;
}
.form_column input[type="submit"], .form_column input[type="submit"]:hover{
   font-size: 16px;
  color: #fff;
  line-height: 2.625;
  text-align: center;
  background-color:#2662b5;
  display: inline-block;
  padding: 6px 12px;
  font-weight: 600;
  line-height: 30px;
  border-radius: 7px;
  border: 1px solid #2662b5;
  text-align: center;   
}
.rsHidden{
        opacity: 1 !important;
    visibility: visible !important; 
}
.process_section{
    text-align: center;
}
.b_main a:hover{
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color:#2662b5;
  display: inline-block;
  font-weight: 600;
  line-height: 30px;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid #2662b5;
  cursor: pointer;
}
.b_2 a{
  font-size: 16px;
  color: #2662b5;
  line-height: 2.625;
  text-align: center;
  display: inline-block;
  padding: 0 12px;
  font-weight: 600;
  line-height: 43px;
  border-radius: 7px;
  border: 1px solid #2662b5;
  margin: 0 5px;
}
.b_2 a:hover{
  font-size: 16px;
  color: #2662b5;
  line-height: 2.625;
  text-align: center;
  display: inline-block;
  font-weight: 600;
  line-height: 43px;
  border-radius: 7px;
  border: 1px solid #2662b5;
  text-decoration: none;
}
/*Buttons*/


/*HR*/

.vc_separator, hr{
    border-top: 2px solid #addde3;
    text-align: center;
    margin-top: 42px;
    margin-bottom: 38px;
}
.vc_separator:after, hr:after{
    content: "";
    background-image: url(../images/hr.jpg);
    width: 30px;
    height: 34px;
    display: inline-block;
    margin-top: -16px;
}

hr.type2{
   border-top: 1px solid #dddddd; 
}
hr.type2:after{
    display: none;
}

/*HR*/

/*IMG DIV*/
img.img_title_bottom {
    width: 100%;
}

.img_title_bottom{
    padding:0px 0px 0px 0px;
  font-size: 16px;
  color: #333333;
  line-height: 1.125;
  text-align: left;
  letter-spacing: -0.5px;
  background-color: #f2f4f5;
  margin-bottom: 0;
  display: block;}
  .img_title_bottom img{
margin:0px 0px 0px 0px;
width:100%;
max-width: none;
  }
    .img_title_bottom p{
        margin-bottom: 15px;
    }
  .img_title_bottom p +p{
    padding:0 15px 15px 15px; 
    margin-bottom: 0;
  }
  .img_title_bottom img + strong{
    display: inline-block;
    padding:15px 15px 15px 15px; 
  }
.img_title_bottom  img + strong{
    letter-spacing: -0.2px;
}
.img_title_bottom:hover{
    text-decoration: none;
}
.img_title_bottom  img + div p{
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
  font-weight: 400;
}
.footer_navigation{
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}
.footer_navigation a.project_prev{
    position: absolute;
    left: 0;
}
.footer_navigation a.project_prev:before{
    content: " ";
    width: 9px;
    height: 13px;
    display: inline-block;
    background-image: url(../images/prev_footer.png);
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
        margin: 10px 15px 0 0;
}
.footer_navigation a.project_next{
    position: absolute;
    right: 0;
}
.footer_navigation a.project_next:after{
    content: " ";
    width: 9px;
    height: 13px;
    display: inline-block;
    background-image: url(../images/next_footer.png);
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
        margin: 10px 0 0 25px;
}
.img_title_bottom > img + div h4{
        margin-bottom: 6px;
            letter-spacing: 1px;
            margin-top: 0;
}
.img_title_bottom > img + div h3{
        margin-top: 0px;
            margin-bottom: 26px;
}
.img_title_bottom > img + div h3 a{
    color: inherit;
}
.img_title_bottom > img + div a{
    margin-top: 25px;
    margin-left: 0px;
}
.img_title_bottom > img + div{
    padding: 17px;
}
.section_more_projects .img_title_bottom > img{
    height: 145px;
}
.section_featured .img_title_bottom > img{
height: 285px;
}
.section_featured .img_title_bottom > img + div{
    padding: 50px 45px;
}
.section_projects{
    margin-top: 20px;
}
.section_projects .img_title_bottom > img{
    height: 205px;
}
.section_products .img_title_bottom > img{
    height: 235px;
}
.left_image_title .vc_column-inner {
background-color: #f2f4f5;  
}
.left_image_title .text_section > div{
    margin-left: 20px;
    padding-top: 105px;
}
.left_image_title .wpb_content_element, .left_image_title .wpb_row{
    margin-bottom: 0;
}
.left_image_title .wpb_row img{
    width: 100%;
}
.img_title_left{
   overflow: hidden;
   position: relative;
   margin-bottom: 40px;
}
.img_title_left img{
}
.img_title_left p{
    margin-bottom: 0;
}
.img_title_left div:first-child{
    float: right;
}
.rsSlideRoot{
        display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    height: 100%;
}
.rsSlideRoot img{
    width: 750px !important;
    float: right;
    height: 100%;
}
.description_card{
    width: 40%;
        display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f2f4f5;
}
#new-royalslider-3{
    width: calc(100% + 140px) !important;
    margin: 0 -70px !important;
}
.rsContainer{
        margin: 0 70px;
        width: calc(100% - 140px) !important;
}
.rsDefaultInv .rsOverflow, .rsDefaultInv .rsSlide{
    background: inherit !important
}
 .description_card h3,  .description_card p,  .description_card h4,  .description_card > div{
    margin-left: 20px;
    padding-right: 15px;
}
.rsDefaultInv .rsArrowIcn{
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.rsDefaultInv.rsHor .rsArrowLeft .rsArrowIcn{
    background-image: url(../images/prev_clients.png);
}
.rsDefaultInv.rsHor .rsArrowRight .rsArrowIcn{
background-image: url(../images/next_client.png);
}
.description_card h4{
    margin-bottom: -5px;
}
.img_title_left div:last-child > h3, .img_title_left div:last-child > h4, .img_title_left div:last-child > p{
    display: inline-block;
    width: 100%;
    vertical-align: middle;
        margin-left: 20px;
        padding-right: 20px;
}
.img_title_left div p{
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  text-align: left;
  margin-bottom: 0;
}
.img_title_left div h4{
        margin-bottom: 6px;
            letter-spacing: 1px;
            margin-top: 0;
}
.img_title_left div h3{
        margin-top: 0px;
            margin-bottom: 26px;
}
.img_title_left div a{
    margin-top: 25px;
}




/*IMG DIV*/

/*Heading*/
.test_bg{
    background-color: #1698a8;
}
h1 {
  font-size: 48px;
  color: rgb(255, 255, 255);
  font-weight: bold;
      margin-top: 11px;
    margin-bottom: 16px;
}
h2{
  font-size: 35px;
  color: rgb(2, 124, 141);
    margin-bottom: 35px;
    clear: both;
}
h3 {
  font-size: 20px;
  color: rgb(2, 124, 141);
  font-weight: bold;
}
h4{
  font-size: 14px;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*Heading*/

/*ul*/
.ul_type1 ul{
    background-color: #fff;
    border: 1px solid #dddddd;
    display: inline-block;
    border-radius: 7px;
    max-width: 460px;
    padding-left: 0px;
    padding-bottom: 18px;
    margin-top: 45px;
    width: 100%;
}
.ul_type1 ul ul{
    border: 0px;
    padding-bottom: 0;
    margin-top: 0;
}
.page_rsb{
    margin-top: 20px;
    overflow: hidden;
}

.page_rsb .ul_type1 ul{
    max-width: 100%;
}
.project_detail .ul_type1{
 margin-top: 0px;   
}
.ul_type1 ul ul li{
    margin:0 0 0 0;
    padding-bottom: 0;
    border-top: 0;
    border-bottom: 0;
    background:none;
    list-style-type: disc;
    padding-left: 0;
    margin-left: 25px;
}
.ul_type1 li{
    margin:0 29px 0 30px;
    font-size: 14px;
    color: rgb(68, 68, 68);
    line-height: 18px;
    text-align: left;
    font-weight: 600;
    padding-top: 15px;
    border-bottom: 1px solid #f2f4f5;
    padding-bottom: 14px;
    padding-left: 47px;
    letter-spacing: -0.16px;
    background: url("../images/l1.png") no-repeat left 20px;

    list-style: none;
}
.sidebar .ul_type1 ul{
        margin-top: 0px;
}
.products_carousel .vc_images_carousel .vc_carousel-control .icon-next,.products_carousel .vc_images_carousel .vc_carousel-control .icon-prev{
        width: 50px !important;
    height: 50px !important;
    margin-top: -15px;
    margin-left: -27px !important;
    background-color: #7f7f7f;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
}
.products_carousel .vc_images_carousel .vc_carousel-control .icon-next{
    background-image: url(../images/project_next.png);
}
.products_carousel .vc_images_carousel .vc_carousel-control .icon-prev{
    background-image: url(../images/project_prev.png);
}
.page_rsb .ul_type1 ul{
    margin-top: 0;
}
.page_rsb .vc_separator{
    margin-bottom: 0;
    margin-top: 0;
    border-top: 1px solid #dddddd;
}

.page_rsb .vc_separator:after{
    display: none;
}
.products_carousel .vc_images_carousel .vc_carousel-control .icon-next:before,.products_carousel .vc_images_carousel .vc_carousel-control .icon-prev:before{
    top:0 !important;
    color:white;
}
.widget .ul_type1 li{
    background: url("../images/l2.png") no-repeat left 20px;
}
.widget_related_products{
    background-color: #fff;
    border: 1px solid #dddddd;
    display: inline-block;
    border-radius: 7px;
    max-width: 460px;
    padding-bottom: 18px;
    margin-top: 0px;
    width: 100%;
}
.widget_related_products img{
    height: 193px;
}
.widget_related_products .widget_body{
    padding-left: 25px;
    padding-right: 25px;    
}
.widget_related_products .widget_body > div {
    margin-bottom: 20px;
}

.widget_related_products .widget_header{
    padding: 21px 30px;
    margin: 0 0 6px 0;
    background-color: #f2f4f5;
    border-bottom: 0px solid #f2f4f5;
    background-image: none;
}
.widget_related_products .widget_header h3{
    margin: 0 0 0 0;
}
.ul_type1 ul ul li:first-child{
    background-color: #fff;
    padding:5px 0 0 0;
    margin-bottom: 0px;
    margin-left: 25px; 
}

.ul_type1 ul ul li{
    padding-top: 5px;
}
.ul_type1 li:first-child{
  padding:21px 30px;
  margin:0 0 6px 0;    
  background-color: #f2f4f5;
    border-bottom: 0px solid #f2f4f5;
    background-image:none;
}
.widget_key_features .ul_type1 h3{
padding:21px 30px;
margin:0 0 6px 0;    
background-color: #f2f4f5;
border:1px solid #dddddd;
border-radius:7px 7px 0 0;
border-bottom: 0px solid #f2f4f5;
background-image:none;    
margin-bottom: 0;
}
.widget_key_features .ul_type1 ul {
    background-color: #fff;
    border: 1px solid #dddddd;
    border-top: 0px;
    display: inline-block;
    border-radius: 0 0 7px 7px;
    padding-left: 0px;
    padding-bottom: 18px;
    width: 100%;
}
.widget_key_features .ul_type1 li:first-child{
    margin: 0 29px 0 30px;
    font-size: 14px;
    color: rgb(68, 68, 68);
    line-height: 18px;
    text-align: left;
    font-weight: 600;
    padding-top: 15px;
    border-bottom: 1px solid #f2f4f5;
    padding-bottom: 14px;
    padding-left: 47px;
    letter-spacing: -0.16px;
    background: url(../images/l2.png) no-repeat left 20px;
    list-style: none;
}
.ul_type1 li:first-child h3{
    margin: 0 0 0 0;
}
.ul_type1 li:last-child{
    border-bottom: 0px solid #f2f4f5;
}
/*ul2*/
ul.type2{
    width:100%;
    list-style: none;
    padding-left: 0px;
    display: block;
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul.type2 li{
    margin-bottom: -1px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

}
.products_type ul{
    padding-left: 0;
    list-style-type: none;
}
.products_type{
    clear: both;
}
.products_type ul li{
    border-bottom: 1px solid #dddddd;
    font-size: 15.5px;
  color: rgb(68, 68, 68);
line-height: 15px;
    padding: 14px 0;
}
.products_type h3{
    margin-bottom: 15px;
}
.products_type ul li:last-child{
    border-bottom: 0px;
}
.industries_section ul.type2 li{
    width: 100%;
}
.industries_section > p{display: none;}
ul.type2 li h3{margin-bottom: 18px;}
ul.type2 li h3 a{
    color:#027c8d;
}
ul.type2 li div{}
ul.type2 li span{
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #D9D9D9;
    font-size: 14px;
    color: rgb(68, 68, 68);
    line-height: 16px;
    padding: 13px 0 13px 0;
    flex-wrap: wrap-reverse;
    display: flex;
    align-items: baseline;
}
ul.type2 li span a {
    font-size: 16px;    
}
.projects_page ul.type2 li span a, .projects_page ul.type2 li span strong {
    font-weight: bold;  
    display: inline-block;
    width: 100%;
    font-size: 16px; 
}
.projects_page ul.type2 li span strong{
    cursor:default;
}
.enc_details{
    font-size: 16px;
    font-weight: 600;
    color:#027c8d;
}
.enc_details:hover{
    color:#027c8d;
}
.enc ul.type2{
    overflow:inherit; 
}
.enc .service{
   margin-bottom: 42px;
}
.process_grafic ul{
        list-style-type: none;
    padding-left: 0;
        height: 140px;
        text-align: left;
            margin-top: 57px;
            margin-bottom: 50px;
}
.ind_grafic.process_grafic ul{
    margin-top: 0;
}
.process_grafic ul li{
    display: inline-block;
    width: 12%;
    color: white;
  font-size: 20px;
  height: 100%;
  font-family: "Open Sans";
  letter-spacing: -1.8px;
float: left;
}
.process_grafic ul li:first-child{
background-image: url(../images/process_grafic_section1.png);
-webkit-background-size: 100%;
background-size: 100%;
width: 110px;
background-repeat: no-repeat;
}
.process_grafic ul li:nth-child(2){
background-image: url(../images/process_grafic_section2.png);
width:150px ;
-webkit-background-size: 100%;
background-size: 100%;
margin-left: -2px;
background-repeat: no-repeat;
    line-height: 24px;
    padding: 32px 1px 1px 41px;
}
.process_grafic ul li:nth-child(3){
 background-image: url(../images/process_grafic_section3.png); 
 -webkit-background-size: 100%;
 background-size: 100%;
 width: 150px;
 margin-left: -1px;
 background-repeat: no-repeat; 
     line-height: 24px;
    padding: 32px 8px 1px 39px; 
}
.process_grafic ul li:nth-child(4){
 background-image: url(../images/process_grafic_section4.png); 
 -webkit-background-size: 100%;
 background-size: 100%;
 width:147px ;
 margin-left:-2px ;
 background-repeat: no-repeat;  
     line-height: 24px;
    padding: 32px 1px 1px 38px;
}
.process_grafic ul li:nth-child(5){
 background-image: url(../images/process_grafic_section5.png); 
 -webkit-background-size: 100%;
 background-size: 100%;
 width:143px ;
 margin-left:2px ;
 background-repeat: no-repeat;
     line-height: 24px;
    padding: 32px 1px 1px 35px; 
}
.process_grafic ul li:nth-child(6){
  background-image: url(../images/process_grafic_section6.png);
  -webkit-background-size: 100%;
  background-size: 100%;
  width:142px ;
  margin-left:6px ;
  background-repeat: no-repeat;
      line-height: 24px;
    padding: 32px 1px 1px 30px;  
}
.process_grafic ul li:nth-child(7){
  background-image: url(../images/process_grafic_section7.png); 
  -webkit-background-size: 100%;
  background-size: 100%;
  margin-left:10px ;
  background-repeat: no-repeat;
      line-height: 24px;
    padding: 32px 1px 1px 25px;
  width: 135px; 
}
.process_grafic ul li:nth-child(8){
   background-image: url(../images/process_grafic_section8.png); 
   -webkit-background-size: 100%;
   background-size: 100%;
    width: 131px;
    margin-left: 14px;
    background-repeat: no-repeat;
        line-height: 24px;
    padding: 32px 1px 1px 22px;
}

.process_grafic ul li strong {
    display: block;
    font-weight: bold;
    letter-spacing: 0px;
}

.ind ul {
    margin-left: -40px;
padding-left: 0;
list-style-type: none;
}
.ind ul li{
  margin-bottom: 40px;
    width: 33.3333%;
    float: left;    
    padding-left: 40px;
}
.ind ul li a strong{
    display: inline-block;
      font-size: 30px;
  color: rgb(255, 255, 255);
  font-weight: bold;
    text-align: center;
    padding: 95px 0px;
    width: 100%;
}
.ind ul li a{
    display: inline-block;
    width: 100%;
    background-position:center;
    transition: 1.5s;
}
.ind ul li a strong{
-webkit-transition:background-color .3s ease-out;
    transition:background-color .3s ease-out;

}
.ind ul li a{
    position: relative;
}
.ind ul li a img{
    position: absolute;
    height: 100%;
    z-index: 3;
}
.ind ul li a strong{
    position: relative;
    z-index: 4;
}
.ind ul li a:hover{
    text-decoration: none;
}
.ind ul li:nth-child(1) a{
    /*background-image: url(../images/1ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(2) a{
    /*background-image: url(../images/2ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(3) a{
    /*background-image: url(../images/3ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(4) a{
    /*background-image: url(../images/4ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(5) a{
    /*background-image: url(../images/5ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(6) a{
    /*background-image: url(../images/6ind.jpg);*/
    -webkit-background-size: 100%;
    background-size: 100%;
}
.ind ul li:nth-child(6) a{
    position: relative;
}
.ind ul li:nth-child(1) a strong{
    background-color: rgba(22,152,168,0.75);
}
.ind ul li:nth-child(2) a strong{
    background-color:rgba(27,134,172,0.75);
}
.ind ul li:nth-child(3) a strong{
    background-color: rgba(38,98,181,0.75);
}
.ind ul li:nth-child(4) a strong{
    background-color:rgba(27,134,172,0.75);
}
.ind ul li:nth-child(5) a strong{
    background-color: rgba(38,98,181,0.75);
}
.ind ul li:nth-child(6) a strong{
    background-color:rgba(67,82,168,0.75); 
}
.ind ul li a:hover strong{
    background-color:inherit;
}
/*ul*/
div.sidebar-padder aside:last-child ul li:last-child{
    margin-top: 28.8px;
}
.enc_clear{
        overflow: hidden;
    display: none;
    clear: both;
    width:100%;
    height:1px;
}
.enc span.enc_clear:nth-child(9n){
    display: block;
}
.enc > p:nth-child(9n){
    display: block;
    margin-bottom: 0;
}

/*banner*/
div.bunner{
    background-color: #1698a8;
        position: relative;
}
div.bunner img{
    position: absolute;
    height: 100%;
    width: auto;
    right: 0;
}
.text_bunner{
    padding: 52px 20px;
}
/*end banner*/
#top{
        margin-top: -50px;
    padding-top: 50px;
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before{
    color: #1698a8;
}
.breadcrumbs{
        display: inline-block;
    border-radius: 5px;
    color: white;
    text-transform: uppercase;
    overflow: hidden;
}
.link_style, .current{

    background-color: #027c8d;
}
.breadcrumbs .link_style, .breadcrumbs .current{
    padding: 0px 8px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
    float: left;
    height: 30px;
}
.essential-breadcrumbs li a{
    padding: 0px 8px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
    float: left;
    height: 30px;   
    color: white;
    text-transform: uppercase;
}
.essential-breadcrumbs{
    overflow: hidden;
    border-radius: 5px;
    display: inline-block;
        width: initial;
}
.essential-breadcrumbs ol{
    padding-left: 0;
}
.breadcrumbs .link_style a, .breadcrumbs .link_style a:hover{
    color: white;
}
.current{
    display: none;
}
.link_style + .sep + .current{
    display: inline-block;
        padding: 0px 15px;
}
.emb-seperator{
    float: left;
    width: 13px;
    height: 30px;
    background-image:url(../images/arrow_bunner.png);
    -webkit-background-size: 100%;
     background-size: 100%; 
     color: rgba(0, 0, 0, 0);
}
.essential-breadcrumbs li{
    float: left;
        background-color: #027c8d;
}
.essential-breadcrumbs li:first-child, .essential-breadcrumbs li:first-child  + .emb-seperator{
display:none;
}
.link_style + .sep{
    display: inline-block;    
}
.div_projects > div{
    margin-bottom: 30px;   
}
.div_projects > div > a:hover{
    text-decoration: none;
}
.text_area li{
    cursor: default;
}
.map_wrap #wpgmza_filter_1 select option{
color:white;
background-color: #1698a8;
                padding:5px;
}
#wpgmza_filter_1{
    position: relative;
}
.map_wrap #wpgmza_filter_1 select{
    background-color: #1698a8;
    border:0px solid;
        color: white;
        max-width: 175px;
        position: absolute;
        right: 0;
        padding:0 0;
            height: 100%;
            background-color: transparent;
            -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.map_wrap p{
    color: white;
}
.map_wrap .container > p{
  font-size: 14px;
  font-family: "Open Sans";
  line-height: 1.714;
  text-align: right !important;
}
.map_wrap .container > p:after{
    content:" ";
    display: inline-block;
    margin-left: 7px;
    width: 12px;
    height: 8px;
    background-image: url(../images/arrow_map.png);
    background-position: center;
    background-repeat: no-repeat;
}
#wpgmza_filter_select option:first-child{
    display: none;
}
.map_wrap .container > p + div .wpgmza_filter_container{
    float: right;
}
.map_wrap .container > p + div .wpgmza_filter_container input{
float: left;
}
.map_wrap .container > p + div .wpgmza_filter_container label{
    color: white;
    width:auto;
    margin-left: 5px;
}
.wpgmza_cat_checkbox_holder .wpgmza_cat_checkbox_item_holder{
    margin-left: 20px;
}
/*Project Details Page*/
#owl-projects .owl-item img{
  display: block;
  width: 100%;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-top: 0;
}
#owl-product-detail{
    border:1px solid #dddddd;
    border-radius: 7px;
    padding-top: 15px;
    padding-bottom: 33px;
}
#owl-product-detail.owl-theme .owl-controls .owl-page.active span, #owl-product-detail.owl-theme .owl-controls.clickable .owl-page:hover span{
    background-color: #005e6b;
}
#owl-product-detail.owl-theme .owl-controls .owl-page span{
    background-color: #dddddd;
}
#owl-product-detail.owl-theme .owl-controls {
    position: absolute;
    margin: 0;
    top: 0px;
    width: 100%;
    height: 100%;
}
#owl-product-detail.owl-theme .owl-controls .owl-buttons {
    position: relative;
    margin: auto;
    width: 100%;
    top: 45%;
}
#owl-product-detail.owl-theme .owl-controls .owl-buttons, #owl-product-detail.owl-theme .owl-controls .owl-pagination{
        z-index: 202;
}
#owl-product-detail.owl-theme .owl-buttons .owl-prev, #owl-product-detail.owl-theme .owl-buttons .owl-next{
    z-index: 1005;
}
#owl-product-detail.owl-theme .owl-prev {
    left: 15px;
}
#owl-product-detail.owl-theme .owl-pagination{
        bottom: 1px;
    position: absolute;
    text-align: center;
    width: 100%;
}
#owl-product-detail.owl-theme .owl-prev, #owl-product-detail.owl-theme .owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    background-size: 100%;
}
#owl-product-detail.owl-theme .owl-next {
    right: 35px;
    background: transparent url(../images/next.png) no-repeat center center !important;
    background-size: 100% !important;
}
#owl-product-detail.owl-theme .owl-prev {
    left: 35px;
    background: transparent url(../images/prev.png) no-repeat center center !important;
    background-size: 100% !important;
}
.blue_p {
    font-size: 20px;
    color:#006b7a;
    font-weight: 100;
}
#owl-product-detail .item{
    text-align: center;
    height: 460px;
}
#owl-product-detail .item img{
    height: 100%;
    width: auto;
}
/*modal*/
.modal{
    z-index: 9999;
    padding-top: 40px;
}
.ver_border{
    position: relative;
}
.ver_border:after{
    background-image: url(../images/verborder.jpg);
    background-repeat: repeat-y;
    position: absolute;
    background-position: center;
    height: 9999px;
    content: " ";
    width: 1px;
    left: 50%;
}
.map_wrap{
    background-color: #1698a8;
    margin-top: -60px;
    padding-bottom: 50px;
}
.ubermenu .ubermenu-item .ubermenu-submenu-drop{
    z-index: 9999 !important;
}
/*Responsive styles*/
@media only screen and (max-width : 1200px) {
.img_title_left div:last-child{
    padding-top: 5.5%;
}
}
@media only screen and (max-width : 1199px){
    .img_title_left div:last-child {
    padding-top: 3.5%;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control{
    margin-left: 0;
    left: 20px;
}
.carousel_title h1{
        font-size: 30px;
        margin-bottom: 0px;
        margin-top: 0px;
}
.carousel_title h4{
    margin-bottom: 0px;
}
.carousel_title h1 + p{
    font-size: 17px;
}
.carousel_title{
    bottom: 65px;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control.vc_right{
    margin-right: 0;
    right: 50px;
}
.left_image_title .text_section > div{
        padding-top: 45px
}
.section_products .img_title_bottom  img {
    height: 205px;
}
.process_grafic ul{
        height: 125px;
}
.process_grafic ul li:first-child{
        background-position: center;
    width: 84px;
}
.process_grafic ul li:nth-child(2){
    width: 135px;
        margin-left: -13px;
}
.process_grafic ul li:nth-child(3){
    width: 135px;
    margin-left: -9px;
}
.process_grafic ul li:nth-child(4){
    width: 130px;
    margin-left: -8px;
}
.process_grafic ul li:nth-child(5){
    width: 125px;
    margin-left: -3px;
}
.process_grafic ul li:nth-child(6){
    width: 125px;
    margin-left: -2px;
}
.process_grafic ul li:nth-child(7){
    margin-left: -2px;
    width: 120px;
}
.process_grafic ul li:nth-child(8){
    width: 118px;
    margin-left: 4px;
}
}
@media only screen and (max-width : 991px){
.img_title_left div:first-child{
    float: none;
}
.left_image_title .text_section > div{
        padding-top: 5px;
}
.left_image_title .text_section > div p{
    font-size: 12px;
}

.ind ul li a strong{
    font-size: 22px;
    padding: 55px 0px;
}
.form_column input, .form_column textarea{
    min-width: 100%;
}
    .rsSlideRoot{
        flex-direction: column;
        align-items:flex-start;
    }
    .rsSlideRoot img{
        width: 100% !important;
        float: none;
    }
    .description_card{
        display: block;
        width: 100%;
    }
    .description_card .b_main{
        margin-bottom: 20px !important;
    }
    .rsOverflow{
        height: 480px !important;
    }
.ver_border{display: none;}
.img_title_left div:last-child{
    position: static;
    margin-right: 20px;
    padding-bottom: 3.5%;
}
#colophon li a, #colophon .widget .textwidget ul li{
    font-size: 12px;
}
.section_projects .img_title_bottom  img {
    height: 160px;
}
.section_products .img_title_bottom  img {
    height: 155px;
}
nav.main-menu ul > li span {
    font-size: 11px;
}
#colophon .widget .widget-title {
    margin-top: 0px;
    line-height: 11px;
    font-size: 14px;
    color: rgb(166, 166, 166);
    font-weight: bold;
}
.process_grafic ul{
    height: auto;
        width: 620px;
    margin: auto;
}
.process_grafic ul li:nth-child(1n){
    width: 135px;
    background-image: none;
    margin: 0;
    height: 110px;
        padding: 20px 28px 0 24px;
    margin: 10px;
    font-size: 16px;
}
.process_grafic ul li:nth-child(1n) span{
    font-size: 18px;
}
.process_grafic ul li:nth-child(1){
 background-image: url(../images/process_grafic_section1.png);
     background-size: 64%;
}
.process_grafic ul li:nth-child(2){
    background-color: #1698a8;
}
.process_grafic ul li:nth-child(3){
    background-color: #1b86ac;
}
.process_grafic ul li:nth-child(4){
    background-color: #2174b1;
}
.process_grafic ul li:nth-child(5){
    background-color: #2662b5;
}
.process_grafic ul li:nth-child(6){
    background-color: #4352a8;
}
.process_grafic ul li:nth-child(7){
    background-color: #e26e20;
}
.process_grafic ul li:nth-child(8){
    background-color: #ff8a1d;
}
}
@media only screen and (max-width : 960px) {
.fa-navicon:before, .fa-reorder:before, .fa-bars:before{
        font-size: 23px;
}
#colophon .widget .widget-title{
    font-size: 13px;
    padding-bottom: 0px;
}
#colophon li a, #colophon .widget .textwidget ul li{
        font-size: 12px;
}
nav.main-menu ul > li:last-child a.ubermenu-target{
    padding: 9px 0px 9px 14px;
}
nav.main-menu ul > li span{
    font-size: 11px;
}
.ubermenu-main > .ubermenu-nav > .ubermenu-item .ubermenu-submenu{
    width: 185px;
}
.img_title_left div:first-child{
    float: none;
}
.img_title_left div:last-child{
    position: static;
    margin-right: 20px;
    padding-bottom: 25px;
}
.header-bottom{
    padding: 27px 0 18px;
}
.ul_type1{
    max-width:100%; 
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons .owl-prev, #owl-projects .owl-controls .owl-buttons .owl-prev{
    left: 0;
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons .owl-next, #owl-projects .owl-controls .owl-buttons .owl-next{
    right: 0;
}
#wpaft-logo-slider-home-carousel .owl-controls .owl-buttons div, #owl-projects .owl-controls .owl-buttons div{
    background-color: #bebebf;
    background-position: center;
    padding: 15px;
}
#home-slider .slide-content{
    font-size: 35px;
}
.sec_title, .sec_subtitle{
    font-size: 25px;
}
.carousel_title{
    position: static;
        color: black;
}
.carousel_title h4,.carousel_title h1,.carousel_title h1 + p{
    color: black;
}
.carousel_title h1{
    color:#0784a2;
}
.container_project > div:first-child{
    padding-left: 0;
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control {
    left: 20px;
    margin-left: 0px;
    opacity: 1;
    cursor: 
}
.projects_bunner_slider .vc_images_carousel .vc_carousel-control.vc_right {
    left: auto;
    right: 50px;
    margin-left: 0;
     margin-right: 0px;
     opacity: 1;
}
}
@media only screen and (max-width : 767px) {
    #header-main.sticky{position: relative;}
    .header-bottom{
            padding: 15px 0 0px;
    }
    .container.carousel_title > div{padding: 0 15px;}
    .container_project .vc_col-sm-6{
        padding-left: 0;
    }
    .container_project .vc_col-sm-4{
        padding-left: 0;
    }
    .left_image_title .text_section > div p{
    font-size: 14px;
    margin-bottom: 15px !important;
}
    .footer_navigation a.project_prev, .footer_navigation a.project_next{
        position: relative;
        margin-bottom: 10px;
    }
    .ind ul li{width:50%;}
    .ind ul li a strong{padding: 40px 0px;}
    .process_grafic ul{
        width: 312px;
    }
    .section_products .img_title_bottom  img{
            height: 160px;
    }
    .section_projects .img_title_bottom  img {
    height: auto;
}
    .mean-container a.meanmenu-reveal .fa{
        text-align: center;
    }
    .ubermenu-main > .ubermenu-nav > .ubermenu-item:hover > a > .ubermenu-target-text{
        color: #606060 !important;
    }
    .mean-clicked{color:white;}
    .mean-container .mean-bar .mean-nav ul li a.mean-expand:hover{
        background-color: #1698a8;
        color:#fff;
    }
    .mean-container .mean-bar .mean-nav ul li a.mean-clicked{
        background-color: #1698a8;
        color:#fff;
    }
    .mean-container .mean-nav ul li a.mean-expand{
            width: 23px;
            height: 23px;
    }
    .essential-breadcrumbs{
        display: none;
    }
    .breadcrumbs{
        display: none;
    }
    .ul_type1{
        margin-top: 0;
    }
    h1{
        font-size: 37px;
    }
    ul.type2 li{

    }
    #home-slider .slide-content{
        font-size: 20px;
    }
    .process_section:nth-child(2){
        margin-top: 0;
    }
    .right_section{
        float: left;
    }
    .process_section{
        width: 100%;
    }
    .process_page{
        background-image: none;
    }
    .right_section .sec_header{
            flex-direction: row;
    }
    .process_section {
    margin-bottom: 40px;
}
.right_section .name_sec{
    text-align: left;
        margin: 0 0 -7px 41px;
}
.right_section p{
text-align: left;
}
.process_section{
    padding:10px;
}
.process_page .vc_row > div {
    margin-top: 20px;
}
.process_page .entry-content {
    margin-top: 20px;
        padding: 0 10px;
}
.process_page .form_column{
        float: none;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: 40px;
    width: calc(100% - 40px);
}
.process_page .vc_row > div:last-child {
    margin-top: 20px;
}
}
@media only screen and (max-width : 424px){
    .ind ul li{
        width: 100%;
    }
    .ind ul li a strong{
        padding:60px 0;
    }
}
@media only screen and (max-width : 370px){
.section_products .img_title_bottom  img {
    height: 100px;
}
#home-slider .slide-content{
    display: none;
}
.ind ul li a span{
        padding: 70px 0px
}
}
/*end Responsive styles*/


@media (min-width: 768px){
.container_project {
    max-width: 800px !important;
}}
@media (min-width: 992px){
.container_project {
    max-width: 1030px !important;
}}
@media (min-width: 1200px){
.container_project {
    max-width: 1220px !important;
}}
.widget_related_products img{
    height: auto;
}