@charset "UTF-8";
/*!
 * SCSS Main file
 */
/*****************************************************************************
 * Variables for SCSS
 *****************************************************************************/
/**
 * Grid measurements
 */
/**
 * Navigation element heights
 */
/*
 * Screen sizes breakpoints for media queries
 */
/*
 * Brand Colors
 */
/**
 * WordPress specific variables.
 * WordPress uses different breakpoints then our grid.
 */
/**
 * Transitions
 */
/*****************************************************************************
 * Fonts
 *****************************************************************************/
/*****************************************************************************
 * General theme styles
 *****************************************************************************/
/**
 * Utilities
 */
.dricrete-u-block {
  width: 100%;
  display: block;
  clear: both;
  box-sizing: border-box;
}
.dricrete-u-block:after {
  content: "";
  display: table;
  clear: both;
}

.dricrete-u-clearfix {
  content: "";
  display: table;
  clear: both;
}

.dricrete-img {
  display: block;
  width: 100%;
  height: auto;
}

.page-wrap {
  width: 100%;
  max-width: 1279px;
  margin: 0 auto;
}

.valign1 {
  display: table;
  width: 100%;
  height: 100%;
}

.valign2 {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.lb {
  display: block;
}
@media screen and (max-width: 1111px) {
  .lb {
    display: none;
  }
}

/*
Substitue for grid .container class
Full-screen fluid width with a max-width constraint
*/
.bootstrap-wrapper .dricrete-container {
  width: 100%;
  max-width: 1279px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.bootstrap-wrapper .dricrete-container.is-large {
  max-width: 1111px;
}
.bootstrap-wrapper .dricrete-container.is-xxlarge {
  max-width: 1439px;
}
.bootstrap-wrapper .dricrete-container.is-hd-height {
  max-width: 1080px;
}

/**
 * General
 */
body {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: #F5A306;
}
a:hover {
  color: #000;
}

strong {
  font-weight: 800;
}

.dricrete-main {
  overflow: hidden;
}
@media screen and (max-width: 1111px) {
  .dricrete-main {
    padding: 0 15px;
  }
}

/**
 * Headlines and paragraphs
 */
h1,
.h1,
h2.h1 {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin: 0 0 20px 0;
  font-size: 75px;
  line-height: 75px;
}

h2,
.h2,
h1.h2 {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin: 0 0 20px 0;
  font-size: 65px;
  line-height: 65px;
}

h3,
.h3,
h1.h3 {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin: 0 0 20px 0;
  font-size: 30px;
  line-height: 65px;
}

p {
  margin: 0 0 20px 0;
}

.dricrete-highlight-title {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin: 0 0 20px 0;
  font-size: 30px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  background-color: #4C7FA7;
  width: 100%;
  max-width: 500px;
  padding-left: 15px;
}
.dricrete-highlight-title.type-alt {
  padding-left: 60px;
}
@media screen and (max-width: 1111px) {
  .dricrete-highlight-title {
    padding: 5px;
    text-align: center;
    line-height: 115%;
  }
  .dricrete-highlight-title.type-alt {
    padding-left: 5px;
  }
}

.dricrete-stub-title {
  overflow: hidden;
}
.dricrete-stub-title .column-text h2 {
  position: relative;
  z-index: 2;
}
.dricrete-stub-title .column-text h2 span {
  display: block;
}
.dricrete-stub-title .column-text .bgline {
  content: "";
  position: absolute;
  z-index: 1;
  height: 70px;
  width: 100%;
  left: -100%;
  top: 0px;
  margin-left: 60px;
  background-color: #F5A306;
}
.dricrete-stub-title.is-multi-line .column-text .bgline {
  top: 35px;
}
@media screen and (max-width: 1111px) {
  .dricrete-stub-title .column-text .bgline {
    display: none;
  }
}

.dricrete-highlighted-headline {
  text-align: center;
}
.dricrete-highlighted-headline h2 {
  position: relative;
  display: inline-block;
  width: auto;
}
.dricrete-highlighted-headline h2 .title {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.dricrete-highlighted-headline h2 .line {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: 0px;
  background-color: #F5A306;
  width: 110%;
  height: 40px;
  margin-left: -5%;
}

@media screen and (max-width: 1111px) {
  h1,
.h1,
h2.h1 {
    font-size: 48px;
    line-height: 48px;
  }

  h2,
.h2,
h1.h2 {
    font-size: 48px;
    line-height: 48px;
  }

  h3,
.h3,
h1.h3 {
    font-size: 30px;
    line-height: 30px;
  }
}
/**
 * Larger text
 */
.larger-text {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
}

/**
 * Responsive background images
 */
.responsive-bgimg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*****************************************************************************
 * Forms
 *****************************************************************************/
.contact-links a {
  color: #000;
}
.contact-links a:hover {
  color: #F5A306;
}

/**
 * Button (default)
 */
.dricrete-button,
a.dricrete-button {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  display: inline-block;
  background-color: #F5A306;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 100%;
  padding: 12px 18px;
}
.dricrete-button:hover,
a.dricrete-button:hover {
  background-color: #4C7FA7;
  color: #fff;
}
@media screen and (max-width: 1111px) {
  .dricrete-button,
a.dricrete-button {
    text-align: center;
    line-height: 115%;
  }
}

/**
 * Button (callout)
 */
.dricrete-callout-btn,
a.dricrete-callout-btn {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 35px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  display: inline-block;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 100%;
  padding: 0;
  position: relative;
}
.dricrete-callout-btn:after,
a.dricrete-callout-btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #F5A306;
  bottom: -10px;
  left: 0px;
  position: absolute;
}
.dricrete-callout-btn:before,
a.dricrete-callout-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #4C7FA7;
  bottom: -10px;
  left: 0px;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.dricrete-callout-btn:hover,
a.dricrete-callout-btn:hover {
  color: #4C7FA7;
  letter-spacing: 1px;
}
.dricrete-callout-btn:hover:before,
a.dricrete-callout-btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@media screen and (max-width: 1111px) {
  .dricrete-callout-btn,
a.dricrete-callout-btn {
    font-size: 20px;
  }
  .dricrete-callout-btn:after, .dricrete-callout-btn:before,
a.dricrete-callout-btn:after,
a.dricrete-callout-btn:before {
    height: 5px;
    bottom: -5px;
  }
}

/**
 * Select2
 */
.no-search .select2-search {
  display: none;
}

.select2-container--dricrete {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  border: solid #363534 1px;
  line-height: 36px;
  height: 36px;
  padding-left: 12px;
}
.select2-container--dricrete.select2-container--open {
  border-width: 0px;
}
.select2-container--dricrete.select2-container--open.select2-container--below {
  border-width: 1px;
}
.select2-container--dricrete .select2-results__options {
  border: solid #363534 1px;
  border-top: 0;
}
.select2-container--dricrete .select2-dropdown {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.select2-container--dricrete .select2-results {
  width: 100%;
}
.select2-container--dricrete .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--dricrete .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  line-height: 32px;
}
.select2-container--dricrete .select2-results__option {
  padding: 12px 16px;
  line-height: 100%;
  color: #000;
  background-color: #fff;
}
.select2-container--dricrete .select2-results__option:hover {
  background-color: #f3f3f3;
  color: #000;
}
.select2-container--dricrete .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 0;
  height: 0;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-top: -2.5px;
}
.select2-container--dricrete.select2-container--open .select2-selection__arrow {
  border-top: 0;
  border-bottom: 5px solid #000;
}

/**
 * Text boxes
 */
/**
 * Gravity forms
 */
body .gform_wrapper textarea,
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  width: 100%;
  margin: 0;
  color: #000;
  background-color: #fff;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: solid #000 1px;
  padding: 8px 12px;
  border-radius: 0;
  line-height: 100%;
}
body .gform_wrapper textarea {
  padding: 12px;
}
body .gform_wrapper .gform_footer {
  padding: 0;
  margin: 10px 0 0;
}
body .gform_wrapper .gform_body {
  position: relative;
}
body .gform_wrapper .align-captcha {
  position: absolute;
  right: 0px;
  margin-top: 0;
  bottom: -86px;
}
body .gform_wrapper .align-captcha.gfield_error {
  right: auto;
  bottom: auto;
  position: static;
}
@media screen and (max-width: 1111px) {
  body .gform_wrapper .align-captcha {
    right: auto;
    bottom: auto;
    position: static;
  }
}
body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  display: inline-block;
  background-color: #F5A306;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 100%;
  padding: 12px 18px;
  min-width: 127px;
}
body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type=submit]:hover,
body .gform_wrapper .gform_page_footer input.button:hover,
body .gform_wrapper .gform_page_footer input[type=submit]:hover {
  background-color: #4C7FA7;
  color: #fff;
}
@media screen and (max-width: 1111px) {
  body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
    text-align: center;
    line-height: 115%;
  }
}
@media screen and (min-width: 641px) {
  body .gform_wrapper {
    margin-bottom: 60px;
  }
  body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
    font-family: din-2014, sans-serif;
    font-weight: 400;
    font-style: normal;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    display: inline-block;
    background-color: #F5A306;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 100%;
    padding: 12px 18px;
    min-width: 127px;
  }
  body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type=submit]:hover,
