html {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #161616;
}

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





/* -------------------------------------------------------------------------- */
/*                                    Lists                                   */
/* -------------------------------------------------------------------------- */
ul, ol {
  margin: 0px;
  padding: 0px;
  margin-left: 2em;
  font-size: 20px;
  line-height: 1.6;
}

ol li {
  margin: 0px;
  padding: 0px;
  margin-left: 1em;
}

ul + p,
ol + p {
  margin-top: 24px;
}





/* -------------------------------------------------------------------------- */
/*                                   Buttons                                  */
/* -------------------------------------------------------------------------- */
.widget .c-button,
.c-button,
.gform_wrapper input[type="submit"] {
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 16px;

  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;

  background-color: #ec8231;
  border: 2px solid #ec8231;
  border-radius: 2px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;

  box-shadow:
      0 2px 2px 0 rgba(0,0,0,0.14),
      0 3px 1px -2px rgba(0,0,0,0.12),
      0 1px 5px 0 rgba(0,0,0,0.2);
}

.widget .c-button:hover,
.c-button:hover,
.gform_wrapper input[type="submit"]:hover {
  background-color: #fff;
  color: #ec8231;
}

.widget .c-button.c-button--big,
.c-button.c-button--big {
  height: 48px;
  font-size: 20px !important;
  line-height: 48px !important;
  min-width: 96px;
}
.widget .c-button.c-button--block,
.c-button.c-button--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

/* ---------------------------- Alternate colors ---------------------------- */
.widget .c-button--blue,
.c-button--blue {
  background-color: #0078b0;
  border-color: #0078b0;
}
.widget .c-button--blue:hover,
.c-button--blue:hover {
  background-color: #fff;
  color: #0078b0;
}
.widget .c-button--gray,
.c-button--gray {
  background-color: #979797;
  border-color: #979797;
}
.widget .c-button--gray:hover,
.c-button--gray:hover {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.60);
}

/* ---------------------------- Outline + colors ---------------------------- */
.widget .c-button--outline,
.c-button--outline {
  background-color: transparent;
  color: #ec8231;
}
.widget .c-button--outline:hover,
.c-button--outline:hover {
  background-color: transparent;
  color: #ec8231;
}

.widget .c-button--blue.c-button--outline,
.c-button--blue.c-button--outline {
  background-color: transparent;
  color: #0078b0;
}
.widget .c-button--blue.c-button--outline:hover,
.c-button--blue.c-button--outline:hover {
  background-color: transparent;
  color: #0078b0;
}

.widget .c-button--outline.c-button--gray,
.c-button--outline.c-button--gray {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.60);
}
.widget .c-button--outline.c-button--gray:hover,
.c-button--outline.c-button--gray:hover {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.60);
}

.widget .c-button--outline.c-button--blue,
.c-button--outline.c-button--blue {
  background-color: transparent;
  color: #0078b0;
}
.widget .c-button--outline.c-button--blue:hover,
.c-button--outline.c-button--blue:hover {
  background-color: transparent;
  color: #0078b0;
}

.c-button--no-bg {
  background-color: transparent;
  color: #0078b0;
  border: none;
  padding: 0 8px;
  box-shadow: none !important;
}
.c-button--no-bg.c-button--gray {
  color: #979797;
}

/* Legacy support */
.c-button.left { text-align: left; }
.c-button.right { text-align: right; }
.c-button.center { text-align: center; }





/* -------------------------------------------------------------------------- */
/*                              VC tab navigation                             */
/* -------------------------------------------------------------------------- */
.q_tabs {
  display: block;
}

.q_tabs .tabs-nav {
  list-style: none outside none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  display: inline-block;
  position: relative;
}

.q_tabs .tabs-nav li {
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  float: left;
}

.q_tabs .tabs-nav li a {
  height: 40px;
  line-height: 40px;
  display: block;
  margin: 0;
  padding: 0 14px;
  font-size: 13px;
  text-decoration: none;
  font-style: normal;
  color: #b4b4b4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.q_tabs .tabs-nav li.active a {
  color: #303030;
}

.q_tabs .tabs-nav li.active a:hover,
.q_tabs .tabs-nav li a:hover {
  color: #0078B0;
}


/* ------------------------- Horizontal tabs styles ------------------------- */
.q_tabs.horizontal.center {
  text-align: center;
}

.q_tabs.horizontal.left {
  text-align: left;
}

.q_tabs.horizontal.right {
  text-align: right;
}

.q_tabs.horizontal .tabs-container {
  padding-top: 4px;
  text-align: left;
}

.q_tabs.horizontal.right .tabs-container {
  text-align: right;
}

.q_tabs.horizontal .tabs-nav li:first-child a {
  padding-left: 0;
}


/* -------------------------- Vertical tabs styles -------------------------- */
.q_tabs.vertical .tabs-nav {
  width: 24%;
  margin: 0;
}

.q_tabs.vertical.right .tabs-nav {
  float: right;
}

.q_tabs.vertical.left .tabs-nav {
  float: left;
}

.q_tabs.vertical .tabs-nav li {
  display: block;
  width: 100%;
}

.q_tabs.vertical .tabs-nav li a {
  text-align: center;
  height: auto;
  line-height: normal;
  padding: 13px 17px;
}

.q_tabs.vertical .tabs-nav li.active a {
  border: 2px solid #e3e3e3;
  padding: 11px 14px 11px 14px;
  position: relative;
  z-index: 100;
}

.q_tabs.vertical.left .tabs-nav li.active a {
  border-right-color: #fff;
  border-radius: 4px 0 0 4px;
}

.q_tabs.vertical.right .tabs-nav li.active a {
  border-left-color: #fff;
  border-radius: 0 4px 4px 0;
}

.q_tabs.vertical .tabs-container {
  width: 73.7%;
}

.q_tabs.vertical.left .tabs-container {
  float: left;
  text-align: left;
}

.q_tabs.vertical.right .tabs-container {
  float: right;
  text-align: right;
}

.q_tabs.vertical .tab-content {
  position: relative;
  z-index: 50;
}

.q_tabs.vertical.left .tab-content {
  padding-left: 17px;
  border-left: 2px solid #e3e3e3;
  left: -2px;
}

.q_tabs.vertical.right .tab-content {
  padding-right: 17px;
  border-right: 2px solid #e3e3e3;
  right: -2px;
}


/* ---------------------------- Boxed tabs styles --------------------------- */
.q_tabs.boxed {
  text-align: left;
}

.q_tabs.boxed .tabs-nav {
  display: block;
}

.q_tabs.boxed .tabs-nav li a {
  border-bottom: none;
  position: relative;
  z-index: 200;
}

.q_tabs.boxed .tabs-nav li.active a {
  position: relative;
  z-index: 100;
  line-height: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid #e3e3e3;
  border-bottom-color: #fff;
  border-radius: 4px 4px 0 0;
}

.q_tabs.boxed .tabs-container {
  overflow: hidden;
  text-align: left;
  padding: 19px 0 0;
  border-top: 2px solid #e3e3e3;
  position: relative;
  top: -2px;
  z-index: 50;
}





