/* --------------------------------- 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 .3s ease-in-out 0s;
  transition: all .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 .3s ease-in-out 0s;
    transition: all .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);
          transform: rotate(45deg); }

.lae-accordion-style2 .lae-panel .lae-panel-title {
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .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;
    -webkit-transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
    transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
    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-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);
          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 .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    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 ---------------------------------------------------- */
@-webkit-keyframes lae-fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@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: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .lae-tabs .lae-tab-nav .lae-tab {
      text-align: center;
      -webkit-box-flex: 0;
      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 .3s ease-in-out 0s;
        transition: color .3s ease-in-out 0s; }
        @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;
        -webkit-animation: lae-fade 0.3s ease-in-out;
                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: -ms-flexbox;
  display: flex; }
  .lae-tabs.lae-vertical .lae-tab-nav {
    -webkit-box-flex: 1;
    box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .lae-tabs.lae-vertical .lae-tab-panes {
    -webkit-box-flex: 4;
    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-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-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-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-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 .3s ease-in-out 0s;
      transition: all .3s ease-in-out 0s; }
      .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 .3s ease-in-out 0s;
      transition: all .3s ease-in-out 0s; }
      .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-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-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 .3s ease-in-out 0s;
        transition: background .3s ease-in-out 0s; }
      .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;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s, -webkit-transform 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 .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    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;
  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 .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    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;
    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 .3s ease-in-out 0s;
      transition: all .3s ease-in-out 0s; }
      .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: #ffffff; }
.lae-tabs-style10 .lae-tab-panes {
  background: #f2f2f2;
  border-radius: 0 5px 5px 0; }

.lae-tabs-style10 .lae-mobile-layout {
  -webkit-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-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 .3s ease-in-out 0s;
      transition: all .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 .3s ease-in-out 0s;
        transition: all .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%);
            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%);
                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 .3s ease-in-out 0s;
        transition: all .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%);
              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;
    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);
      -webkit-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; } }