body .gform_wrapper .gform_page_footer input.button:hover,
body .gform_wrapper .gform_page_footer input[type=submit]:hover {
    background-color: #4C7FA7;
    color: #fff;
  }
}
@media screen and (min-width: 641px) and (max-width: 1111px) {
  body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit],
body .gform_wrapper .gform_page_footer input.button,
body .gform_wrapper .gform_page_footer input[type=submit] {
    text-align: center;
    line-height: 115%;
  }
}
@media screen and (max-width: 1111px) {
  body .gform_wrapper .ginput_recaptcha > div {
    margin: 0 auto 15px auto;
  }
}

.gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container) {
  margin-top: 0;
}

@media screen and (min-width: 641px) {
  .gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container) {
    margin-top: 0;
  }
}
.gform_confirmation_wrapper {
  background-color: #239f23;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
  padding: 25px;
  font-weight: bold;
  width: 100%;
}

/*****************************************************************************
 * Header, Navigation
 *****************************************************************************/
#wpadminbar {
  position: fixed;
}

header.main {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #000;
  background-color: #fff;
  height: 135px;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 30px 0 0;
}
header.main .page-wrap {
  padding: 0 15px;
}
header.main .page-wrap > .dricrete-u-block {
  position: relative;
}
header.main .logo {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: auto;
  height: 100%;
}
header.main .logo img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 75px;
}
@media screen and (max-width: 1111px) {
  header.main {
    padding: 0;
    height: 75px;
  }
  header.main .logo img {
    height: 40px !important;
    margin-top: 10px;
  }
}