/* -------------------------------------------------------------------------- */
/*                             Footer utility menu                            */
/* -------------------------------------------------------------------------- */
.LAC-FooterUtilityMenu {
  padding: 0;
  margin: 0;
}
  .LAC-footerUtilityMenuItem {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    position: relative;
    margin-right: 12px;
  }
  .LAC-footerUtilityMenuItem.has-noLink {
    text-decoration: none;
    pointer-events: none;
  }
  .LAC-footerUtilityMenuItem:last-child { margin: 0; }
  .LAC-footerUtilityMenuItem:hover { color: #fff; }
  .LAC-footerUtilityMenuItem:hover:after { color: rgba(255, 255, 255, 0.70); }





/* -------------------------------------------------------------------------- */
/*                          Loading circle animation                          */
/* -------------------------------------------------------------------------- */
.LAC-LoadingCircle {
  position: relative;
  margin: 0 auto;
  width: 40px;
}
  .LAC-LoadingCircle:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .LAC-LoadingCircle svg {
    -webkit-animation: LAC-LoadingCircle-rotate 2s linear infinite;
    animation: LAC-LoadingCircle-rotate 2s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .LAC-LoadingCircle svg circle {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: LAC-LoadingCircle-dash 1.5s ease-in-out infinite;
    animation: LAC-LoadingCircle-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #ec8231;
  }

@-webkit-keyframes LAC-LoadingCircle-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes LAC-LoadingCircle-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes LAC-LoadingCircle-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes LAC-LoadingCircle-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}





/* -------------------------------------------------------------------------- */
/*                                  Utilities                                 */
/* -------------------------------------------------------------------------- */
.clearfix {
  *zoom: 1;
}
  .clearfix:before,
  .clearfix:after {
    content: " ";
    display: table;
  }
  .clearfix:after {
    clear: both;
  }


.clear:after {
  clear: both;
  content: "";
  display: block;
}


.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.aligncenter {
  display: block;
  margin: 10px auto;
}

.text-align-right { text-align: right; }
.text-align-left { text-align: left; }
.text-align-center { text-align: center; }


.content ul ul,
.content ol ol {
  padding: 0 0 0 15px;
}





/* -------------------------------------------------------------------------- */
/*                                   Tables                                   */
/* -------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: medium none;
  vertical-align: middle;
}
  table th {
    border: 0;
    padding: 5px 7px;
    text-align: center;
  }
  table td {
    padding: 5px 10px;
    text-align: center;
  }


img {
  max-width: 100%;
  height: auto;
  image-rendering: optimizeQuality;
}
a img {
  border: none;
}





/* -------------------------------------------------------------------------- */
/*                                  Headings                                  */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #4d4d4d;
  margin: 1em 0;
  font-weight: bold;
  line-height: 1.4;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 34px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
  color: #7c573f;
}
h4, h5, h6 {
  font-size: 20px;
}





/* -------------------------------------------------------------------------- */
/*                                    Links                                   */
/* -------------------------------------------------------------------------- */
a, .v-display-as-link {
  color: #0078b0;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
}
  a:not(.no-underline):hover {
    text-decoration: underline;
  }





p {
  font-size: 20px;
  line-height: 1.6;
  margin: 1em 0;
}





/* -------------------------------------------------------------------------- */
/*                               Page containers                              */
/* -------------------------------------------------------------------------- */
.wrapper {
  margin-top: 121px;
  position: relative;
  z-index: 1000;
  position: relative;
  z-index: 1000;
}
.has-helloBar .wrapper {
  margin-top: 161px;
}
.right_side_menu_opened .wrapper {
  left: -270px;
}

.wrapper_inner {
  width: 100%;
  overflow: hidden;
}

.content {
  margin-top: 0;
  position: relative;
  z-index: 100;
  background-color: #fff;
}

.content.content_top_margin {
  margin-top: 100px !important;
}

.content.content_top_margin_none {
  margin-top: 0 !important;
}

.container {
  position: relative;
  padding: 0;
  width: 100%;
}

.container_inner {
  width: 1200px;
  margin: 0px auto;
}

.content .container {
  background-color: #fff;
}

.content .container .container_inner {
  padding: 0px 0px 0px 0px;
}

.content .container .container_inner.page_container_inner {
  padding: 30px 0px 0px 0px;
}

.full_page_container_inner {
  padding: 30px 0px 0px 0px;
}

.full_width {
  position: relative;
  z-index: 100;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .container_inner {
    width: auto;
    margin: 0 64px;
  }
}
@media (max-width: 1000px) {
  .container_inner {
    width: auto;
    margin: 0 48px;
  }

  .content {
    margin-bottom: 0!important;
    margin-top: 0!important;
  }
}

@media (max-width: 768px) {
  .container_inner {
    width: auto;
    margin: 0 32px;
  }
}

@media (max-width: 720px) {
  .container_inner {
    width: auto;
    margin: 0 16px;
  }
}





/* -------------------------------------------------------------------------- */
/*                                Column layout                               */
/* -------------------------------------------------------------------------- */
.two_columns_50_50 {
  width: 100%;
}
  .two_columns_50_50 > .column1 {
    width: 50%;
    float: left;
  }
  .two_columns_50_50 > .column1 > .column_inner {
    padding: 0 10px 0 0;
  }
  .two_columns_50_50 > .column2 {
    width: 50%;
    float: left;
  }
  .two_columns_50_50 > .column2 > .column_inner {
    padding: 0 0 0 10px;
  }

.two_columns_66_33 {
  width: 100%;
}
  .two_columns_66_33 > .column1 {
    width: 66.66%;
    float: left;
  }
  .two_columns_66_33 > .column1 > .column_inner {
    padding: 0 20px 0 0;
  }
  .two_columns_66_33 > .column2 {
    width: 33.33%;
    float: left;
  }
  .two_columns_66_33 > .column2 > .column_inner {
    padding: 0 0 0 20px;
  }

.two_columns_75_25 {
  width: 100%;
}
  .two_columns_75_25>.column1 {
    width: 75%;
    float: left;
  }
  .two_columns_75_25>.column1>.column_inner {
    padding: 0 20px 0 0;
  }
  .two_columns_75_25>.column2 {
    width: 25%;
    float: left;
  }
  .two_columns_75_25>.column2>.column_inner {
    padding: 0 0 0 20px;
  }


.three_columns {
  width: 100%;
}
  .three_columns > .column1,
  .three_columns > .column2,
  .three_columns > .column3 {
    width: 33.33%;
    float: left;
  }
  .three_columns > .column1 > .column_inner {
    padding: 0 15px 0 0;
  }
  .three_columns > .column2 > .column_inner {
    padding: 0 5px 0 10px;
  }
  .three_columns > .column3 > .column_inner {
    padding: 0 0 0 15px;
  }


.four_columns {
  width: 100%;
}
  .four_columns > .column1,
  .four_columns > .column2,
  .four_columns > .column3,
  .four_columns > .column4 {
    width: 25%;
    float: left;
  }
  .four_columns > .column1 > .column_inner {
    padding: 0 15px 0 0;
  }
  .four_columns > .column2 > .column_inner {
    padding: 0 10px 0 5px;
  }
  .four_columns > .column3 > .column_inner {
    padding: 0 5px 0 10px;
  }
  .four_columns > .column4 > .column_inner {
    padding: 0 0 0 15px;
  }

