@charset "UTF-8";
html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

/* --------------------------------- Accordion Widget ------------------------------ */
.lae-accordion {
  clear: both; }
  .lae-accordion .lae-panel-title {
    display: block;
    cursor: pointer; }
  .lae-accordion .lae-panel-content {
    display: none;
    overflow: hidden; }

.lae-accordion-style1 .lae-panel .lae-panel-title, .lae-accordion-style3 .lae-panel .lae-panel-title {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }
  .lae-accordion-style1 .lae-panel .lae-panel-title:after, .lae-accordion-style3 .lae-panel .lae-panel-title:after {
    font-family: 'lae-icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    content: "\e912";
    right: 30px;
    top: 50%;
    margin-top: -8px;
    font-size: 14px;
    line-height: 1;
    color: #666;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
.lae-accordion-style1 .lae-panel.lae-active .lae-panel-title:after, .lae-accordion-style3 .lae-panel.lae-active .lae-panel-title:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.lae-accordion-style2 .lae-panel .lae-panel-title {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }
  .lae-accordion-style2 .lae-panel .lae-panel-title:after {
    font-family: 'lae-icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -9px;
    content: "\e913";
    color: #999;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
    transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
.lae-accordion-style2 .lae-panel.lae-active .lae-panel-title:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

/* ----- Style 1 ------ */
.lae-accordion-style1 .lae-panel {
  margin: 20px 0 0;
  background: #eee;
  border-radius: 5px;
  overflow: hidden; }
  .lae-accordion-style1 .lae-panel .lae-panel-title {
    position: relative;
    display: block;
    padding: 20px 50px 20px 30px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: bold;
    color: #666;
    margin: 0; }
  .lae-accordion-style1 .lae-panel .lae-panel-content {
    background: #f8f8f8;
    padding: 30px 30px; }
  .lae-accordion-style1 .lae-panel:hover .lae-panel-title {
    background: #e2e2e2; }
  .lae-accordion-style1 .lae-panel.lae-active .lae-panel-title {
    color: #333;
    background: #e2e2e2; }
  .lae-accordion-style1 .lae-panel.lae-active .lae-panel-title:after {
    color: #333; }

/* ----- Style 2 ------ */
.lae-accordion-style2 .lae-panel {
  margin: 20px 0 0;
  color: #333;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative; }
  .lae-accordion-style2 .lae-panel .lae-panel-title {
    position: relative;
    display: block;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    padding: 20px 50px 20px 30px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: bold;
    color: #666;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1; }
    .lae-accordion-style2 .lae-panel .lae-panel-title:before {
      position: absolute;
      content: "";
      left: 0;
      bottom: 0;
      height: 0;
      width: 100%;
      background: #4c5053;
      -webkit-transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
      transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: -1; }
  .lae-accordion-style2 .lae-panel .lae-panel-content {
    padding: 20px 30px;
    border-color: #dcdcdc;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 5px 5px; }
  .lae-accordion-style2 .lae-panel:hover .lae-panel-title, .lae-accordion-style2 .lae-panel:hover .lae-panel-title:after {
    color: #fff;
    border-color: #333; }
  .lae-accordion-style2 .lae-panel:hover .lae-panel-title:before {
    height: 100%; }
  .lae-accordion-style2 .lae-panel.lae-active .lae-panel-title {
    background: #4c5053;
    color: #fff;
    border-radius: 5px 5px 0 0;
    border-color: #333; }
  .lae-accordion-style2 .lae-panel.lae-active .lae-panel-title:after {
    color: #fff; }

.lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-title {
  color: #888;
  border-color: #404040; }
  .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-title:before {
    background: #e5e5e5; }
.lae-dark-bg .lae-accordion-style2 .lae-panel:hover .lae-panel-title {
  color: #333; }
.lae-dark-bg .lae-accordion-style2 .lae-panel:hover .lae-panel-title:after {
  color: #666; }
.lae-dark-bg .lae-accordion-style2 .lae-panel.lae-active .lae-panel-title {
  background: #e5e5e5;
  color: #333;
  border-color: #e5e5e5; }
.lae-dark-bg .lae-accordion-style2 .lae-panel.lae-active .lae-panel-title:after {
  color: #666; }
.lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content {
  border-color: #404040;
  color: #909090; }
  .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h1, .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h2, .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h3, .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h4, .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h5, .lae-dark-bg .lae-accordion-style2 .lae-panel .lae-panel-content h6 {
    color: #e5e5e5; }

/* ----- Style 3 ------ */
.lae-accordion-style3 .lae-panel {
  margin: 0;
  border-bottom: 1px solid #dcdcdc; }
  .lae-accordion-style3 .lae-panel:first-child {
    border-top: 1px solid #dcdcdc; }
  .lae-accordion-style3 .lae-panel .lae-panel-title {
    position: relative;
    display: block;
    padding: 20px 50px 20px 5px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
    margin: 0; }
  .lae-accordion-style3 .lae-panel .lae-panel-content {
    padding: 10px 50px 30px 5px; }
  .lae-accordion-style3 .lae-panel:hover .lae-panel-title {
    color: #333; }
  .lae-accordion-style3 .lae-panel.lae-active .lae-panel-title {
    color: #333; }
  .lae-accordion-style3 .lae-panel.lae-active .lae-panel-title:after {
    color: #333; }

.lae-dark-bg .lae-accordion-style3 .lae-panel {
  border-color: #404040; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-title {
    color: #b0b0b0; }
    .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-title:after {
      color: #888; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel:hover .lae-panel-title {
    color: #eaeaea; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel:hover .lae-panel-title:after {
    color: #aaa; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel.lae-active .lae-panel-title {
    color: #eaeaea; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel.lae-active .lae-panel-title:after {
    color: #aaa; }
  .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content {
    color: #909090; }
    .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h1, .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h2, .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h3, .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h4, .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h5, .lae-dark-bg .lae-accordion-style3 .lae-panel .lae-panel-content h6 {
      color: #e5e5e5; }

/* ------------------------------------------------ Tabs Widget ---------------------------------------------------- */
@keyframes lae-fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/* ---------- General tab styles ---------- */
.lae-tabs {
  clear: both;
  position: relative;
  overflow: hidden; }
  .lae-tabs .lae-tab-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start; }
    .lae-tabs .lae-tab-nav .lae-tab {
      text-align: center;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -moz-box-flex: 0;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto; }
      .lae-tabs .lae-tab-nav .lae-tab a {
        display: block;
        text-overflow: ellipsis;
        white-space: normal;
        padding: 20px 40px;
        text-decoration: none;
        border: none;
        margin: 0;
        outline: none;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -ms-transition: color 0.3s;
        transition: color 0.3s; }
        @media only screen and (max-width: 1024px) {
          .lae-tabs .lae-tab-nav .lae-tab a {
            padding: 20px 25px; } }
      .lae-tabs .lae-tab-nav .lae-tab span.lae-icon-wrapper span {
        font-size: 32px;
        font-weight: 400;
        vertical-align: middle;
        margin-right: 10px; }
      .lae-tabs .lae-tab-nav .lae-tab span.lae-image-wrapper img {
        max-width: 24px;
        display: inline-block;
        vertical-align: middle;
        height: auto;
        width: auto;
        padding: 0;
        margin: 0 10px 0 0;
        border: none; }
      .lae-tabs .lae-tab-nav .lae-tab span.lae-tab-title {
        font-size: 14px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px; }
  .lae-tabs .lae-tab-panes {
    position: relative; }
    .lae-tabs .lae-tab-panes .lae-tab-pane {
      padding: 40px;
      display: none;
      overflow: hidden; }
      .lae-tabs .lae-tab-panes .lae-tab-pane.lae-active {
        display: block;
        animation: lae-fade 0.3s ease-in-out; }

/* ----- Fallback for IE 8/9 ----- */
.lae-no-flexbox .lae-tab-nav {
  display: block; }
  .lae-no-flexbox .lae-tab-nav .lae-tab {
    min-width: 15%;
    display: inline-block; }

/* ------------- Vertical tab styles ----------------- */
.lae-tabs.lae-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }
  .lae-tabs.lae-vertical .lae-tab-nav {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start; }
  .lae-tabs.lae-vertical .lae-tab-panes {
    -webkit-box-flex: 4;
    -webkit-flex: 4 1 auto;
    -moz-box-flex: 4;
    -moz-flex: 4 1 auto;
    -ms-flex: 4 1 auto;
    flex: 4 1 auto; }
  .lae-tabs.lae-vertical.lae-mobile-layout {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

/* --------- Tab navigation in mobile ------------- */
.lae-tab-mobile-menu {
  display: none;
  /* Hide on desktop */
  position: absolute;
  top: 23px;
  right: 20px;
  background: transparent;
  border: none;
  z-index: 10; }
  .lae-tab-mobile-menu i {
    font-size: 18px;
    color: #777;
    font-weight: bold; }

.lae-tabs.lae-mobile-layout .lae-tab-mobile-menu {
  display: block;
  /* Show on mobile only */ }
.lae-tabs.lae-mobile-layout .lae-tab-nav {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer; }
  .lae-tabs.lae-mobile-layout .lae-tab-nav .lae-tab {
    text-align: center;
    display: none; }
    .lae-tabs.lae-mobile-layout .lae-tab-nav .lae-tab.lae-active {
      display: block; }
.lae-tabs.lae-mobile-layout.lae-mobile-open {
  /* Open all tab navs and change the expand menu button to close button */ }
  .lae-tabs.lae-mobile-layout.lae-mobile-open .lae-tab-nav .lae-tab {
    display: block; }
  .lae-tabs.lae-mobile-layout.lae-mobile-open .lae-tab-mobile-menu i:before {
    content: '\e911'; }

/* ------------- Style 1 ----------------- */
.lae-tabs-style1 .lae-tab-nav .lae-tab {
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #e2e2e2;
  background: #e9e9e9; }
  .lae-tabs-style1 .lae-tab-nav .lae-tab:first-child {
    border-left-color: transparent;
    border-radius: 5px 0 0 0; }
  .lae-tabs-style1 .lae-tab-nav .lae-tab:last-child {
    border-radius: 0 5px 0 0; }
  .lae-tabs-style1 .lae-tab-nav .lae-tab.lae-active {
    border-bottom: none;
    background: #f2f2f2; }
  .lae-tabs-style1 .lae-tab-nav .lae-tab a {
    color: #777; }
    .lae-tabs-style1 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style1 .lae-tab-nav .lae-tab a:focus {
      color: #333; }
  .lae-tabs-style1 .lae-tab-nav .lae-tab.lae-active a {
    color: #333; }
.lae-tabs-style1 .lae-tab-panes {
  background: #f2f2f2;
  border-radius: 0 4px 4px 4px; }

.lae-tabs-style1 .lae-mobile-layout:not(.lae-mobile-open) .lae-tab.lae-active {
  background: #eeeeee; }
.lae-tabs-style1 .lae-mobile-layout .lae-tab {
  border-left: none;
  border-bottom-color: #d9d9d9; }
  .lae-tabs-style1 .lae-mobile-layout .lae-tab:first-child {
    border-radius: 5px 5px 0 0; }
  .lae-tabs-style1 .lae-mobile-layout .lae-tab:last-child {
    border-radius: 0; }
.lae-tabs-style1 .lae-mobile-layout .lae-tab-panes {
  border-radius: 0; }

/* -------- Style 2 ----------- */
.lae-tabs-style2 .lae-tab-nav {
  background: #f2f2f2;
  border-radius: 5px 5px 0 0;
  padding: 0 30px; }
  .lae-tabs-style2 .lae-tab-nav .lae-tab {
    padding: 20px 10px;
    position: relative; }
    .lae-tabs-style2 .lae-tab-nav .lae-tab a {
      display: inline-block;
      padding: 5px 20px;
      border-radius: 34px;
      color: #666;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      .lae-tabs-style2 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style2 .lae-tab-nav .lae-tab a:focus {
        color: #888; }
    .lae-tabs-style2 .lae-tab-nav .lae-tab.lae-active:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 8px;
      margin: 0 auto;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid #3c3d41; }
    .lae-tabs-style2 .lae-tab-nav .lae-tab.lae-active a {
      background: #838d8f;
      color: #fff; }
.lae-tabs-style2 .lae-tab-panes {
  background: #3c3d41;
  border-radius: 0 0 5px 5px; }
  .lae-tabs-style2 .lae-tab-panes .lae-tab-pane {
    color: #838d8f; }
    .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h1, .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h2, .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h3, .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h4, .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h5, .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h6 {
      color: #fff; }

.lae-tabs-style2 .lae-mobile-layout .lae-tab-mobile-menu {
  top: 27px; }
.lae-tabs-style2 .lae-mobile-layout .lae-tab-nav {
  padding: 0; }
.lae-tabs-style2 .lae-mobile-layout.lae-mobile-open .lae-tab {
  border-bottom: 1px solid #e2e2e2; }
  .lae-tabs-style2 .lae-mobile-layout.lae-mobile-open .lae-tab:last-child {
    border-bottom: none; }
.lae-tabs-style2 .lae-mobile-layout.lae-mobile-open .lae-tab.lae-active:after {
  display: none; }

.lae-dark-bg .lae-tabs-style2 .lae-tab-nav .lae-tab a {
  color: #333; }
  .lae-dark-bg .lae-tabs-style2 .lae-tab-nav .lae-tab a:hover, .lae-dark-bg .lae-tabs-style2 .lae-tab-nav .lae-tab a:focus {
    color: #666; }
.lae-dark-bg .lae-tabs-style2 .lae-tab-nav .lae-tab.lae-active a {
  background: #aaa;
  color: #fff; }
.lae-dark-bg .lae-tabs-style2 .lae-tab-nav .lae-tab.lae-active:after {
  border-bottom: 8px solid #e7e7e7; }
.lae-dark-bg .lae-tabs-style2 .lae-tab-panes {
  background: #e7e7e7; }
  .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane {
    color: #666; }
    .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style2 .lae-tab-panes .lae-tab-pane h6 {
      color: #333; }

/* -------- Style 3 ----------- */
.lae-tabs-style3 .lae-tab-nav {
  background: #3c3d41;
  border-radius: 5px 5px 0 0; }
  .lae-tabs-style3 .lae-tab-nav .lae-tab {
    position: relative;
    border-right: 1px solid #4e4f53; }
    .lae-tabs-style3 .lae-tab-nav .lae-tab a {
      padding: 20px 30px;
      border-radius: 34px;
      color: #8f8e93;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      .lae-tabs-style3 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style3 .lae-tab-nav .lae-tab a:focus {
        color: #ccc; }
    .lae-tabs-style3 .lae-tab-nav .lae-tab.lae-active:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 8px;
      margin: 0 auto;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid #f2f2f2; }
    .lae-tabs-style3 .lae-tab-nav .lae-tab span.lae-icon-wrapper span, .lae-tabs-style3 .lae-tab-nav .lae-tab span.lae-image-wrapper img {
      margin: 0 auto; }
    /*.lae-tabs-style3 .lae-tab-nav .lae-tab span.lae-tab-title {
      display: none; }*/
    .lae-tabs-style3 .lae-tab-nav .lae-tab.lae-active a {
      color: #eeeeee; }
.lae-tabs-style3 .lae-tab-panes {
  background: #f2f2f2;
  border-radius: 0 0 5px 5px; }

.lae-tabs-style3 .lae-mobile-layout .lae-tab-nav {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-right: 60px; }
.lae-tabs-style3 .lae-mobile-layout.lae-mobile-open .lae-tab {
  border-bottom: 1px solid #4e4f53; }
  .lae-dark-bg .lae-tabs-style3 .lae-mobile-layout.lae-mobile-open .lae-tab {
    border-bottom-color: #e5e5e5; }
  .lae-tabs-style3 .lae-mobile-layout.lae-mobile-open .lae-tab.lae-active:after {
    display: none; }

.lae-dark-bg .lae-tabs-style3 .lae-tab-nav {
  background: #fff; }
  .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab {
    border-right: 1px solid #ececec; }
    .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab a {
      color: #969696; }
      .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab a:hover, .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab a:focus {
        color: #666; }
    .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab.lae-active a {
      color: #333; }
    .lae-dark-bg .lae-tabs-style3 .lae-tab-nav .lae-tab.lae-active:after {
      border-bottom: 8px solid #e7e7e7; }
.lae-dark-bg .lae-tabs-style3 .lae-tab-panes {
  background: #e7e7e7; }
  .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane {
    color: #666; }
    .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style3 .lae-tab-panes .lae-tab-pane h6 {
      color: #333; }

/* ----------- Style 4 --------------- */
.lae-tabs-style4 {
  background: #f2f2f2;
  border-radius: 5px; }
  .lae-tabs-style4 .lae-tab-nav {
    border-bottom: 1px solid #dddddd;
    margin: 0 40px; }
    .lae-tabs-style4 .lae-tab-nav .lae-tab {
      position: relative;
      z-index: 1;
      margin-right: 20px; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab:last-child {
        margin-right: 0; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab a {
        color: #888;
        padding: 30px 20px; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: transparent;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -ms-transition: background 0.3s;
        transition: background 0.3s; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab:hover a {
        color: #565656; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab.lae-active a {
        color: #333; }
      .lae-tabs-style4 .lae-tab-nav .lae-tab.lae-active:before {
        background: #f94213;
        height: 2px; }
  .lae-tabs-style4 .lae-tab-pane {
    padding: 40px; }

.lae-tabs-style4 .lae-mobile-layout .lae-tab-nav {
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none; }
  .lae-tabs-style4 .lae-mobile-layout .lae-tab-nav .lae-tab {
    margin: 0;
    border-bottom: 1px solid #e0e0e0; }
    .lae-dark-bg .lae-tabs-style4 .lae-mobile-layout .lae-tab-nav .lae-tab {
      border-left: 1px solid #404040;
      border-right: 1px solid #404040;
      border-bottom-color: #404040; }
    .lae-dark-bg .lae-tabs-style4 .lae-mobile-layout .lae-tab-nav .lae-tab:first-child {
      border-top: 1px solid #404040; }
    .lae-tabs-style4 .lae-mobile-layout .lae-tab-nav .lae-tab a {
      padding: 20px 25px; }
    .lae-tabs-style4 .lae-mobile-layout .lae-tab-nav .lae-tab:before {
      display: none; }
.lae-tabs-style4 .lae-mobile-layout.lae-mobile-open .lae-tab.lae-active {
  border-left: 2px solid #f94213;
  border-right: 2px solid #f94213; }
.lae-dark-bg .lae-tabs-style4 .lae-mobile-layout:not(.lae-mobile-open) .lae-tab.lae-active {
  border-top: 1px solid #404040; }

.lae-dark-bg .lae-tabs-style4 {
  background: transparent; }
  .lae-dark-bg .lae-tabs-style4 .lae-tab-nav {
    margin: 0;
    border-bottom: 1px solid #2a2a2a; }
    .lae-dark-bg .lae-tabs-style4 .lae-tab-nav .lae-tab a {
      color: #707070; }
    .lae-dark-bg .lae-tabs-style4 .lae-tab-nav .lae-tab:hover a {
      color: #b0b0b0; }
    .lae-dark-bg .lae-tabs-style4 .lae-tab-nav .lae-tab.lae-active a {
      color: #e5e5e5; }
  .lae-dark-bg .lae-tabs-style4 .lae-tab-pane {
    padding: 40px 0 0;
    color: #909090; }
    .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style4 .lae-tab-pane h6 {
      color: #e5e5e5; }

/* ----------- Style 5 --------------- */
.lae-tabs-style5 .lae-tab-nav a {
  padding: 20px 50px;
  color: #777;
  position: relative;
  z-index: 1; }
  .lae-tabs-style5 .lae-tab-nav a:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%; }
  .lae-tabs-style5 .lae-tab-nav a:hover, .lae-tabs-style5 .lae-tab-nav a:focus {
    color: #333; }
.lae-tabs-style5 .lae-tab-nav .lae-tab.lae-active a {
  color: #333; }
  .lae-tabs-style5 .lae-tab-nav .lae-tab.lae-active a:after {
    background-color: #f2f2f2;
    -webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(900px) rotate3d(1, 0, 0, 0deg); }
.lae-tabs-style5 .lae-tab-panes {
  background: #f2f2f2; }

.lae-tabs-style5 .lae-mobile-layout .lae-tab-nav .lae-tab {
  background: #f2f2f2;
  border-bottom: 1px solid #e5e5e5; }

.lae-dark-bg .lae-tabs-style5 .lae-tab-nav .lae-tab a {
  color: #b0b0b0; }
  .lae-dark-bg .lae-tabs-style5 .lae-tab-nav .lae-tab a:hover, .lae-dark-bg .lae-tabs-style5 .lae-tab-nav .lae-tab a:focus {
    color: #dddddd; }
.lae-dark-bg .lae-tabs-style5 .lae-tab-nav .lae-tab.lae-active a {
  color: #333; }

/* ------------- Style 6 and Vertical Style 7 ----------------- */
.lae-tabs-style6 .lae-tab-nav .lae-tab, .lae-tabs-style7 .lae-tab-nav .lae-tab {
  text-align: left; }
  .lae-tabs-style6 .lae-tab-nav .lae-tab a, .lae-tabs-style7 .lae-tab-nav .lae-tab a {
    padding: 5px 2px;
    color: #666;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    display: inline-block; }
    .lae-tabs-style6 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style6 .lae-tab-nav .lae-tab a:focus, .lae-tabs-style7 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style7 .lae-tab-nav .lae-tab a:focus {
      color: #333333; }
  .lae-tabs-style6 .lae-tab-nav .lae-tab.lae-active a, .lae-tabs-style7 .lae-tab-nav .lae-tab.lae-active a {
    border-color: #f94213;
    color: #333; }
.lae-tabs-style6 .lae-tab-pane, .lae-tabs-style7 .lae-tab-pane {
  padding: 40px 0 0; }

.lae-tabs-style6 .lae-tab-nav {
  margin: 0 auto;
  text-align: left; }
  .lae-tabs-style6 .lae-tab-nav .lae-tab {
    margin-right: 50px; }
    .lae-tabs-style6 .lae-tab-nav .lae-tab:last-child {
      margin-right: 0; }
.lae-tabs-style6 .lae-tab-pane {
  padding: 40px 0 0; }

.lae-tabs-style7 .lae-tab-nav .lae-tab {
  padding: 0 25px 0 0; }
  .lae-tabs-style7 .lae-tab-nav .lae-tab a {
    max-width: none;
    margin: 6px 0; }
    @media only screen and (max-width: 479px) {
      .lae-tabs-style7 .lae-tab-nav .lae-tab a {
        text-align: center; } }
.lae-tabs-style7 .lae-tab-panes {
  -webkit-box-flex: 6;
  -webkit-flex: 6 1 auto;
  -moz-box-flex: 6;
  -moz-flex: 6 1 auto;
  -ms-flex: 6 1 auto;
  flex: 6 1 auto; }
  .lae-tabs-style7 .lae-tab-panes .lae-tab-pane {
    padding: 0 0 0 20px; }

.lae-tabs-style6 .lae-mobile-layout .lae-tab-mobile-menu, .lae-tabs-style7 .lae-mobile-layout .lae-tab-mobile-menu {
  top: 22px; }
.lae-tabs-style6 .lae-mobile-layout .lae-tab-nav .lae-tab, .lae-tabs-style7 .lae-mobile-layout .lae-tab-nav .lae-tab {
  padding: 12px 0;
  width: 100%;
  text-align: center; }
  .lae-tabs-style6 .lae-mobile-layout .lae-tab-nav .lae-tab a, .lae-tabs-style7 .lae-mobile-layout .lae-tab-nav .lae-tab a {
    margin: 0; }
.lae-tabs-style6 .lae-mobile-layout .lae-tab-pane, .lae-tabs-style7 .lae-mobile-layout .lae-tab-pane {
  padding: 30px 0 0; }

.lae-dark-bg .lae-tabs-style6 .lae-tab-nav .lae-tab a, .lae-dark-bg .lae-tabs-style7 .lae-tab-nav .lae-tab a {
  color: #b0b0b0; }
.lae-dark-bg .lae-tabs-style6 .lae-tab-nav .lae-tab:hover a, .lae-dark-bg .lae-tabs-style7 .lae-tab-nav .lae-tab:hover a {
  color: #dddddd; }
.lae-dark-bg .lae-tabs-style6 .lae-tab-nav .lae-tab.lae-active a, .lae-dark-bg .lae-tabs-style7 .lae-tab-nav .lae-tab.lae-active a {
  color: #eaeaea; }
.lae-dark-bg .lae-tabs-style6 .lae-tab-pane, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane {
  color: #909090; }
  .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style6 .lae-tab-pane h6, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style7 .lae-tab-pane h6 {
    color: #e5e5e5; }

/* ------------- Vertical Style 8 ----------------- */
.lae-tabs-style8 .lae-tab-nav .lae-tab {
  margin: 2px 0; }
  .lae-tabs-style8 .lae-tab-nav .lae-tab a {
    padding: 15px 30px;
    border-radius: 4px;
    background: #f2f2f2;
    color: #777777;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    text-align: left; }
    .lae-tabs-style8 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style8 .lae-tab-nav .lae-tab a:focus {
      color: #333333; }
  .lae-tabs-style8 .lae-tab-nav .lae-tab.lae-active a {
    color: #333;
    border-left-color: #f94213; }
.lae-tabs-style8 .lae-tab-pane {
  padding: 0 0 0 40px; }

.lae-tabs-style8 .lae-mobile-layout .lae-tab-mobile-menu {
  top: 18px; }
.lae-tabs-style8 .lae-mobile-layout .lae-tab-nav .lae-tab a {
  text-align: left; }
.lae-tabs-style8 .lae-mobile-layout:not(.lae-mobile-open) .lae-tab.lae-active a {
  border-color: transparent !important; }
.lae-tabs-style8 .lae-mobile-layout .lae-tab-pane {
  padding: 30px 0 0; }

.lae-dark-bg .lae-tabs-style8 .lae-tab-pane {
  color: #909090; }
  .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style8 .lae-tab-pane h6 {
    color: #e5e5e5; }

/* ------------- Vertical Style 9 ----------------- */
.lae-tabs-style9 {
  background: #f2f2f2;
  border-radius: 5px; }
  .lae-tabs-style9 .lae-tab-nav {
    border-right: 1px solid #dddddd; }
    .lae-tabs-style9 .lae-tab-nav .lae-tab {
      border-bottom: 1px solid #d8d8d8;
      background: #e9e9e9; }
      .lae-tabs-style9 .lae-tab-nav .lae-tab.lae-active {
        margin-right: -1px;
        background: #f2f2f2; }
      .lae-tabs-style9 .lae-tab-nav .lae-tab a {
        padding: 20px 30px;
        color: #777; }
        .lae-tabs-style9 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style9 .lae-tab-nav .lae-tab a:focus {
          color: #333; }
      .lae-tabs-style9 .lae-tab-nav .lae-tab.lae-active a {
        color: #333; }
  .lae-tabs-style9 .lae-tab-panes {
    -webkit-box-flex: 5;
    -webkit-flex: 5 1 auto;
    -moz-box-flex: 5;
    -moz-flex: 5 1 auto;
    -ms-flex: 5 1 auto;
    flex: 5 1 auto; }

.lae-tabs-style9 .lae-mobile-layout .lae-tab-nav {
  border-right: none; }
.lae-tabs-style9 .lae-mobile-layout:not(.lae-mobile-open) .lae-tab.lae-active {
  background: #eeeeee;
  border: none; }

/* -------- Vertical Style 10 ----------- */
.lae-tabs-style10 .lae-tab-nav {
  background: #3c3d41;
  border-radius: 5px 0 0 5px; }
  .lae-tabs-style10 .lae-tab-nav .lae-tab {
    position: relative;
    border-bottom: 1px solid #4e4f53;
    padding: 0; }
    .lae-tabs-style10 .lae-tab-nav .lae-tab:last-child {
      border-bottom: none; }
    .lae-tabs-style10 .lae-tab-nav .lae-tab a {
      padding: 20px;
      color: #8f8e93;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      .lae-tabs-style10 .lae-tab-nav .lae-tab a:hover, .lae-tabs-style10 .lae-tab-nav .lae-tab a:focus {
        color: #ccc; }
    .lae-tabs-style10 .lae-tab-nav .lae-tab.lae-active:after {
      content: '';
      display: block;
      position: absolute;
      top: 32px;
      right: 0;
      height: 8px;
      margin: 0 auto;
      border-top: 8px solid transparent;
      border-right: 8px solid #f2f2f2;
      border-bottom: 8px solid transparent; }
    .lae-tabs-style10 .lae-tab-nav .lae-tab span.lae-icon-wrapper span, .lae-tabs-style10 .lae-tab-nav .lae-tab span.lae-image-wrapper {
      margin: 0 auto; }
    /*.lae-tabs-style10 .lae-tab-nav .lae-tab span.lae-tab-title {
      display: none; }*/
    .lae-tabs-style10 .lae-tab-nav .lae-tab.lae-active a {
      color: #fff; }
.lae-tabs-style10 .lae-tab-panes {
  background: #f2f2f2;
  border-radius: 0 5px 5px 0; }

.lae-tabs-style10 .lae-mobile-layout {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  .lae-tabs-style10 .lae-mobile-layout .lae-tab-mobile-menu {
    display: none; }
  .lae-tabs-style10 .lae-mobile-layout .lae-tab-nav .lae-tab {
    display: block; }

.lae-dark-bg .lae-tabs-style10 .lae-tab-nav {
  background: #fff; }
  .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab {
    border-bottom: 1px solid #ececec; }
    .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab:last-child {
      border-bottom: none; }
    .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab a {
      color: #969696; }
      .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab a:hover, .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab a:focus {
        color: #666; }
    .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab.lae-active a {
      color: #333; }
    .lae-dark-bg .lae-tabs-style10 .lae-tab-nav .lae-tab.lae-active:after {
      border-right: 8px solid #e7e7e7; }
.lae-dark-bg .lae-tabs-style10 .lae-tab-panes {
  background: #e7e7e7; }
  .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane {
    color: #666; }
    .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h1, .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h2, .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h3, .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h4, .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h5, .lae-dark-bg .lae-tabs-style10 .lae-tab-panes .lae-tab-pane h6 {
      color: #333; }

/* --------------------------------- Team Members --------------------------------------- */
.lae-team-members {
  clear: both; }
  .lae-team-members .lae-team-member .lae-social-list {
    margin-top: 20px; }
    .lae-team-members .lae-team-member .lae-social-list .lae-social-list-item {
      display: inline;
      margin: 0 15px 0 0; }
  .lae-team-members .lae-team-member .lae-team-member-details {
    font-size: 15px;
    line-height: 24px; }
  .lae-team-members .lae-team-member .lae-team-member-text .lae-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px; }
  .lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
    font-size: 15px;
    line-height: 24px;
    font-style: italic;
    color: #888;
    margin-bottom: 10px; }

/*-------- Style 1 ----------------*/
.lae-team-members-style1 .lae-team-member-wrapper {
  float: left;
  padding: 10px; }
.lae-team-members-style1 .lae-team-member {
  max-width: 320px;
  margin: 0 auto 40px; }
  .lae-team-members-style1 .lae-team-member .lae-image-wrapper {
    text-align: center;
    position: relative; }
    .lae-team-members-style1 .lae-team-member .lae-image-wrapper img {
      max-width: 100%;
      margin: 0 auto 30px;
      border-radius: 50%;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      -ms-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
    .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 40%;
      z-index: 2; }
      @media only screen and (max-width: 767px) {
        .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list {
          position: relative;
          top: 0; } }
      .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
        font-size: 26px;
        color: #fff;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
        .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
          color: #ccc; }
        @media only screen and (max-width: 767px) {
          .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i {
            color: inherit;
            opacity: 1; }
            .lae-team-members-style1 .lae-team-member .lae-image-wrapper .lae-social-list i:hover {
              color: inherit; } }
  .lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
    -webkit-filter: brightness(50%);
    -moz-filter: brightness(50%);
    -ms-filter: brightness(50%);
    filter: brightness(50%); }
    @media only screen and (max-width: 767px) {
      .lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper img {
        -webkit-filter: brightness(80%);
        -moz-filter: brightness(80%);
        -ms-filter: brightness(80%);
        filter: brightness(80%); } }
  .lae-team-members-style1 .lae-team-member:hover .lae-image-wrapper .lae-social-list i {
    opacity: 1; }
  .lae-team-members-style1 .lae-team-member .lae-team-member-text {
    text-align: center;
    max-width: 650px; }
    .lae-team-members-style1 .lae-team-member .lae-team-member-text .lae-title {
      margin-bottom: 10px; }
  .lae-team-members-style1 .lae-team-member .lae-social-list {
    margin: 10px auto; }

/*-------- Style 2 ----------------*/
.lae-team-members-style2 {
  position: relative;
  max-width: 960px; }
  .lae-team-members-style2 .lae-team-member-wrapper {
    clear: both;
    margin-top: 100px;
    /* Make that flip-flop possible */ }
    .lae-team-members-style2 .lae-team-member-wrapper:first-child {
      margin-top: 0; }
    .lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper {
      float: left;
      position: relative; }
      .lae-team-members-style2 .lae-team-member-wrapper .lae-image-wrapper img {
        max-width: 320px;
        border-radius: 50%;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
    .lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text {
      margin: 10px 0 0;
      vertical-align: middle;
      padding-top: 20px; }
      .lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-title {
        margin-bottom: 5px; }
      .lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-team-member-details {
        margin: 10px 0 10px; }
      .lae-team-members-style2 .lae-team-member-wrapper .lae-team-member-text .lae-social-list i {
        font-size: 24px; }
    .lae-team-members-style2 .lae-team-member-wrapper:hover .lae-image-wrapper img {
      -webkit-filter: brightness(80%);
      -moz-filter: brightness(80%);
      -ms-filter: brightness(80%);
      filter: brightness(80%); }
  .lae-team-members-style2 .lae-team-member-wrapper:nth-child(odd) .lae-image-wrapper {
    margin-right: 50px; }
  .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-image-wrapper {
    float: right;
    margin-left: 50px; }
  .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member-wrapper:nth-child(even) .lae-team-member-text .lae-social-list {
    text-align: right; }

@media only screen and (max-width: 767px) {
  .lae-team-members-style2 .lae-team-member-wrapper {
    margin-top: 75px; }
  .lae-team-members-style2 .lae-team-member .lae-image-wrapper, .lae-team-members-style2 .lae-team-member .lae-team-member-text {
    width: 100%;
    float: none; }
  .lae-team-members-style2 .lae-team-member .lae-image-wrapper {
    text-align: center; }
    .lae-team-members-style2 .lae-team-member .lae-image-wrapper img {
      margin: 0 auto 20px; }
  .lae-team-members-style2 .lae-team-member .lae-team-member-text {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 0; }
    .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-title, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-position, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-team-member-details, .lae-team-members-style2 .lae-team-member .lae-team-member-text .lae-social-list {
      text-align: center !important; } }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-details {
  color: #909090; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-title {
  color: #e5e5e5; }
.lae-dark-bg .lae-team-members .lae-team-member .lae-team-member-text .lae-team-member-position {
  color: #505050; }

/* ---------------------------------------- Testimonials --------------------------------------- */
.lae-testimonials {
  clear: both; }
  .lae-testimonials .lae-testimonial {
    margin-bottom: 50px; }
  .lae-testimonials .lae-testimonial-text {
    background: #ffffff;
    border: 1px solid #dbdbdb;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    padding: 20px 20px 0;
    margin-bottom: 40px;
    font-style: italic;
    font-size: 15px;
    line-height: 24px;
    color: #888;
    text-align: center;
    max-width: 450px; }
    .lae-dark-bg .lae-testimonials .lae-testimonial-text {
      color: #666;
      background: #eee; }
    .lae-testimonials .lae-testimonial-text:after {
      content: '';
      display: block;
      background: #fff;
      border-left: 1px solid #dbdbdb;
      border-bottom: 1px solid #dbdbdb;
      background: #ffffff;
      transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: skew(0deg, -44deg);
      width: 24px;
      height: 24px;
      position: absolute;
      bottom: -12px;
      left: 40px;
      margin: auto; }
      .lae-dark-bg .lae-testimonials .lae-testimonial-text:after {
        background: #eee; }
  .lae-testimonials .lae-testimonial-user {
    display: table; }
    .lae-testimonials .lae-testimonial-user .lae-image-wrapper {
      display: table-cell; }
      .lae-testimonials .lae-testimonial-user .lae-image-wrapper img {
        max-width: 64px;
        border-radius: 50%;
        margin-right: 20px; }
    .lae-testimonials .lae-testimonial-user .lae-text {
      display: table-cell;
      vertical-align: middle;
      color: #888; }
      .lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text {
        color: #909090; }
      .lae-testimonials .lae-testimonial-user .lae-text .lae-author-name {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 1px;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        clear: none;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 5px;
        color: #333; }
        .lae-dark-bg .lae-testimonials .lae-testimonial-user .lae-text .lae-author-name {
          color: #e5e5e5; }

/* ------------------------------ Testimonials Slider ------------------------------------- */
.lae-testimonials-slider {
  clear: both;
  position: relative; }
  .lae-testimonials-slider.lae-container {
    max-width: 900px;
    margin: 0 auto; }
  .lae-testimonials-slider .lae-testimonial-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 32px;
    font-style: italic;
    color: #666; }
    .lae-dark-bg .lae-testimonials-slider .lae-testimonial-text {
      color: #ccc; }
    .lae-testimonials-slider .lae-testimonial-text i {
      color: #ccc;
      font-size: 32px;
      display: block;
      margin-bottom: 35px;
      background: none;
      width: auto;
      height: auto; }
      .lae-dark-bg .lae-testimonials-slider .lae-testimonial-text i {
        color: #ddd; }
  .lae-testimonials-slider .lae-testimonial-user {
    display: table;
    margin: 0 auto; }
    .lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper {
      display: table-cell; }
      .lae-testimonials-slider .lae-testimonial-user .lae-image-wrapper img {
        max-width: 64px;
        border-radius: 50%;
        margin-right: 15px; }
    .lae-testimonials-slider .lae-testimonial-user .lae-text {
      display: table-cell;
      vertical-align: middle;
      color: #888; }
      .lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text {
        color: #909090; }
      .lae-testimonials-slider .lae-testimonial-user .lae-text .lae-author-name {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 1px;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        clear: none;
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 5px; }
        .lae-dark-bg .lae-testimonials-slider .lae-testimonial-user .lae-text .lae-author-name {
          color: #e5e5e5; }

/* ------------------------------------- Stats Bar --------------------------------------------- */
.lae-stats-bars {
  clear: both; }
  .lae-stats-bars .lae-stats-bar {
    width: 100%;
    display: block;
    margin: 0 0 18px;
    overflow: hidden; }
    .lae-stats-bars .lae-stats-bar .lae-stats-title {
      margin: 0;
      display: block;
      color: #888;
      font-style: normal;
      font-size: 15px;
      text-transform: none;
      color: #333;
      font-size: 16px;
      line-height: 28px; }
      .lae-stats-bars .lae-stats-bar .lae-stats-title span {
        margin-left: 5px; }
      .lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-title {
        color: #ddd; }
    .lae-stats-bars .lae-stats-bar .lae-stats-bar-wrap {
      position: relative; }
    .lae-stats-bars .lae-stats-bar .lae-stats-bar-content {
      background: #e55a54;
      display: block;
      height: 10px;
      width: 0;
      position: relative;
      z-index: 1;
      border-radius: 5px; }
    .lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
      width: 100%;
      background: rgba(0, 0, 0, 0.1);
      height: 10px;
      display: block;
      margin-top: -10px;
      border-radius: 5px; }
      .lae-dark-bg .lae-stats-bars .lae-stats-bar .lae-stats-bar-bg {
        background: rgba(255, 255, 255, 0.1); }

/*--------------------------------- Pie Charts -------------------------------------- */
.lae-piecharts {
  clear: both; }

.lae-piechart {
  position: relative;
  text-align: center;
  float: left;
  overflow: hidden;
  float: left;
  padding: 10px; }
  .lae-piechart canvas {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    margin: 0 auto; }
  .lae-piechart .lae-label {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 55%;
    max-width: 65%;
    color: #888; }
    .lae-dark-bg .lae-piechart .lae-label {
      color: #909090; }
  .lae-piechart .lae-percentage span {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    text-align: center;
    color: #333;
    font-weight: bolder; }
    .lae-dark-bg .lae-piechart .lae-percentage span {
      color: #e5e5e5; }
  .lae-piechart .lae-percentage sup {
    font-size: 18px;
    vertical-align: middle; }
  .lae-piechart.dark-bg .lae-label {
    color: #fff; }
  .lae-piechart.dark-bg .lae-percentage span {
    color: #eee; }

@media only screen and (max-width: 479px) {
  .lae-piechart canvas {
    margin-bottom: 15px; 
    height: auto !important;
  } 
  }
/* ---------------------------------- Odometers/Counters ---------------------------------- */
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative; }

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative; }

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  visibility: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block; }

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden; }

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0); }

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute; }

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s; }

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em; }

.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center; }

/* --- Animate Numbers ---- */
.lae-odometers {
  clear: both;
  font-size: 0;
  /* inline-block hack */ }
  .lae-odometers .lae-odometer {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    position: relative;
    margin-bottom: 50px; }
    .lae-odometers .lae-odometer:last-child:after {
      border: none; }
    .lae-odometers .lae-odometer .lae-prefix, .lae-odometers .lae-odometer .lae-suffix {
      display: inline;
      font-size: 36px;
      line-height: 48px;
      color: #333;
      vertical-align: middle; }
      .lae-dark-bg .lae-odometers .lae-odometer .lae-prefix, .lae-dark-bg .lae-odometers .lae-odometer .lae-suffix {
        color: #e5e5e5; }
    .lae-odometers .lae-odometer .lae-prefix {
      margin-right: 5px;
      margin-left: 5px; }
    .lae-odometers .lae-odometer .lae-suffix {
      margin-left: 5px; }
    .lae-odometers .lae-odometer .lae-number {
      font-size: 60px;
      line-height: 72px;
      font-style: normal;
      text-transform: none;
      letter-spacing: 2px;
      font-weight: 900;
      color: #333;
      margin-bottom: 10px; }
      /*.lae-odometers .lae-odometer .lae-number span {
        font-size: 60px; }*/
      .lae-dark-bg .lae-odometers .lae-odometer .lae-number {
        color: #e5e5e5; }
    .lae-odometers .lae-odometer .lae-stats-title {
      font-size: 18px;
      line-height: 28px;
      display: inline-block;
      color: #888; }
      .lae-dark-bg .lae-odometers .lae-odometer .lae-stats-title {
        color: #909090; }
      .lae-odometers .lae-odometer .lae-stats-title span {
        float: left;
        margin-right: 15px; }
      .lae-odometers .lae-odometer .lae-stats-title .lae-icon-wrapper {
        font-size: 32px;
        margin-right: 10px;
        vertical-align: middle;
        color: #ccc; }

@media only screen and (max-width: 960px) {
  .lae-odometers .lae-odometer .lae-number {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 0; }
    .lae-odometers .lae-odometer .lae-number span {
      font-size: 48px; }
  .lae-odometers .lae-odometer .lae-stats-title {
    font-size: 15px;
    line-height: 26px; } }
@media only screen and (max-width: 479px) {
  .lae-odometers .lae-odometer {
    text-align: center; } }
/* ---------------------------------- Pricing table ------------------------------------ */
.lae-pricing-table {
  clear: both; }

.lae-pricing-table .lae-pricing-plan {
  float: left;
  padding: 10px; }

.lae-center {
  text-align: center; }

.lae-pricing-table {
  padding: 0;
  margin: 0; }
  .lae-pricing-table .lae-top-header {
    padding: 15px 0;
    background-color: #494949;
    border-bottom: 1px solid #2c2b2b; }
    .lae-pricing-table .lae-top-header .lae-plan-name {
      font-size: 18px;
      line-height: 26px;
      letter-spacing: 1px;
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
      clear: none;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 20px;
      line-height: 32px;
      color: #fefefe;
      margin: 0; }
    .lae-pricing-table .lae-top-header img {
      margin-top: 15px; }
    .lae-pricing-table .lae-top-header .lae-tagline {
      display: block;
      font-size: 15px;
      line-height: 24px;
      color: #EDEDED;
      text-transform: none;
      text-align: center;
      margin-bottom: 5px; }
  .lae-pricing-table .lae-pricing-plan {
    background: #fff;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-in-out 0s;
    -moz-transition: all 0.1s ease-in-out 0s;
    -ms-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
    margin-bottom: 30px; }
    .lae-pricing-table .lae-pricing-plan:hover .lae-purchase {
      background: #e5e5e5; }
    .lae-pricing-table .lae-pricing-plan .lae-plan-price {
      color: #fff;
      font-size: 22px;
      line-height: 28px;
      font-weight: 700;
      margin: 0; }
      .lae-pricing-table .lae-pricing-plan .lae-plan-price span {
        font-size: 22px;
        line-height: 32px; }
  .lae-pricing-table .lae-plan-header {
    padding: 30px 0 30px;
    background-color: #494949; }
  .lae-pricing-table .lae-plan-price .lae-text {
    display: inline-block;
    padding: 6px 25px;
    border-radius: 25px;
    background: #2C2B2B; }
  .lae-pricing-table .lae-plan-price sup {
    font-size: 18px;
    line-height: 32px;
    vertical-align: top;
    margin-right: 2px;
    position: static; }
  .lae-pricing-table .lae-plan-details {
    padding: 15px 0;
    margin: 0;
    border: 1px solid #eee; }
    .lae-pricing-table .lae-plan-details .lae-pricing-item {
      list-style: none;
      display: block;
      padding: 6px;
      margin: 0;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      text-align: center; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item i {
        color: #777;
        font-size: 18px;
        display: inline;
        margin-right: 8px; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item .lae-title {
        color: #838383;
        margin-bottom: 10px; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap {
        display: block; }
        .lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value-wrap:after {
          position: relative;
          content: "";
          background: #ddd;
          width: 120px;
          height: 1px;
          display: block;
          margin: 12px auto 0; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item .lae-value {
        color: #444;
        font-size: 24px;
        line-height: 32px;
        display: inline; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item s {
        color: #b4c9d3; }
      .lae-pricing-table .lae-plan-details .lae-pricing-item:last-child .lae-value-wrap:after {
        display: none; }
  .lae-pricing-table .lae-purchase {
    text-align: center;
    text-transform: uppercase;
    padding: 15px;
    margin: 0 auto;
    background: #f1f1f1;
    -webkit-transition: all 0.1s ease-in-out 0s;
    -moz-transition: all 0.1s ease-in-out 0s;
    -ms-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee; }
    .lae-pricing-table .lae-purchase a {
      padding: 12px 25px;
      border-radius: 5px;
      letter-spacing: 0;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 6px;
      font-weight: bold; }
  .lae-pricing-table .lae-pricing-plan.lae-highlight {
    background: #f5f5f5;
    margin-top: -10px; }
    .lae-pricing-table .lae-pricing-plan.lae-highlight .lae-plan-details {
      border-color: #e5e5e5; }
    .lae-pricing-table .lae-pricing-plan.lae-highlight .lae-top-header {
      padding: 20px 0; }
    .lae-pricing-table .lae-pricing-plan.lae-highlight .lae-pricing-table .lae-top-header .lae-plan-name {
      color: #28c2ba; }
    .lae-pricing-table .lae-pricing-plan.lae-highlight .lae-purchase {
      padding: 20px 0;
      background-color: #e5e5e5;
      border-color: #ddd; }

/* ------------------------------------ Services ------------------------------------------- */
/* Style 1 */
.lae-services-style1 .lae-service .lae-icon-wrapper span {
  display: block;
  text-align: center;
  font-size: 96px;
  line-height: 1;
  margin-bottom: 20px;
  -webkit-transition: color 0.4s ease-in-out 0s;
  -moz-transition: color 0.4s ease-in-out 0s;
  -ms-transition: color 0.4s ease-in-out 0s;
  transition: color 0.4s ease-in-out 0s; }
.lae-services-style1 .lae-service .lae-image-wrapper img {
  display: block;
  max-width: 100%;
  text-align: center;
  margin: 0 auto 25px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
.lae-services-style1 .lae-service .lae-service-text {
  text-align: center;
  max-width: 300px;
  margin: 0 auto; }
  .lae-services-style1 .lae-service .lae-service-text .lae-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px;
    margin-bottom: 20px; }
.lae-services-style1 .lae-service:hover .lae-image-wrapper img {
  -webkit-transform: scale(0.9, 0.9);
  -moz-transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9); }

/* Style 2 */
.lae-services-style2 .lae-service .lae-image-wrapper img, .lae-services-style2 .lae-service .lae-icon-wrapper span {
  float: left;
  margin-right: 18px; }
.lae-services-style2 .lae-service .lae-icon-wrapper span {
  font-size: 24px;
  line-height: 32px; }
.lae-services-style2 .lae-service .lae-service-text .lae-title {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  clear: none;
  margin-top: 0;
  margin-bottom: 10px;
  margin-bottom: 20px; }

/* Style 3 */
.lae-services-style3 .lae-service .lae-icon-wrapper span {
  display: block;
  text-align: left;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 25px;
  color: #555; }
  .lae-dark-bg .lae-services-style3 .lae-service .lae-icon-wrapper span {
    color: #c5c5c5; }
.lae-services-style3 .lae-service .lae-image-wrapper img {
  display: block;
  max-width: 100%;
  text-align: left;
  margin-bottom: 25px; }
.lae-services-style3 .lae-service .lae-service-text {
  text-align: left;
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  line-height: 32px;
  color: #888; }
  .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list {
    padding: 0;
    margin: 0;
    border: none; }
  .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 42px; }
    .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:hover {
      padding: 0; }
    .lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li {
      border-color: #333; }
  .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
    font-family: 'lae-icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
    background: none;
    float: none;
    vertical-align: middle;
    margin: 0 15px 0 0;
    content: "\e913";
    color: #BBBBBB;
    font-size: 12px;
    line-height: 1; }
    .lae-dark-bg .lae-services-style3 .lae-service .lae-service-text ul.lae-services-list li:before {
      color: #606060; }
  .lae-services-style3 .lae-service .lae-service-text .lae-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px;
    margin-bottom: 20px; }

/* Style 4 */
.lae-services-style4 .lae-service {
  margin-bottom: 60px; }
  .lae-services-style4 .lae-service .lae-image-wrapper img, .lae-services-style4 .lae-service .lae-icon-wrapper span {
    display: block;
    margin-bottom: 20px;
    text-align: left; }
  .lae-services-style4 .lae-service .lae-icon-wrapper span {
    font-size: 36px;
    line-height: 1;
    color: #888; }
  .lae-services-style4 .lae-service .lae-service-text .lae-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px; }

/* Style 5 */
.lae-services-style5 .lae-service {
  margin-bottom: 30px !important; }
  @media only screen and (max-width: 767px) {
    .lae-services-style5 .lae-service {
      margin-bottom: 50px; } }
  .lae-services-style5 .lae-service .lae-icon-wrapper span {
    display: block;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    color: #999;
    -webkit-transition: color 0.4s ease-in-out 0s;
    -moz-transition: color 0.4s ease-in-out 0s;
    -ms-transition: color 0.4s ease-in-out 0s;
    transition: color 0.4s ease-in-out 0s; }
  .lae-services-style5 .lae-service .lae-image-wrapper img {
    display: block;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 25px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s; }
  .lae-services-style5 .lae-service .lae-service-text {
    text-align: center;
    max-width: 300px;
    margin: 0 auto; }
    .lae-services-style5 .lae-service .lae-service-text .lae-title {
      font-size: 18px;
      line-height: 26px;
      letter-spacing: 1px;
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
      clear: none;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 16px;
      line-height: 26px;
      margin-bottom: 10px; }
  .lae-services-style5 .lae-service:hover .lae-image-wrapper img {
    -webkit-transform: scale(0.9, 0.9);
    -moz-transform: scale(0.9, 0.9);
    -ms-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9); }

/* -------- General services -------- */
.lae-services {
  clear: both; }
  .lae-services .lae-service {
    margin-bottom: 50px; }
    .lae-services .lae-service .lae-icon-wrapper span {
      -webkit-transition: color 0.4s ease-in-out 0s;
      -moz-transition: color 0.4s ease-in-out 0s;
      -ms-transition: color 0.4s ease-in-out 0s;
      transition: color 0.4s ease-in-out 0s; }
    .lae-services .lae-service .lae-service-text {
      font-size: 15px;
      line-height: 24px; }
      .lae-dark-bg .lae-services .lae-service .lae-service-text {
        color: #909090; }
        .lae-dark-bg .lae-services .lae-service .lae-service-text .lae-title {
          color: #e5e5e5; }

/* ---------------------------------- Posts Carousel ---------------------------------- */
.lae-posts-carousel {
  clear: both;
  max-width: none; }
  @media only screen and (min-width: 1024px) {
    .lae-posts-carousel {
      max-width: 96%; } }
  .lae-posts-carousel .lae-posts-carousel-item .hentry {
    background: #fff;
    border-radius: 6px;
    border: none;
    padding: 0;
    margin: 0;
    -webkit-transition: box-shadow 0.25s ease;
    -moz-transition: box-shadow 0.25s ease;
    -ms-transition: box-shadow 0.25s ease;
    transition: box-shadow 0.25s ease;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden; }
    .lae-posts-carousel .lae-posts-carousel-item .hentry:hover {
      -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
  .lae-posts-carousel .lae-posts-carousel-item .lae-project-image {
    position: relative;
    overflow: hidden; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image img {
      display: block;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
      max-width: 100%; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-overlay {
      position: absolute;
      left: 0;
      top: 0;
      overflow: hidden;
      width: 100%;
      height: 100%;
      background: #000;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s;
      border-radius: 6px; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info {
      display: block;
      z-index: 120;
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      text-align: center;
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-entry-info {
        text-align: center;
        display: block;
        position: absolute;
        height: 82px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
        padding: 10px;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        color: #fff; }
        @media only screen and (max-width: 1024px) {
          .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
            font-size: 18px;
            line-height: 26px; } }
        .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a {
          display: inline;
          color: #fff;
          -webkit-transition: all 0.3s ease-in-out 0s;
          -moz-transition: all 0.3s ease-in-out 0s;
          -ms-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s;
          border-bottom: 1px solid transparent; }
          .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title a:hover {
            border-bottom: 2px solid #ccc; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms {
        display: block;
        color: #f9f9f9; }
        .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a {
          color: #ddd;
          position: relative;
          display: inline;
          zoom: 1;
          font-size: 14px;
          line-height: 26px;
          font-style: italic;
          -webkit-transition: color 0.3s ease-in-out 0s;
          -moz-transition: color 0.3s ease-in-out 0s;
          -ms-transition: color 0.3s ease-in-out 0s;
          transition: color 0.3s ease-in-out 0s; }
          .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-terms a:hover {
            color: #fff; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover {
      background: rgba(0, 0, 0, 0.3); }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover .lae-image-info {
        opacity: 1; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover .lae-image-overlay {
        opacity: 0.5; }
  .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 25px 15px; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title {
      font-size: 18px;
      line-height: 26px;
      letter-spacing: 1px;
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
      clear: none;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 10px; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:after, .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title:before {
        display: none; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a {
        color: #333333;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s; }
        .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-title a:hover {
          color: #888; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span {
      display: inline-block;
      padding: 0;
      margin: 0;
      font-style: italic;
      color: #999; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span a {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        font-style: normal; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:after {
        content: '/';
        padding-left: 6px;
        padding-right: 6px; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:first-child {
        border: none;
        padding-left: 0; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-entry-meta span:last-child:after {
        display: none; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary {
      padding: 0;
      margin: 10px auto 0; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .entry-summary:before {
        width: 35px;
        height: 1px;
        background: #aaa;
        display: block;
        content: "";
        text-align: center;
        margin: 0 auto 15px; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list {
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
        width: 35px;
        height: 1px;
        background: #aaa;
        display: block;
        content: ""; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list:after {
        text-align: center;
        margin: 10px auto 10px; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-entry-text-wrap .lae-category-list a {
      font-style: italic;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
  .lae-posts-carousel .lae-posts-carousel-item .type-post .lae-entry-text-wrap .entry-summary:before {
    display: none; }

/* ---------------------------------- Portfolio/Posts Grid ---------------------------------- */
.lae-portfolio-wrap {
  clear: both; }
  .lae-portfolio-wrap .lae-portfolio-header {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    clear: both; }
  .lae-portfolio-wrap .lae-heading {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
    display: inline-block;
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 30px 0;
    max-width: none; }
    .lae-dark-bg .lae-portfolio-wrap .lae-heading {
      color: #e5e5e5; }
  .lae-portfolio-wrap .lae-taxonomy-filter {
    display: inline-block;
    position: relative;
    float: right;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd; }
    .lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter {
      border-color: #666; }
    @media only screen and (max-width: 800px) {
      .lae-portfolio-wrap .lae-taxonomy-filter {
        display: block;
        float: none;
        margin-bottom: 30px; } }
    .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
      display: inline-block;
      margin: 0 12px 0 0;
      padding: 0;
      font-style: italic; }
      @media only screen and (max-width: 479px) {
        .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item {
          margin-right: 8px; } }
      .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
        font-size: 15px;
        line-height: 24px;
        padding: 0 15px 8px;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
        display: block; }
        @media only screen and (max-width: 479px) {
          .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item a {
            padding: 0 10px 8px; } }
      .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active {
        border-bottom: 2px solid #888; }
        .lae-dark-bg .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item.lae-active {
          border-color: #aaa; }
      .lae-portfolio-wrap .lae-taxonomy-filter .lae-filter-item:last-child {
        margin-right: 0; }
  .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item {
    margin-bottom: 30px; }
    @media only screen and (max-width: 1024px) {
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item {
        margin-bottom: 20px; } }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item.lae-zero-margin {
      margin: 0; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .hentry {
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      box-shadow: none; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image {
      position: relative;
      overflow: hidden; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image img {
        display: block;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image img:hover {
          -webkit-filter: brightness(80%);
          -moz-filter: brightness(80%);
          -ms-filter: brightness(80%);
          filter: brightness(80%); }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-overlay {
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
        width: 100%;
        height: 100%;
        background: #000;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transition: opacity 0.4s ease-in-out 0s;
        -moz-transition: opacity 0.4s ease-in-out 0s;
        -ms-transition: opacity 0.4s ease-in-out 0s;
        transition: opacity 0.4s ease-in-out 0s; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info {
        display: block;
        z-index: 120;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: opacity 0.4s ease-in-out 0s;
        -moz-transition: opacity 0.4s ease-in-out 0s;
        -ms-transition: opacity 0.4s ease-in-out 0s;
        transition: opacity 0.4s ease-in-out 0s; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-entry-info {
          text-align: center;
          display: block;
          position: absolute;
          height: 82px;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          width: 100%; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title {
          padding: 10px;
          margin: 0;
          font-size: 18px;
          line-height: 28px;
          font-weight: 400;
          color: #fff; }
          @media only screen and (max-width: 1024px) {
            .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title {
              font-size: 18px;
              line-height: 26px; } }
          .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a {
            display: inline;
            color: #fff;
            -webkit-transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
            border-bottom: 1px solid transparent; }
            .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-post-title a:hover {
              border-bottom: 1px solid #ccc; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms {
          display: block;
          color: #f9f9f9; }
          .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a {
            color: #ddd;
            position: relative;
            display: inline;
            zoom: 1;
            font-size: 14px;
            line-height: 26px;
            font-style: italic;
            -webkit-transition: color 0.3s ease-in-out 0s;
            -moz-transition: color 0.3s ease-in-out 0s;
            -ms-transition: color 0.3s ease-in-out 0s;
            transition: color 0.3s ease-in-out 0s; }
            .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-terms a:hover {
              color: #fff; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-lightbox-item {
          position: absolute;
          top: 0;
          right: 0;
          color: #fff;
          font-size: 14px;
          line-height: 1;
          display: block;
          padding: 12px;
          background: transparent;
          -webkit-transition: background 0.3s ease-in-out 0s;
          -moz-transition: background 0.3s ease-in-out 0s;
          -ms-transition: background 0.3s ease-in-out 0s;
          transition: background 0.3s ease-in-out 0s; }
          .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image .lae-image-info .lae-lightbox-item:hover {
            background: rgba(0, 0, 0, 0.5); }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover {
        background: rgba(0, 0, 0, 0.3); }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-info {
          opacity: 1; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-project-image:hover .lae-image-overlay {
          opacity: 0.5; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-text-wrap {
      text-align: center;
      max-width: 650px;
      margin: 20px auto 0; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title {
      font-size: 18px;
      line-height: 26px;
      font-weight: normal;
      margin-bottom: 10px; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:after, .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title:before {
        display: none; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
        color: #333; }
        .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
          color: #888; }
      .lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a {
        color: #e0e0e0; }
        .lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-title a:hover {
          color: #fff; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
      display: inline-block;
      padding: 0;
      margin: 0;
      font-style: italic;
      color: #999; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:after {
        content: '/';
        padding-left: 6px;
        padding-right: 6px; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:first-child {
        border: none;
        padding-left: 0; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span:last-child:after {
        display: none; }
      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span a {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        font-style: normal; }
      .lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .lae-entry-meta span {
        color: #707070; }
    .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
      /*margin: 15px auto 0;*/
      padding: 0; }
/*      .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
        width: 35px;
        height: 1px;
        background: #aaa;
        display: block;
        content: "";
        text-align: center;
        margin: 0 auto 15px; }*/
      .lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary {
        color: #999; }
        .lae-dark-bg .lae-portfolio-wrap .lae-portfolio .lae-portfolio-item .entry-summary:before {
          background: #505050; }
  .lae-portfolio-wrap .lae-pagination {
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 50px; }
    .lae-portfolio-wrap .lae-pagination .lae-page-nav {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -moz-box-flex: 0;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      font-size: 15px;
      line-height: 24px;
      color: #666;
      padding: 5px 15px;
      border-right: 1px solid #dcdcdc;
      border-top: 1px solid #dcdcdc;
      border-bottom: 1px solid #dcdcdc;
      outline: none;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      -ms-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
      cursor: pointer; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav i {
        color: #444;
        font-size: 12px;
        line-height: 1; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav:first-child {
        border-left: 1px solid #dcdcdc; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav[data-page="prev"], .lae-portfolio-wrap .lae-pagination .lae-page-nav[data-page="next"] {
        padding: 5px 20px; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav[data-page="prev"] {
        border-radius: 50px 0 0 50px; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav[data-page="next"] {
        border-radius: 0 50px 50px 0; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav:hover, .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-current-page {
        background: #eee; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-disabled, .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-current-page {
        pointer-events: none; }
      .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-disabled, .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-disabled i {
        color: #999; }
      .lae-dark-bg .lae-portfolio-wrap .lae-pagination .lae-page-nav {
        border-color: #606060;
        color: #aaa; }
        .lae-dark-bg .lae-portfolio-wrap .lae-pagination .lae-page-nav:hover, .lae-dark-bg .lae-portfolio-wrap .lae-pagination .lae-page-nav.lae-current-page {
          background: #333; }
  .lae-portfolio-wrap .lae-load-more {
    color: #fff;
    padding: 15px 25px;
    border-radius: 999px;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    .lae-portfolio-wrap .lae-load-more:hover {
      color: #eee;
      background: #333;
      border-color: #333; }
    .lae-portfolio-wrap .lae-load-more.lae-disabled {
      display: none; }
  .lae-portfolio-wrap .lae-loading {
    position: relative;
    margin: 0 -51px 0 15px;
    width: 36px;
    height: 36px;
    background: url(../images/loading.gif) center center no-repeat;
    visibility: hidden; }
  .lae-portfolio-wrap.lae-processing .lae-loading {
    visibility: visible; }

/* ---------------------------------- Image Slider ---------------------------------- */
.lae-image-slider {
  clear: both;
  position: relative;
  padding: 0 0 40px 0; }
  .lae-image-slider .lae-slide {
    position: relative;
    background: black !important; }
    .lae-image-slider .lae-slide img {
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
      opacity: 0.7; }
    .lae-image-slider .lae-slide:hover img {
      opacity: 0.5; }
    .lae-image-slider .lae-slide .lae-caption {
      position: absolute;
      max-width: 700px; }
      .lae-image-slider .lae-slide .lae-caption .lae-heading {
        font-size: 36px;
        line-height: 44px;
        font-weight: bold;
        margin: 0;
        color: #fff; }
        .lae-image-slider .lae-slide .lae-caption .lae-heading a {
          color: #fff; }
          .lae-image-slider .lae-slide .lae-caption .lae-heading a:hover {
            border-bottom: 2px solid #fff; }
      .lae-image-slider .lae-slide .lae-caption .lae-subheading {
        color: #b1b3b2;
        font-style: italic;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 12px;
        font-weight: 400; }
      .lae-image-slider .lae-slide .lae-caption .lae-button {
        margin-top: 50px;
        color: #fefefe; }
      @media only screen and (max-width: 600px) {
        .lae-image-slider .lae-slide .lae-caption .lae-subheading {
          font-size: 14px;
          line-height: 22px; }
        .lae-image-slider .lae-slide .lae-caption .lae-heading {
          font-size: 22px;
          line-height: 30px; }
        .lae-image-slider .lae-slide .lae-caption .lae-button {
          margin-top: 30px;
          padding: 12px 25px;
          font-size: 11px; } }
  .lae-image-slider .lae-flex-direction-nav a, .lae-image-slider .lae-flex-direction-nav a:hover {
    color: #ddd;
    font-size: 32px;
    width: 36px;
    height: 36px;
    margin: -18px 0 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s; }
    .lae-image-slider .lae-flex-direction-nav a.lae-flex-prev, .lae-image-slider .lae-flex-direction-nav a:hover.lae-flex-prev {
      left: 20px; }
    .lae-image-slider .lae-flex-direction-nav a.lae-flex-next, .lae-image-slider .lae-flex-direction-nav a:hover.lae-flex-next {
      right: 20px; }
  .lae-image-slider .lae-flex-direction-nav a:hover {
    color: #efefef; }
  .lae-image-slider button.slick-prev, .lae-image-slider button.slick-next, .lae-image-slider button.slick-prev:hover, .lae-image-slider button.slick-next:hover {
    color: #ddd !important;
    font-size: 32px;
    width: 36px;
    height: 36px;
    margin: -18px 0 0;
    z-index: 10; }
    .lae-image-slider button.slick-prev.slick-prev, .lae-image-slider button.slick-next.slick-prev, .lae-image-slider button.slick-prev:hover.slick-prev, .lae-image-slider button.slick-next:hover.slick-prev {
      left: 20px; }
    .lae-image-slider button.slick-prev.slick-next, .lae-image-slider button.slick-next.slick-next, .lae-image-slider button.slick-prev:hover.slick-next, .lae-image-slider button.slick-next:hover.slick-next {
      right: 20px; }
  .lae-image-slider button.slick-prev:hover, .lae-image-slider button.slick-next:hover {
    color: #efefef !important; }

.lae-image-slider.lae-caption-style1 .lae-caption {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.lae-image-slider.lae-caption-style2 .lae-caption {
  bottom: 50px;
  left: 50px;
  text-align: left;
  margin: 0;
  padding: 0 20px; }
  .lae-image-slider.lae-caption-style2 .lae-caption .lae-button {
    display: none; }
  .lae-image-slider.lae-caption-style2 .lae-caption .lae-heading {
    text-align: left; }
  @media only screen and (max-width: 1024px) {
    .lae-image-slider.lae-caption-style2 .lae-caption {
      left: 20px;
      bottom: 30px; }
      .lae-image-slider.lae-caption-style2 .lae-caption .lae-subheading {
        margin-bottom: 10px; } }
  @media only screen and (max-width: 600px) {
    .lae-image-slider.lae-caption-style2 .lae-caption {
      left: 0;
      bottom: 20px; }
      .lae-image-slider.lae-caption-style2 .lae-caption .lae-subheading {
        margin-bottom: 5px; } }

/* Nivo Slider Caption */
.lae-image-slider .nivo-caption .lae-heading {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: bold;
  margin: 0; }
  .lae-image-slider .nivo-caption .lae-heading a {
    color: #fff; }
    .lae-image-slider .nivo-caption .lae-heading a:hover {
      border-bottom: 2px solid #fff; }
.lae-image-slider .nivo-caption .lae-subheading {
  margin-bottom: 10px;
  color: #b1b3b2;
  font-style: italic;
  font-size: 16px;
  line-height: 24px; }
@media only screen and (max-width: 600px) {
  .lae-image-slider .nivo-caption .lae-subheading {
    font-size: 14px;
    line-height: 22px; }
  .lae-image-slider .nivo-caption .lae-heading {
    font-size: 22px;
    line-height: 30px; } }

.lae-image-slider.lae-caption-style1 .nivo-caption {
  left: 0;
  right: 0;
  top: 50%;
  bottom: initial;
  text-align: center;
  color: #fff;
  width: 100%;
  height: auto;
  padding: 25px 30px;
  max-width: 600px;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.lae-image-slider.lae-caption-style2 .nivo-caption {
  padding: 25px 50px; }
  .lae-image-slider.lae-caption-style2 .nivo-caption .lae-heading {
    text-align: left; }
  @media only screen and (max-width: 600px) {
    .lae-image-slider.lae-caption-style2 .nivo-caption {
      padding: 10px 30px; } }

/* ---------------------------------- Icon Lists ---------------------------------- */
.lae-icon-list {
  clear: both;
  font-size: 0;
  /* Remove space between elements */
  width: 100%; }
  .lae-icon-list.lae-alignleft {
    text-align: left; }
  .lae-icon-list.lae-alignright {
    text-align: right; }
  .lae-icon-list.lae-aligncenter {
    text-align: center; }
  .lae-icon-list .lae-icon-list-item {
    display: inline-block;
    padding: 0;
    border: none;
    outline: none;
    margin: 0 0 0 15px; }
    .lae-icon-list .lae-icon-list-item:first-child {
      margin: 0; }
    .lae-icon-list .lae-icon-list-item .lae-icon-wrapper span {
      display: block;
      font-size: 32px;
      line-height: 1;
      color: #666;
      -webkit-transition: color 0.3s ease-in-out 0s;
      -moz-transition: color 0.3s ease-in-out 0s;
      -ms-transition: color 0.3s ease-in-out 0s;
      transition: color 0.3s ease-in-out 0s; }
    .lae-icon-list .lae-icon-list-item .lae-image-wrapper img {
      display: block;
      max-width: 100%;
      width: 32px;
      height: auto;
      margin: 0 auto;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
    .lae-icon-list .lae-icon-list-item:hover .lae-image-wrapper img {
      opacity: 0.8; }
    .lae-icon-list .lae-icon-list-item:hover .lae-icon-wrapper span {
      color: #333; }

.lae-circular-icon-list .lae-icon-list .lae-icon-list-item {
  margin: 0 0 0 25px;
  width: 50px;
  height: 50px;
  border-radius: 100%; }
  @media only screen and (max-width: 479px) {
    .lae-circular-icon-list .lae-icon-list .lae-icon-list-item {
      margin: 0 0 20px 20px; } }
  .lae-circular-icon-list .lae-icon-list .lae-icon-list-item:first-child {
    margin-left: 0; }
  .lae-dark-bg .lae-circular-icon-list .lae-icon-list .lae-icon-list-item {
    background: #48484a; }
  .lae-circular-icon-list .lae-icon-list .lae-icon-list-item .lae-icon-wrapper span {
    font-size: 22px;
    /* Override user choice */
    padding: 14px 0; }

/* ---------------------------------- Heading ---------------------------------- */
.lae-heading {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 640px; }
  @media only screen and (max-width: 767px) {
    .lae-heading {
      margin-bottom: 40px; } }
  .lae-heading .lae-text {
    font-size: 18px;
    line-height: 28px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .lae-heading .lae-text {
        font-size: 15px;
        line-height: 26px; } }
  .lae-heading.lae-alignleft, .lae-heading.lae-alignright {
    margin: 0; }
    .lae-heading.lae-alignleft .lae-text, .lae-heading.lae-alignright .lae-text {
      margin: 0; }
  .lae-heading.lae-alignleft {
    text-align: left; }
  .lae-heading.lae-alignright {
    text-align: right;
    max-width: none; }

.lae-heading .lae-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  margin: 0 auto 20px;
  color: #333;
  font-weight: bold; }
  @media only screen and (max-width: 767px) {
    .lae-heading .lae-title {
      font-size: 24px;
      line-height: 32px; } }
.lae-dark-bg .lae-heading .lae-title {
  color: #e5e5e5; }
.lae-dark-bg .lae-heading .lae-subtitle {
  color: #B0B0B0; }
.lae-dark-bg .lae-heading .lae-text {
  color: #909090; }
.lae-heading.lae-alignleft .lae-title, .lae-heading.lae-alignright .lae-title {
  margin: 0 0 20px; }

.lae-heading .lae-subtitle {
  margin: 0 auto 5px;
  color: #888;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 10px; }
  @media only screen and (max-width: 767px) {
    .lae-heading .lae-subtitle {
      font-size: 11px;
      line-height: 18px; } }
.lae-heading.lae-alignleft .lae-subtitle, .lae-heading.lae-alignright .lae-subtitle {
  margin: 0 0 5px;
  padding: 0; }
  .lae-heading.lae-alignleft .lae-subtitle:before, .lae-heading.lae-alignleft .lae-subtitle:after, .lae-heading.lae-alignright .lae-subtitle:before, .lae-heading.lae-alignright .lae-subtitle:after {
    display: none; }

.lae-heading.lae-style3 {
  margin: 0 auto 30px; }
  .lae-heading.lae-style3 .lae-title {
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
    letter-spacing: 1px; }
    .lae-heading.lae-style3 .lae-title:after {
      width: 35px;
      height: 1px;
      background: #aaa;
      display: block;
      content: ""; }
    .lae-heading.lae-style3 .lae-title:after {
      margin: 10px auto 20px; }
      .lae-dark-bg .lae-heading.lae-style3 .lae-title:after {
        background: #909090; }
    @media only screen and (max-width: 767px) {
      .lae-heading.lae-style3 .lae-title {
        font-size: 16px;
        line-height: 24px; } }
  .lae-heading.lae-style3.lae-alignleft, .lae-heading.lae-style3.lae-alignright {
    margin: 0 0 30px; }
    .lae-heading.lae-style3.lae-alignleft .lae-title:after, .lae-heading.lae-style3.lae-alignright .lae-title:after {
      margin: 10px 0 20px; }

/* ---------------------------------- Gallery Carousel ---------------------------------- */
.lae-gallery-carousel {
  clear: both; }
  @media only screen and (max-width: 1024px) {
    .lae-gallery-carousel .lae-gallery-carousel-item {
      margin-bottom: 20px; } }
  .lae-gallery-carousel .lae-gallery-carousel-item.lae-zero-margin {
    margin: 0; }
  .lae-gallery-carousel .lae-gallery-carousel-item .hentry {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none; }
  .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image {
    position: relative;
    overflow: hidden; }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image img {
      display: block;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image img:hover {
        -webkit-filter: brightness(80%);
        -moz-filter: brightness(80%);
        -ms-filter: brightness(80%);
        filter: brightness(80%); }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-overlay {
      position: absolute;
      left: 0;
      top: 0;
      overflow: hidden;
      width: 100%;
      height: 100%;
      background: #000;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s; }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info {
      display: block;
      z-index: 120;
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      text-align: center; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-entry-info {
        text-align: center;
        display: block;
        position: absolute;
        height: 82px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-entry-title {
        padding: 10px;
        margin: 0;
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
        color: #fff;
        opacity: 0;
        -webkit-transition: opacity 0.4s ease-in-out 0s;
        -moz-transition: opacity 0.4s ease-in-out 0s;
        -ms-transition: opacity 0.4s ease-in-out 0s;
        transition: opacity 0.4s ease-in-out 0s; }
        @media only screen and (max-width: 1024px) {
          .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-entry-title {
            font-size: 18px;
            line-height: 26px; } }
        .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-entry-title a {
          display: inline;
          color: #fff;
          -webkit-transition: all 0.3s ease-in-out 0s;
          -moz-transition: all 0.3s ease-in-out 0s;
          -ms-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s;
          border-bottom: 1px solid transparent; }
          .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-entry-title a:hover {
            border-bottom: 1px solid #ccc; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-terms {
        display: block;
        color: #ddd;
        font-size: 14px;
        line-height: 26px;
        font-style: italic;
        opacity: 0;
        -webkit-transition: opacity 0.4s ease-in-out 0s;
        -moz-transition: opacity 0.4s ease-in-out 0s;
        -ms-transition: opacity 0.4s ease-in-out 0s;
        transition: opacity 0.4s ease-in-out 0s; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-video-lightbox, .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-video-lightbox i {
        color: #fff;
        font-size: 32px;
        line-height: 1;
        -webkit-transition: color 0.4s ease-in-out 0s;
        -moz-transition: color 0.4s ease-in-out 0s;
        -ms-transition: color 0.4s ease-in-out 0s;
        transition: color 0.4s ease-in-out 0s; }
        .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-video-lightbox:hover, .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-video-lightbox i:hover {
          color: #ddd; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-lightbox-item {
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        font-size: 14px;
        line-height: 1;
        display: block;
        padding: 12px;
        background: transparent;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
        .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-lightbox-item:hover {
          background: rgba(0, 0, 0, 0.5); }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover {
      background: rgba(0, 0, 0, 0.3); }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover .lae-image-info .lae-entry-title, .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover .lae-image-info .lae-terms, .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover .lae-image-info .lae-lightbox-item {
        opacity: 1; }
      .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover .lae-image-overlay {
        opacity: 0.5; }
  .lae-gallery-carousel .lae-gallery-carousel-item.lae-youtube-type .lae-image-info .lae-entry-info, .lae-gallery-carousel .lae-gallery-carousel-item.lae-vimeo-type .lae-image-info .lae-entry-info {
    height: 110px; }

/* ---------------------------------- Image Gallery Widget ---------------------------------- */
.lae-gallery-wrap {
  clear: both; }
  .lae-gallery-wrap .lae-gallery-header {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto; }
  .lae-gallery-wrap .lae-heading {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    clear: none;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
    display: inline-block;
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 30px 0;
    max-width: none; }
    .lae-dark-bg .lae-gallery-wrap .lae-heading {
      color: #e5e5e5; }
  .lae-gallery-wrap .lae-taxonomy-filter {
    display: inline-block;
    position: relative;
    float: right;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd; }
    .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter {
      border-color: #666; }
    @media only screen and (max-width: 800px) {
      .lae-gallery-wrap .lae-taxonomy-filter {
        display: block;
        float: none;
        margin-bottom: 30px; } }
    .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item {
      display: inline-block;
      margin: 0 12px 0 0;
      padding: 0;
      font-style: italic; }
      @media only screen and (max-width: 479px) {
        .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item {
          margin-right: 8px; } }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a {
        font-size: 15px;
        line-height: 24px;
        padding: 0 15px 8px;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
        display: block; }
        @media only screen and (max-width: 479px) {
          .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a {
            padding: 0 10px 8px; } }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item.lae-active {
        border-bottom: 2px solid #888; }
        .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item.lae-active {
          border-color: #aaa; }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item:last-child {
        margin-right: 0; }
  .lae-gallery-wrap .lae-gallery .lae-gallery-item {
    margin-bottom: 30px; }
    @media only screen and (max-width: 1024px) {
      .lae-gallery-wrap .lae-gallery .lae-gallery-item {
        margin-bottom: 20px; } }
    .lae-gallery-wrap .lae-gallery .lae-gallery-item.lae-zero-margin {
      margin: 0; }
    .lae-gallery-wrap .lae-gallery .lae-gallery-item .hentry {
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      box-shadow: none; }
    .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image {
      position: relative;
      overflow: hidden; }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image img {
        display: block;
        -webkit-transition: all 0.4s ease-in-out 0s;
        -moz-transition: all 0.4s ease-in-out 0s;
        -ms-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image img:hover {
          -webkit-filter: brightness(80%);
          -moz-filter: brightness(80%);
          -ms-filter: brightness(80%);
          filter: brightness(80%); }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-overlay {
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
        width: 100%;
        height: 100%;
        background: #000;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        opacity: 0;
        -webkit-transition: opacity 0.4s ease-in-out 0s;
        -moz-transition: opacity 0.4s ease-in-out 0s;
        -ms-transition: opacity 0.4s ease-in-out 0s;
        transition: opacity 0.4s ease-in-out 0s; }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info {
        display: block;
        z-index: 120;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-entry-info {
          text-align: center;
          display: block;
          position: absolute;
          height: 82px;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          width: 100%; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-entry-title {
          padding: 10px;
          margin: 0;
          font-size: 18px;
          line-height: 28px;
          font-weight: 400;
          color: #fff;
          opacity: 0;
          -webkit-transition: opacity 0.4s ease-in-out 0s;
          -moz-transition: opacity 0.4s ease-in-out 0s;
          -ms-transition: opacity 0.4s ease-in-out 0s;
          transition: opacity 0.4s ease-in-out 0s; }
          @media only screen and (max-width: 1024px) {
            .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-entry-title {
              font-size: 18px;
              line-height: 26px; } }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-entry-title a {
            display: inline;
            color: #fff;
            -webkit-transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
            border-bottom: 1px solid transparent; }
            .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-entry-title a:hover {
              border-bottom: 1px solid #ccc; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-terms {
          display: block;
          color: #ddd;
          font-size: 14px;
          line-height: 26px;
          font-style: italic;
          opacity: 0;
          -webkit-transition: opacity 0.4s ease-in-out 0s;
          -moz-transition: opacity 0.4s ease-in-out 0s;
          -ms-transition: opacity 0.4s ease-in-out 0s;
          transition: opacity 0.4s ease-in-out 0s; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-video-lightbox {
          color: #fff;
          font-size: 32px;
          line-height: 1;
          -webkit-transition: color 0.4s ease-in-out 0s;
          -moz-transition: color 0.4s ease-in-out 0s;
          -ms-transition: color 0.4s ease-in-out 0s;
          transition: color 0.4s ease-in-out 0s; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-video-lightbox:hover {
            color: #ddd; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-video-lightbox i {
                font-size: 50px;
    color: #FF0000;
    font-weight: 600; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item {
          position: absolute;
          top: 0;
          right: 0;
          color: #fff;
          font-size: 14px;
          line-height: 1;
          display: block;
          padding: 12px;
          background: transparent;
          opacity: 0;
          -webkit-transition: all 0.3s ease-in-out 0s;
          -moz-transition: all 0.3s ease-in-out 0s;
          -ms-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item i {
            color: #fff;
            font-size: 18px;
            line-height: 1; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item:hover {
            background: rgba(0, 0, 0, 0.5); }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover {
        background: rgba(0, 0, 0, 0.3); }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover .lae-image-info .lae-entry-title, .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover .lae-image-info .lae-terms, .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover .lae-image-info .lae-lightbox-item {
          opacity: 1; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover .lae-image-overlay {
          opacity: 0.5; }
  .lae-gallery-wrap .lae-gallery .lae-gallery-item.lae-youtube-type .lae-image-info .lae-entry-info, .lae-gallery-wrap .lae-gallery .lae-gallery-item.lae-vimeo-type .lae-image-info .lae-entry-info {
    height: 110px; }
  .lae-gallery-wrap .lae-pagination {
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-top: 50px; }
    .lae-gallery-wrap .lae-pagination .lae-page-nav {
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -moz-box-flex: 0;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      font-size: 15px;
      line-height: 24px;
      color: #666;
      padding: 5px 15px;
      border-right: 1px solid #dcdcdc;
      border-top: 1px solid #dcdcdc;
      border-bottom: 1px solid #dcdcdc;
      outline: none;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      -ms-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
      cursor: pointer; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav i {
        color: #444;
        font-size: 12px;
        line-height: 1; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav:first-child {
        border-left: 1px solid #dcdcdc; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav[data-page="prev"], .lae-gallery-wrap .lae-pagination .lae-page-nav[data-page="next"] {
        padding: 5px 20px; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav[data-page="prev"] {
        border-radius: 50px 0 0 50px; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav[data-page="next"] {
        border-radius: 0 50px 50px 0; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav:hover, .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-current-page {
        background: #eee; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-disabled, .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-current-page {
        pointer-events: none; }
      .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-disabled, .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-disabled i {
        color: #999; }
        .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-disabled, .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-disabled i {
          color: #888; }
      .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav {
        border-color: #606060;
        color: #aaa; }
        .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav i {
          color: #ccc; }
        .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav:hover, .lae-dark-bg .lae-gallery-wrap .lae-pagination .lae-page-nav.lae-current-page {
          background: #333; }
  .lae-gallery-wrap .lae-load-more {
    color: #fff;
    padding: 15px 25px;
    border-radius: 999px;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    .lae-gallery-wrap .lae-load-more:hover {
      color: #eee;
      background: #333;
      border-color: #333; }
    .lae-gallery-wrap .lae-load-more.lae-disabled {
      display: none; }
  .lae-gallery-wrap .lae-loading {
    position: relative;
    margin: 0 -51px 0 15px;
    width: 36px;
    height: 36px;
    background: url(../images/loading.gif) center center no-repeat;
    visibility: hidden; }
  .lae-gallery-wrap.lae-processing .lae-loading {
    visibility: visible; }

/* ---------------------------------- Features Widget ---------------------------------- */
.lae-features {
  clear: both; }
  @media only screen and (max-width: 767px) {
    .lae-features .lae-feature {
      margin-bottom: 50px; } }
  .lae-features .lae-feature:last-child {
    margin-bottom: 0 !important; }
  .lae-features .lae-feature .lae-subtitle {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    color: #ACB2BF;
    margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .lae-features .lae-feature .lae-subtitle {
        font-size: 12px;
        line-height: 18px; } }
  .lae-features .lae-feature .lae-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 1024px) {
      .lae-features .lae-feature .lae-title {
        font-size: 26px;
        line-height: 36px; } }
  .lae-features .lae-feature .lae-feature-details {
    color: #9297A3;
    font-size: 14px;
    line-height: 24px; }
    @media only screen and (max-width: 767px) {
      .lae-features .lae-feature .lae-feature-details {
        font-size: 13px;
        line-height: 22px; } }
  @media only screen and (min-width: 768px) {
    .lae-features .lae-feature .lae-text-content {
      max-width: 520px;
      padding: 0 50px; }
      .siteorigin-panels-stretch[data-stretch-type="full-stretched"] .lae-features .lae-feature .lae-text-content {
        max-width: 600px; }
    .lae-features .lae-feature:nth-child(even) .lae-image-content {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
      -moz-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    .lae-features .lae-feature:nth-child(even) .lae-text-content {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -moz-order: 1;
      -ms-flex-order: 1;
      order: 1; } }

@media only screen and (min-width: 768px) {
  .lae-features:not(.lae-tiled) .lae-feature {
    margin-bottom: 80px; }
    .lae-features:not(.lae-tiled) .lae-feature .lae-image-content {
      max-width: 520px; }
      .siteorigin-panels-stretch[data-stretch-type="full-stretched"] .lae-features:not(.lae-tiled) .lae-feature .lae-image-content {
        margin: 0 auto; }
    .siteorigin-panels-stretch[data-stretch-type="full-stretched"] .lae-features:not(.lae-tiled) .lae-feature .lae-text-content {
      margin: 0 auto; } }

.lae-features.lae-tiled .lae-feature .lae-text-content {
  margin: 0 auto;
  /* Center the text */ }
  @media only screen and (max-width: 767px) {
    .siteorigin-panels-stretch[data-stretch-type="full-stretched"] .lae-features.lae-tiled .lae-feature .lae-text-content {
      padding: 0 20px; } }
.lae-features.lae-tiled .lae-feature .lae-image-content img {
  width: 100%; }

/* ---------------------------------- FAQ Widget ---------------------------------- */
/* Style 1 */
.lae-faq-list-style1 .lae-faq-item {
  text-align: left; }
  .lae-faq-list-style1 .lae-faq-item .lae-faq-answer {
    margin-top: 20px; }

/* Style 2 */
.lae-faq-list-style2 .lae-faq-item {
  text-align: center; }
  .lae-faq-list-style2 .lae-faq-item .lae-faq-answer {
    margin-bottom: 20px; }

/* -------- General FAQ Styling -------- */
.lae-faq-list {
  clear: both; }
  .lae-faq-list .lae-faq-item {
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 24px; }
    .lae-faq-list .lae-faq-item .lae-faq-question {
      font-size: 24px;
      line-height: 32px;
      text-transform: none;
      font-weight: bold;
      color: #333; }
    .lae-dark-bg .lae-faq-list .lae-faq-item {
      color: #909090; }
      .lae-dark-bg .lae-faq-list .lae-faq-item .lae-faq-question {
        color: #e5e5e5; }
  @media only screen and (max-width: 800px) {
    .lae-faq-list .lae-faq-item {
      width: 100%;
      margin-right: 0;
      margin-bottom: 50px; } }

/* ---------------------------------- Countdown Widget ---------------------------------- */
.lae-countdown-wrap {
  display: inline-block;
  width: 100%; }
  .lae-countdown-wrap.lae-aligncenter {
    text-align: center; }
  .lae-countdown-wrap.lae-alignleft {
    text-align: left; }
  .lae-countdown-wrap.lae-alignright {
    text-align: right; }
  .lae-countdown-wrap .lae-countdown-label {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    vertical-align: top;
    padding-top: 15px;
    color: #333; }
    .lae-dark-bg .lae-countdown-wrap .lae-countdown-label {
      color: #e5e5e5; }
  .lae-countdown-wrap .lae-countdown {
    display: inline-block; }
    .lae-countdown-wrap .lae-countdown ul {
      list-style: none;
      display: inline-block;
      margin: 0; }
      .lae-countdown-wrap .lae-countdown ul li {
        display: inline-block;
        font-size: 12px;
        line-height: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        font-weight: 700;
        margin-left: 20px;
        position: relative; }
        .lae-dark-bg .lae-countdown-wrap .lae-countdown ul li {
          color: #909090; }
        .lae-countdown-wrap .lae-countdown ul li span {
          display: table;
          padding: 12px;
          border-radius: 5px;
          background: #383b3f;
          color: #ebebeb;
          font-size: 18px;
          line-height: 18px; }
          .lae-dark-bg .lae-countdown-wrap .lae-countdown ul li span {
            background-color: rgba(125, 125, 125, 0.3); }
        .lae-countdown-wrap .lae-countdown ul li:before {
          content: ':';
          position: absolute;
          left: -10px;
          top: 18px;
          font-size: 18px;
          line-height: 18px; }
        .lae-countdown-wrap .lae-countdown ul li:first-child:before {
          display: none; }

/* ---------------------------------- Clients Widget ---------------------------------- */
.lae-clients {
  clear: both;
  overflow: hidden;
  margin: 0 auto; }
  .lae-clients .lae-client {
    position: relative;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden; }
    .lae-dark-bg .lae-clients .lae-client {
      border-color: #505050 !important; }
    .lae-clients .lae-client.lae-twocol:nth-child(6n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-twocol:nth-child(-n + 6) {
      border-top: 1px solid #ddd; }
    .lae-clients .lae-client.lae-onefifthcol:nth-child(5n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-onefifthcol:nth-child(-n + 5) {
      border-top: 1px solid #ddd; }
    .lae-clients .lae-client.lae-threecol:nth-child(4n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-threecol:nth-child(-n + 4) {
      border-top: 1px solid #ddd; }
    .lae-clients .lae-client.lae-fourcol:nth-child(3n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-fourcol:nth-child(-n + 3) {
      border-top: 1px solid #ddd; }
    .lae-clients .lae-client.lae-sixcol:nth-child(2n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-sixcol:nth-child(-n + 2) {
      border-top: 1px solid #ddd; }
    @media only screen and (max-width: 800px) {
      .lae-clients .lae-client.lae-twocol:nth-child(n), .lae-clients .lae-client.lae-threecol:nth-child(n), .lae-clients .lae-client.lae-fourcol:nth-child(n), .lae-clients .lae-client.lae-onefifthcol:nth-child(n), .lae-clients .lae-client.lae-sixcol:nth-child(n) {
        border-left: none;
        border-top: none;
        width: 50%;
        float: left; }
      .lae-clients .lae-client.lae-twocol:nth-child(2n + 1), .lae-clients .lae-client.lae-threecol:nth-child(2n + 1), .lae-clients .lae-client.lae-fourcol:nth-child(2n + 1), .lae-clients .lae-client.lae-onefifthcol:nth-child(2n + 1), .lae-clients .lae-client.lae-sixcol:nth-child(2n + 1) {
        border-left: 1px solid #ddd; }
      .lae-clients .lae-client.lae-twocol:nth-child(-n + 2), .lae-clients .lae-client.lae-threecol:nth-child(-n + 2), .lae-clients .lae-client.lae-fourcol:nth-child(-n + 2), .lae-clients .lae-client.lae-onefifthcol:nth-child(-n + 2), .lae-clients .lae-client.lae-sixcol:nth-child(-n + 2) {
        border-top: 1px solid #ddd; } }
    .lae-clients .lae-client img {
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
      width: 100%;
      margin: 0;
      display: block; }
    .lae-clients .lae-client .lae-client-name {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 0;
      text-align: center;
      width: 100%;
      height: 100%;
      margin-top: -12px;
      color: #fff;
      font-size: 18px;
      line-height: 26px;
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s;
      opacity: 0; }
      .lae-clients .lae-client .lae-client-name a {
        color: #fff;
        text-decoration: none; }
    .lae-clients .lae-client .lae-image-overlay {
      position: absolute;
      left: 0;
      top: 0;
      overflow: hidden;
      width: 100%;
      height: 100%;
      background: #000;
      filter: alpha(opacity=0);
      -moz-opacity: 0;
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s; }
    .lae-clients .lae-client:hover .lae-image-overlay {
      opacity: 0.7; }
      .lae-dark-bg .lae-clients .lae-client:hover .lae-image-overlay {
        opacity: 0.8; }
    .lae-clients .lae-client:hover .lae-client-name {
      opacity: 1; }

/* ---------------------------------- Generic Carousel Widget ---------------------------------- */
.lae-carousel .lae-carousel-item {
  position: relative; }

.lae-carousel.lae-container {
  max-width: none; }

/* ---------------------------------- Button Widget ---------------------------------- */
input.lae-button.lae-with-icon span, input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon span, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon span, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active span, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited span, .lae-button.lae-with-icon:visited img.lae-thumbnail {
  margin-right: 15px; }
input.lae-button.lae-with-icon span, button.lae-button.lae-with-icon span, a.lae-button.lae-with-icon span, .lae-button.lae-with-icon:active span, .lae-button.lae-with-icon:visited span {
  color: #fff;
  font-size: 24px;
  vertical-align: middle;
  line-height: 1; }
input.lae-button.lae-with-icon img.lae-thumbnail, button.lae-button.lae-with-icon img.lae-thumbnail, a.lae-button.lae-with-icon img.lae-thumbnail, .lae-button.lae-with-icon:active img.lae-thumbnail, .lae-button.lae-with-icon:visited img.lae-thumbnail {
  display: inline !important;
  vertical-align: middle;
  max-width: 50px; }

/* ---------------------------------- Image Slider Widget ---------------------------------- */
.lae-slider {
  clear: both;
  position: relative;
  padding: 0 0 10px 0; }
  .lae-slider .lae-slide {
    position: relative; }
    .lae-slider .lae-slide img {
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
      opacity: 0.7; }
    .lae-slider .lae-slide:hover img {
      opacity: 0.5; }
  .lae-slider .lae-flex-direction-nav a, .lae-slider .lae-flex-direction-nav a:hover {
    color: #ccc;
    font-size: 26px;
    width: 30px;
    height: 30px;
    margin: -15px 0 0; }
    .lae-slider .lae-flex-direction-nav a.lae-flex-prev, .lae-slider .lae-flex-direction-nav a:hover.lae-flex-prev {
      left: -40px; }
    .lae-slider .lae-flex-direction-nav a.lae-flex-next, .lae-slider .lae-flex-direction-nav a:hover.lae-flex-next {
      right: -40px; }

/* ---------------------------------------------------------- Posts Block Widget ----------------------------------------- */
.lae-block {
  position: relative; }
  .lae-block .lae-block-inner {
    clear: both;
    overflow: hidden; }
  .lae-block .lae-block-row {
    overflow: hidden; }

/* --------------------- Pagination and Load More Styling -------------------- */
.lae-block .lae-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-top: 50px;
  clear: both; }
  .lae-block .lae-pagination .lae-page-nav {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    font-size: 13px;
    line-height: 21px;
    color: #666;
    padding: 5px 15px;
    margin-right: 8px;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin-bottom: 10px;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    .lae-block .lae-pagination .lae-page-nav i {
      color: #222;
      font-size: 12px;
      line-height: 1; }
    .lae-block .lae-pagination .lae-page-nav[data-page="prev"], .lae-block .lae-pagination .lae-page-nav[data-page="next"] {
      padding: 5px 18px; }
    .lae-block .lae-pagination .lae-page-nav[data-page="next"] {
      margin-right: 0; }
    .lae-block .lae-pagination .lae-page-nav.lae-dotted {
      border: none;
      pointer-events: none;
      padding: 5px 5px; }
    .lae-block .lae-pagination .lae-page-nav:hover, .lae-block .lae-pagination .lae-page-nav.lae-current-page {
      background: #eee; }
    .lae-block .lae-pagination .lae-page-nav.lae-disabled, .lae-block .lae-pagination .lae-page-nav.lae-current-page {
      pointer-events: none; }
    .lae-block .lae-pagination .lae-page-nav.lae-disabled, .lae-block .lae-pagination .lae-page-nav.lae-disabled i {
      color: #999;
      border-color: #eaeaea; }
    .lae-dark-bg .lae-block .lae-pagination .lae-page-nav {
      border-color: #606060;
      color: #aaa; }
      .lae-dark-bg .lae-block .lae-pagination .lae-page-nav:hover, .lae-dark-bg .lae-block .lae-pagination .lae-page-nav.lae-current-page {
        background: #333; }
.lae-block .lae-load-more {
  color: #fff;
  padding: 15px 25px;
  border-radius: 999px;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; }
  .lae-block .lae-load-more:hover {
    color: #eee;
    background: #333;
    border-color: #333; }
  .lae-block .lae-load-more.lae-disabled {
    display: none; }
.lae-block .lae-loading {
  position: relative;
  margin: 0 -51px 0 15px;
  width: 36px;
  height: 36px;
  background: url(../images/loading.gif) center center no-repeat;
  visibility: hidden; }
.lae-block .lae-loader-gif {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: transparent url(../images/bricks-loader.gif) center center no-repeat;
  display: none; }
.lae-block.lae-processing .lae-loader-gif {
  display: block; }
.lae-block.lae-processing .lae-load-more-nav .lae-loading {
  visibility: visible; }

/* ------------------- General Block Header Styling ---------------------------- */
.lae-block .lae-block-header {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  position: relative;
  z-index: 5; }
.lae-block .lae-heading {
  display: block;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  text-align: left;
  max-width: none;
  font-size: 0;
  line-height: 0; }
.lae-block .lae-heading span, .lae-block .lae-heading a {
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  text-align: left;
  display: inline-block;
  margin: 0 100px 0 0; }
  .lae-dark-bg .lae-block .lae-heading span, .lae-dark-bg .lae-block .lae-heading a {
    color: #e5e5e5; }
.lae-block .lae-heading a {
  -webkit-transition: color 0.3s ease-in-out 0s;
  -moz-transition: color 0.3s ease-in-out 0s;
  -ms-transition: color 0.3s ease-in-out 0s;
  transition: color 0.3s ease-in-out 0s; }
  .lae-block .lae-heading a:hover {
    color: #666; }
.lae-block .lae-block-filter {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  z-index: 2;
  text-align: right; }
  .lae-dark-bg .lae-block .lae-block-filter {
    border-color: #666; }
  .lae-block .lae-block-filter .lae-block-filter-item {
    display: inline-block; }
    @media only screen and (max-width: 479px) {
      .lae-block .lae-block-filter .lae-block-filter-item {
        margin-right: 8px; } }
    .lae-block .lae-block-filter .lae-block-filter-item a {
      padding: 0 15px 8px;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
      display: block; }
      @media only screen and (max-width: 479px) {
        .lae-block .lae-block-filter .lae-block-filter-item a {
          padding: 0 10px 8px; } }
    .lae-block .lae-block-filter .lae-block-filter-item.lae-active {
      color: #f94213; }
    .lae-block .lae-block-filter .lae-block-filter-item:last-child {
      margin-right: 0; }
  .lae-block .lae-block-filter .lae-block-filter-dropdown {
    display: inline-block;
    text-align: right;
    position: relative; }
  .lae-block .lae-block-filter ul.lae-block-filter-list {
    display: inline-block;
    line-height: 1; }
  .lae-block .lae-block-filter .lae-block-filter-more {
    cursor: pointer;
    padding-left: 15px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    display: inline-block; }
    .lae-block .lae-block-filter .lae-block-filter-more i.lae-icon-arrow-right3 {
      display: inline-block;
      font-size: 10px;
      line-height: 1;
      vertical-align: middle;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(90deg);
      margin: 0 6px;
      color: #000; }
  .lae-block .lae-block-filter .lae-block-filter-dropdown:hover .lae-block-filter-more {
    background-color: #222; }
    .lae-block .lae-block-filter .lae-block-filter-dropdown:hover .lae-block-filter-more span, .lae-block .lae-block-filter .lae-block-filter-dropdown:hover .lae-block-filter-more i {
      color: #fff; }
  .lae-block .lae-block-filter ul.lae-block-filter-dropdown-list {
    list-style: none;
    position: absolute;
    right: 0;
    top: 100%;
    padding: 6px 0;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    border: 1px solid #ededed;
    display: none; }
    .lae-block .lae-block-filter ul.lae-block-filter-dropdown-list:hover i.lae-icon-arrow-right3 {
      color: #fff; }
  .lae-block .lae-block-filter .lae-block-filter-dropdown:hover ul.lae-block-filter-dropdown-list {
    display: block; }
  .lae-block .lae-block-filter ul.lae-block-filter-dropdown-list li {
    margin-left: 0; }
    .lae-block .lae-block-filter ul.lae-block-filter-dropdown-list li a {
      white-space: nowrap;
      display: block;
      padding: 8px 15px 8px 25px; }
  .lae-block .lae-block-filter .lae-block-filter-item a, .lae-block .lae-block-filter .lae-block-filter-more span, .lae-block .lae-block-filter ul.lae-block-filter-dropdown-list li a {
    color: #666;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase; }
  .lae-block .lae-block-filter .lae-block-filter-item a:hover, .lae-block .lae-block-filter .lae-block-filter-item.lae-active a {
    color: #f94213; }

/* --------- Block Header 1 --------- */
.lae-block-header-1 .lae-heading {
  border-bottom: 2px solid #ddd; }
  .lae-block-header-1 .lae-heading:after {
    content: "";
    background: #f94213;
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0; }
.lae-block-header-1 .lae-no-heading .lae-heading {
  min-height: 40px; }
  .lae-block-header-1 .lae-no-heading .lae-heading:after {
    display: none; }

/* --------- Block Header 2 --------- */
.lae-block-header-2 .lae-heading:before, .lae-block-header-2 .lae-heading:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: #ddd; }
.lae-block-header-2 .lae-heading:before {
  bottom: 4px; }
.lae-block-header-2 .lae-heading:after {
  bottom: 0; }
.lae-block-header-2 .lae-no-heading .lae-heading {
  min-height: 40px; }

/* --------- Block Header 3 --------- */
.lae-block-header-3 .lae-heading {
  padding: 0;
  border-bottom: 1px solid #ddd; }
  .lae-block-header-3 .lae-heading a, .lae-block-header-3 .lae-heading span {
    position: relative;
    padding: 4px 8px 4px 8px;
    border-radius: 2px 2px 2px 0;
    background: #333;
    color: #fff; }
    .lae-block-header-3 .lae-heading a:after, .lae-block-header-3 .lae-heading span:after {
      content: '';
      display: block;
      position: absolute;
      width: 0;
      height: 0;
      position: absolute;
      bottom: -8px;
      left: 0;
      border-left: 0;
      border-right: 8px solid transparent;
      border-top: 8px solid #333; }
  .lae-block-header-3 .lae-heading a:hover {
    color: #ddd; }
.lae-block-header-3 .lae-heading span, .lae-block-header-3 .lae-heading a {
  font-size: 15px;
  line-height: 24px; }
.lae-block-header-3 .lae-no-heading .lae-heading {
  min-height: 40px; }

/* --------- Block Header 4 --------- */
.lae-block-header-4 .lae-heading {
  padding: 0;
  border: 1px solid #333;
  border-bottom: 2px solid #333;
  text-align: center; }
  .lae-block-header-4 .lae-heading a, .lae-block-header-4 .lae-heading span {
    position: relative;
    padding: 8px 10px;
    border-radius: 0;
    margin: 0 auto; }
    .lae-block-header-4 .lae-heading a:after, .lae-block-header-4 .lae-heading span:after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 8px;
      bottom: -8px;
      margin: 0 auto;
      border-left: 8px solid transparent;
      border-top: 8px solid #43494a;
      border-right: 8px solid transparent; }
.lae-block-header-4 .lae-heading span, .lae-block-header-4 .lae-heading a {
  font-size: 15px;
  line-height: 24px; }
.lae-block-header-4 .lae-block-header .lae-block-filter {
  padding: 8px 10px; }
.lae-block-header-4 .lae-no-heading .lae-heading {
  min-height: 45px; }

/* --------- Block Header 5 --------- */
.lae-block-header-5 .lae-heading {
  background: #fbfbfb;
  border-bottom: 2px solid #eee;
  border-top: 1px solid #eee;
  padding: 10px 15px; }
.lae-block-header-5 .lae-block-header .lae-block-filter {
  padding: 10px 8px; }
.lae-block-header-5 .lae-no-heading .lae-heading {
  min-height: 50px; }

/* ------------------------ General Module Styling ------------------------------ */
.lae-module {
  position: relative;
  padding-bottom: 30px; }
  @media only screen and (max-width: 1024px) {
    .lae-module {
      margin-bottom: 20px; } }
  .lae-module.lae-zero-margin {
    margin: 0; }
  .lae-module .lae-module-image {
    position: relative; }
    .lae-module .lae-module-image .lae-terms {
      display: block;
      position: absolute;
      bottom: 0;
      font-size: 12px;
      line-height: 1;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      margin-right: 5px;
      padding: 8px 12px; }
      .lae-module .lae-module-image .lae-terms a {
        display: inline-block;
        color: #fff; }
  .lae-module .lae-module-thumb {
    position: relative;
    overflow: hidden;
    margin: 0 0 15px 0; }
    .lae-module .lae-module-thumb img {
      display: block;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
      .lae-module .lae-module-thumb img:hover {
        -webkit-filter: brightness(80%);
        -moz-filter: brightness(80%);
        -ms-filter: brightness(80%);
        filter: brightness(80%); }
    .lae-module .lae-module-thumb .lae-lightbox-item {
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      line-height: 1;
      padding: 12px 15px;
      background: transparent;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      -ms-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
      .lae-module .lae-module-thumb .lae-lightbox-item i {
        color: #fff;
        font-size: 18px; }
    .lae-module .lae-module-thumb:hover {
      background: rgba(0, 0, 0, 0.3); }
      .lae-module .lae-module-thumb:hover .lae-lightbox-item {
        display: block;
        background: rgba(0, 0, 0, 0.4); }
        .lae-module .lae-module-thumb:hover .lae-lightbox-item:hover {
          background: rgba(0, 0, 0, 0.6); }
  .lae-module .lae-entry-text-wrap {
    text-align: center;
    max-width: 650px;
    margin: 20px auto 0; }
  .lae-module .entry-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
    margin: 0 0 10px 0; }
    .lae-module .entry-title:after, .lae-module .entry-title:before {
      display: none; }
    .lae-module .entry-title a {
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -ms-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s;
      color: #333; }
      .lae-module .entry-title a:hover {
        color: #666; }
    .lae-dark-bg .lae-module .entry-title a {
      color: #e0e0e0; }
      .lae-dark-bg .lae-module .entry-title a:hover {
        color: #fff; }
  .lae-module .lae-module-meta {
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 8px 0; }
    .lae-module .lae-module-meta span {
      display: inline-block;
      padding: 0;
      margin: 0;
      color: #999; }
      .lae-module .lae-module-meta span:after {
        content: '/';
        padding-left: 6px;
        padding-right: 2px; }
      .lae-module .lae-module-meta span:first-child {
        border: none;
        padding-left: 0; }
      .lae-module .lae-module-meta span:last-child:after {
        display: none; }
      .lae-module .lae-module-meta span a {
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
        font-style: normal;
        color: #444; }
        .lae-module .lae-module-meta span a:hover {
          color: #888; }
      .lae-module .lae-module-meta span abbr {
        text-decoration: initial; }
      .lae-dark-bg .lae-module .lae-module-meta span {
        color: #707070; }
  .lae-module .lae-read-more a {
    padding: 10px 16px;
    text-transform: none;
    letter-spacing: 0; }
    @media only screen and (min-width: 1024px) {
      .lae-module .lae-read-more a {
        padding: 12px 18px; } }
  .lae-module .entry-summary {
    margin: 15px auto 0;
    padding: 0; }
    .lae-dark-bg .lae-module .entry-summary {
      color: #999; }

/* ------------ Module 3 ---------------- */
.lae-module-3 {
  padding-bottom: 26px; }

.lae-module-3 .lae-module-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .lae-module-3 .lae-module-thumb {
    width: 80px; } }
.lae-module-3 .lae-entry-details {
  margin-left: 116px;
  min-height: 70px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .lae-module-3 .lae-entry-details {
    margin-left: 95px;
    min-height: 55px; } }
.lae-module-3 .entry-title {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  font-weight: 500; }

@media (min-width: 768px) and (max-width: 1140px) {
  .lae-module-3 .entry-title {
    font-size: 12px;
    line-height: 18px; } }
.lae-module-3 .lae-module-meta {
  margin-bottom: 0;
  min-height: 0; }

/* ------------ Module 4 ---------------- */
.lae-module-4 {
  padding-bottom: 26px; }

.lae-module-4 .lae-module-thumb {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .lae-module-4 .lae-module-thumb {
    width: 80px; } }
.lae-module-4 .lae-entry-details {
  margin-right: 108px;
  min-height: 70px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .lae-module-4 .lae-entry-details {
    margin-right: 95px;
    min-height: 55px; } }
.lae-module-4 .entry-title {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  font-weight: 500; }

@media (min-width: 768px) and (max-width: 1140px) {
  .lae-module-4 .entry-title {
    font-size: 12px;
    line-height: 18px; } }
.lae-module-4 .lae-module-meta {
  margin-bottom: 0;
  min-height: 0; }

/*  ---------------- Module 6 --------------- */
.lae-module-6 {
  padding-bottom: 26px; }

@media (min-width: 767px) {
  .lae-module-6 {
    padding-bottom: 40px; } }
.lae-module-6 .lae-module-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px; }

@media (min-width: 500px) {
  .lae-module-6 .lae-module-thumb {
    width: 150px; } }
@media (min-width: 767px) {
  .lae-module-6 .lae-module-thumb {
    width: 220px; } }
.lae-module-6 .lae-entry-details {
  margin-left: 115px;
  min-height: 69px; }

@media (min-width: 500px) {
  .lae-module-6 .lae-entry-details {
    margin-left: 170px;
    min-height: 103px; } }
@media (min-width: 767px) {
  .lae-module-6 .lae-entry-details {
    margin-left: 244px;
    min-height: 150px; } }
.lae-module-6 .entry-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500; }

@media (min-width: 500px) {
  .lae-module-6 .entry-title {
    font-size: 22px;
    line-height: 28px; } }
.lae-module-6 .lae-excerpt {
  display: none; }

@media (min-width: 640px) {
  .lae-module-6 .lae-excerpt {
    display: block; } }
/*  ---------------- Module 7 --------------- */
.lae-module-7 {
  padding-bottom: 30px; }

@media (min-width: 767px) {
  .lae-module-7 {
    padding-bottom: 50px; } }
.lae-module-7 .lae-module-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px; }

@media (min-width: 500px) {
  .lae-module-7 .lae-module-thumb {
    width: 200px; } }
@media (min-width: 767px) {
  .lae-module-7 .lae-module-thumb {
    width: 300px; } }
.lae-module-7 .lae-entry-details {
  margin-left: 110px;
  min-height: 72px; }

@media (min-width: 500px) {
  .lae-module-7 .lae-entry-details {
    margin-left: 220px;
    min-height: 145px; } }
@media (min-width: 767px) {
  .lae-module-7 .lae-entry-details {
    margin-left: 330px;
    min-height: 235px; } }
.lae-module-7 .entry-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500; }

@media (min-width: 500px) {
  .lae-module-7 .entry-title {
    font-size: 20px;
    line-height: 26px; } }
@media (min-width: 1024px) {
  .lae-module-7 .entry-title {
    font-size: 26px;
    line-height: 34px; } }
.lae-module-7 .lae-excerpt {
  display: none; }

@media (min-width: 640px) {
  .lae-module-7 .lae-excerpt {
    display: block; } }
@media (min-width: 900px) {
  .lae-module-7 .lae-excerpt {
    margin-bottom: 20px; } }
.lae-module-7 .lae-read-more {
  display: none; }

@media (min-width: 900px) {
  .lae-module-7 .lae-read-more {
    display: block; } }
/* ---------------- Module 8 ---------------------- */
.lae-module-8 {
  padding-bottom: 30px; }

@media (min-width: 767px) {
  .lae-module-8 {
    padding-bottom: 40px; } }
@media (min-width: 1024px) {
  .lae-module-8 {
    padding-bottom: 60px; } }
.lae-module-8 .lae-module-thumb .wp-post-image {
  width: 100%; }

.lae-module-8:last-child {
  padding-bottom: 0; }

.lae-module-8 .entry-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px; }

@media (min-width: 500px) {
  .lae-module-8 .entry-title {
    font-size: 22px;
    line-height: 30px; } }
@media (min-width: 767px) {
  .lae-module-8 .entry-title {
    font-size: 30px;
    line-height: 38px; } }
.lae-module-8 .lae-entry-details {
  position: relative;
  padding: 15px 25px;
  margin: -60px auto 0;
  max-width: 90%;
  background: #fff; }

@media (min-width: 767px) {
  .lae-module-8 .lae-entry-details {
    padding: 20px 35px;
    margin: -70px auto 0; } }
@media (min-width: 1024px) {
  .lae-module-8 .lae-entry-details {
    padding: 25px 35px;
    margin: -85px auto 0; } }
.lae-module-8 .lae-excerpt {
  font-size: 14px;
  line-height: 24px;
  margin-top: 11px; }

.lae-module-8 .lae-read-more {
  display: none; }

@media (min-width: 500px) {
  .lae-module-8 .lae-read-more {
    display: block;
    margin-top: 15px; } }
/* ------------- Module 10 ------------------- */
.lae-module-10 {
  padding: 30px 0;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #e8e8e8; }
  .lae-module-10:last-child {
    border: none; }

@media (min-width: 1024px) {
  .lae-module-10 {
    padding: 40px 0; } }
.lae-module-10 .entry-title {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 10px 0; }

@media (min-width: 1024px) {
  .lae-module-10 .entry-title {
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
    margin: 0 0 15px 0; } }
.lae-module-10 .lae-entry-details {
  margin-bottom: 20px; }

@media (min-width: 1024px) {
  .lae-module-10 .lae-entry-details {
    position: relative;
    width: 100%;
    margin-bottom: 30px; } }
.lae-module-10 .lae-terms {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  background-color: transparent;
  display: block;
  margin-bottom: 20px; }

.lae-module-10 .lae-terms a {
  color: #9e9e9e; }

.lae-module-10 .lae-module-thumb img {
  width: 100%; }

.lae-module-10 .lae-excerpt {
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px; }

@media (min-width: 1024px) {
  .lae-module-10 .lae-excerpt {
    font-size: 15px;
    line-height: 26px;
    margin-top: 30px; } }
.lae-module-10 .lae-read-more {
  margin: 20px 0 0 0; }

.lae-module-10 .lae-read-more a {
  color: #333;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 0;
  -webkit-transition: color 0.3s ease-in-out 0s;
  -moz-transition: color 0.3s ease-in-out 0s;
  -ms-transition: color 0.3s ease-in-out 0s;
  transition: color 0.3s ease-in-out 0s; }
  .lae-module-10 .lae-read-more a:hover {
    color: #666; }
  .lae-module-10 .lae-read-more a:after {
    content: '›';
    display: inline-block;
    margin-left: 7px; }

.lae-module-10 .lae-read-more a:hover {
  color: #666; }

/* ----------- Module Transparent 1 ------------ */
.lae-module-trans1 {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 3px; }

.lae-module-trans1 .lae-module-thumb {
  margin: 0;
  padding: 0; }
  .lae-module-trans1 .lae-module-thumb a.lae-post-link {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s; }
  .lae-module-trans1 .lae-module-thumb a.lae-post-link:before {
    background: -owg-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    background: -moz-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    background: -o-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
  .lae-module-trans1 .lae-module-thumb:hover a.lae-post-link:before {
    background: -owg-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    background: -moz-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%); }

@media (min-width: 480px) {
  .lae-module-trans1 .lae-module-thumb {
    margin: 0 3px 0 0; } }
.lae-module-trans1 .lae-entry-details {
  position: absolute;
  bottom: 0;
  padding: 0 20px;
  margin-bottom: 20px;
  z-index: 1; }

.lae-module-trans1 .lae-entry-details .lae-post-author-name a {
  color: #fff; }

.lae-module-trans1 .entry-title {
  font-size: 18px;
  line-height: 26px; }

@media (min-width: 480px) {
  .lae-module-trans1 .entry-title {
    font-size: 16px;
    line-height: 22px; } }
@media (min-width: 1024px) {
  .lae-module-trans1 .entry-title {
    font-size: 21px;
    line-height: 28px; } }
.lae-module-trans1 .entry-title a, .lae-module-trans1 .lae-module-meta span a {
  color: #fff !important; }

.lae-module-trans1 .entry-title a:hover, .lae-module-trans1 .lae-module-meta span a:hover {
  color: #ccc !important; }

.lae-module-trans1 .lae-module-meta span:after, .lae-module-trans1 .lae-module-meta span {
  color: #bbb !important; }

/* ------- Block 12 ---------- */
.lae-block-12 .lae-module-trans1 {
  margin-bottom: 30px; }

/*  common slick nav
================================================== */

.pb-common-nav-wrap {
    position: relative;
}
.pb-common-nav {
    position: absolute;
    right: 0;
    top: -70px;
}
.pb-common-prev.pb-common-nav {
    right: 25px;
}
.pb-common-nav {
    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;
}
.pb-common-nav:hover {
    border: 1px solid transparent;
    color: #FFF;
    background: #f00;
}
.ts-common-nav {
    top: 0;
    border: none;
    color: #fff;
    line-height: 20px;
}
.ts-common-nav:hover {
    border: none;
}


/*  common slick nav
================================================== */

.ps-common-nav-wrap {
    position: relative;
}
.ps-common-nav {
    position: absolute;
    top: 50%;
}
.ps-common-prev.ps-common-nav {
    left: 0;
}
.ps-common-next.ps-common-nav {
    right: 0;
}
.ps-common-nav {
    margin: 0;
    background: #000;
    background: rgba(0, 0, 0, 0.65);
    border: none;
    color: #999;
    width: 34px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
    cursor: pointer;
    z-index: 1;
    margin-top: -17px;
}
.ps-common-nav:hover {
    border: none;
    color: #FFF;
}



/*avas post block list*/
.recent-posts-widget ul li{padding-bottom:20px}
.recent-posts-widget ul{padding-right:0}
.recent-posts-widget ul li:last-child{padding-bottom:0}
.recent-posts-widget .posts-thumb{margin-right:20px}
.recent-posts-widget .comment-author-link a{color:#222;font-weight:700;margin-bottom:5px;display:inline-block}
.recent-posts-widget .post-info .entry-title{font-size:14px;font-weight:600;line-height:20px;margin:0;display:inline-block}
.recent-posts-widget .posts-thumb img{margin-right:10px;width:100px;height:80px}
.recent-posts-widget .posts-thumb{position:relative}
.recent-posts-widget .posts-thumb .category-meta-bg{position:absolute;top:-3px;left:0px;z-index:1}
.posts-thumb-full{position:relative}
.posts-thumb-full .post-info-full{position:absolute;bottom:0;padding:25px;z-index:2}
.posts-thumb-full .post-info-full .post-meta time{color:#fff !important}
.media-body {
    -ms-flex: 1;
    flex: 1;
}
.media{display: flex;}
.post-title.title-small {
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.recent-posts-widget .post-info .post-title a {
    color: #1c1c1c;
}
.recent-posts-widget .post-meta {
    font-weight: 400;
    padding: 0;
    line-height: 17px;
    margin-bottom: 10px;
}
.recent-posts-widget .post-meta time {
    color: #888;
}

.elementor-element .posts-thumb-full .post-info-full .post-meta,
.elementor-element .posts-thumb-full .post-info-full .post-meta time {
    color: #fff !important;
}


/*-- category --*/

.category-meta-bg a {
    position: relative;
    font-size: 10px;
    padding: 0 6px;
    margin-right: 5px;
    background: #1c1c1c;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff !important;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    transition: 400ms;
    -webkit-transition: 400ms;
}
.category-meta-bg a:hover,
.recent-posts-widget .category-meta-bg a:hover {
    color: #fff;
}
/*.category-meta-bg a:before {
    content: '';
    position: absolute;
    left: 0;
    z-index: 0;
    bottom: -7px;
    border-top: 8px solid;
    border-top-color: #1c1c1c;
    border-right: 5px solid transparent;
    -webkit-transition: 400ms;
}*/

.recent-posts-widget.post-block13-element .category-meta-bg a{
    width: 20px;
    text-align: center;
}
/*-- Post title --*/

.post-title {
    font-size: 18px;
    line-height: 24px;
    margin: 15px 0 0;
}
.post-title a,
.post-content .post-title a {
    color: #1c1c1c;
}
.post-title.title-extra-large {
    font-size: 26px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.post-title.title-large {
    font-size: 20px;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.post-title.title-medium {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.post-title.title-small {
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.post-overaly-style {
    position: relative;
    overflow: hidden;
}
.post-overaly-style:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left bottom, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}
.post-overaly-style .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 1;
}
.post-overaly-style .post-title a {
    color: #fff;
}
.post-overaly-style .post-date {
    color: #fff;
}
.post-thumb {
    max-width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.post-thumb img {
    display: block;
    width: 100%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-backface-visibility: hidden;
}
.post-block-style:hover .post-thumb img,
.post-overaly-style:hover .post-thumb img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.post-block-style.post-float:hover .post-thumb img {
    transform: none;
}
/* Post overaly Top Content */

.post-overaly-style.contentTop .post-content {
    top: 0;
    bottom: auto;
}
.post-overaly-style.contentTop:before {
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}
/*-- Post Overaly Textcenter --*/

.post-overaly-style.text-center .post-content {
    padding: 30px;
}
.post-overaly-style.text-center {
    margin-bottom: 20px;
}
.post-overaly-style.text-center .post-thumb img {
    min-height: 260px;
}
.post-overaly-style.text-center .post-meta time {
    padding: 0;
    margin: 0;
}
.post-overaly-style.text-center:before {
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left bottom, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}
/*-- Post Block style --*/

.post-block-style {
    position: relative;
    overflow: hidden;
}
.post-block-style .post-content {
    padding: 0;
}
.post-block-style .post-content p {
    font-size: 13px;
}
.post-content .post-meta span {
    font-size: 12px;
    color: #a3a3a3;
    margin-right: 8px;
    padding-right: 10px;
    border-right: 1px solid #dedede;
    line-height: 12px;
    display: inline-block;
}
.post-block-style .post-content .post-meta {
    margin: 5px 0 8px;
    padding: 0;
}
.post-meta .post-author a {
    color: #1c1c1c;
    font-weight: 700;
    text-transform: capitalize;
}
.post-meta span.post-date {
    border-right: 0;
}
/*  Post Block 2
================================================== */

.block-item2.post-block2-blank {
    min-height: 307px;
    background: #666;
}
/* post block 4
================================================== */

.post-block-style.post-float-half .post-thumb {
    float: left;
    position: relative;
    z-index: 1;
    margin-right: 30px;
    margin-bottom: 20px;
}
.post-block-style.post-float-half .post-thumb img {
    max-width: 300px;
}
.post-block-style .category-meta-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}
.post-block-style {
    padding: 1px;
}

.post-block-style.post-float-half .post-title{
    margin-top: 0;
}

/* post block 5
================================================== */

.post-block5-element .block-item5 {
    padding: 0 15px 15px;
    vertical-align: top;
}

.post-block5-blank .post-thumb {
    min-height: 154px;
    background: #666;
}

.post-block5-element .slick-slide > div{
    margin: 0 -15px;
}

/*  post block 6
================================================== */
/*-- Post list --*/

.post-thumb.block6img-blank {
    min-height: 305px;
    background: #666;
}
.list-post-block {
    margin-top: 30px;
}
.list-post {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-post-block .list-post > li {
    margin-bottom: 30px;
    max-height: 75px;
}
.list-post-block .list-post > li:last-child {
    margin-bottom: 0;
}
.post-block-style.post-float .post-thumb {
    float: left;
    position: relative;
    z-index: 1;
    margin-right: 20px;
}
.post-block-style.post-float .post-thumb img {
    max-width: 100px;
    min-height: 75px;
}
.post-block-style.post-float .post-title {
    margin-top: 0;
}
.post-block-style.post-float .post-content {
    z-index: 0;
}
.post-block-style.post-float .post-cat {
    font-size: 8px;
    left: 0;
    top: 0;
}
/* post block 6 Video
================================================== */

.pad-l-0 {
    padding-left: 0;
}
.pad-r-0 {
    padding-right: 0;
}
.video-tab {
    color: #fff;
}
.post-thumb.block7img-blank {
    height: 430px;
    background: #666;
}
.video-tab-title {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 30px 15px;
}
.video-tab .post-overaly-style {
    min-height: 403px;
}
.video-tab .post-overaly-style .post-content {
    padding: 35px;
}
.video-tab .post-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: normal;
}
.video-tab .nav-tabs>li {
    width: 100%;
    float: none;
    display: block;
    margin-bottom: -1px;
    border: 1px solid #393a3b;
    min-height: 135px;
    padding: 30px 30px 25px;
}
.video-tab .nav-tabs .nav-item.show .nav-link,
.video-tab .nav-tabs .nav-link.active {
    color: #fff;
    background: none;
    border: none;
}
.video-tab .nav-tabs>li>a {
    background: none;
    border: 0;
    padding: 0;
}
.video-tab .nav-tabs>li>a .post-thumb img {
    max-width: 110px;
    min-height: 85px;
}
.video-tab .nav-tabs {
    border: none;
    padding: 0;
    margin: 0;
    list-style: none;
}
.video-tab .nav-tabs>li>a .post-thumb {
    float: left;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}
.video-tab .nav-tabs>li>a .post-title {
    color: #fff;
    font-weight: normal;
    line-height: 28px;
    font-size: 16px;
    margin: 0;
}
.video-icon {
    text-align: center;
    color: #fff;
    display: block;
    top: 50%;
    margin-top: -50px;
    font-size: 32px;
    z-index: 1;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    width: 80px;
    height: 80px;
    line-height: 65px;
    border: 7px solid #fff;
    display: inline-block;
    border-radius: 100%;
}
.video-icon i {
    margin-left: 5px;
}

.video-icon a{
    color: #fff !important;
}

/*  post block 9 text center
================================================== */

.elementor-widget-news247-post-block9.text-center .post-overaly-style.contentTop .post-content{
   top: 50%;
   margin-top: -80px;
}

.elementor-widget-news247-post-block9.text-center .post-overaly-style.contentTop:before{
   background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
   background: -webkit-gradient(linear, left bottom, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
   background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
   background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
   background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}



/*  post block 11
================================================== */

.post-block11-element .row  .row .post-title{
    font-size: 14px;
    line-height: 20px;
}

.post-block11-element .row  .row .post-block-style{
    margin-bottom: 10px;
}

/* post slide 1
================================================== */

.post-slide1-element .post-slide-item1 {
    min-height: 465px;
    position: relative;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-backface-visibility: hidden;
}
.post-slide1-element .post-slide-item1:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}
.post-slide-item1 .post-content {
    padding: 30px;
    z-index: 1;
    position: relative;
}
.featured-post .post-date,
.featured-post .post-title a {
    color: #fff;
}
/* Featured slider content bottom */

.featured-slider.content-bottom .featured-post {
    position: absolute;
    bottom: 0;
}
.featured-slider.content-bottom .item:before {
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left bottom, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}
/* post block 8
================================================== */

.hot-post-top {
    min-height: 280px;
    margin-bottom: 3px;
}
.hot-post-bottom,
.hot-post-bottom img {
    min-height: 182px;
}
.hot-post-top .post-content,
.hot-post-bottom .post-content {
    padding: 20px;
}


.hot-post-top .post-title.title-medium{
    font-size: 22px;
    line-height: 30px;
}

.hot-post-bottom .post-title.title-medium{
    font-size: 14px;
    line-height: 20px;
}

.hot-post-bottom .post-date{
    font-size: 13px;
}

/* post block 9
================================================== */

.post-block9-element .fourNewsboxTop {
    margin-bottom: 3px;
}
.post-block9-element .fourNewsboxTop {
    min-height: 231px;
}
.fourNewsboxTop {
    margin-bottom: 3px;
}

.post-block9-element{
    margin: 0 15px;
}

.post-block9-element .row [class*=col]{
    padding: 0 2px;
}
.mt-0 {
    margin-top: 0!important;
}

/* Load More Button */
.eael-load-more-button-wrap {
  width: 100%;
  display: block;
  margin: 20px auto;
  clear: both;
}
.eael-load-more-button {
  position: relative;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  border: 0;
  padding: 15px 30px;
  z-index: 2;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .25em;
  transition: all .5s;
  overflow: hidden;
}

.eael-load-more-button:hover {
  background: #27bdbd;
}

.button--hide {
  opacity: 0;
}

.button--loading {
  padding-left: 50px!important;
}

.eael-load-more-button .button__loader {
  float: left;
  position: absolute;
  left: -50px;
  top: 10px;
  transition: all .2s;
 }

.button--loading .button__loader {
  left: 15px;
}

.eael-btn-loader, .eael-btn-loader:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.eael-btn-loader {
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid rgba(255, 255, 255, 0.2);
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid #ffffff;
  transform: translateZ(0);
  animation: loaderSpin 1.1s infinite linear;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
span.odometer-formatting-mark {
    display: none;
}