.nav-header {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  float: right;
  width: 100%;
  text-align: right;
}
.nav-header li {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}
.nav-header li a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  vertical-align: top;
  display: inline-block;
  padding: 0 25px;
  color: #000;
}
.nav-header li a:hover {
  color: #F5A306;
}
.nav-header li.current-menu-item a {
  color: #F5A306;
}
.nav-header li.menu-item-has-children > a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  vertical-align: middle;
  margin-left: 4px;
  font-weight: bold;
}
.nav-header li.search-nav-link a {
  position: relative;
  color: #fff;
}
.nav-header li.search-nav-link a:hover {
  color: #fff;
}
.nav-header li.search-nav-link a:hover:after {
  color: #F5A306;
}
.nav-header li.search-nav-link a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  width: 18px;
  height: 24px;
  display: inline-block;
  color: #000;
}
.nav-header .sub-menu {
  display: none;
  position: absolute;
  left: 10px;
  top: 75px;
  height: auto;
  width: 175px;
  text-align: left;
  padding: 0;
  background: #fff;
  border: solid #F5A306 1px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.nav-header .sub-menu li {
  height: auto;
  display: block;
}
.nav-header .sub-menu li a {
  height: auto;
  line-height: 125%;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
  display: block;
  border: 0;
  white-space: nowrap;
  padding: 8px;
  font-weight: lighter;
  letter-spacing: 0;
  text-transform: none;
}
.nav-header .sub-menu li a:hover {
  background-color: #F5A306;
  color: #fff;
}
.nav-header .sub-menu li:hover a {
  border: 0;
}
.nav-header li:hover .sub-menu {
  display: block;
}
@media screen and (max-width: 1111px) {
  .nav-header {
    display: none;
  }
}