.five_columns > .column1,
.five_columns > .column2,
.five_columns > .column3,
.five_columns > .column4,
.five_columns > .column5 {
  width: 20%;
  float: left;
}
  .five_columns > .column1 > .column_inner,
  .five_columns > .column2 > .column_inner,
  .five_columns > .column3 > .column_inner,
  .five_columns > .column4 > .column_inner {
    margin: 0 2.5% 0 0;
  }
  .five_columns > .column5 > .column_inner {
    margin: 0;
  }

@media (max-width: 720px) {
  .two_columns_50_50 .column1,
  .two_columns_50_50 .column2,
  .two_columns_66_33 .column1,
  .two_columns_66_33 .column2,
  .two_columns_75_25 .column1,
  .two_columns_75_25 .column2,
  .three_columns .column1,
  .three_columns .column2,
  .three_columns .column3,
  .four_columns .column1,
  .four_columns .column2,
  .four_columns .column3,
  .four_columns .column4 {
    width: 100%;
  }

  .two_columns_50_50 .column1 .column_inner,
  .two_columns_50_50 .column2 .column_inner,
  .two_columns_66_33 .column1 .column_inner,
  .two_columns_66_33 .column2 .column_inner,
  .two_columns_66_33.grid2 .column1 .column_inner,
  .two_columns_66_33.grid2 .column2 .column_inner,
  .two_columns_75_25 .column1 .column_inner,
  .two_columns_75_25 .column2 .column_inner,
  .two_columns_75_25.grid2 .column1 .column_inner,
  .two_columns_75_25.grid2 .column2 .column_inner,
  .three_columns .column1 .column_inner,
  .three_columns .column2 .column_inner,
  .three_columns .column3 .column_inner,
  .four_columns .column1 .column_inner,
  .four_columns .column2 .column_inner,
  .four_columns .column3 .column_inner,
  .four_columns .column4 .column_inner {
    padding: 0;
  }
}





/* -------------------------------------------------------------------------- */
/*                                    Title                                   */
/* -------------------------------------------------------------------------- */
.c-post-header {
  margin: 24px 0;
}
  .c-post-header__title {
    font-size: 34px;
    color: #0078B0;
    margin: 0;
  }
  .c-post-header__subtitle {
    font-size: 24px;
    color: #ec8231;
    margin: 0;
  }
  .c-post-header__date {
    margin: 0;
    font-size: 20px;
    color: #6f6f6f;
  }

@media (max-width: 960px) {
  .c-post-header__title { font-size: 28px; }
  .c-post-header__subtitle { font-size: 20px; }
  .c-post-header__date { font-size: 16px; }
}





/* -------------------------------------------------------------------------- */
/*                          Post content and sidebar                          */
/* -------------------------------------------------------------------------- */
.c-post-content-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 40px 360px;
  grid-template-columns: auto 360px;
  grid-gap: 40px;
}
.c-post-content-wrapper--no-sidebar {
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}

.c-post-content {
  padding-bottom: 32px;
}
.c-post-sidebar {}
  .c-post-sidebar ul,
  .c-post-sidebar ol {
    font-size: 16px;
    line-height: 1.4;
  }

@media (max-width: 960px) {
  .c-post-content-wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}






/* -------------------------------------------------------------------------- */
/*                               Sidebar widgets                              */
/* -------------------------------------------------------------------------- */
.c-post-sidebar li {
  list-style: none;
}

.c-post-sidebar .widget ul {
  list-style: none;
  padding: 0;
}

.c-post-sidebar .widget li {
  margin: 0 0 10px;
}

.c-post-sidebar .widget h5 {
  margin-bottom: 14px;
}

.c-post-sidebar .widget {
  margin: 0 0 42px;
}





/* -------------------------------------------------------------------------- */
/*                                 Breadcrumbs                                */
/* -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: 14px;
}
  .c-breadcrumb__separator:last-child {
    /* Hide dangling separators */
    display: none;
  }





/* -------------------------------------------------------------------------- */
/*                                 Blockquotes                                */
/* -------------------------------------------------------------------------- */
blockquote {
  position: relative;
  padding: 14px 14px 14px 10px;
  font-style: italic;
  margin: 0.7143em 3.0em;
  padding-left: 1.0em;
  border-left: solid 1px #127dbf;
}
  blockquote h5 {
    line-height: 1.5625em;
    text-transform: none;
    font-size: 21px;
    letter-spacing: normal;
    font-weight: 400;
    margin: 0 !important;
  }
  blockquote.with_quote_icon h5 {
    padding: 0 0 0 40px;
  }
  blockquote i.pull-left {
    font-size: 22px;
    color: #c1c0c0;
    margin: 6px 0 0 !important;
  }





/* -------------------------------------------------------------------------- */
/*                            Blog holder container                           */
/* -------------------------------------------------------------------------- */
.blog_holder article {
  display: inline-block;
  width: 100%;
  margin: 0 0 60px;
}

.blog_holder.blog_small_image article {
  margin: 0 0 48px;
}

.blog_single.blog_holder article.format-link .post_text .post_text_inner,
.blog_single.blog_holder article.format-quote .post_text .post_text_inner {
  padding: 23px 23px 35px 23px;
  background-color: #fff;
  margin: 0 0 30px 0;
}

.blog_holder article .post_content_holder {
  width: 100%;
}

.blog_holder article .post_image,
.blog_holder article .post_image>a,
.blog_holder article .post_image img {
  position: relative;
  width: 100%;
}

.blog_holder article .post_text h2 .date {
  color: #bebebe;
}

.single-post .title_subtitle_holder h2 {
  margin-top: 0;
}
.blog_holder article .post_info {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  color: #bebebe;
  font-weight: 500;
}

.blog_holder article .post_more {
  margin: 16px 0 0;
}

.blog_holder.blog_small_image article .post_image,
.blog_holder.blog_small_image article .post_text {
  width: 50%;
  margin: 0;
}





/* -------------------------------------------------------------------------- */
/*                                 Pagination                                 */
/* -------------------------------------------------------------------------- */
.pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0 0 50px
}
  .pagination ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0
  }
    .pagination ul li {
      float: left
    }
      .pagination ul li a,
      .pagination ul li span {
        position: relative;
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        margin: 0 11px 0 0;
        text-align: center;
        font-size: 18px;
        text-decoration: none;
        text-transform: uppercase;
        cursor: pointer;
        white-space: nowrap;
        border: 2px solid #c9c9c9;
        outline: 0;
        border-radius: 4px;
        text-shadow: none;
      }
      .pagination ul li a:hover,.pagination ul li span {
        background-color: #c9c9c9;
        border-color: #c9c9c9
      }





/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
footer {
  display: block;
  width: 100%;
  margin: 0px auto;
}

.footer_top .widget.widget_nav_menu li {
  margin: 0 0 0px;
  line-height: 22px;
}

.boxed footer {
  width: 100% !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
}

footer .container_inner {
  position: relative;
}

.footer_top_holder {
  display: block;
  background-color: #262626;
  position: relative;
}

.footer_top {
  padding: 72px 0px 52px;
}

.footer_top_border.in_grid,
.footer_bottom_border.in_grid {
  width: 1200px;
  margin: 0 auto;
}

.footer_top.footer_top_full {
  padding: 48px 24px;
}

.footer_top h5 {
  color: #fff;
  margin: 0 0 22px;
}

.footer_top ul {
  list-style: none;
}

