/*
[Main Stylesheet]
Theme: Avas - Responsive Multi-Purpose WordPress Theme.
Author: xy440
[Table of contents]
--------------------------------------------------------------------
1. Body
2. Preloader
3. Header
4. Sub Header
5. Breadcrumbs
6. Menu
7. Search
8. Slider
9. Social Media
10. Posts / Blog
11. Related Posts
12. Services
13. Portfolio
14. Team
15. Comments
16. Widgets
17. Pagination
18. Footer
19. Contact Form 7
20. Mailchimp
21. Error 404
22. Back to top
23. Login / Register
24. Testimonial
--------------------------------------------------------------------*/

/* ---------------------------------------------------------
   1. Body
------------------------------------------------------------ */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #5a5a5a;
}
a {color: #00BCD4;}
a:hover, a:focus {
  text-decoration: none !important;
  color: #222;
}
textarea:focus, input:focus{
    outline: none;
}
textarea {resize: none !important}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.left{float: left}
.right{float: right;}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
.center{text-align: center;}
embed,
object,
img {
  max-width: 100%;
    height: auto;
  border: 0;
}
iframe{
    max-width: 100%;
  border: 0;  
}
/*Default Table style*/
table {
border-collapse: collapse !important;
}
table td,
table th {
}
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
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: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody {
  border-top: 2px solid #ddd;
}
table table {
  background-color: #fff;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.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-size: 0.875rem;
  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. */
}
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.zoom-thumb {
  position: relative;
  overflow: hidden;
}
.zoom-thumb img {
  max-width: 100%;
  width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
}
.zoom-thumb:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}
.wp-caption-text {
    text-align: center;
}
.space-team{padding-bottom: 80px;}
.space-content {
  padding: 80px 0;
}
.space-author{padding: 50px 0;}
.space-eng {
  padding: 75px 0 60px;
}
.space-service {
  padding: 75px 0 45px;
}
.space-single { padding: 50px 0; }
.space-content-bottom {padding-bottom: 60px}
.col-centered{
    float: none !important;
    margin: 0 auto;
}
.desktop {display: none}
.navigation.post-navigation {
  clear: both;
  padding-top: 20px;
}
@media(min-width: 768px){
.space_home{padding-top: 122px}
}
.space_news{padding-top:220px;}
.space-50{margin-bottom: 50px}
.space-100{margin-bottom: 100px}
abbr[data-original-title], abbr[title] {
    border-bottom: 0 !important;
}
.mt40{margin-top: 40px}

/* ---------------------------------------------------------
   3. Header
------------------------------------------------------------ */
/* wp admin bar display properly */
.admin-bar .header {
  top: 32px;
}
.admin-bar .fixed-top #main_head {
    top: 0px;
    position: absolute;
}
/* Sticky header */
.fixed-top #main_head {
  top:0;
  position: absolute;
  animation-duration: 0.6s;
  animation-name: sticky;
  animation-timing-function: ease-out;
  border-bottom: 1px solid;
}
@keyframes sticky {
  0% {
    margin-top: -100px;
  }
  50% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes sticky {
  0% {
    margin-top: -100px;
  }
  50% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0;
  }
}
.header {
    width: 100%;
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
}
.header, .fixed-top.header, 
.fixed-top.double-header, 
.admin-bar .fixed-top #main_head, 
.fixed-top #main_head {
    transition: all 0.5s ease-in-out;
}
#top_head {
  width: 100%;
  background: #222;
  position: relative;
}
.head_contact li {
  display: inline-block; 
  margin: 8px;
}
.head_contact li:first-child {
  margin-left: 0;
}
.head_contact li a {
  color: #fff;
}
.head_contact li a:hover {
  color: #F2F2F2;
}
.head_contact i {
  color: #fff;
  margin-right: 10px;
}
#main_head {
  width: 100%;
  position: relative;
}
.head_contact ul, .social_media ul {
    margin: 0;
    padding: 0;
}
.navbar-brand{height: auto !important}
/*logo*/
.navbar-brand > img { 
  max-height: 60px;
   }


/*news header*/
.fixed-top .news .i_ls_8 {
    display: none;
}
.fixed-top .news .news_sticky_menu_bar {
    width: 75%;
    padding-top: 17px;
}


/* ---------------------------------------------------------
   4. Sub header
------------------------------------------------------------ */ 
.sub-header-default {
  margin-top: 150px;
}
.sub-header-title-default {margin-top: 0}
.sub-header, .sub-header-blog,
.sub-header-service, .sub-header-project, 
.sub-header-engineer, .sub-header-shop {
  padding: 180px 0 90px;
}
.sub-header-title {
    padding-top: 50px;
    margin: 0;
    font-size: 30px;
    /*text-transform: uppercase;*/
    font-weight: 700;
    color: #00BCD4;
    text-align: center;
}
/* ---------------------------------------------------------
   5. Breadcrumbs
------------------------------------------------------------ */ 
.breadcrumbs {
    text-align: center;
    padding-top: 15px;
}
.breadcrumbs a {
    color: #fff;
}
span.sep {
  color: #888;
  padding: 0 5px;
}
.breadcrumbs a:hover {
    color: #00BCD4;
}
/* ---------------------------------------------------------
   6. Menu
------------------------------------------------------------ */ 
.navbar-toggle {margin: 20px 0 !important;}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
     background-color: transparent !important; 
}
.navbar-default .navbar-toggle {
    border-color: #00cee6 !important;
    border-radius: 0 !important;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #333 !important;
}

.navbar-default .navbar-nav > li > a {text-transform: uppercase;}
.navbar-default {
  background-color: transparent !important;
  border: none !important;
}
.navbar-default .navbar-nav > li:first-child a {
    padding-left: 0;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    background: transparent !important;
}
.dropdown-menu {
  border-radius: 0 !important;
  padding: 0 !important;
}
.dropdown-menu > li > a {
    padding: 10px 20px !important;
    font-size: 13px;
}
.dropdown-menu > li {
  border-bottom: 1px solid #f1f1f1;
}
@media(min-width: 991px) {
.navbar-nav > li > a {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}
.news .navbar-nav > li > a {
    padding-top: 15px !important;
    padding-bottom: 18px !important;
}
}
.navbar {margin-bottom: 0 !important}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
  background: transparent !important
}
.navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
  background: transparent !important
}
/* 3rd level */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
      }
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu>.dropdown-menu {
    top: 0 !important;
    left: 100% !important;
    margin-top: -1px !important;
    margin-left: 1px !important;
}
.dropdown-submenu {
    position: relative !important;
}
.dropdown-submenu.pull-left {
    float: none !important;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100% !important;
}
.no-menu {
  padding: 22px 0;
  color: #222;
}
/*top menu*/
.top_menu {
    float: right;
    list-style: none;
    margin:0;
}
.top_menu > li {
    display: inline-block;
    padding: 8px;
}

/*footer menu*/
.footer-menu {
    float: right;
    list-style: none;
    margin:0;
}
.footer-menu li {
    padding-right: 10px;
    display: inline-block;
}
.footer-menu li:last-child {
  padding-right: 0;
}
.footer-menu li:after {
    content: '/';
    padding-left: 10px;
}
.footer-menu li:last-child:after {
  content: '';
}