.header-spacer {
  display: block;
  height: 135px;
}
@media screen and (max-width: 1111px) {
  .header-spacer {
    height: 75px;
  }
}

body.admin-bar header.main {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header.main {
    top: 46px;
  }
}

body.is-scrolled header.main {
  padding-top: 0;
  height: 75px;
}
body.is-scrolled header.main .logo img {
  height: 36px;
}
body.is-scrolled .nav-header li a {
  height: 75px;
  line-height: 75px;
}

footer.page {
  margin-top: 120px;
  border-top: solid #F5A306 7px;
  font-size: 16px;
  line-height: 32px;
}
footer.page a {
  color: #fff;
}
footer.page a:hover {
  color: #4C7FA7;
}
footer.page strong {
  text-transform: uppercase;
}
footer.page .border {
  background-color: #363534;
  color: #fff;
  padding: 60px 0 40px 0;
}
footer.page p {
  margin: 0;
}
footer.page img {
  height: auto;
}
@media screen and (max-width: 1111px) {
  footer.page {
    margin-top: 60px;
    text-align: center;
  }
}

ul.dricrete-social {
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  clear: both;
}
ul.dricrete-social li {
  display: inline-block;
  margin-right: 5px;
}
ul.dricrete-social li:last-child {
  margin-right: 0;
}
ul.dricrete-social a {
  background-color: #fff;
  color: #363534;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 24px;
  border-radius: 22px;
  font-size: 12px;
  text-align: center;
}
ul.dricrete-social a:hover {
  background-color: #4C7FA7;
  color: #363534;
}

/*****************************************************************************
 * Drawer / Hamburger mobile menu
 *****************************************************************************/
/* Drawer control */
.drawer-trigger {
  display: none;
  float: right;
  width: 36px;
  height: 75px;
  position: relative;
}
@media screen and (max-width: 1111px) {
  .drawer-trigger {
    display: block;
  }
}