/* ---------------------------------- 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;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-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%);
  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%);
  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;
  transition: -webkit-transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
  -webkit-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; }
  .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;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-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;
      -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;
    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 .4s ease-in-out 0s;
  transition: color .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 .4s ease-in-out 0s;
  transition: all .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);
          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: 80px; }
  @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 .4s ease-in-out 0s;
    transition: color .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 .4s ease-in-out 0s;
    transition: all .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);
            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 .4s ease-in-out 0s;
      transition: color .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: -webkit-box-shadow .25s ease 0s;
    transition: -webkit-box-shadow .25s ease 0s;
    transition: box-shadow .25s ease 0s;
    transition: box-shadow .25s ease 0s, -webkit-box-shadow .25s ease 0s;
    -webkit-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);
              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 {
      width: 100%;
      display: block;
      -webkit-transition: all .4s ease-in-out 0s;
      transition: all .4s ease-in-out 0s;
      max-width: 100%; }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover img {
       }
    .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info {
      display: block;
      text-align: center; }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-entry-info {
        text-align: center;
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 100%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      .lae-posts-carousel .lae-posts-carousel-item .lae-project-image .lae-image-info .lae-post-title {
        padding: 10px;
        margin: 0;
        font-size: 22px;
        line-height: 34px;
        font-weight: 400;
        color: #fff;
        opacity: 0;
        -webkit-transition: opacity .4s ease-in-out 0s;
        transition: opacity .4s ease-in-out 0s; }
        @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 .3s ease-in-out 0s;
          transition: all .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;
        font-size: 14px;
        line-height: 22px;
        opacity: 0;
        -webkit-transition: opacity .4s ease-in-out 0s;
        transition: opacity .4s ease-in-out 0s; }
        .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: 22px;
          font-style: italic;
          -webkit-transition: all .4s ease-in-out 0s;
          transition: all .4s 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 .lae-image-info .lae-post-title, .lae-posts-carousel .lae-posts-carousel-item .lae-project-image:hover .lae-image-info .lae-terms {
      opacity: 1; }
  .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 .4s ease-in-out 0s;
        transition: all .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;
        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 .4s ease-in-out 0s;
      transition: all .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 .4s ease-in-out 0s;
      transition: all .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-block-grid .lae-block-inner {
  -webkit-transition: opacity .4s ease-in 0s;
  transition: opacity .4s ease-in 0s; }
.lae-block-grid .lae-module {
  padding: 0; }

/* ---------------------------------- 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 .4s ease-in-out 0s;
      transition: all .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 .4s ease-in-out 0s;
    transition: all .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%);
          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%);
          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 .3s ease-in-out 0s;
      transition: color .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 .4s ease-in-out 0s;
      transition: all .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 .hentry {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    -webkit-box-shadow: 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 {
      width: 100%;
      display: block;
      -webkit-transition: all .4s ease-in-out 0s;
      transition: all .4s ease-in-out 0s; }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image:hover img {
      -webkit-filter: brightness(50%);
              filter: brightness(50%); }
    .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info {
      display: block;
      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;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 100%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
      .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 .4s ease-in-out 0s;
        transition: opacity .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 .3s ease-in-out 0s;
          transition: all .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: 22px;
        font-style: italic;
        opacity: 0;
        -webkit-transition: opacity .4s ease-in-out 0s;
        transition: opacity .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 .4s ease-in-out 0s;
        transition: color .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: 22px;
        line-height: 1;
        display: block;
        padding: 12px;
        background: transparent;
        opacity: 0;
        -webkit-transition: all .3s ease-in-out 0s;
        transition: all .3s ease-in-out 0s; }
        .lae-gallery-carousel .lae-gallery-carousel-item .lae-project-image .lae-image-info .lae-lightbox-item i {
          font-size: 22px; }
        .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 .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; }

/* ---------------------------------- Image Gallery Widget ---------------------------------- */
.lae-gallery-wrap {
  clear: both; }
  .lae-gallery-wrap .lae-gallery-header {
    position: relative;
    max-width: 1140px;
    margin: 0 auto 30px;
    overflow: hidden;
    clear: both;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .lae-gallery-wrap .lae-gallery-header.lae-no-heading {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    @media only screen and (max-width: 800px) {
      .lae-gallery-wrap .lae-gallery-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column wrap;
                flex-flow: column wrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  .lae-gallery-wrap .lae-heading {
    display: inline-block;
    text-align: left;
    max-width: none;
    font-size: 32px;
    line-height: 44px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0 100px 0 0; }
    .lae-dark-bg .lae-gallery-wrap .lae-heading {
      color: #e5e5e5; }
    @media only screen and (max-width: 800px) {
      .lae-gallery-wrap .lae-heading {
        margin-bottom: 30px; } }
  .lae-gallery-wrap .lae-taxonomy-filter {
    display: block;
    margin: 0;
    padding: 0;
    -webkit-align-self: center;
    align-self: center;
    -ms-flex-item-align: center; }
    @media only screen and (max-width: 800px) {
      .lae-gallery-wrap .lae-taxonomy-filter {
        -webkit-align-self: flex-start;
        align-self: flex-start;
        -ms-flex-item-align: start; } }
    .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item {
      position: relative;
      display: inline-block;
      margin: 0 0 15px 0;
      padding: 0;
      font-style: normal;
      border-bottom: 1px solid #ddd; }
      .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item {
        border-color: #444; }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a {
        font-size: 15px;
        line-height: 24px;
        -webkit-transition: all .4s ease-in-out 0s;
        transition: all .4s ease-in-out 0s;
        display: block;
        color: #777;
        padding: 0 15px 15px; }
        .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a {
          color: #999; }
        .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
          color: #222; }
          .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item a:hover {
            color: #fff; }
        @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 a {
        color: #222; }
        .lae-dark-bg .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item.lae-active a {
          color: #fff; }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item.lae-active:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: 3px solid #f94213;
        width: 100%; }
      .lae-gallery-wrap .lae-taxonomy-filter .lae-filter-item:last-child {
        margin-right: 0; }
  .lae-gallery-wrap .lae-gallery .lae-gallery-item {
    margin: 0; }
    .lae-gallery-wrap .lae-gallery .lae-gallery-item .hentry {
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      -webkit-box-shadow: 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;
        width: 100%;
        -webkit-transition: all .4s ease-in-out 0s;
        transition: all .4s ease-in-out 0s; }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image:hover img {
        -webkit-filter: brightness(50%);
                filter: brightness(50%); }
      .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info {
        display: block;
        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;
          top: 50%;
          left: 0;
          right: 0;
          margin: auto;
          max-width: 100%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%); }
        .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 .4s ease-in-out 0s;
          transition: opacity .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 .3s ease-in-out 0s;
            transition: all .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: 22px;
          font-style: italic;
          opacity: 0;
          -webkit-transition: opacity .4s ease-in-out 0s;
          transition: opacity .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 .4s ease-in-out 0s;
          transition: color .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: 32px; }
        .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item {
          display: block;
          opacity: 0; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item i {
            position: absolute;
            top: 0;
            right: 0;
            display: block;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            padding: 12px;
            -webkit-transition: all .3s ease-in-out 0s;
            transition: all .3s ease-in-out 0s; }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item.lae-click-icon {
            background: transparent; }
            .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item.lae-click-icon:hover i {
              background: rgba(0, 0, 0, 0.5); }
          .lae-gallery-wrap .lae-gallery .lae-gallery-item .lae-project-image .lae-image-info .lae-lightbox-item.lae-click-anywhere {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%; }
      .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-pagination {
    clear: both;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px; }
    .lae-gallery-wrap .lae-pagination .lae-page-nav {
      -webkit-box-flex: 0;
      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 .3s ease-in-out 0s;
      transition: all .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 .3s ease-in-out 0s;
    transition: all .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: 2;
      box-ordinal-group: 2;
      -moz-order: 2;
      order: 2;
      -ms-flex-order: 2; }
    .lae-features .lae-feature:nth-child(even) .lae-text-content {
      -webkit-box-ordinal-group: 1;
      box-ordinal-group: 1;
      -moz-order: 1;
      order: 1;
      -ms-flex-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: calc(100% - 40px);
      float: left;
      margin-left: 20px;
      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-onefifth:nth-child(5n + 1) {
      border-left: 1px solid #ddd; }
    .lae-clients .lae-client.lae-onefifth: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-onefifth: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-onefifth: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-onefifth: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;
      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 .4s ease-in-out 0s;
      transition: opacity .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 .4s ease-in-out 0s;
      transition: opacity .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; }

/* --------------------------- Services Carousel Widget ------------------------------ */
.lae-services-carousel-item img {
  margin: 0 0 20px 0; }

.lae-services-carousel-item .lae-service-text {
  padding: 20px 20px 30px;
  font-size: 15px;
  line-height: 24px; }

.lae-services-carousel-item .lae-title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold; }

.lae-services-carousel-item .lae-subtitle {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
  font-style: italic;
  color: #888; }

.lae-services-carousel-item .lae-read-more {
  display: block;
  text-decoration: underline;
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px; }

/* ---------------------------------- 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 .4s ease-in-out 0s;
      transition: all .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 ----------------------------------------- */
/* ------- Block 12 ---------- */
.lae-block-12 .lae-module-trans1 {
  margin-bottom: 30px; }

/*# sourceMappingURL=lae-widgets.css.map */