.footer_top a,
.footer_top p,
.footer_top span,
.footer_top li,
.footer_top .textwidget {
  color: #818181;
  word-wrap: break-word;
}

.footer_top a:hover {
  color: #fff !important;
}

.footer_top .four_columns .column2 .column_inner>div,
.footer_top .three_columns .column2 .column_inner>div,
.footer_top .two_columns_50_50 .column2 .column_inner>div {
  margin: 0 0 0 15px;
}

.footer_top .four_columns .column3 .column_inner>div,
.footer_top .three_columns .column3 .column_inner>div {
  margin: 0 0 0 10px;
}

.footer_top .four_columns .column4 .column_inner>div {
  margin: 0 0 0 5px;
}

.footer_top .widget_nav_menu li.menu-item a {
  margin-bottom: 0;
}

.footer_top .widget_recent_entries>ul>li,
.footer_top .widget_recent_comments>ul>li,
.footer_top .widget_meta>ul>li,
.footer_top .widget_nav_menu ul li,
.footer_top .widget_pages ul li {
  padding: 0px 0px 17px;
  position: relative;
}

.footer_top .widget_nav_menu ul li ul,
.footer_top .widget_pages ul li ul {
  padding: 0 0 0 10px;
}

.footer_top .widget_recent_entries>ul>li>a,
.footer_top .widget_pages>ul>li>a,
.footer_top .widget_meta>ul>li>a,
.footer_top .widget_nav_menu ul li a,
.footer_top .widget_recent_comments>ul>li>a,
.footer_top .widget_recent_entries>ul>li>span {
  display: block;
}

.footer_top .widget_recent_entries>ul>li>span {
  color: #9d9d9d;
}

.footer_bottom_holder {
  display: block;
  background-color: #1b1b1b;
}

.footer_top_holder svg.angled-section polygon {
  fill: #1b1b1b;
}

.footer_bottom {
  display: table-cell;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  height: 53px;
  width: 1%;
  vertical-align: middle;
}

.footer_bottom_columns.three_columns .column1 .footer_bottom,
.footer_bottom_columns.two_columns_50_50 .column1 .footer_bottom,
.footer_bottom_columns.three_columns .column1 .footer_bottom ul,
.footer_bottom_columns.two_columns_50_50 .column1 .footer_bottom ul {
  text-align: left;
}

.footer_bottom_columns.three_columns .column3 .footer_bottom,
.footer_bottom_columns.two_columns_50_50 .column2 .footer_bottom,
.footer_bottom_columns.three_columns .column3 .footer_bottom ul,
.footer_bottom_columns.two_columns_50_50 .column2 .footer_bottom ul {
  text-align: right;
}

.footer_bottom p,
.footer_bottom span {
  margin: 0px;
}

.footer_bottom .footer_text_title {
  display: none;
}

.footer_bottom ul {
  list-style: none;
  text-align: center;
}

.footer_bottom ul li {
  display: inline-block;
  margin-right: 46px;
}

.footer_bottom ul li:last-child {
  margin-right: 0;
}

.footer_bottom ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 13px;
}

.footer_bottom ul li a:hover {
  color: #818181;
}

.footer_top .q_social_icon_holder i.simple_social,
.footer_top .q_social_icon_holder span.simple_social {
  margin-right: 16px;
}

.footer_top .q_social_icon_holder i.simple_social,
.footer_top .q_social_icon_holder span.simple_social,
.side_menu .q_social_icon_holder i.simple_social,
.side_menu .q_social_icon_holder span.simple_social {
  color: #818181;
}

.footer_top .q_social_icon_holder:hover i.simple_social,
.footer_top .q_social_icon_holder:hover span.simple_social,
.side_menu .q_social_icon_holder:hover i.simple_social,
.side_menu .q_social_icon_holder:hover span.simple_social {
  color: #fff !important;
}

.footer_top .q_social_icon_holder.normal_social {
  margin: 0 0 0 0;
}

.footer_top .q_social_icon_holder:last-child i.simple_social,
.footer_top .q_social_icon_holder:last-child span.simple_social {
  margin-right: 0;
}

@media (max-width: 720px) {
  .footer_top .four_columns .column2 .column_inner>div,
  .footer_top .four_columns .column3 .column_inner>div,
  .footer_top .four_columns .column4 .column_inner>div,
  .footer_top .three_columns .column2 .column_inner>div,
  .footer_top .three_columns .column3 .column_inner>div,
  .footer_top .two_columns_50_50 .column2 .column_inner>div {
    margin: 0;
  }

  .footer_top .four_columns .column1,
  .footer_top .four_columns .column2,
  .footer_top .four_columns .column3,
  .footer_top .three_columns .column1,
  .footer_top .three_columns .column2,
  .footer_top .two_columns_50_50 .column1 {
    margin: 0 0 25px;
  }
}

@media (max-width: 480px) {
  footer .container_inner {
    padding: 0 25px;
  }

  .footer_bottom_border.in_grid,
  .footer_top_border.in_grid,
  footer .container_inner {
    width: auto;
  }

  .footer_bottom {
    line-height: 35px;
    height: auto;
  }
  .footer_top .column_inner>div {
    margin: 0 0 25px!important;
  }
  .footer_top .column_inner {
    border: 0;
  }
}

@media (max-width: 420px) {
  footer .container_inner {
    padding: 0 15px;
  }
}





/* -------------------------------------------------------------------------- */
/*                   Search form widget (usually in footer)                   */
/* -------------------------------------------------------------------------- */
.widget #searchform {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  background-color: #fff
}

.footer_top .widget #searchform {
  background-color: transparent;
  border: 1px solid #999;
}

.widget.widget_search form.form_focus {
  border-color: #0078B0;
}

.footer_top ul,
.footer_top ol {
  margin: 0;
}

.footer_top .widget #searchform input {
  color: #fff;
}
.footer_top .widget #searchform input::-webkit-input-placeholder {
  color: #999;
}
.footer_top .widget #searchform input::-moz-placeholder {
  color: #999;
}
.footer_top .widget #searchform input:-ms-input-placeholder {
  color: #999;
}
.footer_top .widget #searchform input::-ms-input-placeholder {
  color: #999;
}
.footer_top .widget #searchform input::placeholder {
  color: #999;
}

.footer_top .widget.widget_search form input[type=text],
.side_menu .widget #searchform input[type=text] {
  width: 70% !important
}

.widget.widget_search form input[type=text] {
  display: inline-block;
  text-decoration: none;
  border: 0;
  outline: 0;
  color: #adadad;
  background-color: transparent;
  margin: 0;
  padding: 2px 4%;
  width: 74%;
  height: 33px;
}

.widget.widget_search form input[type=text] {
  display: inline-block;
  text-decoration: none;
  border: 0;
  outline: 0;
  color: #adadad;
  background-color: transparent;
  margin: 0;
  padding: 2px 4%;
  width: 74%;
  height: 33px;
}