/*Mega Menu*/
@-webkit-keyframes menuEffect {
  0% {
    opacity:0;
    top:calc(100% + 20px);
  }
  100% {
    opacity:1;
    top:100%;
  }
}
@keyframes menuEffect {
  0% {
    opacity:0;
    top:calc(100% + 20px);
  }
  100% {
    opacity:1;
    top:100%;
  }
}
@-webkit-keyframes menuEffectSub {
  0% {
    opacity:0;
    top:20px;
  }
  100% {
    opacity:1;
    top:0;
  }
}
@keyframes menuEffectSub {
  0% {
    opacity:0;
    top:20px;
  }
  100% {
    opacity:1;
    top:0;
  }
}
.bddex-hamburger {
  -wekbit-transition:all 0.4s;
  -moz-transition:all 0.4s;
  -o-transition:all 0.4s;
  transition:all 0.4s;
  top:25px;
  display:none;
  position:absolute;
  top:50%;
  right:15px;
  background:transparent;
  border:0;
  width:22px;
  height:16px;
  padding:0;
  cursor:pointer;
  z-index:999;
  overflow:hidden;
  transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
  -moz-transform:translateY(-50%);
  -ms-transform:translateY(-50%);
  -o-transform:translateY(-50%);
}
.bddex-hamburger:before, .bddex-hamburger:after, .bddex-hamburger span {
  -wekbit-transition:all 0.4s;
  -moz-transition:all 0.4s;
  -o-transition:all 0.4s;
  transition:all 0.4s;
  background:#ffffff;
}
.bddex-hamburger:before, .bddex-hamburger:after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  height:2px;
  width:100%;
}
.bddex-hamburger:after {
  top:auto;
  bottom:0;
}
.bddex-hamburger span {
  position:absolute;
  width:100%;
  height:2px;
  left:0;
  top:50%;
  transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
  -moz-transform:translateY(-50%);
  -ms-transform:translateY(-50%);
  -o-transform:translateY(-50%);
}
.bddex-hamburger:hover:before, .bddex-hamburger:hover:after, .bddex-hamburger:hover span { background:#fb383b; }
.bddex-hamburger.active span { display:none; }
.bddex-hamburger.active:before {
  top:7px;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  transform:rotate(45deg);
}
.bddex-hamburger.active:after {
  bottom:7px;
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  -o-transform:rotate(-45deg);
  -ms-transform:rotate(-45deg);
  transform:rotate(-45deg);
}
@media (max-width: 991px) {
  .bddex-hamburger { display:block; }
}
.bddex-hamburger::before, .bddex-hamburger::after, .bddex-hamburger span { background:#333; }
.bddex-hamburger:hover:before, .bddex-hamburger:hover:after, .bddex-hamburger:hover span { background:#fb383b; }
{
  -wekbit-transition:all 0.4s;
  -moz-transition:all 0.4s;
  -o-transition:all 0.4s;
  transition:all 0.4s;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bddex-menu-list > ul > li > a { min-width:70px !important; }
  
}
@media (min-width: 1599px) and (max-width: 3500px) {
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 { width:1136px !important; }
}
@media (min-width: 992px) {
 
  .bddex-menu-list > ul {
    margin:0;
    padding:0;
    float: right;
  }
.news .bddex-menu-list > ul {
  float: left;
}  
  .bddex-menu-list > ul > li {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:inline-block;
    list-style:none;
  }
  .bddex-menu-list > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    position:relative;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    display:inline-block;
    text-align:center;
    padding:0 10px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item {
    /*Dropdown style*/
    position:relative;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:100%;
    left:0;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.menu-item-has-children > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.page_item_has_children > a { position:relative; }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.menu-item-has-children > a:after, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.page_item_has_children > a:after {
    content:"\f105";
    font-family:FontAwesome;
    position:absolute;
    margin-left:5px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li:hover > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.current-menu-item > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li.current_page_item > a { background:#313131; }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:0;
    left:100%;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
    box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li:hover > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li.current-menu-item > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li > ul > li.current_page_item > a { background:#313131; }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item > ul > li:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffectSub 0.4s both;
    -moz-animation:menuEffectSub 0.4s both;
    -o-animation:menuEffectSub 0.4s both;
    animation:menuEffectSub 0.4s both;
  }
  .bddex-menu-list > ul > li .bddex-dropdown-menu-item:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffect 0.4s both;
    -moz-animation:menuEffect 0.4s both;
    -o-animation:menuEffect 0.4s both;
    animation:menuEffect 0.4s both;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item {
    /*Dropdown style*/
    position:relative;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:100%;
    left:0;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.menu-item-has-children > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.page_item_has_children > a { position:relative; }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.menu-item-has-children > a:after, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.page_item_has_children > a:after {
    content:"\f105";
    font-family:FontAwesome;
    position:absolute;
    margin-left:5px;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li:hover > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.current-menu-item > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li.current_page_item > a { background:#313131; }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:0;
    left:100%;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
    box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li:hover > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li.current-menu-item > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li > ul > li.current_page_item > a { background:#313131; }
  .bddex-menu-list > ul > li.page_item_has_children.page_item > ul > li:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffectSub 0.4s both;
    -moz-animation:menuEffectSub 0.4s both;
    -o-animation:menuEffectSub 0.4s both;
    animation:menuEffectSub 0.4s both;
  }
  .bddex-menu-list > ul > li.page_item_has_children.page_item:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffect 0.4s both;
    -moz-animation:menuEffect 0.4s both;
    -o-animation:menuEffect 0.4s both;
    animation:menuEffect 0.4s both;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item {
    /*Dropdown style*/
    position:relative;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:100%;
    left:0;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
    box-shadow:0 0 20px 0 rgba(0,0,0,0.5);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.menu-item-has-children > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.page_item_has_children > a { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.menu-item-has-children > a:after, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.page_item_has_children > a:after {
    content:"\f105";
    font-family:FontAwesome;
    position:absolute;
    margin-left:5px;
  }
  /*.bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li:hover > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.current-menu-item > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li.current_page_item > a { background:#313131; }*/
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:0;
    left:100%;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:25px 0;
    z-index:-1;
    -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
    box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li {
    list-style:none;
    position:relative;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li > a > i { margin-right:5px; }
  /*.bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li:hover > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li.current-menu-item > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li.current-menu-ancestor > a, .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li > ul > li.current_page_item > a { background:#313131; }*/
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item > ul > li:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffectSub 0.4s both;
    -moz-animation:menuEffectSub 0.4s both;
    -o-animation:menuEffectSub 0.4s both;
    animation:menuEffectSub 0.4s both;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.nomega-menu-item:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffect 0.4s both;
    -moz-animation:menuEffect 0.4s both;
    -o-animation:menuEffect 0.4s both;
    animation:menuEffect 0.4s both;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul {
    display:none;
    background:#252525;
    position:absolute;
    top:100%;
    left:0;
    min-width:215px;
    text-align:left;
    margin:0;
    padding:0;
    z-index:-1;
    -webkit-box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
    box-shadow:0 0 10px 0 rgba(0,0,0,0.3);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li {
    list-style:none;
    position:relative;
    margin:25px 0;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:14px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:8px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 { width:420px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li { width:50%; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 { width:630px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li { width:33.3333%; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 { width:840px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li { width:25%; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 { padding:0; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li {
    list-style:none;
    float:left;
    padding:0 15px;
    border-right:1px solid rgba(255,255,255,0.1);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li:last-child, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li:last-child, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li:last-child { border-right:none; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > a, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > a, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:12px;
    font-weight:700;
    line-height:20px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:#b5b5b5;
    padding:5px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > a > i, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > a > i, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > a.hide_link, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > a.hide_link, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > a.hide_link { display:none; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul {
    margin:0;
    padding:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li {
    list-style:none;
    padding:3px 0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li > a {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:block;
    font-size:13px;
    font-weight:400;
    line-height:24px;
    letter-spacing:0.06em;
    color:#b5b5b5;
    padding:3px 15px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li > a > i, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li > a > i, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li > a > i { margin-right:5px; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li > a > sup, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li > a > sup, .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li > a > sup {
    font-size:8px;
    vertical-align:baseline;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li:hover > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns2 > li > ul > li.current-menu-ancestor > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li:hover > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns3 > li > ul > li.current-menu-ancestor > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li:hover > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul.columns4 > li > ul > li.current-menu-ancestor > a { 
    font-weight: 600; 
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li { list-style:none; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner {
    margin:0;
    padding:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap {
    position:relative;
    min-height:374px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap .bddex-overlay {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    opacity:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap .bddex-overlay > a {
    position:absolute;
    top:50%;
    left:50%;
    width:50px;
    height:50px;
    text-align:center;
    line-height:50px;
    color:#ffffff;
    background:#fb383b;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    -webkit-transform:translateX(-50%) translateY(-50%) scale(0.8) rotate(-90deg);
    -moz-transform:translateX(-50%) translateY(-50%) scale(0.8) rotate(-90deg);
    -o-transform:translateX(-50%) translateY(-50%) scale(0.8) rotate(-90deg);
    -ms-transform:translateX(-50%) translateY(-50%) scale(0.8) rotate(-90deg);
    transform:translateX(-50%) translateY(-50%) scale(0.8) rotate(-90deg);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap .bddex-overlay > a:hover {
    color:#fb383b;
    background:#ffffff;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap:hover .bddex-overlay { opacity:1; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li.bddex-banner .bddex-banner-wrap:hover .bddex-overlay > a {
    -webkit-transform:translateX(-50%) translateY(-50%) scale(1) rotate(0deg);
    -moz-transform:translateX(-50%) translateY(-50%) scale(1) rotate(0deg);
    -o-transform:translateX(-50%) translateY(-50%) scale(1) rotate(0deg);
    -ms-transform:translateX(-50%) translateY(-50%) scale(1) rotate(0deg);
    transform:translateX(-50%) translateY(-50%) scale(1) rotate(0deg);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget .wg-title {
    font-size:14px;
    line-height:32px;
    letter-spacing:0.08em;
    color:#b5b5b5;
    margin-bottom:0;
    padding:3px 0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li {
    list-style:none;
    margin-bottom:10px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li:last-child { margin-bottom:0; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > a { line-height:0; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > a img {
    float:left;
    width:55px;
    height:auto;
    margin-left:0;
    margin-right:10px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > a img:hover { opacity:0.8; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > a .product-title {
    display:inline-block;
    font-size:11px;
    font-weight:900;
    line-height:11px;
    letter-spacing:0.1em;
    color:#b5b5b5;
    max-width:110px;
    overflow:hidden;
    text-overflow:ellipsis;
    text-transform:uppercase;
    white-space:nowrap;
    margin-top:6px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > a .product-title:hover { color:#fb383b; }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li .amount {
    
    font-size:14px;
    font-weight:600;
    font-style:italic;
    line-height:14px;
    color:#ececec;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > del {
    font-size:14px;
    line-height:14px;
    color:#b5b5b5;
    margin-right:5px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > del .amount {
    font-size:14px;
    line-height:14px;
    color:#b5b5b5;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item > ul > li .widget.widget_products .product_list_widget > li > ins {
    font-size:16px;
    color:#ececec;
    text-decoration:none;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.mega-menu-item:hover > ul {
    display:block;
    z-index:999;
    -webkit-animation:menuEffect 0.4s both;
    -moz-animation:menuEffect 0.4s both;
    -o-animation:menuEffect 0.4s both;
    animation:menuEffect 0.4s both;
  }
  .bddex-menu-list > ul > li.menu-item-has-children.algleft { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children.algleft > ul { left:0; }
  .bddex-menu-list > ul > li.menu-item-has-children.algright { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children.algright > ul { right:0; }
  .bddex-menu-list > ul > li.menu-item-has-children.algcenter { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children.algcenter > ul {
    left:50%;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -o-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    transform:translateX(-50%);
  }
  .bddex-menu-list > ul > li.menu-item-has-children.fullwidth > ul {
    left:0;
  }
 
  
}
@media (max-width: 991px) {
  .bddex-menu-list {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    display:none;
    min-width:320px;
    background:#252525;
    margin:0;
    padding:10px 20px;
    position:absolute;
    top:0;
    right:0;
    z-index:999;
    border-bottom:2px solid #fb383b;
    -webkit-animation:fadeInUp 0.4s both;
    -moz-animation:fadeInUp 0.4s both;
    -o-animation:fadeInUp 0.4s both;
    animation:fadeInUp 0.4s both;
  }
  .bddex-menu-list.active-menu-mb { display:block; }
  .bddex-menu-list > ul {
    text-align:left;
    margin:0;
  }
  .bddex-menu-list > ul > li {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    list-style:none;
    position:relative;
    opacity:1 !important;
    border-top:1px solid rgba(255,255,255,0.1);
  }
  .bddex-menu-list > ul > li:first-child { border:none; }
  .bddex-menu-list > ul > li:hover > a, .bddex-menu-list > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.current-menu-ancestor > a { color:#fb383b !important; }
  .bddex-menu-list > ul > li > a {
    display:block;
    color:#ffffff !important;
    line-height:26.4px !important;
    text-transform:uppercase;
    white-space:nowrap;
    padding:10px 25px 10px 10px;
  }
  .bddex-menu-list > ul > li.menu-item-has-children { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul {
    display:none;
    background:none !important;
    margin:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li {
    list-style:none;
    position:relative;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li:hover > a, 
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.current-menu-ancestor > a { color:#fb383b !important; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li a {
    display:block;
    white-space:nowrap;
    padding:10px 25px 10px 15px;
    border-top:1px solid rgba(255,255,255,0.1);
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children { position:relative; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul {
    display:none;
    margin:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul > li {
    list-style:none;
    position:relative;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul > li:hover > a, 
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul > li.current-menu-item > a, 
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul > li.current-menu-ancestor > a { color:#fb383b !important; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul > li a {
    display:block;
    padding:10px;
    padding:10px 25px 10px 30px;
    border-top:1px solid rgba(255,255,255,0.1);
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon {
    position:absolute;
    top:0;
    right:0;
    width:25px;
    height:35px;
    font-size:8px;
    font-weight:400;
    padding:0;
    border:none;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon:before {
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    content:"\f067";
    font-family:FontAwesome;
    color:#b5b5b5;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon:before:before, 
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon:before:after {
    content:" ";
    display:table;
  }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon:before:after { clear:both; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon.open:before { content:"\f068"; }
  .bddex-menu-list > ul > li.menu-item-has-children > ul > li.menu-item-has-children .mb-dropdown-icon:hover:before { color:#fb383b; }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon {
    position:absolute;
    top:0;
    right:0;
    width:22px;
    height:47px;
    font-size:10px;
    font-weight:400;
    padding:0;
  }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon:before {
    -wekbit-transition:all 0.4s;
    -moz-transition:all 0.4s;
    -o-transition:all 0.4s;
    transition:all 0.4s;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    content:"\f067";
    font-family:FontAwesome;
    color:#ffffff;
  }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon:before:before, 
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon:before:after {
    content:" ";
    display:table;
  }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon:before:after { clear:both; }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon.open:before { content:"\f068"; }
  .bddex-menu-list > ul > li.menu-item-has-children .mb-dropdown-icon:hover:before { color:#fb383b; }
 
}

/*mega menu widget*/
.nomega-menu-item .rpthumb {
    margin-right: 10px;
    float: left;
}
.nomega-menu-item .rpthumb img {
    max-width: 50px;
}

.nomega-menu-item .rpt a {
    color: #f5f5f5;
    font-family: inherit;
    line-height: 1.3;
    font-size: 12px;
}
.nomega-menu-item .widget-title {
    font-size: 14px !important;
    line-height: 0px !important;
    font-weight: bold;
    padding-bottom: 10px;
    color: #b5b5b5;
}
/* ---------------------------------------------------------
    Cart
------------------------------------------------------------ */ 
.woo_cart {
    float: right;
    padding: 0px 10px 0 30px;
    margin: 28px 0;
}
.news .woo_cart{margin-top:15px;margin-bottom: 10px}
.fixed-top .woo_cart {
    display: none;
}
/* ---------------------------------------------------------
   7. Search
------------------------------------------------------------ */ 
#main_head .search-form {
  background: #F2F2F2;
  position: absolute;
  width: 100%;
  z-index: 1;
  animation-name:slideInUp;
  animation-fill-mode: both;
  top:-150px;
  transition: all 0.3s ease-in-out;
}
#main_head .search-form.visible{
  animation-name:slideInDown;
  transition: all 0.3s ease-in-out;
  animation-fill-mode: both;
  top:0
}
.search-box input{
  width:100%;
  height:82px;
  font-size: 18px;
  border: none;
  text-align: center;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
}
.fixed-header .search-box input{
  height: 80px
}
.search-box{
  position:relative
}
.search-box > .search-close {
  border: 2px solid;
  cursor: pointer;
  line-height: 12px;
  padding: 5px 7px;
  position: absolute;
  right: 15px;
  top: 35%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}
.search-box > .search-close:hover {
  color: #00BCD4;
}
.search-icon {
    float: right;
    padding: 0px 5px 0px 25px;
    margin: 29px 0;
    list-style: none;
}
.news .search-icon{margin-top:15px;margin-bottom: 10px; padding-right: 15px;}
.news {
    -webkit-box-shadow: 0px 5px 12px -2px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 12px -2px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 12px -2px rgba(0,0,0,0.1);
}
.search-icon i {
    font-size: 18px;
}
.search-icon a:hover{
  color: #00BCD4;
}
.search-field{
    display: table-cell;
    width: 100%;
}
.search-field input {
    width: 100%;
    border-right: 0;
    border-left: 1px;
    border-top: 1px;
    border-bottom: 1px;
    border-style: solid;
    border-color: #ccc;
    padding: 7px 12px;
}
.search-button {
    display: table-cell;
    padding: 5px 10px;
    background: #fff;
    border-left: 0;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.search-form button{
    border: none;
    background: transparent;
    }  
.search-form button:hover {
    color: #00BCD4;
}
.search-form button i:before {
    font-size: 17px;
  }
.s-f button{
    border: none;
    background: transparent;
} 
/* ---------------------------------------------------------
   Page Template
------------------------------------------------------------ */ 
.page-template-no-header-footer #header,
.page-template-no-header-footer .footer {
  display: none;
}
/* ---------------------------------------------------------
   9. Social Media
------------------------------------------------------------ */ 
.social_media {
    float: right;
}
#footer .social_media {
    margin-top: -10px;
}
.social li {
  display: inline-block; 
  margin: 8px;
}
.social li:first-child {
    margin-left: 0;
}
.social > li:last-child {
    margin-right: 0;
}
.social-share {
    margin-top: 45px;
    background: #F7F8FA;
    padding: 10px 20px 30px;
}
.social-share h5{
    font-size: 20px;
    letter-spacing: .5px;
    color: #222;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 10px;
}
.social-share a {
    padding: 5px 11px;
    margin: 8px;
    font-size: 12px;
    display: inline-block;
}

.social-share i{
  font-size: 14px;
  padding-right: 5px;
}
a.ss-fb {
    margin-left: 0;
    background: #4267B2;
    color: #f1f1f1;
}
a.ss-fb:hover{
  color:white;
  background: #3B5C9F;
}
a.ss-tw {
    margin-left: 0;
    background: #1DA1F2;
    color: #f1f1f1;
}
a.ss-tw:hover{
  color:white;
  background: #0D95E8;
}
a.ss-gp {
    margin-left: 0;
    background: #DC4A38;
    color: #f1f1f1;
}
a.ss-gp:hover{
  color:white;
  background: #D53925;
}
a.ss-ln {
    margin-left: 0;
    background: #007BB5;
    color: #f1f1f1;
}
a.ss-ln:hover{
  color:white;
  background: #006A9C;
}
a.ss-pin {
    margin-left: 0;
    background: #EC2327;
    color: #f1f1f1;
}
a.ss-pin:hover{
  color:white;
  background: #E21418;
}
#footer-top .social li a {
    border: 1px solid white;
    padding: 2px 7px;
}
#footer-top .social li a:hover {
    opacity: .8;
}
#footer .social .fa{color: #d4d4d4;}
#footer .social .fa:hover{color: #fff;}

/* ---------------------------------------------------------
   10. Posts / Blog
------------------------------------------------------------ */ 
.page-header {margin-top: 0 !important}
.post.hentry {
    margin-bottom: 48px;
}
.sticky {
  display: block; 
    background: #F9FAFB; 
  padding: 20px; 
    padding-top: 1px;
}
.post-password-form input[type=password] {
    padding: 7px 10px;
    border: 1px solid #cbcbcb;
}
.post-password-form input[type=submit] {
    padding: 8px 40px;
    text-align: center;
    background-color: #00BCD4;
    color: #ffffff;
    border: 0;
    transition: all 0.2s ease-in-out 0s;
}
.post-password-form input[type=submit]:hover {
    background-color: #28292a;
}
h1.entry-title, h1.entry-title a {
    font-size: 20px;
    line-height: 30px;
    margin-top: 0;
    transition: all .3s linear;
}
.entry-header {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
}
h1.entry-title a:hover {
    transition: all .3s linear;
}
.entry-meta {margin: 0 0 5px;}
.entry-footer {
  margin-top: 15px; 
  display: inline-block;
}
.post-time, .nickname, .post-category {
    margin-right: 20px;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-size: 12px;
}
.comments-link, .post-tag {letter-spacing: .5px;font-size: 12px}
.nickname a {
    color: #777;
}
h1.page-title {
    color: #222;
    font-weight: 600;
    margin-top: 0;
}
.content-top-20 {
    padding-top: 20px;
  }
  .single-content {
    padding-top: 20px;
}
.details-box {
    position: relative;
    min-height: 19.0625rem;
    background-color: #F7F8FA;
    padding: .9375rem 1.5625rem 1.875rem;
    border-bottom: 1px solid #efefef;
    z-index: auto;
    box-shadow: 0 0 15px 0 rgba(43, 43, 43, 0.02);
    transition: box-shadow .3s linear;
    text-align: center;
}
.blog-cols {
    min-height: 580px;
}
.blog-cols:hover .details-box {
    box-shadow: 0 0 15px 0 rgba(0,0,0,.2);
    border-bottom: 2px solid #00BCD4;
}
.blog-cols:hover .details-box .post-title a {
    color: #00BCD4;
    transition: all .3s linear;
  }
 .blog-cols img {
  width: 100%;
 } 
.details-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.8125rem;
    z-index: -1;
    transition: box-shadow .3s linear;
}
.blog-cols:hover .post-title a {
    color: #FAB702;
    transition: all .3s linear;
}
.blog-cols:hover .zoom-thumb img{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.details-box .post-title a {
    color: #111;
}
.page-template-blog article:hover .zoom-thumb img{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.page-template-blog article:hover .entry-title a {
  color: #00BCD4;
   transition: all .3s linear;
}

.page-template-blog-three-cols .entry-meta .post-time i,
.page-template-blog-two-cols-left-sidebar .entry-meta .post-time i,
.page-template-blog-two-cols-right-sidebar .entry-meta .post-time i
 {
  color:white;
}
.blog-cols:hover .details-box .post-time{background: #00BCD4;}
.details-box .post-time {
    position: absolute;
    left: 50%;
    width: 190px;
    text-align: center;
    transform: translateX(-50%);
    top: -20px;
    background: #00BCD4;
    padding: 8px;
    color: white;
    border-radius: 20px;
}
.details-box .post-category,
.details-box .comments-link {
    font-size: 13px;
    margin-right: 10px;
}
.details-box .post-category a,
.details-box .comments-link a {
    color: #aaa;
}
.post .post-category a,
.post .comments-link a,
.post .post-tag a {
    color: #777;
}
.post .post-category a:hover,
.post .comments-link a:hover,
.post .post-tag a:hover {
    color: #222;
}
.details-box .post-category a:hover,
.details-box .comments-link a:hover {
    color: #222;
}
.details-box p{
    margin: 20px 0;
}
.col-lg-4.col-md-4.post:nth-child(3n+4) {
    clear: left;
}
.blog-cols .entry-meta {
    margin: 10px 0 5px;
    color: #aaa;
}
.blog-cols .post-title {
    margin: 5px 0;
    padding-top: 25px;
}
.entry-meta i, .entry-footer i {
    color: #00BCD4;
}
.blog-cols .entry-meta .comments-link {
   
}
.blog-cols .zoom-thumb {
    margin-bottom: 0;
}
.blog-cars .owl-nav {
    display: none !important;
}
.blog-cars .owl-dots .owl-dot.active span, 
.blog-cars .owl-dots .owl-dot:hover span {
    background: #233c75;
}
.blog-cars .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #d6d6d6;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    transition: opacity 200ms ease 0s;
    width: 10px;
}
.blog-cars .owl-dots .owl-dot {
    display: inline-block;
}
.blog-cars .owl-dots {
    display: block !important;
    text-align: center;
    /*margin-top: 20px;*/
}
.post-excerpts {
    margin-top: 20px;
}

.read-more{
  color: #00BCD4;
  text-transform: uppercase;
}
.read-more:hover{color:#3CE6FF}
.single-format-gallery .flexslider,
.category .flexslider,
.tag .flexslider {margin-bottom: 30px}
 .page-header{border:0;}
.archive .social-share{display: none}
/*post format video*/
.video_post_section{background: black;margin-bottom: 50px;}
.video_post_link {margin:0 auto;display: table}
/* ---------------------------------------------------------
   11. Related Posts
------------------------------------------------------------ */ 
.related-thumb img {
    border: 1px solid #d2d2d2;
    padding: 5px;
    margin: 0;
}
.related-thumb img:hover {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.related-loop {
    display: inline-flex;
}
/* ============================================================
    Tags
============================================================ */
.tagcloud a {
    padding: 6px 15px;
    margin: 2.5px 2px 2.5px 0;
    display: inline-block;
    background: transparent;
    font-size: 13px !important; 
    border: 1px solid #dddddd;
    color: #777777;
}
/* ---------------------------------------------------------
   12. Services
------------------------------------------------------------ */ 
.service-brochure {
    background: #F7F8FA;
    padding: 25px 25px 35px;
}
.service-brochure h4 {
    font-size: 18px;
    color: #00bcd4;
    font-weight: 600;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4d4d4;
}
.service-brochure h4:after {
    width: 60px;
    height: 3px;
    background: #00bcd4;
    position: absolute;
    top: 59px;
    left: 40px;
    content: '';
}
.service-brochure-desc {
  padding-top: 10px;
}
.brochure-img {
    margin: 15px 0 30px;
}
.btn-brochure {
    background: #8CC63F;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    letter-spacing: .5px;
    border: 2px solid #8CC63F;
}
.btn-brochure:hover {
  background: transparent;
  color: #8CC63F;
}
.btn-brochure i {
    margin-right: 5px;
}
.service h3 {
    padding-bottom: 10px;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}
.service h3 a {
    color: #233c75;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service h3 a:hover {
  color: #8CC63F;
}
.service .details {
    box-shadow: 0 0px 0px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.23);
    padding: 15px;  
}
.service .item {
  margin-bottom: 30px;
}
.service .item figcaption {
    opacity: 0;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
.service .item:hover figcaption {
    opacity: 1;
    transition: all .7s ease-in-out;
}  
.service .item:hover .details h3 a {
  color: #8CC63F;
}
.service .item .button {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 8px 12px;
    color: #f5f5f5;
    background: transparent;
    text-transform: uppercase;
    font-family: Roboto;
    border: 2px solid #f5f5f5;
    
}
.service .item .button:hover {
    background: transparent;
    color: #8CC63F;
    border: 2px solid #8CC63F;

}
.service .item:hover figure img {
   -webkit-filter: brightness(0.25);
   filter: brightness(0.25);
   transition: all .1s ease-in-out;
}

.service figure img{
  margin-bottom: 0;
}
.service-separate {
    margin: 50px 0;
    clear: both;
}

/* ----------------------------------------------------------
      13. Portfolio
------------------------------------------------------------ */

.portfolio_content {
  padding-top: 25px
}
.single-portfolio-item .flex-control-nav,
.single-format-gallery .flex-control-nav,
.category .flex-control-nav,
.portfolio-item-template-default .flex-control-nav { 
  bottom: 0;
  z-index: 99;
}
.portfolio-item.col-lg-3 { 
  padding: 10px;
  margin: 0;

}
.portfolio-item.col-lg-3 img {
    margin: 0;
}
.portfolio-terms {
    margin: 0 auto;
    padding-bottom: 10px;
    display: table;
}
.portfolio-items { font-size: 18px; }
.portfolio-items *:not(a) { 
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden; 
  padding:0;
}
.portfolio-items img{margin:0;}
.portfolio-items figure { 
  position: relative; 
  overflow: hidden; 
  text-align: center; 
}
.portfolio-items figure:hover figcaption:after { left: 0; }
.portfolio-items figure:hover figcaption h4 { right: 0; }
.portfolio-items figure:hover figcaption .button { bottom: 35%; }
.portfolio-items figcaption { 
  text-align: center; 
  position: absolute; 
  width: 100%; 
  height: 100%; 
  left: 0; 
  top: 0; 
  transition: .4s; 
}
.portfolio-items figcaption:after { 
  background-color: rgba(0,0,0,0.9); 
  content: ""; 
  height: 100%; 
  left: -100%; 
  opacity: 0.95; 
  position: absolute; 
  top: 0; 
  width: 100%; 
  transition: .4s; 
}
.portfolio-items figcaption h4 { 
  font-size: 16px; 
  position: absolute; 
  right: -100%; 
  bottom: 55%; 
  text-align: center; 
  padding: 0 15px; 
  color: #fff; 
  width: 100%; 
  z-index: 10; 
  transition: .4s; 
}
.portfolio-items figcaption .button { 
  position: absolute; 
  left: 50%; 
  bottom: -25%; 
  -webkit-transform: 
  translateX(-50%); 
  transform: translateX(-50%); 
  display: table; 
  font-size: 14px; 
  line-height: 1; 
  padding: 6px 12px; 
  border: 2px solid;
  color: #e5e5e5; 
  z-index: 10; 
  transition: .3s; 
}
.portfolio-terms button {
    font-size: 15px;
    line-height: 1;
    padding: 8px 16px;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: transparent;
    border: 1px solid #00BCD4;
    color: #00BCD4;
    display: inline-block;
    cursor: pointer;
}
.portfolio-terms button.active, .portfolio-terms button:hover, .portfolio-terms button:focus {
    border: 1px solid #00BCD4;
    background-color: #00BCD4;
    color: #ffffff;
}
a.button.details:hover{ color: #00BCD4}
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height;
     -moz-transition-property: height;
      -ms-transition-property: height;
       -o-transition-property: height;
          transition-property: height;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
/* ----------------------------------------------------------
       Single Portfolio
----------------------------------------------------------- */
.portfolio-content-right h2 {
  margin-top: 0; 
  margin-bottom: 20px;
}
.portfolio-content-right{padding-left: 40px}
.portfolio-content-right h2:after {
    content: '';
    display: block;
    clear: both;
    width: 80px;
    height: 3px;
    margin-top: 15px;
    background-color: #222;
}
.portfolio-meta{
  background: #F7F8FA;
  padding: 20px;
  margin-top: 30px
}
.portfolio-time, .portfolio-author, .portfolio-categories, .portfolio-url {
  padding: 5px 0;
}
.portfolio-time span {
  width: 100px; 
  font-weight: 600; 
  float: left;
}
.portfolio-author span {
  width: 100px; 
  font-weight: 600; 
  float: left;
}
.portfolio-categories span {
  width: 100px; 
  font-weight: 600; 
  float: left;
}
.portfolio-url span {
  width: 100px; 
  font-weight: 600; 
  float: left;
}
/* ---------------------------------------------------------
   Project carousel
------------------------------------------------------------ */ 


.project-carousel figure:hover figcaption { 
  opacity: 0.95;
  bottom: 0;
}
.project-carousel figure:hover figcaption h4 { right: 0; }
.project-carousel figure:hover figcaption .button { bottom: 35%; }
.project-carousel figcaption { 
  text-align: center; 
  position: absolute; 
  height: 100%; 
  width: 84%;
  bottom: -100%; 
  transition: .4s; 
  opacity: 0;
  background: #00bcd4;
}

.project-carousel figcaption h4 { 
  font-size: 14px; 
  line-height: 1.5;
  position: relative;
  top: 40%;
  transform: translateY(-50%);
  text-align: center; 
  padding: 0 10px;
}
.project-carousel figcaption h4 a{
  color: #fff;
}
.project-carousel figcaption h4 a:hover {
  color: #333;
}

/* owl carousel */
.project-carousel .owl-prev {
    position: absolute;
    left: -2px;
    top: 36%;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #fff;
    padding: 3px 8px;
}

.project-carousel .owl-next {
    position: absolute;
    top: 36%;
    right: -2px;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #fff;
    padding: 3px 8px;
}
.project-carousel .owl-prev:hover,.project-carousel .owl-next:hover {
  background: #222;
}
.project-carousel .owl-dots{display: none}
/* ---------------------------------------------------------
   14. Team
------------------------------------------------------------ */ 
.team figure { 
  position: relative; 
  overflow: hidden; 
  text-align: center; 
}
.page-template-team .team figure { 
  position: relative; 
  overflow: hidden; 
  text-align: center;
  margin:10px;
}

.team figure img{
  margin: 0;
  width: 100%;
}

.team figure:hover figcaption { 
  opacity: 0.95;
  bottom: 0;
}
.team figcaption { 
  text-align: center; 
  position: absolute; 
  height: 100%; 
  width: 100%;
  left: 0; 
  bottom: -100%; 
  transition: .4s; 
  opacity: 0;
}

.team figcaption h4 { 
  font-size: 16px; 
  position: relative; 
  top: 10%; 
  text-align: center; 
  letter-spacing: 1px;
  padding: 0 15px; 
  color: #fff; 
  font-weight: 600;
  width: 100%; 
  z-index: 10; 
  transition: .4s; 
  text-transform: uppercase;
}
/*.page-template-team .team figcaption h4{top:5%;}*/
.team figcaption h4 a{
  color: #222;
}
.team figcaption h4 a:hover {
  color: white;
}
.team .team-cat {
    position: relative;
    top: 6%;
}
/*.page-template-team .team .team-cat{margin-top:45px;}*/
.team .team-cat{
  color: #222;
}

.team .team-bio {
  color: #1b1b1b;
  padding: 5px 20px 25px;
  top: 9%;
  position: relative;
}
/*.page-template-team .team .team-bio{margin:0;}*/
.team .team-social {
    list-style: none;
    display: inline-flex;
    position: relative;
    padding-top: 30px;
}
.single-team .team-social li {
  margin: 5px;
  border-color:#fff;
}

.single-team .team-social li:hover{
  background: transparent;
  border-color: #333;
}
.single-team .team-social li:hover i{
  color:#333;
}
.single-team .team-social a {
  color: #fff;
  margin:0 5px;
}
.single-team .team-social i {
  color: #fff;
  font-size: 15px;
}
.team-single .team-social i:hover {
   color: #1b1b1b;
 }
.team-title {
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.team_profile {
    background: #00bcd4;
    display: block;
    padding: 25px 10px;
    margin: 0 auto;
    text-align: center;
}
.hire_me {
    text-align: center;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-size: 15px;
    padding: 5px 15px;
    border: 1px solid;
    margin: 0 auto;
    display: table;
    margin-bottom: 30px;
}
.team-social {
    list-style: none;
    display: inline-flex;
    padding: 0;
    padding-bottom: 5px;
    margin: 0 auto;
}
.team-social li {
    height: 30px;
    width: 30px;
    text-align: center;
    font-weight: 600;
    line-height: 30px;
    border: 1px solid #333;
    margin-right: 15px;
}
.team-social li:hover {
  border: 1px solid #fff;
  cursor: pointer;
  color: #fff;
}
.team-social li:hover i{color: #fff;}

.team-social i {
  color: #333 ;
}
.team-social li a i:hover {
  color: #fff;
}
.team-skills {
    padding: 25px 0;
}
.page-template-team-full-wide .bddex-pagination, 
.page-template-team .bddex-pagination {
    padding: 70px 0;
}
/*5 columns full wide*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/* ---------------------------------------------------------
   15. Comments
------------------------------------------------------------ */ 
.form-control {border-radius: 0 !important}
.form-control:focus {
    /*border-color: rgb(0, 188, 212) !important;*/
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.form-submit input[type="submit"] {
    background: #00BCD4;
    border: 2px solid #00BCD4;
    padding: 8px 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}
.form-submit input[type="submit"]:hover {
  background: transparent;
  border: 2px solid #00BCD4;
  color: #00BCD4;
}
.comment-author .avatar {
    margin-right: 12px;
    border: 1px solid #ddd;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 2px;
    border-radius: 100%;
}
.comment-details {
    overflow: hidden;
    zoom: 1;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}
.comment-date .edit-link {
    display: inline-block;
    float: none;
    margin-left: 0px;
    padding: 0;
}
.comment-date a {
    font-size: 11px;
    color: #777;
    margin-right: 10px;
}
.comment-date .edit-link a {
    display: block;
    background: #eee none repeat scroll 0 0;
    line-height: 20px;
    text-align: center;
    width: 32px;
}
.recentcomments a {color: #3a2d2d;}
.recentcomments a:hover {color: #00BCD4;}
/* ---------------------------------------------------------
   16. Widgets
------------------------------------------------------------ */ 
#footer-top {
  color: white;
  padding-top: 50px;
  padding-bottom: 75px;
}
.widget ul {
    padding-left: 0px;
    line-height: 33px;
    list-style: none;
}
.widget select {
    max-width: 100%;
    width: 100%;
    height: 40px;
    margin-top: 6px;
    color: #444;
    border: 2px solid #dadada;
}
.widget-title {text-transform: uppercase;}
#secondary .widget, #secondary_2 .widget {
    background: #F7F8FA;
    margin-bottom: 30px;
    padding: 20px;
}
.elementor .widget {
/*    background: #F7F8FA;
    padding: 20px;
*/    margin-bottom: 30px;
}

#secondary h2.widgettitle, #secondary h3.widget-title, #secondary_2 h3.widget-title {
    border-bottom: 3px solid #dadada;
    color: #5c5c5c;
    padding-bottom: 10px;
    margin-top: 0px;
    margin-bottom: 12px;
    position: relative;
}
.elementor h2.widgettitle, .elementor h3.widget-title, .elementor h3.widget-title {
    font-family: Montserrat;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.24s ease-in-out;
    -moz-transition: opacity 0.24s ease-in-out;
    transition: opacity 0.24s ease-in-out;
}
.elementor h2.widgettitle, .elementor h3.widget-title, .elementor h3.widget-title {
    border-bottom: 3px solid #dadada;
    color: #5c5c5c;
    padding-bottom: 10px;
    margin-top: 0px;
    margin-bottom: 12px;
    position: relative;
}
#secondary h2.widgettitle:after, #secondary h3.widget-title:after, #secondary_2 h3.widget-title:after {
    bottom: -3px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
    background: #00BCD4;
}
.elementor h2.widgettitle:after, .elementor h3.widget-title:after, .elementor h3.widget-title:after {
    bottom: -3px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 60px;
    background: #00BCD4;
}

li.cat-item {
    padding: 3px 0;
}
li.cat-item a {
    color: #2d2d2d;
}
li.cat-item a:hover {
    color: #00BCD4;
}
li.cat-item a:after {
    width: 80%;
    height: 1px;
    background: #e1e1e1;
    content: '';
    position: absolute;
    left: 35px;
    margin-top: 30px;
}
.elementor li.cat-item a:after {
    left: 0;
}
/* Recent post wiget */
.rpost {
    display: inline-flex;
    margin: 10px 0;
}


.rpthumb {
    margin-right: 10px;
}
.rpost:last-child {
    border: none !important;
}
#footer-top .rpthumb img {
   max-width: 70px;
}
.ft-ab {
  padding-top: 14px;
  padding-bottom: 0;
}
.ft-news {
  padding-top: 6px;
}
.rpthumb img {
        max-width: 75px !important;
}
.rpthumb img:hover {
  filter: brightness(.6);
  -webkit-filter: brightness(.6);
}
.rpd {
    font-size: 11px;
}
.rpd:before {
    font-family: Fontawesome;
    content: "\f017";
    margin-right: 3px;
    font-size: 10px;
}
.rpt a {
    color: #222;
    /*font-family: Roboto;*/
    line-height: 1.4;
    font-weight: 500;
    display: block;
}
#footer-top .rpt a {line-height: 1.3;font-size: 13px;font-weight:400; }
.rpt a:hover {
    color: #00BCD4;
}

/*Recent project widget*/
.recent_project_widget {
  display: inline-block;
  padding: 2.75px 1px;
}
.rprojw_thumb img{
  width: 80px
}
.rprojw_thumb img:hover {
  filter: brightness(.6);
  -webkit-filter: brightness(.6);
}
/* ---------------------------------------------------------
   17. Pagination
------------------------------------------------------------ */ 
.bddex-pagination {
    margin: 0 auto;
    display: table;
    padding-top: 50px;
}
.bddex-pagination span, .bddex-pagination a {
    padding: 7px 14px;
    margin: 0 4px;
}
.bddex-pagination span {
    background: #111;
    color: white;
}
.bddex-pagination a {
    background: #07DEFF;
    color: #fff;
}
.bddex-pagination a:hover {
    color: white;
    background: #111;
}
/* ---------------------------------------------------------
   18. Footer
------------------------------------------------------------ */ 
#footer {
   padding: 35px 0 20px;
   border-top: 1px solid;
}
#footer-top .menu li {
    line-height: 28px;
}
.ft-info i {margin-right: 8px}
.working-hours li i {
    color: #00BCD4;
    margin-right: 5px;
}
/* ---------------------------------------------------------
   19. Contact Form 7
------------------------------------------------------------ */ 
input.wpcf7-form-control.wpcf7-text {
    height: 45px;
    width: 100%;
    color: #909090;
    background: #fff;
    font-size: 13px;
    line-height: 26px;
    box-shadow: none;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 170px;
    color: #909090;
    background: #fff;
    font-size: 13px;
    line-height: 26px;
    box-shadow: none;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    text-transform: capitalize;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
input.wpcf7-form-control.wpcf7-submit {
  border: none;
  background-color: #00BCD4;
  font-size: 15px;
  padding: 7px 26px;
  color: #fff;
  font-weight: 600;
  float: left;
  border: 2px solid #00BCD4;
  margin-left: 15px;
  text-transform: uppercase;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
   transition: all 0.3s ease 0s;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: transparent;
  border: 2px solid #00BCD4;
  color: #00BCD4;
}
.footer input.wpcf7-form-control.wpcf7-text {
    height: 35px;
    width: 100%;
    color: #909090;
    background: transparent;
    font-size: 13px;
    line-height: 26px;
    box-shadow: none;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.footer textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 90px;
    color: #909090;
    background: transparent;
    font-size: 13px;
    line-height: 26px;
    box-shadow: none;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    text-transform: capitalize;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.footer input.wpcf7-form-control.wpcf7-submit {
    border: none;
    /*background-color: #00BCD4;*/
    font-size: 14px;
    padding: 4px 20px;
    letter-spacing: .5px;
    color: #fff;
    font-weight: 400;
    float: left;
    border: 2px solid transparent;
    margin-left: 15px;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    transition: all 0.3s ease 0s;
}
.space-10{margin-bottom: 10px}
.space-20 {
    margin-bottom: 20px;
}
.space-75 {
    margin-bottom: 75px;
}
.space-about {
  padding-top: 80px;
}
.elementor-editor-active .header {
  z-index: -1;
}
.elementor-editor-active .header.fixed-top {
    z-index: 999;
}
.elementor-element.elementor-element-bonrwh1 input.wpcf7-form-control.wpcf7-text,
.elementor-element.elementor-element-bonrwh1 textarea.wpcf7-form-control.wpcf7-textarea,
.elementor-element.elementor-element-bonrwh1 input.wpcf7-form-control.wpcf7-submit,
.elementor-editor-active .elementor.elementor-edit-mode .elementor-element.elementor-widget-empty {
  background: transparent !important;
}
.elementor-element.elementor-element-bonrwh1 input.wpcf7-form-control.wpcf7-text:focus,
.elementor-element.elementor-element-bonrwh1 textarea.wpcf7-form-control.wpcf7-textarea:focus{
  border: 1px solid #00BCD4;
}
.elementor-element.elementor-element-bonrwh1 input.wpcf7-form-control.wpcf7-submit {
    color: #e1e1e1;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #e1e1e1;
}
.elementor-element.elementor-element-bonrwh1 input.wpcf7-form-control.wpcf7-submit:hover {
  border: 1px solid #00BCD4;
  color: #00BCD4;
}
.elementor-icon-box-title{margin-top: 0}
/* get a price */
.wpcf7-form-control-wrap.cw-bed select,
.wpcf7-form-control-wrap.cw-bath select,
.wpcf7-form-control-wrap.cw-time select,
.wpcf7-form-control-wrap.cw-date input
 {
    height: 40px;
    width: 100%;
    border: 1px solid #e1e1e1;
    padding-left: 10px;
}
.gap-btn .wpcf7-form-control.wpcf7-submit {
    margin-top: 20px;
}
.cw-gap-frm {
    background: #EFF8E4;
    padding: 30px 9px;
    border-radius: 6px;
}
.unstyled::-webkit-inner-spin-button
{
    display: none;
    -webkit-appearance: none;
}
/* get a price end*/
/* ---------------------------------------------------------
   20. Mailchimp
------------------------------------------------------------ */ 

.bddex-menu-list > ul .mc4wp-form input[type=email] {
    padding: 6px 10px;
    font-size: 13px;
    border: 1px solid #ccc;
}
.bddex-menu-list > ul .mc4wp-form input[type=submit] {
    margin-top: -38px;
    padding: 7px 18px;
}
.mc4wp-form input[type=email] {
    width: 100%;
    padding: 12px 15px;
    border: 0;
    font-size: 15px;
}
.footer .mc4wp-form input[type=email] {
    width: 100%;
    padding: 7px 15px;
    border: 0;
    font-size: 13px;
}
.mc4wp-form input[type=submit] {
    position: relative;
    margin-top: -48px;
    float: right;
    border: 0;
    background: #00bcd4;
    color: white;
    padding: 12px 20px;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    font-family: Open Sans;
    font-weight: 500;
    text-transform: uppercase;
}
.footer .mc4wp-form input[type=submit] {
    position: relative;
    margin-top: -38px;
    float: right;
    border: 0;
    background: #00bcd4;
    color: white;
    padding: 7px 14px;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    font-weight: 400;
}
.mc4wp-form input[type=submit]:hover {
    background: #9e9e9e;
    color: #f5f5f5;
}
/* ---------------------------------------------------------
   21. Error 404
------------------------------------------------------------ */ 
.error-404{
 text-align: center;
 margin-top: 200px;
 margin-bottom: 100px
}
.error-404 h1{
font-size: 100px;
    color: #222;
    font-weight: 700;
    width: 300px;
    height: 300px;
    line-height: 300px;
    border: 10px solid #222;
    border-radius: 50%;
    margin: 0 auto 60px auto;
}
.error-404 p{margin-bottom: 30px}

/* ---------------------------------------------------------
   22. Back to top
------------------------------------------------------------ */ 
#back_top.back_top {
    display: block;
    animation: bounceInUp 0.7s both;
}
#back_top {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 40px;
    height: 40px;
    border: 1px solid #1C1C1C;
    position: fixed;
    display: none;
    bottom: 50px;
    right: 30px;
    background-color: #FFFFFF;
    z-index: 992;
    text-align: center;
    font-size: 16px;
    line-height: 38px;
    outline: none;
    cursor: pointer;
}
#back_top:hover, #back_top:focus {
    color: #FFFFFF;
    background-color: #fb383b;
    border-color: #fb383b;
}
/* ---------------------------------------------------------
   23. Login / Register
------------------------------------------------------------ */ 
.bddex_login_register {
    display: none;
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.46);
    position: fixed;
    top: 200px;
    padding: 30px;
    width: 350px;
    z-index: 999;
    left: 50%;
    margin-left: -200px;
}

.bddex_login_register p.status{
    display: none;
}

.login_overlay{
    height: 100%;
    width: 100%;
    background-color: #F6F6F6;
    opacity: 0.9;
    position: fixed;
    z-index: 998;
}

.login_button {
    padding: 8px;
    float: right;
}

.bddex_login_register h2 {
    font-size: 22px;
    /* text-align: center; */
    padding-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
}
.bddex_close {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -1.52px;
    margin-right: -1px;
}
.bddex_lost{float: right;}
.bddex_login_register .status{}
.bddex_login_register input[type='text'], [type='password'] {
    padding: 7px 10px;
    width: 100%;
    border: 1px solid #cecece;
}
.bddex_login_register input.submit_button {
    border: none;
    font-size: 14px;
    padding: 8px 20px;
    letter-spacing: .5px;
    color: #fff;
    font-weight: 400;
    float: left;
    border: 2px solid transparent;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    transition: all 0.3s ease 0s;
}
.bddex_login_register input.submit_button:hover {
    background: transparent;
}

.bddex_login_register .no_acc {
    padding: 20px 0 10px;
}
.bddex_login_register .close {color:#f00;}
/* ---------------------------------------------------------
   24. Testimonial
------------------------------------------------------------ */ 
.client-left {
    float: left;
    width: 30%;
}
.client-left a {
    text-align: center;
    display: block;
}
.client a {
    text-align: center;
    display: block;
    padding-bottom: 10px;
}
.client-left img {
    border: 2px solid #8cc63f  !important;
    border-radius: 50% !important;
    width: 60px !important;
    margin: 0 auto;
}
.client img {
    width: 60px !important;
    border-radius: 50% !important;
    margin: 0 auto;
}
.client-feedback {
    float: left;
    width: 60%;
    background: #00cded;
    border-radius: 6px;
    padding: 15px;
    color: white;
}


.client-feedback:after {
    content: '';
    position: absolute;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #00cded;
    margin-left: -38px;
    top: 25px;
    transform: rotate(90deg);
}
.service_testimonial .client-feedback {
    border: 1px solid #ccc;
    padding: 15px;
    width: 100%;
    margin-top: 30px;
    min-height: 150px;
    background: transparent;
}
.service_testimonial .client-feedback:before {
    background: #f5f5f5 none repeat scroll 0 0;
    border-color: transparent transparent #ccc #ccc;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    content: "";
    display: block;
    height: 20px;
    left: 50%;
    position: relative;
    top: -25px;
    transform: rotate(135deg);
    width: 20px;
}
.service_testimonial .client-feedback:after {
    border:0;
    
  }
.testimonial .owl-nav{
    display: inline-flex;
    left: 56%;
    position: absolute;
    margin-top: 30px;
}
.testimonial .owl-prev {
    position: absolute;
    left: -96px;
    background: #00cded;
    color: #fff;
    padding: 5px 13px;
}
.testimonial .owl-prev:hover, .testimonial .owl-next:hover {
    background: #8cc63f;
    color: white;
}
.testimonial .owl-next {
    position: absolute;
    right: 27px;
    background: #00cded;
    color: #fff;
    padding: 5px 13px;
}

.testimonial {
  margin-top: 45px;
}
.client-name {
    margin: 10px 0 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}
.service_testimonial .client-name,
.service_testimonial .client-feedback p {
    color: #555;
}

.service_testimonial .owl-nav {display: none}
.service_testimonial .owl-dots .owl-dot.active span, 
.service_testimonial .owl-dots .owl-dot:hover span {
    background: #888;
}
.service_testimonial .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #d6d6d6;
    border-radius: 30px;
    display: block;
    height: 10px;
    margin: 5px 7px;
    transition: opacity 200ms ease 0s;
    width: 10px;
}
.service_testimonial .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
}
.service_testimonial .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 20px;
}
.client-title {
    font-size: 18px;
    color: #00bcd4;
    font-weight: 600;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4d4d4;

}

.client-title:after {
    content: '';
    background: #00bcd4;
    width: 60px;
    height: 3px;
    position: absolute;
    left: 40px;
    margin-top: 32px;
}

/* ---------------------------------------------------------
   News ticker / Trending
------------------------------------------------------------ */ 
.bddex_news_ticker {
    width: 88% !important;
    float: left;
    padding-left: 20px;
    height: 35px;
}

.bddex_news_ticker .owl-nav {
    position: absolute;
    right: 0;
    top: 0;
}

.bddex_news_ticker .owl-nav .owl-prev {
    left: -75px;
    position: absolute;
}
.bddex_news_ticker .owl-nav .owl-next {
    right: 18px;
    position: absolute;
}
.bddex_news_ticker .owl-nav .owl-prev i,
.bddex_news_ticker .owl-nav .owl-next i {
    margin: 0;
    background: none;
    border: 1px solid #dedede;
    color: #999;
    width: 20px;
    height: 20px;
    line-height: 18px;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
    cursor: pointer;
    z-index: 2;
}
.bddex_news_ticker .owl-nav .owl-prev i:hover,
.bddex_news_ticker .owl-nav .owl-next i:hover{
border: 1px solid transparent;
    color: #FFF;
    background: #EC0000;
}
.bddex_news_ticker_main {
    padding-left: 2.5%;
}
.bddex_news_ticker_bar {
    background: #EC0000;
    width: 100px;
    padding: 2.3px;
    font-size: 13px;
    text-align: center;
    color: white;
    font-weight: 500;
    float: left;
}
.bddex_news_ticker_bar:after {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(187,0,0,0);
    border-left-color: #ec0000;
    border-width: 14.8px;
    margin-top: -2.5px;
    margin-left: 15px;
    z-index: 1;
    border-left-width: 14px;
}
.bddex_news_ticker_bar:before {
    content: '\f0e7';
    font-family: Fontawesome;
    padding-right: 5px;
}
.news-ticker-title {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 2px 0;
    position: relative;
    margin: 0;
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 
.i_ls_4 {
    width: 33.33333333% !important;
}
.i_ls_8 {
    width: 66.66666667% !important;
}
}

/*date*/
.bddex-date {
    margin: 8px;
    color: white;
    width: 25%;
    float: left;
}
.bddex-date i {
    margin-right: 3px;
}
/*phone email*/
.phone_email {
  width: 70%;
  float: left;
}
.phone_email i {
  margin-right: 7px;
}
/* ---------------------------------------------------------
   Ads
------------------------------------------------------------ */ 
/*header ads*/
.head_ads {
  height: 90px;
  width: 728px;
  float: right;
}
.head_ads img{max-height: 90px;max-width: 728px}

/*single post content ads 300x250*/
.ad_300_250 {
    float: left;
    padding: 5px 20px 5px 0;
}

/* ---------------------------------------------------------
  Author template
------------------------------------------------------------ */ 
@media (max-width: 991px) {
.single .site-main{padding: 0 10px;}
}
.profile_left_sec {
    padding: 25px;
    border: 1px solid #e8e8e8;
}
.author_bio_sec {
    padding: 25px;
    display: inline-block;
    border: 1px solid #e6e6e6;
}
.single-format-gallery .author_bio_sec,
.single-format-video .author_bio_sec{margin:25px 0 25px 25px;}
.author_bio_sec .author_pic {
    width: 15%;
    float: left;
}
.author_bio_sec .author_pic img{
  width: 100px;
}
.author_bio_sec .profile_info{
  float: right;
  width: 83%;
}
.profile_name {
    font-size: 18px;
    text-transform: capitalize;
    padding: 15px 0 0px;
    color: #555;
}
.author_bio_sec .profile_name {padding: 0px;}
.profile_address {
    color: #777;
    font-family: 'Open Sans';
    font-size: 13px;
}
.profile_url {
    font-size: 13px;
    font-family: 'Open Sans';
    font-style: oblique;
}
.profile_description {
    padding: 10px 0;
}
.social_profile a {
    padding: 10px;
}
.social_profile .profile_link_fb{padding-left:0;}

/* ---------------------------------------------------------
   EOF
------------------------------------------------------------ */ 