.drawer-button {
  font-size: 36px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 100%;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.drawer-button:focus, .drawer-button:active, .drawer-button:hover {
  text-decoration: none;
}
.drawer-button .drawer-button-closed {
  display: table-cell;
}
.drawer-button .drawer-button-opened {
  display: none;
}

.drawer-open .drawer-button .drawer-button-closed {
  display: none;
}
.drawer-open .drawer-button .drawer-button-opened {
  display: table-cell;
}

.drawer-button-align {
  display: table;
  width: 100%;
  height: 100%;
}
.drawer-button-align .drawer-button-opened,
.drawer-button-align .drawer-button-closed {
  width: 100%;
  vertical-align: middle;
}

/* Drawer menu */
.drawer {
  -webkit-transition: 0.3s transform ease;
  transition: 0.3s transform ease;
  -webkit-transform: translate3d(100%, 0px, 0px);
  transform: translate3d(100%, 0px, 0px);
  display: block;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
}
.drawer.is-submenu-open {
  overflow-y: scroll;
}

.drawer-open .drawer {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/*
html.drawer-open {
	margin-top: 0 !important;
}*/
.nav-drawer-menu {
  padding-bottom: 0;
  font-weight: bold;
}
.nav-drawer-menu ul {
  width: 100%;
  float: left;
  clear: both;
}
.nav-drawer-menu ul.sub-menu {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transform: translate3d(100%, 0px, 0px);
  -webkit-transform: translate3d(100%, 0px, 0px);
  margin: 0;
  padding: 0;
}
.nav-drawer-menu ul.sub-menu.is-open {
  transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.nav-drawer-menu li {
  width: 100%;
  float: left;
  display: block;
  clear: both;
  margin: 0;
  padding: 0;
}
.nav-drawer-menu a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: block;
  line-height: 200%;
  border-bottom: solid #363534 1px;
  padding: 8px 10px;
}
.nav-drawer-menu h4,
.nav-drawer-menu .nolink > a {
  color: #F5A306;
  font-size: 24px;
  line-height: 150%;
  border-bottom: solid #F5A306 1px;
  font-weight: bold;
}
.nav-drawer-menu li.menu-item-back a {
  text-transform: uppercase;
  font-weight: lighter;
}

.nav-drawer-menu > li:last-child a {
  border-bottom: 0;
}

.dricrete-main > .dricrete-main-wrap {
  width: 100%;
  max-width: 1279px;
  margin: 0 auto;
}

.pane-icons {
  text-align: center;
}
.pane-icons img {
  height: auto;
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (max-width: 1111px) {
  .pane-icons .vc_col-sm-3,
.pane-icons .vc_col-sm-1\/5 {
    width: 50%;
    max-width: 50%;
  }
  .pane-icons .vc_col-sm-1\/5:first-child, .pane-icons .vc_col-sm-1\/5:last-child {
    display: none;
  }
}

.pane-icons-text {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 45px 0 0;
  text-transform: uppercase;
}

.highlight-list-columns {
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .slightly-narrower-first-column .vc_col-sm-2 {
    width: 11.5%;
  }
  .slightly-narrower-first-column .vc_col-sm-2 > .vc_column-inner {
    padding-right: 0;
  }
}
.dricrete-hero {
  margin-bottom: 60px;
}
.dricrete-hero > .dricrete-container {
  padding-left: 0;
  padding-right: 0;
}
.dricrete-hero .col-lg-10 {
  width: 81.25%;
  max-width: 81.25%;
}
.dricrete-hero .hero-text-block {
  position: relative;
}
.dricrete-hero .hero-text {
  margin-top: -100px;
  background-color: #fff;
  padding: 15px 15px 15px 30px;
  border-top: solid #F5A306 7px;
}
.dricrete-hero h1 {
  overflow: hidden;
  margin: 0;
  padding-bottom: 5px;
}
.dricrete-hero h1 span {
  display: block;
}
.dricrete-hero .hero-img {
  background-color: #000;
  max-height: 420px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.dricrete-hero .hero-img .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.dricrete-hero .hero-img .bg img {
  width: 100%;
  height: auto;
  display: block;
}
.dricrete-hero .hero-img .solid {
  position: absolute;
  width: 50%;
  bottom: -10px;
  left: 0px;
  height: 110px;
  background-color: #fff;
}
@media screen and (max-width: 1111px) {
  .dricrete-hero {
    margin-bottom: 15px;
  }
  .dricrete-hero .col-lg-10 {
    width: 100%;
    max-width: 100%;
  }
  .dricrete-hero .hero-text {
    margin-top: 0;
    padding: 15px;
  }
  .dricrete-hero .hero-img .sizer {
    display: none;
  }
  .dricrete-hero .hero-img .bg {
    position: static;
    top: auto;
    left: auto;
    height: auto;
  }
  .dricrete-hero .hero-img .solid {
    display: none;
  }
}

.dricrete-page-hero {
  margin-bottom: 75px;
}
.dricrete-page-hero .image-box {
  background-color: #000;
  max-height: 400px;
  overflow: hidden;
}
.dricrete-page-hero .image-box img {
  display: block;
  width: 100%;
  height: auto;
}
.dricrete-page-hero .column-text .column-wrap {
  max-width: 475px;
}
.dricrete-page-hero .title-box {
  display: inline-block;
  width: auto;
  height: 150px;
  position: relative;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 30px;
}
.dricrete-page-hero .title-box h1 {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
}
.dricrete-page-hero .title-box h1 span {
  display: block;
}
.dricrete-page-hero .title-box .bgline {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.dricrete-page-hero .title-box .bgline .line {
  display: block;
  width: 100%;
  height: 75px;
  background-color: #F5A306;
}
.dricrete-page-hero .title-box .icon {
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  text-align: right;
}
.dricrete-page-hero .title-box .icon img {
  max-width: 70px;
  height: auto;
}
.dricrete-page-hero .title-box.is-full {
  width: 100%;
}
.dricrete-page-hero .content-box {
  padding: 15px 0 0 30px;
}
.dricrete-page-hero.line-count-3 .title-box {
  height: auto;
}
.dricrete-page-hero.line-count-3 .title-box h1 {
  margin-bottom: 0;
}
.dricrete-page-hero.has-icon .title-box.is-full .bgline {
  max-width: 194px;
}
@media screen and (max-width: 1111px) {
  .dricrete-page-hero {
    margin-bottom: 30px;
  }
  .dricrete-page-hero .title-box {
    height: auto;
  }
  .dricrete-page-hero .title-box h1 {
    margin-bottom: 0;
  }
  .dricrete-page-hero .title-box .bgline .line {
    height: 50px;
  }
  .dricrete-page-hero .content-box {
    padding: 15px 15px 0 15px;
  }
}

.dricrete-docs-list {
  font-size: 12px;
  line-height: 15px;
}
.dricrete-docs-list .column-doc {
  margin-bottom: 35px;
}
.dricrete-docs-list .lb {
  display: block;
}
.dricrete-docs-list a {
  display: block;
  color: #4C7FA7;
  text-transform: uppercase;
}
.dricrete-docs-list a span,
.dricrete-docs-list a strong {
  display: block;
}
.dricrete-docs-list a strong {
  font-weight: 600;
}
.dricrete-docs-list a:hover {
  color: #F5A306;
}
.dricrete-docs-list .icon {
  display: block;
  width: 100%;
  max-width: 102px;
  margin-bottom: 5px;
}
.dricrete-docs-list .linked-text {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .dricrete-docs-list .col-md-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.dricrete-numbered-row {
  margin-top: 60px;
}
.dricrete-numbered-row .column-image .bg {
  position: relative;
}
.dricrete-numbered-row .column-image img {
  width: 100%;
  height: auto;
  display: block;
}
.dricrete-numbered-row .column-image .hover-image {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.dricrete-numbered-row .column-image .bg.is-active .hover-image,
.dricrete-numbered-row .column-image .bg:hover .hover-image {
  opacity: 1;
}
.dricrete-numbered-row .column-content {
  text-align: left;
}
.dricrete-numbered-row .column-content .cell-wrap {
  display: inline-block;
  width: auto;
  text-align: left;
}
.dricrete-numbered-row.text-align-left .column-content {
  text-align: left;
}
.dricrete-numbered-row.text-align-right .column-content {
  text-align: right;
}
.dricrete-numbered-row.text-align-center .column-content {
  text-align: center;
}
@media screen and (max-width: 1111px) {
  .dricrete-numbered-row {
    margin-top: 30px;
  }
}

h2.numbered-row-headline {
  margin-bottom: 30px;
  position: relative;
}
h2.numbered-row-headline span {
  display: inline-block;
}
h2.numbered-row-headline .num {
  color: #F5A306;
  display: block;
  position: absolute;
  width: 0px;
  top: 13px;
  left: -42px;
  font-size: 100px;
}
h2.numbered-row-headline .title-box {
  position: relative;
}
h2.numbered-row-headline .title-box .title {
  position: relative;
  z-index: 2;
}
h2.numbered-row-headline .title-box .bgline {
  display: block;
  position: absolute;
  left: 0px;
  bottom: -15px;
  width: 100%;
  height: 10px;
  padding-left: 15px;
  display: block;
}
h2.numbered-row-headline .title-box .bgcolor {
  background-color: #F5A306;
  width: 100%;
  height: 10px;
  display: block;
}
@media screen and (max-width: 1111px) {
  h2.numbered-row-headline {
    width: auto;
    margin: 15px 0 35px 30px;
    font-size: 40px;
    line-height: 40px;
  }
}

.slick-dots {
  bottom: 10px;
  right: 0px;
  width: auto;
  text-align: right;
}
.slick-dots li {
  margin: 0 10px 0 0;
  width: auto;
  height: auto;
}
.slick-dots li button {
  width: 11px;
  height: 11px;
  border-radius: 11px;
  padding: 0;
  margin: 0;
  border: solid #fff 1px;
  background-color: transparent;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active,
.slick-dots li button:hover {
  background-color: #fff;
  border-radius: 11px;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    width: 100%;
    text-align: center;
    bottom: 30px;
  }
  .slick-dots li button {
    border-color: #F5A306;
  }
  .slick-dots li.slick-active,
.slick-dots li button:hover {
    background-color: #F5A306;
  }
}

.dricrete-slider h2.numbered-row-headline {
  font-size: 35px;
  line-height: 44px;
  margin-bottom: 20px;
}
.dricrete-slider h2.numbered-row-headline .title-box .bgline {
  padding-left: 0;
  bottom: -10px;
}
.dricrete-slider .slides {
  position: relative;
}
.dricrete-slider .layer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.dricrete-slider .slides-box,
.dricrete-slider .slick-list,
.dricrete-slider .slick-track,
.dricrete-slider .slick-slide > div,
.dricrete-slider .slide {
  width: 100%;
  height: 100%;
}
.dricrete-slider .slide {
  position: relative;
}
.dricrete-slider .video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.dricrete-slider .video > div {
  padding: 0 !important;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .dricrete-slider .slides {
    padding-bottom: 60px;
  }
  .dricrete-slider .slick-list {
    height: calc(100% - 60px);
  }
}

.vc_row.wrap-xxlarge > .wpb_column > .vc_column-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.vc_row.wrap-large > .wpb_column > .vc_column-inner {
  max-width: 1112px;
  margin: 0 auto;
}

.vc_row.wrap-icons > .wpb_column > .vc_column-inner {
  max-width: 826px;
  margin: 0 auto;
}

.vc_row.wrap-docs > .wpb_column > .vc_column-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vc_row.wrap-hd-height > .wpb_column > .vc_column-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.column-offset {
  padding-left: 15px;
}

.column-offset-2 {
  padding-left: 30px;
}

.column-offset-3 {
  padding-left: 60px;
}

.column-pop-left {
  margin-left: -80px;
}

@media screen and (max-width: 1279px) {
  .column-offset {
    padding-left: 0px;
  }

  .column-offset-2 {
    padding-left: 0px;
  }

  .column-offset-3 {
    padding-left: 0px;
  }

  .column-pop-left {
    margin-left: 0px;
  }
}
/**
 * Process
 */
@media screen and (max-width: 1111px) {
  .page-id-123 .vc_empty_space {
    display: none;
  }
  .page-id-123 .vc_custom_1578888484985 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .page-id-123 .vc_custom_1579562443655,
.page-id-123 .vc_custom_1579562656610 {
    padding: 0 15px !important;
  }
  .page-id-123 .crystal-title {
    margin-top: 30px;
  }
  .page-id-123 .crystal-row {
    display: flex;
    flex-direction: row-reverse;
  }
  .page-id-123 .crystal-row .vc_col-sm-2 {
    width: 25%;
    max-width: 25%;
  }
  .page-id-123 .crystal-row .vc_col-sm-2 img {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
  }
  .page-id-123 .crystal-row .vc_col-sm-8 {
    width: 75%;
    max-width: 75%;
  }
  .page-id-123 .callout-row {
    margin-top: 60px;
  }
}

/**
 * Projects
 */
@media screen and (max-width: 767px) {
  .page-id-161 .vc_empty_space:first-child {
    height: 40px !important;
  }
  .page-id-161 .vc_empty_space:last-child {
    display: none !important;
  }
}

/**
 * Contact
 */
@media screen and (max-width: 1111px) {
  .page-id-171 .vc_empty_space {
    display: none;
  }
  .page-id-171 .vc_custom_1578888484985 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/*****************************************************************************
 * z-index control, centralized, override all
 *****************************************************************************/
#wpadminbar,
#wpadminbar .ab-sub-wrapper,
#wpadminbar ul,
#wpadminbar ul li {
  z-index: 28000035;
}

header.main {
  z-index: 28000015;
}

.drawer,
.nav-drawer-menu ul.sub-menu {
  z-index: 28000015;
}

/*# sourceMappingURL=theme.css.map */