.widget.widget_search form input[type=submit] {
  width: 37px;
  height: 37px;
  line-height: 37px;
  display: inline-block;
  margin: 0;
  padding: 0 4%;
  outline: 0;
  border: none;
  text-decoration: none;
  background-color: transparent;
  color: #b9b9b9;
  font-family: FontAwesome, sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.widget.widget_search form .screen-reader-text {
  display: none
}

@media only screen and (min-width: 768px) and (max-width:1100px) {
  .widget.widget_search form input[type=text] {
    width: 67%;
  }
}
@media only screen and (min-width: 600px) and (max-width:768px) {
  .widget.widget_search form input[type=text] {
    width: 60%;
  }
}





/* -------------------------------------------------------------------------- */
/*                             FacetWP pagination                             */
/* -------------------------------------------------------------------------- */
.facet-pagination {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}

.facet-pagination a {
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 0 11px 0 0;
  text-align: center;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
}

.facet-pagination .active {
  color: #333;
  background-color: #e3e3e3;
  border: none;
}





/* -------------------------------------------------------------------------- */
/*                          Single page modifications                         */
/* -------------------------------------------------------------------------- */
.single-post.blog .post_info {
  display: none;
}

.single-post.reports-and-case-studies .content_inner {
  margin-top: 45px;
}

.single-post.reports-and-case-studies .content_inner .column2 {
  display: none !important
}

.single-post.reports-and-case-studies .content_inner .column1 {
  width: 100% !important;
  margin-top: 45px;
}

.single-post.reports-and-case-studies .content_inner li.widget {
  list-style: none;
}

.single-postreports-and-case-studies .content_inner .vc_col-sm-4 li {
  margin-left: 0 !important;
}

.single-post.press-release .content_inner {
  margin-top: 45px;
}

.single-post.press-release .content_inner li.widget {
  list-style: none;
}

.single-post.press-release .content_inner .vc_col-sm-4 li {
  margin-left: 0 !important;
}

.single-post.reports .content_inner {
  margin-top: 45px;
}

.single-post.reports .content_inner .column2 {
  display: none !important
}

.single-post.reports .content_inner .column1 {
  width: 100% !important;
  margin-top: 45px;
}

.single-post.reports .content_inner li.widget {
  list-style: none;
}

.single-post.reports .content_inner .vc_col-sm-4 li {
  margin-left: 0 !important;
}

.single-post.case-studies .content_inner {
  margin-top: 45px;
}

.single-post.case-studies .content_inner .column2 {
  display: none !important
}

.single-post.case-studies .content_inner .column1 {
  width: 100% !important;
  margin-top: 45px;
}

.single-post.case-studies .content_inner li.widget {
  list-style: none;
}

.single-post.case-studies .content_inner .vc_col-sm-4 li {
  margin-left: 0 !important;
}

.single-post.reports .column1 .post_info {
  display: none;
}

.single-post.case-studies .column1 .post_info {
  display: none;
}

.single-post.reports-and-case-studies .yarpp-related {
  display: none;
}

.single-post.reports-and-case-studies .post_info {
  display: none !important;
}

.single-post .category-press-release .post_info {
  display: none;
}















/*oembeds*/
.wp-embed-site-icon {
  display: none !important;
}










/* -------------------------------------------------------------------------- */
/*                                 LAC Widgets                                */
/* -------------------------------------------------------------------------- */
.c-widget {
  max-width: 100%;
}





/* -------------------------------------------------------------------------- */
/*                           Menu List Widget Block                           */
/* -------------------------------------------------------------------------- */
.c-menu-list-widget-block__icon {
  font-size: 48px;
  width: 64px;
}

.c-menu-list-widget-block__content ul {
  list-style: disc !important;
  padding-left: 1em !important;
  margin: 16px 0 0 0;
}
.c-menu-list-widget-block__content ul li {
  list-style: disc;
  margin: 0 0 8px;
}
.c-menu-list-widget-block__content a {
  color: #0078b0 !important;
}





/* -------------------------------------------------------------------------- */
/*                                 LAC Header                                 */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader {
  box-sizing: border-box;
}
.LAC-MainHeader *,
.LAC-MainHeader *:before,
.LAC-MainHeader *:after {
  box-sizing: inherit;
  color: rgba(0, 0, 0, 0.87);
}

.LAC-MainHeader {
  position: fixed !important;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 2000;

  background-color: #fff;
}
.admin-bar header.LAC-MainHeader {
  top: 32px;
}

.LAC-MainHeader-logo {
  display: block;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  height: 100%;
}
.LAC-MainHeader-logo *,
.woocommerce .LAC-MainHeader-logo *,
.woocommerce-page .LAC-MainHeader-logo * {
  height: 100%;
}

.LAC-MainHeader-logo-img--noTagline {
  display: none;
}

@media (max-width: 1200px) {
  .LAC-MainHeader-logo-img--noTagline {
    display: block;
  }
  .LAC-MainHeader-logo-img--tagline {
    display: none;
  }
}





/* -------------------------------------------------------------------------- */
/*                        Header Sidebar / Menu Button                        */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader-menuButton {
  display: none;
  width: 56px;
  height: 56px;
  padding: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 56px;
          flex: 0 0 56px;
  cursor: pointer;
}

.LAC-MainHeader-sidebarBlackout {
  display: none;

  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;

  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;

  pointer-events: none;
}
.LAC-MainHeader-sidebarBlackout.is-active {
  opacity: 0.20;
  pointer-events: all;
}

.LAC-MainHeader-sidebar {
  display: none;
  position: fixed;
  top: 32px;
  left: 0;
  width: 288px;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);

  -webkit-transform: translateX(-288px);

          transform: translateX(-288px);
  transition: -webkit-transform 250ms ease-out;
  -webkit-transition: -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out;
  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}
.LAC-MainHeader-sidebar.is-active {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.LAC-MainHeader-sidebarNavigation {
  margin: 0;
  padding: 0;
  list-style: none;
}

.LAC-MainHeader-sidebarNavigationItem a {
  height: 40px;
  display: block;
  padding: 0 16px;
  line-height: 40px;
  font-size: 16px !important;
  position: relative;
}
.LAC-MainHeader-sidebarNavigationItem .LAC-MainHeader-sidebarNavigationItem a {
  padding-left: 48px;
}
.LAC-MainHeader-sidebarNavigationItem a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
}
.LAC-MainHeader-sidebarNavigationItem a:hover:after {
  opacity: 0.08;
}
.LAC-MainHeader-sidebarNavigationItem a:hover {
  color: rgba(0, 0, 0, 0.87);
}

.LAC-MainHeader-sidebarClose {
  width: 56px;
  height: 56px;
  padding: 12px;
  position: absolute;
  top: 8px;
  right: 0;
  cursor: pointer;
}

.LAC-MainHeader-sidebarHeader {
  position: relative;
  padding: 16px 56px 16px 16px;
  height: 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.LAC-MainHeader-sidebarClose svg {
  fill: rgba(0, 0, 0, 0.60);
}

.LAC-MainHeader-sidebarLogo {
  display: inline-block;
  height: 100%;
}
.LAC-MainHeader-sidebarLogo * {
  height: 100%;
}

.LAC-MainHeader-sidebarMenu {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  padding: 16px 0 24px;
}
.LAC-MainHeader-sidebarMenu > .LAC-MainHeader-sidebarNavigation > .LAC-MainHeader-sidebarNavigationItem > a {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.60);
}

.LAC-MainHeader-sidebarMenu > .LAC-MainHeader-sidebarNavigation > .LAC-MainHeader-sidebarNavigationItem {
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  /**
   * Enable sidebar
   */
  .LAC-MainHeader-menuButton {
    display: block;
  }
  .LAC-MainHeader-sidebar {
    display: block;
  }
  .LAC-MainHeader-sidebarBlackout {
    display: block;
  }
}





/* -------------------------------------------------------------------------- */
/*                              Header Navigation                             */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader-navigationWrapper {
  height: 88px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 20px 48px;
  background-color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;

  max-width: 1760px;
  margin: 0 auto;
}
.LAC-MainHeader-navigation {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin: 0 48px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 0;
}
.LAC-MainHeader-navigationItem {
  line-height: 88px;
  height: 88px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.LAC-MainHeader-navigationItem a {
  color: rgba(0, 0, 0, 0.87);
}
.LAC-MainHeader-navigationItem:hover > .LAC-MainHeader-navigation {
  height: auto;
}
.LAC-MainHeader-navigationItem > .LAC-MainHeader-navigation {
  height: 0;
  position: absolute;
  opacity: 0;
  margin: 0;
  left: 0;
  top: 88px;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 3px 4px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 288px;
  border-radius: 0 0 2px 2px;
  overflow: hidden;
}
.LAC-MainHeader-navigationItem:hover > .LAC-MainHeader-navigation {
  opacity: 1;
}
.LAC-MainHeader-navigationItem > .LAC-MainHeader-navigation > .LAC-MainHeader-navigationItem {
  width: 100%;
  height: 36px;
  line-height: 36px;
}
.LAC-MainHeader-navigationItem:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
}
.LAC-MainHeader-navigationItem a {
  color: rgba(0, 0, 0, 0.87);
  height: 100%;
  width: 100%;
  display: block;
  padding: 0 16px;
  position: relative;
  z-index: 2;

  font-size: 16px !important;
}
.LAC-MainHeader-navigationItem:hover:after {
  opacity: 0.08;
}

.LAC-MainHeader-navigation {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (max-width: 960px) {
  .LAC-MainHeader-navigationWrapper {
    padding: 20px 48px 20px 32px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .LAC-MainHeader-navigation {
    display: none;
  }
}
@media (max-width: 480px) {
  .LAC-MainHeader-navigationWrapper {
    padding: 20px 16px 20px 8px;
  }
}





/* -------------------------------------------------------------------------- */
/*                                Header Search                               */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader-searchWrapper {
  position: absolute;
  height: 88px;
  z-index: 1000;
  top: 32px;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: none;
}
.LAC-MainHeader-searchButton {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0078B0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.LAC-MainHeader-searchButton svg {
  width: 24px;
  fill: #fff;
}
.LAC-MainHeader-searchWrapper.is-active {
  display: block;
}
.LAC-MainHeader-searchClose {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 16px;
  right: 24px;
  padding: 16px;
  cursor: pointer;
}
.LAC-MainHeader-searchClose svg {
  fill: rgba(0, 0, 0, 0.60);
}
.LAC-MainHeader-searchForm {
  width: 100%;
  height: 100%;
  padding-right: 80px;
  position: relative;
}
.LAC-MainHeader-searchInput {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 24px;
  line-height: 88px;
  padding-left: 48px;
  color: rgba(0, 0, 0, 0.60);
}
.LAC-MainHeader-searchInput::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.LAC-MainHeader-searchInput:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.LAC-MainHeader-searchInput::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.LAC-MainHeader-searchInput::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.LAC-MainHeader-searchInput::placeholder {
  color: rgba(0, 0, 0, 0.38);
}
.LAC-MainHeader-searchInput + .LAC-MainHeader-searchInputLine {
  position: absolute;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.12);
  opacity: 0;
  top: 64px;
  left: 48px;
  right: 80px;
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
}
.LAC-MainHeader-searchInput:focus + .LAC-MainHeader-searchInputLine {
  opacity: 1;
}
.LAC-MainHeader-searchButton {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48px;
          flex: 0 0 48px;
}

.LAC-MainHeader-searchInnerWrapper {
  width: 100%;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
}





/* -------------------------------------------------------------------------- */
/*                             Header Utility Menu                            */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader-utilityMenu {
  background-color: #424242;
}
.LAC-MainHeader-utilityMenuList {
  margin: 0;
  padding: 0 40px;
  text-align: right;

  max-width: 1760px;
  margin: 0 auto;
}
.LAC-MainHeader-utilityMenuList .LAC-MainHeader-utilityMenuItem {
  color: #fff;
  padding: 0px 8px;
  font-size: 14px;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  font-weight: bold;
  opacity: 0.7;
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
  vertical-align: middle;
}
.LAC-MainHeader-utilityMenuList .LAC-MainHeader-utilityMenuItem:hover {
  opacity: 1;
}
.LAC-MainHeader-utilityMenuList .LAC-MainHeader-utilityMenuItem.LAC-MainHeader-utilityMenuItem--border {
  border-radius: 2px;
  height: 28px;
  line-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
  .LAC-MainHeader-utilityMenuList {
    padding: 0 8px;
  }
}





/* -------------------------------------------------------------------------- */
/*                              Header Hello Bar                              */
/* -------------------------------------------------------------------------- */
.LAC-MainHeader-helloBar {
  background-color: #0078B0;
  min-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.LAC-MainHeader-helloBarWrapper {
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0 72px 0 40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
.LAC-MainHeader-helloBarWrapper * {
  color: #fff;
}

.LAC-MainHeader-helloBarClose {
  line-height: 0;
  cursor: pointer;
  position: absolute;
  top: -webkit-calc(50% - 16px);
  top: calc(50% - 16px);
  right: 40px;
  padding: 4px;
}
.LAC-MainHeader-helloBarClose svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}
@media (max-width: 480px) {
  .LAC-MainHeader-helloBarWrapper {
    padding: 0 32px 0 0;
  }
  .LAC-MainHeader-helloBar {
    padding: 4px 12px 4px 20px;
  }
  .LAC-MainHeader-helloBarClose {
    right: 0px;
  }
}





/* -------------------------------------------------------------------------- */
/*                                  VC Icons                                  */
/* -------------------------------------------------------------------------- */
.vc_cta3.vc_cta3-icon-size-xs .vc_icon_element .vc_icon_element-inner {
    height: 1em;
    width: 1em
}

.vc_cta3.vc_cta3-icon-size-sm .vc_icon_element .vc_icon_element-inner {
    height: 2em;
    width: 2em
}

.vc_cta3.vc_cta3-icon-size-md .vc_icon_element .vc_icon_element-inner {
    height: 3em;
    width: 3em
}

.vc_cta3.vc_cta3-icon-size-lg .vc_icon_element .vc_icon_element-inner {
    height: 4em;
    width: 4em
}

.vc_cta3.vc_cta3-icon-size-xl .vc_icon_element .vc_icon_element-inner {
    height: 5em;
    width: 5em
}

.vc_separator .vc_icon_element {
    margin-bottom: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style)+h4 {
    padding-left: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style) .vc_icon_element-size-xl {
    margin-left: .8em;
    margin-right: .8em
}

.vc_separator.vc_separator-has-text.vc_separator_align_center .vc_icon_element.vc_icon_element-have-style,.vc_separator.vc_separator-has-text.vc_separator_align_right .vc_icon_element.vc_icon_element-have-style {
    margin-left: .8em
}

.vc_separator.vc_separator_align_left .vc_icon_element.vc_icon_element-have-style+h4 {
    padding-left: .8em
}

.vc_icon_element {
    line-height: 0;
    font-size: 14px;
    margin-bottom: 35px
}

.vc_icon_element.vc_icon_element-outer {
    box-sizing: border-box;
    text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left {
    text-align: left
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center {
    text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-right {
    text-align: right
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
    width: 4em;
    height: 4em;
    box-sizing: content-box;
    position: relative
}

 .vc_icon_element-icon {
    font-size: 2.15em;
    font-style: normal;
    font-weight: 400;
    line-height: 1!important;
    font-size-adjust: none;
    font-stretch: normal;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    -webkit-font-language-override: normal;
    font-language-override: normal;
    -webkit-font-kerning: auto;
    font-kerning: auto;
    font-synthesis: weight style;
    font-variant: normal;
    text-rendering: auto;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

 .vc_icon_element-icon:before {
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: inherit;
    height: inherit;
    font-size: 1em;
    text-align: center;
    text-rendering: optimizelegibility
}

.vc_gitem-link, .vc_icon_element-link {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    box-sizing: content-box;
    border: none
}

.vc_icon_element-size-xs {
    line-height: 1.2em!important
}

.vc_icon_element-size-xs.vc_icon_element-have-style-inner {
    width: 2.5em!important;
    height: 2.5em!important
}

.vc_icon_element-size-xs .vc_icon_element-icon {
    font-size: 1.2em!important
}

.vc_icon_element-size-sm {
    line-height: 1.6em!important
}

.vc_icon_element-size-sm.vc_icon_element-have-style-inner {
    width: 3.15em!important;
    height: 3.15em!important
}

.vc_icon_element-size-sm .vc_icon_element-icon {
    font-size: 1.6em!important
}

.vc_icon_element-size-md {
    line-height: 2.15em!important
}

.vc_icon_element-size-md.vc_icon_element-have-style-inner {
    width: 4em!important;
    height: 4em!important
}

.vc_icon_element-size-md .vc_icon_element-icon {
    font-size: 2.15em!important
}

.vc_icon_element-size-lg {
    line-height: 2.85em!important
}

.vc_icon_element-size-lg.vc_icon_element-have-style-inner {
    width: 5em!important;
    height: 5em!important
}

.vc_icon_element-size-lg .vc_icon_element-icon {
    font-size: 2.85em!important
}

.vc_icon_element-size-xl {
    line-height: 5em!important
}

.vc_icon_element-size-xl.vc_icon_element-have-style-inner {
    width: 7.15em!important;
    height: 7.15em!important
}

.vc_icon_element-size-xl .vc_icon_element-icon {
    font-size: 5em!important
}

.vc_icon_element-style-rounded,.vc_icon_element-style-rounded .vc_gitem-link,.vc_icon_element-style-rounded .vc_icon_element-link,.vc_icon_element-style-rounded-outline,.vc_icon_element-style-rounded-outline .vc_gitem-link,.vc_icon_element-style-rounded-outline .vc_icon_element-link {
    border-radius: 50%
}

.vc_icon_element-style-rounded-less,.vc_icon_element-style-rounded-less .vc_gitem-link,.vc_icon_element-style-rounded-less .vc_icon_element-link,.vc_icon_element-style-rounded-less-outline,.vc_icon_element-style-rounded-less-outline .vc_gitem-link,.vc_icon_element-style-rounded-less-outline .vc_icon_element-link {
    border-radius: 5px
}

.vc_icon_element-color-blue .vc_icon_element-icon {
    color: #5472D2
}

.vc_icon_element-color-turquoise .vc_icon_element-icon {
    color: #00C1CF
}

.vc_icon_element-color-pink .vc_icon_element-icon {
    color: #FE6C61
}

.vc_icon_element-color-violet .vc_icon_element-icon {
    color: #8D6DC4
}

.vc_icon_element-color-peacoc .vc_icon_element-icon {
    color: #4CADC9
}

.vc_icon_element-color-chino .vc_icon_element-icon {
    color: #CEC2AB
}

.vc_icon_element-color-mulled_wine .vc_icon_element-icon {
    color: #50485B
}

.vc_icon_element-color-vista_blue .vc_icon_element-icon {
    color: #75D69C
}

.vc_icon_element-color-black .vc_icon_element-icon {
    color: #2A2A2A
}

.vc_icon_element-color-grey .vc_icon_element-icon {
    color: #EBEBEB
}

.vc_icon_element-color-orange .vc_icon_element-icon {
    color: #F7BE68
}

.vc_icon_element-color-sky .vc_icon_element-icon {
    color: #5AA1E3
}

.vc_icon_element-color-green .vc_icon_element-icon {
    color: #6DAB3C
}

.vc_icon_element-color-juicy_pink .vc_icon_element-icon {
    color: #F4524D
}

.vc_icon_element-color-sandy_brown .vc_icon_element-icon {
    color: #F79468
}

.vc_icon_element-color-purple .vc_icon_element-icon {
    color: #B97EBB
}

.vc_icon_element-color-white .vc_icon_element-icon {
    color: #FFF
}

.vc_icon_element-background-color-blue.vc_icon_element-outline { border-color: #5472D2; }
.vc_icon_element-background-color-blue.vc_icon_element-background { background-color: #5472D2; }
.vc_icon_element-background-color-turquoise.vc_icon_element-outline { border-color: #00C1CF; }
.vc_icon_element-background-color-turquoise.vc_icon_element-background { background-color: #00C1CF; }
.vc_icon_element-background-color-pink.vc_icon_element-outline { border-color: #FE6C61; }
.vc_icon_element-background-color-pink.vc_icon_element-background { background-color: #FE6C61; }
.vc_icon_element-background-color-violet.vc_icon_element-outline { border-color: #8D6DC4; }
.vc_icon_element-background-color-violet.vc_icon_element-background { background-color: #8D6DC4; }
.vc_icon_element-background-color-peacoc.vc_icon_element-outline { border-color: #4CADC9; }
.vc_icon_element-background-color-peacoc.vc_icon_element-background { background-color: #4CADC9; }
.vc_icon_element-background-color-chino.vc_icon_element-outline { border-color: #CEC2AB; }
.vc_icon_element-background-color-chino.vc_icon_element-background { background-color: #CEC2AB; }
.vc_icon_element-background-color-mulled_wine.vc_icon_element-outline { border-color: #50485B; }
.vc_icon_element-background-color-mulled_wine.vc_icon_element-background { background-color: #50485B; }
.vc_icon_element-background-color-vista_blue.vc_icon_element-outline { border-color: #75D69C; }
.vc_icon_element-background-color-vista_blue.vc_icon_element-background { background-color: #75D69C; }
.vc_icon_element-background-color-black.vc_icon_element-outline { border-color: #2A2A2A; }
.vc_icon_element-background-color-black.vc_icon_element-background { background-color: #2A2A2A; }
.vc_icon_element-background-color-grey.vc_icon_element-outline { border-color: #EBEBEB; }
.vc_icon_element-background-color-grey.vc_icon_element-background { background-color: #EBEBEB; }
.vc_icon_element-background-color-orange.vc_icon_element-outline { border-color: #F7BE68; }
.vc_icon_element-background-color-orange.vc_icon_element-background { background-color: #F7BE68; }
.vc_icon_element-background-color-sky.vc_icon_element-outline { border-color: #5AA1E3; }
.vc_icon_element-background-color-sky.vc_icon_element-background { background-color: #5AA1E3; }
.vc_icon_element-background-color-green.vc_icon_element-outline { border-color: #6DAB3C; }
.vc_icon_element-background-color-green.vc_icon_element-background { background-color: #6DAB3C; }
.vc_icon_element-background-color-juicy_pink.vc_icon_element-outline { border-color: #F4524D; }
.vc_icon_element-background-color-juicy_pink.vc_icon_element-background { background-color: #F4524D; }
.vc_icon_element-background-color-sandy_brown.vc_icon_element-outline { border-color: #F79468; }
.vc_icon_element-background-color-sandy_brown.vc_icon_element-background { background-color: #F79468; }
.vc_icon_element-background-color-purple.vc_icon_element-outline { border-color: #B97EBB; }
.vc_icon_element-background-color-purple.vc_icon_element-background { background-color: #B97EBB; }
.vc_icon_element-background-color-white.vc_icon_element-outline { border-color: #FFF; }
.vc_icon_element-background-color-white.vc_icon_element-background { background-color: #FFF; }

.vc_grid.vc_row .vc_grid-item .vc_btn,
.vc_grid.vc_row .vc_grid-item .vc_icon_element,
.vc_grid.vc_row .vc_grid-item .wpb_content_element {
  margin-bottom: 15px;
}
.vc_grid.vc_row .vc_grid-item .vc_btn a,
.vc_grid.vc_row .vc_grid-item .vc_icon_element a,
.vc_grid.vc_row .vc_grid-item .wpb_content_element a {
  text-decoration: none;
  border-bottom: 0;
}
.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons .vc_icon_element,
.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons .vc_icon_element {
  display: inline-block;
}





/* -------------------------------------------------------------------------- */
/*                             Google maps widget                             */
/* -------------------------------------------------------------------------- */
.wpb_gmaps_widget .wpb_wrapper {
  background-color: #f7f7f7;
  padding: 5px;
}

.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.wpb_gmaps_widget .wpb_map_wraper iframe {
  margin-bottom: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: none;
}





/* -------------------------------------------------------------------------- */
/*                                Uncategorized                               */
/* -------------------------------------------------------------------------- */
/* Hide "Blog" category */
.facetwp-checkbox[data-value="blog"] {
  display: none;
}

/* .archive h2,
.archive h2 a {
  color: #0078B0;
} */

.archive h3.subtitle {
  font-size: 1.25rem;
  text-transform: none;
  color: #ec8231;
  font-weight: normal;
  line-height: 1.2em;
  margin-bottom: 0.8em;
}

.is-hidden {
  display: none !important;
}

label.screen-reader-text {
  display: none;
}

.post .post_image {
  padding-right: 32px;
}

.home .latest_post .date {
  text-transform: capitalize
}


.archive.category-reports-and-case-studies .post_info {
  display: none !important;
}

@media only screen and (min-width:768px) {
  .archive.category-press-release .post_image {
    width: 25% !important
  }

  .archive.category-press-release .post_text {
    width: 75% !important
  }

  .archive.category-press-release .post_image img {
    margin-top: 45px !important;
  }
}


.category-press-release .blog_holder article .post_image,
.blog_holder article .post_image img,
.category-press-release .blog_holder article .post_image>a {
  margin-top: 10px;
}

.blog_holder article .post_image,
.blog_holder article .post_image img,
.blog_holder article .post_image>a {
  text-align: left;
  width: 100%;
  max-height: 500px;
  -o-object-fit: contain;
      object-fit: contain;
  -o-object-position: center;
      object-position: center;
}

.press_release_more {
  margin-top: 20px !important;
}
.archive .entry_date {
  display: none !important
}

.archive h2.entry_title {
  line-height: 1.1 !important;
  margin-bottom: 8px;
}
.footer_top .widget.widget_nav_menu li {
  line-height: 1.0em;
}

/* Remove extra white space under background image */
/* On desktop */
.content .container .container_inner.page_container_inner {
  padding: 0;
}

/* On mobile */
@media (max-width: 1000px) {
  body div.wrapper div div {
    min-height: 0px !important;
  }
}

/* Remove top padding from blog post to align with top of sidebar */
.blog_single.blog_holder article .post_text .post_text_inner {
  padding: 0px 23px 35px 23px;
}

/* Blog style changes to match Bridge demo as requested */
/* Make date light gray */
.date {
  color: #bebebe;
  text-transform: lowercase;
}

aside .widget h5 {
  margin-bottom: 14px;
  text-transform: none !important;
}

.content_inner > .container:last-child {
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .blog_holder article .post_description .post_description_left,
  .blog_holder article .post_description .post_description_right,
  .filter_holder ul li,
  .post_info_left {
    float: none;
  }
}

.wp-caption-text {
  margin-top: 0.1em;
  font-size: smaller;
  text-align: left;
}

.tptn_posts_widget ul li {
  list-style-type: decimal;
}

.vc_figure figcaption {
  font-size: 16px;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.60);
}

.blog_holder article .post_info {
  display: none;
}

.search .post_text .post_excerpt {
  margin: 0;
  line-height: 1.6;
}

.search .post_text .entry_date {
  display: none;
}
.search .post_image {
  display: none;
}

/* ========================================================
   START Page Overrides
   ======================================================== */
/* Press release page image removal */
.category-press-release .post_image {
  display: none !important;
}
.category.category-press-release .post_text {
  width: 100% !important;
  max-width: 960px !important;
}
.category.category-press-release .post_text .post_text_inner {
  min-height: auto !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.blog_holder.blog_small_image article .blog_holder article,
.blog_holder.blog_small_image article .post_content_holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.blog_holder.blog_small_image article .post_image,
.blog_holder.blog_small_image article .post_text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
/* .blog_holder.blog_small_image article .post_text {
  min-width: 400px;
  margin: 24px 0;
} */
.blog_holder.blog_small_image article .post_image img {
  margin: 0 auto;
  display: block;
}

@media (max-width: 480px) {
  .blog_holder.blog_small_image article .post_text {
    min-width: 240px;
  }
}

/* -------------------------------------------------------------------------- */
/*                               QODE Leftovers                               */
/* -------------------------------------------------------------------------- */
.q_font_awsome_icon.pull-center {
  display: block;
  text-align: center
}
.q_font_awsome_icon_square.pull-center,.q_font_awsome_icon_stack.pull-center {
  display: block;
  margin: 0 auto!important
}

.LAC-Post-date {
  margin: 4px 0 0 0;
}





/* -------------------------------------------------------------------------- */
/*                                  Overrides                                 */
/* -------------------------------------------------------------------------- */
/* Visual composer margin removal */
.wpb_row,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.last_toggle_el_margin, .wpb_button {
  margin-bottom: 0 !important;
}

.vc_row .vc_column_container {
  padding-left: 16px;
  padding-right: 16px;
}
.vc_row .vc_column_container:first-child {
  padding-left: 0;
}
.vc_row .vc_column_container:last-child {
  padding-right: 0;
}

.gform_wrapper .top_label .gfield_label,
.gform_wrapper legend.gfield_label {
  color: #666;
}
