/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Colors
# Typography & Resets
# Header
# Navigation
# Button Styling
# Lazy Load
# Paddings & Margins
# General Styles
# Footer
# General Sections
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/
:root {
  --color-white: #fff;
  --color-black: #000; 
  --color-blue: #0088CE;
  --color-lightgray: #F7F7F7;
  --plyr-color-main: #0088CE;
  --font-size-primary-heading:  calc(2rem + 1.6vw);
  --font-size-primary-subheading: calc(0.8rem + 1vw);
  --font-size-secondary-heading: calc(1.1rem + 1.4vw);
   --font-size-counters-heading: calc(1.1rem + 1.8vw);
  --font-size-tertiary-heading: calc(1.3rem + 1vw);
  --font-size-quartary-heading: calc(1.2rem + 0.5vw);
  --font-size-quinary-heading: calc(1rem + 0.2vw);
  --font-size-button: calc(0.7rem + 0.1vw);
  --font-size-body: 18px;
  --font-family-headline: "Oswald", sans-serif;
  --font-family-text: 'Montserrat', sans-serif;
  --font-family-button: "Montserrat", sans-serif;
}
/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.cl-white,
.cl-white-h:hover,
.cl-white-h:focus{
    color: var(--color-white);
}
.border-white{
    border: 1px solid var(--color-white);
}
.cl-black,
.cl-black-h:hover,
.cl-black-h:focus{
    color: var(--color-black);
}
.border-black{
    border: 1px solid var(--color-black);
}
.bg-black{
  background-color: var(--color-black);
}
.cl-blue,
.cl-blue-h:hover,
.cl-blue-h:focus{
    color: var(--color-blue);
}
.border-blue{
    border: 1px solid var(--color-blue);
}
.cl-lightgray,
.cl-lightgray-h:hover,
.cl-lightgray-h:focus{
    color: var(--color-lightgray);
}
.border-lightgray{
    border: 1px solid var(--color-lightgray);
}
.bg-lightgray{
  background-color: var(--color-lightgray);
}
.border-1{
  border: 1px solid var(--color-black) !important;
}
/*--------------------------------------------------------------
# Typography & Resets
--------------------------------------------------------------*/
body,
html {  
  scroll-behavior: smooth;
}
body,
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: -100px;
}
body.responsive-menu-open{
  overflow: hidden;
}
html{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  }
body {
  font-family: var(--font-family-text);
  overflow-x: hidden;
  overflow-wrap: break-word;	
  color: var(--color-black);
  font-size: var(--font-size-body);
} 

h1 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-primary-heading);  
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2.8px;
}
h2.subheading{
  font-family: var(--font-family-text) !important;
  font-size: var(--font-size-primary-subheading) !important;     
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.04px;
 
}
h2 { 
  font-family: var(--font-family-headline);
  font-size: var(--font-size-secondary-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.44px;  
}
h2.counter-number{
	 font-size: var( --font-size-counters-heading) !important;    
}
h3 {
  font-size: var(--font-size-tertiary-heading);
  font-family: var(--font-family-headline);
	line-height: 1.2;
}

h4 {
  font-size: var(--font-size-quartary-heading);
  font-family: var(--font-family-headline);
	line-height: 1.2;
}

h5,
h6 {
  font-size: var(--font-size-quinary-heading);
  font-family: var(--font-family-headline);
	line-height: 1.2;
}
p,
li,
a {

  font-size: var(--font-size-body);
}
a,
a:active,
a:focus {
  outline: none;
  text-decoration: none; 
  -moz-transition: 0.35s ease all;
  -o-transition: 0.35s ease all;
  -webkit-transition: 0.35s ease all;
  transition: 0.35s ease all;
  color: var(--color-blue);
}

.max-width {
  max-width: 1500px;
  padding: 0 1em;
  margin: 0 auto;
}

section { 
  padding: 6em 0;
  position: relative;
  width: 100%;
}
.section-subtitle{  
  font-family: var(--font-family-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; 
  letter-spacing: 1.32px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header{
  padding: 0 0 30px;
  position: fixed;
  width: 100%;
  z-index: 100;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -o-transition: transform .2s linear;
  -ms-transition: transform .2s linear;
  -moz-transition: transform .2s linear;
  -webkit-transition: transform .2s linear;
  transition: transform .2s linear;
}
.site-header img.logo{
	 margin-top: 8px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.site-header.header-scrolled{  
  padding: 0 0 10px; 
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.site-header.header-scrolled #menu-button span {  
  background-color: var(--color-black);
}
.site-header.header-scrolled #menu-button.open span {  
  background-color: var(--color-white);
}
.site-header.header-scrolled img.logo,
.site-header.header-scrolled-top img.logo{
  width: 100px;
	    margin-top: 8px;
}
.site-header.header-scrolled-top{
  background-color: var(--color-white);
  padding: 0 0 10px; 
  box-shadow: 0px 0px 10px rgba(77, 77, 77, 0.1);
}
.site-header.header-scrolled-top #menu-button span {
  background-color: var(--color-black);
}
.site-header.header-scrolled-top #menu-button.open span {
  background-color: var(--color-white);
}
body.single-portfolio #menu-button span {  
  background-color: var(--color-black);
}
body.single-portfolio #menu-button.open span{
  background-color: var(--color-white);
}
body.error404 #menu-button span,
body.page-template-page-thank-you #menu-button span,
body.single:not(.single-blog-post) #menu-button span,
body.search #menu-button span {  
  background-color: var(--color-black);
}
body.error404 #menu-button.open span,
body.page-template-page-thank-you #menu-button.open span,
body.single:not(.single-blog-post) #menu-button.open span,
body.search #menu-button.open span{
  background-color: var(--color-white);
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
#site-navigation {
  z-index: 20;
  position: relative;
  padding: 1em;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1em 0;
}
.offcanvas-logo {  
  margin-bottom: 30px;
}
main {
  display: block; 
}
#primary-menu .sub-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 1em 0;
  background: var(--color-green-muted);	
  min-width: 12em;
}

#primary-menu .sub-menu li a {
color: var(--color-black);   
  text-shadow: none !important;    
  position: relative;
  padding: 0.5em 1.25em;
  font-size: 0.9em !important;
  font-weight: 300;
  text-transform: capitalize !important;    
  letter-spacing: 0 !important;
}
#primary-menu .sub-menu li a::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
  transform: scaleY(0);
  transition: transform .5s ease 0s;
  background-color: var(--color-black);
}
#primary-menu .sub-menu li a:hover::before, #primary-menu .sub-menu li a:focus::before {
  transform: scaleY(1);
}
#primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li a:focus{
  font-weight: 800 !important;
  text-decoration: underline;
}
#primary-menu li ul {
opacity: 0;
-moz-transition: opacity 0.5s linear 0s;
-o-transition: opacity 0.5s linear 0s;
-webkit-transition: opacity 0.5s linear 0s;
transition: opacity 0.5s linear 0s;
}

#primary-menu li:hover ul {
opacity: 1;
}

#primary-menu > li {
  padding-left: 1rem;
  padding-right: 1rem;
text-transform: uppercase;
font-weight: 600;
}

#primary-menu li a {
color: var(--color-white);
  font-family: var(--font-family-text);
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  text-shadow: 0 3px 12px #000000E8 !important;
  font-weight: 600 !important;
  letter-spacing: 0.125rem !important;
}

.site-navigation .navigation {
position: relative;
display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
align-content: center;
justify-content: center;
align-items: center;
}

.navigation{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;   
  justify-content: center;
}
.main-navigation ul ul {  
  min-width: 100%;
  width: auto;
}
.main-navigation ul ul a {
  width: 100%;
}
header .social-icons a:hover rect,
header .social-icons a:focus rect{
  fill: var(--color-white);
}
header .social-icons a:hover svg path,
header .social-icons a:focus svg path{
  fill: var(--color-blue);
}
/*--------------------------------------------------------------
# Button Styling
--------------------------------------------------------------*/

.button,
body .gform_button, .menu .button a {
  font-family: var(--font-family-button) !important;
  font-size: var(--font-size-button) !important;
  display: inline-block;
  text-decoration: none;
  font-style: normal;
  font-weight: 700 !important;  
  line-height: 18px !important;
  padding: 20px 40px;  
  text-shadow: none;
  box-shadow: none;
  -moz-transition: 0.35s ease all;
  -o-transition: 0.35s ease all;
  -webkit-transition: 0.35s ease all;
  transition: 0.35s ease all;
  text-transform: uppercase;
  letter-spacing: 1.8px !important;  
  z-index: 2;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  text-align: center;
}
.button{
  min-width: 252px;
}
.button.black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.button.black:hover {
  color: var(--color-white); /* Update the button text color on hover */
}

.button-wrapper:hover .button.black {
  background-color: transparent; /* Remove the button's background on hover */
}
.button-wrapper {
  display: inline-block;
  position: relative;
  -moz-transition: top 0.5s, left 0.5s;
  -o-transition: top 0.5s, left 0.5s;
  -webkit-transition: top 0.5s, left 0.5s;
  transition: top 0.5s, left 0.5s; 
}
.button-wrapper:after {  
  content: " ";
  position: absolute;
  bottom: -7px;
  left: 7px;
  display: block;
  width: 100%;
  height: 100%; 
  z-index: 0;
  pointer-events: none;
  -moz-transition: top 0.5s, left 0.5s;
  -o-transition: top 0.5s, left 0.5s;
  -webkit-transition: top 0.5s, left 0.5s;
  transition: top 0.5s, left 0.5s; 
}

.button-wrapper:hover::after {
  top: 0; 
  left: 0;
  box-shadow: none;
}
.button-wrapper.blue::after{
  background-color: var(--color-blue);
}
section#shadow-host-companion {
  padding: 0;
  margin: 0;
}
body.page-template-page-careers .section-info-buttons{
  padding-bottom: 0 !important;
}
.back-and-forth-video.h-video{
  height: auto;
}

/*--------------------------------------------------------------
# Lazy Load
--------------------------------------------------------------*/
img[data-lazy-src] {
  opacity: 0;
}

img.lazyloaded {
  -webkit-transition: opacity .5s linear 0.2s;
  -moz-transition: opacity .5s linear 0.2s;
  -o-transition: opacity .5s linear 0.2s;
  transition: opacity .5s linear 0.2s;
  opacity: 1;
}
/*--------------------------------------------------------------
# Custom Videos
--------------------------------------------------------------*/
.plyr--video{
  height: 100%;
}
.plyr__poster{
  background-size: cover !important;
}
/*--------------------------------------------------------------
# Paddings & Margins
--------------------------------------------------------------*/
.gap-1{
  gap: 1em;
}
.gap-2{
  gap: 2em;
}
.gap-3{
  gap: 3em;
}
.ps-0{
  padding-left: 0 !important;
}
.pe-0{
  padding-right: 0 !important;
}
.pe-1{
  padding-right: 1em !important;
}
.p-t0{
  padding-top: 0 !important;
}
.p-t1{
  padding-top: 1em !important;
}
.p-t2{
  padding-top: 2em !important;
}
.p-t3{
  padding-top: 3em !important;
}
.p-t4{
  padding-top: 4em !important;
}
.p-b0{
  padding-bottom: 0 !important;
}
.p-b1{
  padding-bottom: 1em;
}
.p-b2{
  padding-bottom: 2em;
}
.p-b3{
  padding-bottom: 3em;
}
.p-y6{
  padding: 6em 0;
}
.m-0{
  margin: 0 !important;
}
.ms-0{
  margin-left: 0 !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 1em !important;
}
.me-2 {
  margin-right: 2em !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-02 {
  margin-bottom: 0.2em !important;
}
.m-b1{
  margin-bottom: 1em !important;
}
.m-b2{
  margin-bottom: 2em;
}
.m-b3{
  margin-bottom: 3em;
}
.mt-0 {
  margin-top: 0 !important;
}
.m-t1{
  margin-top: 1em;
}
.m-t2{
  margin-top: 2em;
}
.m-t3{
  margin-top: 3em;
} 
.m-t4{
  margin-top: 4em;
} 
/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
.hide{
  visibility: hidden;
  width: 0;
  height: 0;
}
.flex{
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex-row { 
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-column{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.justify-center{
  -webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
.align-items-center{
  -webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}

.text-uppercase{
  text-transform: uppercase;
}
.w-100{
  width: 100% !important;
}
.h-100{
  height: 100% !important;
}
.fit-cover-center{
  object-fit: cover;
  object-position: center;
}
.fit-cover-top{
  object-fit: cover;
  object-position: top;
}
.img-fluid {
  height: auto;
  max-width: 100%;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   
  z-index: 2;
}
.overlay-bg1{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
}
.overlay-bg2{
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}
.text-left{
  text-align: left;
}
.line{
  width: 21em;
  height: 7px;
  background-color: var(--color-blue);
  margin-bottom: 20px;
}
.page-internal-hero .line{
  width: 14em;
}
ul{
  padding-inline-start: 0;
  margin: 0;
}
.row{
  width: 100%;
}
.text-center{
  text-align: center;
}
.position-relative{
  position: relative;
}
.container{
  padding-right: 2rem;
  padding-left: 2rem; 
}
.description{
  font-family: var(--font-family-text);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.72px;
}
.description a{
  color: var(--color-black);
}
.description a:hover{
	  color: var(--color-blue);
}
.single .description a{
  text-decoration: underline;
}
.description ul{
  margin-top: 1em;
}
.text-center{
	text-align: center;
}
.scrollToTopBtn {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
  position: fixed;
  bottom: 57px;
  right: 66px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.label-1{
  font-family: var(--font-family-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px; 
  letter-spacing: 1.08px;  
}
.icon-values{
  margin-bottom: 25px;
  flex-grow: 1;
}
.values-col{ 
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Slick Slider
--------------------------------------------------------------*/
.logo-partner{
  max-height: 10em;
  object-fit: contain;
  margin: 0 auto;
}
.slick-arrow{
  cursor: pointer;
}
.slick-prev, .slick-next {
  position: absolute;
  top: 50%; 
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slide {
    transition: filter .4s;
    margin: 0px 40px;
}
/*--------------------------------------------------------------
# Popup
--------------------------------------------------------------*/
.popmake-title{
	display: none;
}
.popmake-content .description p,
.img-popup{
	margin-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Gravity Forms
--------------------------------------------------------------*/
.post-password-form input[type="password"]{
  background: transparent;
    border: unset;
    border: 2px solid var(--color-black);
    color: var(--color-black);
    border-radius: 0;
    font-family: var(--font-family-text);
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.72px;
    height: 45px;
    width: 100%;
}
.gform_wrapper.gravity-theme .gfield_label{
  font-family: var(--font-family-text);
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 0;
  line-height: 25px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}
.gform_wrapper.gravity-theme .full-w .ginput_complex{
  display:  block !important;
  margin-left: 0;
  margin-right: 0;
}
.gform_wrapper.gravity-theme .full-w .ginput_container_address span {
  
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.gform_wrapper.gravity-theme input[type="color"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme input[type="datetime-local"],
.gform_wrapper.gravity-theme input[type="datetime"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="month"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="search"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="time"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="week"],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea,
.search-form input[type="search"]{
	background: transparent;
	border: unset;
	border: 2px solid var(--color-black);
	color: var(--color-black);	
	border-radius: 0;
  font-family: var(--font-family-text);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; 
  letter-spacing: 0.72px;
  height: 45px;
}
.gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: 20px !important;
}
.gform_heading{
  display: none;
}
body .gform_wrapper.gravity-theme .gform_drop_instructions {
	display: inline-block;
	color: var(--color-black);
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
}

body .gform_wrapper.gravity-theme .gform_drop_area {
	padding: 3em;
}

body .gform_button_select_files {
	background: unset;
	border: unset;
	padding: unset;
	text-transform: none;
	letter-spacing: inherit;
	color: var(--color-black);
	font-weight: 600;
	cursor: pointer;
}

body .gform_wrapper.gravity-theme .gform_drop_area {
	border: 2px solid var(--color-black);
	border-radius: 0px;
}

body .gform_wrapper.gravity-theme .gform_fileupload_rules {
	display: none;
}

body .gform_button {
	background: var(--color-black);
	color: var(--color-white);
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: var(--color-black);
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: var(--color-black);
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--color-black);
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--color-black);
}
input[type="button"], input[type="reset"], input[type="submit"], .gform_button {       
  line-height: 1; 
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  font-family: var(--font-family-button);
  display: block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0px;
  border-top-left-radius: 0;
  padding: 20px 25px;
  font-size: var(--font-size-button);
  text-shadow: none;
  box-shadow: none;
  transition: 0.35s ease all;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  box-shadow: 7px 7px var(--color-blue) !important;
  width: 100%;
  letter-spacing: 1.8px;
}
.gform_button{
  margin-top: 5px;
}
input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .gform_button:hover,
input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, .gform_button:focus {  
    box-shadow: 0px 0px var(--color-blue) !important;
    background-color: var(--color-blue) !important;
    color: var(--color-white) !important;
}
.content-search{
    background-color: var(--color-green);
    box-shadow: 1em 1em 2em rgba(0,0,0,0);
    padding: 20px;
}
.content-search .search-field{
    border-color: rgba(255,255,255,0.2) !important;
    color: #292929;
    background: #FFFFFF !important;
    width: 80%;
    height: 40px;
    padding: 10px;
}
.gfield_checkbox li,
.ginput_container_consent {
    position: relative;
    padding-left: 40px;
  }
  .gfield_checkbox li label:after,
  .ginput_container_consent label:after {
    content: "";
    background: transparent;
    width: 27px;
    height: 27px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0;
    z-index: 0;
    border: 1px solid var(--color-black);
  }
  .gfield_checkbox li label:before,
  .ginput_container_consent label:before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 16px;
    border: solid var(--color-black);
    border-width: 0 3px 3px 0;
    left: 11px;
    top: 4px !important;
    transform: rotate(45deg);
    opacity: 0;
    z-index: 1;
    transition: all 100ms;
  }
  
  input[type=checkbox] {
    opacity: 0;
    outline: none;
    z-index: 100;
    width: 27px;
    height: 27px;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  input[type=checkbox] + label {
    cursor: pointer;
  }
  input[type=checkbox]:checked + label:before {
    opacity: 1;
    top: 3px;
  }
  .section-contact-home .gform_wrapper.gravity-theme #gform_fields_1_2.gform_fields {   
    grid-template-columns: repeat(10,1fr);    
  }
  .info-opt{
    padding-top: 15px !important;
    padding-bottom: 6px !important;
  }
  .section-contact-forms .gfield{
    margin-bottom: 16px;
  }
  .form-steps-home #gform_page_1_1 .gform_page_footer{
    text-align: right;
  }
  .box-contact{
    background-color: var(--color-lightgray);
    padding: 50px;
  }

/*--------------------------------------------------------------
# Custom Filter Dropdown
--------------------------------------------------------------*/

.select-dropdown {
  position: relative;
  display: inline-block; 
  border: 3px solid var(--color-black);
  width: 20em;
  height: 2.5em;
  max-width: 100%;
  line-height: 2;
}
.select-dropdown__button { 
  background-color: #fff;
  border: 0;
  border-radius: 0;
  width: 100%;
  text-align: left;
  padding: 0 17px;
  cursor: pointer;
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  height: 100%;
}
.select-dropdown__button::focus {
  outline: none;
}
.select-dropdown__button .chevron-down {
  position: absolute;
  right: 12px;
  top: 3px;
  width: 40px;
  height: 100%;
}
.select-dropdown__button .chevron-down::before{
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12' fill='none'%3e%3cpath d='M10 11.1171L0 2.10324L2.33333 0L10 6.91064L17.6667 0L20 2.10324L10 11.1171Z' fill='%231C1B1F'/%3e%3c/svg%3e");
  cursor: pointer;
  pointer-events: none;
  transition: .25s all ease;
  width: 40px;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  color: var(--color-black) !important;
  display: block;
}
.select-dropdown__button .chevron-down.open::before{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180eg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.select-category {
  position: absolute;
  display: block;
  left: -3px;
  right: 0; 
  overflow: auto;
  margin: 0;  
  list-style-type: none;
  opacity: 0; 
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 3;
  background-color: #fff;
  padding: 0 21px;
  border: 3px solid #000;
  width: 100%;
  border-top: 0;
  width: 20em;
}
.select-category.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
/*--------------------------------------------------------------
# Parallax
--------------------------------------------------------------*/
.simpleParallax{
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/*Portfolio Row*/
.projects-row {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.projects-row.loading {
  opacity: 0.5;
  position: relative;
}

.projects-row .spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px; /* Centers the spinner */
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid var(--color-black);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.portfolio-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
flex-direction: row;
align-content: center;
align-items: stretch;
gap: 10px !important;
flex-wrap: wrap;
width: 100%; 
}

.portfolio-row div {
height: 350px;
}
.portfolio-related .portfolio-row div,
.portfolio-featured .portfolio-row div {
  height: 400px;
  }
.portfolio-row img {
width: 100%;
height: 100%;
object-fit: cover;
}

.portfolio-row .portfolio-first-block,
.portfolio-row .portfolio-last-block {
padding: 4em;
}

.portfolio-row .portfolio-last-block {
text-align: right;
}

.portfolio-block-30 {
width: 29.5%;
}
.portfolio-block-33 {
  width: calc((100% / 3) - 10px);
  }
.portfolio-block-40 {
width: 39%;
}

.portfolio-first-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}

.portfolio-last-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
}

/*Portfolio Page*/
.filter{
padding: 30px 40px;
overflow: auto;
white-space: nowrap;
flex-direction: row !important;
}
.project {
  position: relative;
  overflow: hidden;
}
.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-button);
  text-align: center;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.62px;
  text-transform: uppercase;
  padding: 20px;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.project:hover .overlay,
.project:focus .overlay {
  opacity: 1;
}
.filter-category{
flex-direction: row !important;
}
.filter-category{
text-align: left;

}
.filter-category a{
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 2;
  width: 100%;
  display: block;
}
.filter-category a:hover,
.filter-category a:focus{
  color: var(--color-blue);
}
.filter-category .title-cat{
border-bottom: 2px solid transparent;
-moz-transition: border-color 0.6s linear;
-o-transition: border-color 0.6s linear;
-webkit-transition: border-color 0.6s linear;
transition: border-color 0.6s linear;
}
.filter-category.active .project-link .title-cat,
.filter-category:hover > .project-link .title-cat{
border-color: #000;
}
.col-filter{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}

/*--------------------------------------------------------------
# Section Info Contact
--------------------------------------------------------------*/
.box-info-contact{
  padding-left: 29px;
}
.icon-info{
  position: absolute;
  left: 0;
  top: 5px
}
.box-info-contact a{
  color: var(--color-black);
}
.box-info-contact a:hover,
.box-info-contact a:focus{
  color: var(--color-blue);
}

/*--------------------------------------------------------------
# Accordeon
--------------------------------------------------------------*/
.accordion {
  font-family: var(--font-family-text);
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  position: relative;
  border: none;
  text-align: left;
  outline: none;
  border: solid 3px var(--color-black);
  border-radius: 0;
  font-size: 20px;   
  line-height: 25px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;   
}

.accordion.active, .accordion:hover, .accordion:focus {
  background-color: var(--color-white) !important;
  border-color: var(--color-black) !important;
}

.accordion:after {    
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25' height='14' viewBox='0 0 25 14' fill='none'%3e%3cpath d='M12.5 -1.09278e-06L25 11.3514L22.0833 14L12.5 5.2973L2.91667 14L2.31552e-07 11.3513L12.5 -1.09278e-06Z' fill='%231C1B1F'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-green);
  font-weight: bold;
  float: none;
  margin-left: 5px;
  width: 22px;
  height: 22px;
  position: absolute;
  right: calc(4.5rem * .4);
  top: 34%;
  transform: rotate(180deg); /* W3C */
  -webkit-transform: rotate(180deg); /* Safari & Chrome */
  -moz-transform: rotate(180deg); /* Firefox */
  -ms-transform: rotate(180deg); /* Internet Explorer */
  -o-transform: rotate(180deg); /* Opera */  
}

.accordion.active:after {
  transform: rotate(0); /* W3C */
  -webkit-transform: rotate(0); /* Safari & Chrome */
  -moz-transform: rotate(0); /* Firefox */
  -ms-transform: rotate(0); /* Internet Explorer */
  -o-transform: rotate(0); /* Opera */   
}

.panel {    
  background-color: var(--color-white);
  max-height: 0;
  overflow: hidden;   
  margin-bottom: 10px;  
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out; 
}
.panel .row{
  padding: 10px 30px 40px;
}
.panel .dp-1{
  display: flex;
  padding: 2% 2% 0;
  align-items: start;
}
.panel .dp-1::before{
  content: 'A:';
  font-family: var(--font-family-headline);
  font-size: 1.556rem;   
  line-height: 1.4;
  font-weight: 700;
  padding-top: 7px;
  padding-right: 10px;
}
.section-flexible-accordeon:last-of-type{
  padding-top: 0 !important;
}
/*--------------------------------------------------------------
# Section Services
--------------------------------------------------------------*/
.box-services{
  border: 3px solid #000;
  padding: 30px 21px 33px 21px;
}
.box-services p{
  margin-bottom: 0;
}
.box-services p a{
	color: var(--color-blue);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.page-main-hero{
  height: 60em;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.page-main-hero video,
.page-internal-hero video,
.box-media video,
.back-and-forth-media video,
.back-and-forth-video video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-internal-hero{
  height: 36em;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.z-10{
  z-index: 10;
}
/*--------------------------------------------------------------
# Counters Section
--------------------------------------------------------------*/
.counter-heading{ 
  font-family: var(--font-family-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px; 
  letter-spacing: 1.08px;  
}
.counter-number{
  padding-bottom: 20px;
}
/*--------------------------------------------------------------
# Back & Forth Section
--------------------------------------------------------------*/
.back-and-forth-media img,
.back-and-forth-video img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.back-and-forth-row.normal .col-text{
  padding-left: 70px;
  padding-right: calc(((100% - 1420px) / 2) + 2rem);
}
.back-and-forth-row.reverse .col-text,
.section-elements .col-text{
  padding-right: 70px;
  padding-left: calc(((100% - 1420px) / 2) + 2rem);
}
.row-back-forth,
.row-elements{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.content-back-forth,
.content-elements{
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.info-text-image{
  height: 36em;
  overflow: hidden;
}
.info-text-image.large{
    height: 40em; 
}
.back-and-forth-row .description ul{
  padding-inline-start: 18px;
	display: block;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    gap: 0 3em;
}
#section-benefits.back-and-forth-row ul{
  display: block;
}
#section-locations-sustain.back-and-forth-row .description ul{
	display: grid;
	
}
/*--------------------------------------------------------------
# Elements Section
--------------------------------------------------------------*/
.title-element{
  font-family: var(--font-family-text);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; 
  letter-spacing: 1.5px;
}
.section-elements{
  background-size: cover !important;
  margin-bottom: 0 !important;
  overflow-x: hidden;
}
.section-market,
section-values,
.portfolio-featured{
  background-size: cover !important;
}
.element-body p{
  margin-block-start: 0;
}
.icon-element{
  margin-right: 26px;
}
.animate-element-image{
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-info-contact{
  background-size: cover !important;
}
/*--------------------------------------------------------------
# Slider Testimonials Section
--------------------------------------------------------------*/
.glider-next, .glider-prev {
  background-color: transparent !important;
  top: 50%;
}
.glider-prev{
  left: 2rem;
}
.glider-next{
  right: 2rem;
}
.testimonial-interior{
  max-width: 826px;
  margin: 0 auto;
}
.name-testimonials{
  color: var(--color-black);  
  font-family: var(--font-family-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.position-testimonials{
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
section.section-testimonials-slider{
  margin: 0;
  padding: 9em 0;
}
/*--------------------------------------------------------------
# Slider History
--------------------------------------------------------------*/
.history-slide{
  background: #F7F7F7;
	align-content: start !important;
}
.box-history{
  padding: 3em 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.box-history .description p:last-of-type{
  margin-bottom: 0 !important;
}
.description.m-start-0 p:last-child{
  margin-bottom: 0;
}
.glider-prev-history{
  top: unset;
  bottom: 50px;
  right: 200px;
  left: unset !important;
}
.glider-next-history{
  top: unset;
  bottom: 50px;
  right: 100px !important;
}
/*--------------------------------------------------------------
# Media History
--------------------------------------------------------------*/
.glider-prev-media{
  top: unset;
  bottom: 50px;
  right: 200px;
  left: unset !important;
}
.glider-next-media{
  top: unset;
  bottom: 50px;
  right: 100px !important;
}
/*--------------------------------------------------------------
# Locations
--------------------------------------------------------------*/
/*#laz-store-locator{
  flex-direction: row-reverse;
}*/
#location-list .location {
  border-bottom: 3px solid #D9D9D9; 
  text-align: left;
  margin-bottom: 30px; 
  padding-bottom: 30px;
}
#location-list .location:first-child {
  border-top: 0;
}
.location h3 a,
.location h3,
.gm-style-iw-d h3 a,
.gm-style-iw-d h3{
  text-decoration: none;
  color: var(--color-blue);
  font-family: var(--font-family-headline);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px !important;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}
.gm-style-iw-d h3{
  margin: 0;
}
#location-list .location p{
  font-family: var(--font-family-text);
  color: var(--color-black);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px; 
letter-spacing: 0.72px;
}
#location-list .location p.directions a{
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
#location-list .location p a{
  font-family: var(--font-family-text);
  color: var(--color-black);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px; 
letter-spacing: 0.72px;
}
#location-list{
  height: 675px;
}
#map{
  height: 675px;
}

#location-list .location:first-child{
  padding-top: 30px;
}
#location-search {
  max-width: 675px;
  margin: 0 auto 50px auto;
  background-color: var(--color-white);
  padding: 3px 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  border: 3px solid var(--color-black);
}
#address-input{
  color: var(--color-black);
  font-family: var(--font-family-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-overflow: ellipsis;
}
#search-button:hover {
  background-color: transparent;
}
.direction-link a,
.gm-style-iw-d p a{
  color: var(--color-black) !important;
font-family: var(--font-family-text) !important;
font-size: 18px !important;
font-style: normal !important;
font-weight: 700 !important; 
line-height: 18px !important; 
letter-spacing: 1.8px  !important;
text-transform: uppercase !important;
}
.gm-style-iw-d div{
  padding: 10px;
}
.gm-ui-hover-effect span{
  width: 20px !important;
  height: 20px !important;
}
.gm-ui-hover-effect{
  top: 3px !important;
  right: 5px !important;
}
#location-list .location{
  cursor: pointer;
}
.gm-style-iw-d p{
  margin-bottom: 1em;
}
body.page-template-page-locations .section-info-text,
body.page-template-page-concrete-in-practice .section-info-text{
  padding-bottom: 3em;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.box-info{
  padding: 4em 3em;
  margin-left: auto;
}
.box-media{
  height: 36em !important;
  position: relative;
  overflow: hidden;
}
.back-and-forth-media{
  height: 36em !important;
  position: relative;
  overflow: hidden;
}
.back-and-forth-media.medium{
  height: 40em !important;
}
.back-and-forth-media.large{
  height: 49em !important;
}
.back-and-forth-video{
  height: 63em;
  position: relative;
  overflow: hidden;
}
#how-order-contractor .back-and-forth-media{
	  height: 63em !important;
}
#how-order-contractor{
	padding-top: 0 !important;
}
.header-info-careers{
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.info-careers .box-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
/*--------------------------------------------------------------
# Document Library
--------------------------------------------------------------*/
table.dataTable{
  border: 3px solid var(--color-black) !important;
  width: 100% !important;
  margin-bottom: 20px;
}
table.dataTable thead{
  background-color: var(--color-blue);
  color: var(--color-white);
}
table.dataTable thead th, table.dataTable thead td {
  padding: 10px;
  border-bottom: 0;
}
table.dataTable thead th, table.dataTable thead td {
  padding: 24px 33px;
  border-bottom: 0;
  color: var(--color-white);
  font-family: var(--font-family-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
}
table.dataTable tbody th, table.dataTable tbody td{
color: var(--color-black);
font-family: var(--font-family-text);
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 25px; 
letter-spacing: 1.32px;
padding: 24px 33px;
box-shadow: none;
}
table.dataTable tbody th a, table.dataTable tbody td a{
  color: var(--color-black);
}
table.dataTable tbody tr.odd{
  background: #EAEAEA;
}
table.dataTable tbody tr.even{
  background-color: var(--color-white);
}
table.dataTable.display tbody tr td:first-child { 
  text-align: left;
}
table.dataTable thead th:not(:first-child){
  text-align: center;
}
table.dataTable thead th:not(:last-child), table.dataTable thead td:not(:last-child),
table.dataTable.display tbody tr td:not(:last-child){
  border-right: 3px solid var(--color-black)
}
table.dataTable.display tbody tr td:not(:first-child) a:before{
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M5 15H15V13H5V15ZM10 12L14 8L12.6 6.6L11 8.15V4H9V8.15L7.4 6.6L6 8L10 12ZM10 20C8.61667 20 7.31667 19.7375 6.1 19.2125C4.88333 18.6875 3.825 17.975 2.925 17.075C2.025 16.175 1.3125 15.1167 0.7875 13.9C0.2625 12.6833 0 11.3833 0 10C0 8.61667 0.2625 7.31667 0.7875 6.1C1.3125 4.88333 2.025 3.825 2.925 2.925C3.825 2.025 4.88333 1.3125 6.1 0.7875C7.31667 0.2625 8.61667 0 10 0C11.3833 0 12.6833 0.2625 13.9 0.7875C15.1167 1.3125 16.175 2.025 17.075 2.925C17.975 3.825 18.6875 4.88333 19.2125 6.1C19.7375 7.31667 20 8.61667 20 10C20 11.3833 19.7375 12.6833 19.2125 13.9C18.6875 15.1167 17.975 16.175 17.075 17.075C16.175 17.975 15.1167 18.6875 13.9 19.2125C12.6833 19.7375 11.3833 20 10 20ZM10 18C12.2333 18 14.125 17.225 15.675 15.675C17.225 14.125 18 12.2333 18 10C18 7.76667 17.225 5.875 15.675 4.325C14.125 2.775 12.2333 2 10 2C7.76667 2 5.875 2.775 4.325 4.325C2.775 5.875 2 7.76667 2 10C2 12.2333 2.775 14.125 4.325 15.675C5.875 17.225 7.76667 18 10 18Z' fill='%231C1B1F'/%3e%3c/svg%3e");
  background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
}
table.dataTable.display tbody tr td:not(:first-child) a{
  position: relative;
  padding-left: 29px;
}
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate .paginate_button{
  color: var(--color-black) !important;
font-family: var(--font-family-text) !important;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 25px; 
letter-spacing: 1.08px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
  font-weight: 700 !important;
  font-size: 16px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:focus{
  background-color: transparent !important;
  color: var(--color-blue) !important;
  border-color: transparent !important;
}
table.dataTable thead th:first-child{
  width: 70%;
}
table.dataTable thead th:not(:first-child){
  width: 15%;
}
.dataTables_wrapper{
  max-width: 100%;
}
.dataTables_wrapper .dataTables_filter{
  margin-bottom: 1em;
}
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select{
  border: 3px solid var(--color-black);
    border-radius: 0;
}
.dataTables_wrapper .dataTables_filter input:hover,
.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_length select:hover{
  box-shadow: none;
  outline: 0;
  border: 3px solid var(--color-black);
  border-radius: 0;
}
.doc-library-filter button, .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--color-blue) !important;
  color: var(--color-white) !important;
  box-shadow: unset !important;
  border: 0px !important;
  border-radius: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:focus{
  background: var(--color-blue) !important;
  color: var(--color-white) !important;
  
}
/*--------------------------------------------------------------
# Concrete Calculator
--------------------------------------------------------------*/
.calculator-container{  
  background-color: var(--color-lightgray) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.calculator-main{
  padding: 75px 50px !important;
}
.shape-info{
  padding: 50px;
}
.calculator-container h6{
  color: var(--color-black);
text-align: center;
font-family: var(--font-family-text);
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 32px; 
letter-spacing: 1.28px;
text-transform: uppercase;
margin-block-start: 0;
margin-block-end: 0;
margin-bottom: 50px;
width: 100%;
display: block;
height: 100%;
}
.shape-list{
  width: 100%;
}
.shape-list-item{
  width: 100%;  
  height: 72px;
  text-align: center;
}
.shape-list-item:not(:last-child){
  margin-bottom: 25px;
}
.shape-list-item a{
  text-align: center;
  color: var(--color-black);
font-family: var(--font-family-text);
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 32px; 
letter-spacing: 0.96px;
background-color: var(--color-white);
display: flex;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.shape-list-item a:hover,
.shape-list-item a:focus,
.shape-list-item a.active{
  background-color: var(--color-blue);
  color: var(--color-white);
}
.calculator-box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1em;
}
.selected-shape-image{
  width: 50%;
}
.selected-shape-image img{
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.concrete-calculator-form{
  width: 50%;
}
.concrete-calculator-form .form-group,
.calculator-main,
.shape-info{
  width: 100%;
}
.concrete-calculator-form .form-group input{
  width: 100%;
  border-radius: 0;
  border: 0;
  padding: 10px 15px;
  color: rgba(0, 0, 0, 0.50) !important;
font-family: var(--font-family-text);
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 32px; 
letter-spacing: 0.72px;
border: 1px solid transparent;
}
.concrete-calculator-form .form-group input:focus,
.concrete-calculator-form .form-group input:focus-visible{
  border-radius: 0;
  border: 0;
  box-shadow: none;
  outline: none;
  border: 1px solid #000;
}
.concrete-calculator-form .form-group label{
  color: var(--color-black);
font-family: var(--font-family-text);
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 32px; 
letter-spacing: 0.72px;
}
.concrete-calculator-form .form-group input::-webkit-input-placeholder,
.concrete-calculator-form .form-group input::placeholder,
.concrete-calculator-form .form-group input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.50) !important;
  font-family: var(--font-family-text);
font-size: 18px;
font-style: normal;
font-weight: 300;
}
.concrete-calculator-form .form-group input:-moz-placeholder{
  color: rgba(0, 0, 0, 0.50) !important;
  font-family: var(--font-family-text);
font-size: 18px;
font-style: normal;
font-weight: 500;
  opacity: 1;
}
.concrete-calculator-form .form-group:not(:last-child){
  margin-bottom: 25px;
  
}
.cubic-footage-result{
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
}
.total-cubic{
  color: var(--color-blue);
text-align: center;
font-family: var(--font-family-headline);
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 60px; 
letter-spacing: 1.44px;
text-transform: uppercase;
}
.total-unit{
  color: var(--color-black);
text-align: center;
font-family: var(--font-family-text);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 32px; 
letter-spacing: 0.8px;
text-transform: uppercase;
}
.shape-info{
  position: relative;
}
.back-shape{
  border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
}
.back-shape:hover svg rect{
  fill: var(--color-blue);
}
/*--------------------------------------------------------------
# Thank You
--------------------------------------------------------------*/
.section-thank-you{
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  min-height: 100vh;
  height: auto;
}
.img-thankyou{
  position: absolute;
  z-index: 1;
  bottom: 0;   
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.box-thank-you{
  height: 24em;
  margin-top: 6em;
}
.box-thank-you h1{
color: var(--color-black);
font-family: var(--font-family-text);
font-size: 150px;
font-style: normal;
font-weight: 700;
line-height: 1; 
letter-spacing: 9px;
text-transform: uppercase;
z-index: 2;
margin-block-start: 0;
margin-block-end: 0;
margin: 0;
}
html.pum-open-fixed #page{
	padding-top: 46px;
}
html.pum-open-fixed body.body-scrolled #page{
	padding-top: 0;
}
/*html.pum-open-fixed body.body-scrolled #pum-1996{
	visibility: hidden;
	display: none !important;
}*/
/*--------------------------------------------------------------
# Apply Now Popup
--------------------------------------------------------------*/
.pum-theme-1950 .pum-container{
	padding: 12px !important;
}
.pum-theme-1950 .pum-content + .pum-close{
	line-height: 28px !important;
}
/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error-404{
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  min-height: 100vh;
  height: auto;
}
.box-404{
  height: 24em;
  margin-top: 6em;
}
.box-404 h1{
  font-family: var(--font-family-headline);
  color: var(--color-black);
  font-size: 250px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; 
  letter-spacing: 10px;
  z-index: 2;
  margin-block-start: 0;
  margin-block-end: 0;
  margin: 0;
}
.img404{
  position: absolute;
    z-index: 1;
    bottom: 0;   
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.box-404{
  height: 24em;
  margin-top: 6em;
}
.form-search-home .input-group{
  display: flex;
  justify-content: center;
}
.form-search-home .input-group .searchinput{
  border: 2px solid var(--color-black);
  color: var(--color-black);
  border-radius: 0;
  font-family: var(--font-family-text);
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.72px;   
  height: 45px;
  width: 25em;
  padding: 7px 15px;
}
.form-search-home .input-group-append{
  margin-left: 12px;
}
.btn-search{
  line-height: 1;
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  font-family: var(--font-family-button);
  display: block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0px;
  border-top-left-radius: 0;
  padding: 7px 6px;
  font-size: var(--font-size-button);
  text-shadow: none;
  box-shadow: none;
  transition: 0.35s ease all;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  border: 0;
  box-shadow: 3px 3px var(--color-blue) !important;
  width: 100%;
  letter-spacing: 1.8px;
  height: 44px;
}
.btn-search:hover,
.btn-search:focus{
  box-shadow: 0px 0px var(--color-blue) !important;
    background-color: var(--color-blue) !important;
    color: var(--color-white) !important;
}
.form-search-home .input-group .searchinput:focus,
.form-search-home .input-group .searchinput:focus-visible{
  border-radius: 0;
  outline: none;
}
.link-read-more{
  color: var(--color-black) !important;
}
.link-read-more:hover,
.link-read-more:focus{
  color: var(--color-blue) !important;
}
/*--------------------------------------------------------------
# Post banner
--------------------------------------------------------------*/
.inner-banner{
  background-color: var(--color-blue);
}
.ez-toc-title{
  color: #0088CE;
padding-bottom: 15px !important;
text-align: center;
font-family: var(--font-family-text);
font-size: 20px;
font-style: normal;
font-weight: 700 !important;
line-height: 25px; /* 125% */
letter-spacing: 1.2px;
text-transform: uppercase;
}
#ez-toc-container {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  display: table;
  margin-bottom: 1em;
  padding: 10px 20px 10px 10px;
  position: relative;
  width: auto;
}
 .ez-toc-title-toggle {
  display: none !important;
  text-align: left;
  vertical-align: middle;

}
.single-sidebar nav{
  margin-top: 15px;
  border-top: 1px solid #CCC;
  padding-top: 15px;
}
.single-sidebar .ez-toc-list a{
  color: #3E416C !important;
  font-family: var(--font-family-text);
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 30px; /* 166.667% */
letter-spacing: 0.18px;

}
.single-sidebar .ez-toc-list a:hover{
  color: var(--color-blue) !important;
}
.single-sidebar .ez-toc-list li{
  margin-bottom: 10px !important;
}
.content-ingo-blogs h2{
  color: #0088CE;

font-family: var(--font-family-headline);
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 32px; /* 114.286% */
letter-spacing: 0.84px;
text-transform: uppercase;
}
.content-ingo-blogs h3{
  font-family: var(--font-family-text);
  text-transform: uppercase;
  font-size:20px;
}
.content-ingo-blogs .description ul {
  margin-top: 1em;
  margin-left: 1.5em;
}
.meta-content{
  color: #3E416C;
/* Subhead */
font-family: var(--font-family-text);
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 25px; /* 100% */
letter-spacing: 1.5px;
text-transform: uppercase;
}
#ez-toc-container {
  display: none; /* Hide all ToCs */
}

.single-sidebar #ez-toc-container {
  display: block; /* Show ToC in the sidebar */
}
.card-footer{
  text-align: center;
  background-color: var(--color-black);
  padding: 33px;
  text-align: center;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s, filter 2s ease-in-out;
  transform: scale(1);
}
.card-media:hover img {
  transform: scale(1.2);
}
.card-media {
  height: 16em;
  overflow: hidden;
}
.card-title{
  margin-top: 12px;
}
.section-content-inner{
  padding-bottom: 0 !important;
}
.row-product-filter{
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.related-post-section{
  padding-top: 0;
  margin-top: 0;
}
.related-line{
  width: 100%;
  height: 2px;
  background-color: #0088CE;
  margin-bottom: 120px;
}
.title-related{
  color: #0088CE;

text-align: center;

font-family: var(--font-family-headline);
font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 52px; /* 108.333% */
letter-spacing: 1.44px;
text-transform: uppercase;
margin-bottom: 60px;
}
.card-title  a{
  color: #FFF;
text-align: center;
font-family: var(--font-family-headline);
font-size: 35px;
font-style: normal;
font-weight: 500;
line-height: 1.2 !important;
letter-spacing: 1.05px;
text-transform: uppercase;
}
.card-title a:hover{
  color: var(--color-blue);
}
.card-footer .entry-date{
  color: #0088CE;

text-align: center;
font-family: var(--font-family-text);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 1.25 !important;
letter-spacing: 1.2px;
text-transform: uppercase;
}
.card-footer h3{
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.2 !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer{
  padding: 3em 0 0;
}
.site-footer a:hover{
  color: var(--color-blue);
}
.title-footer{
color: var(--color-blue);
font-family: var(--font-family-headline);
font-size: 21px;
font-style: normal;
font-weight: 700;
line-height: 20.8px;
letter-spacing: 1.6px;
text-transform: uppercase;
}
.col-footer a,
.col-footer p{
color: var(--color-black);
font-family: var(--font-family-text);
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 32px; 
letter-spacing: 1.6px;
text-transform: uppercase;
}
.col-footer p{
  margin-bottom: 0;
  margin-block-start: 0;
}
.title-footer{
  margin-bottom: 15px;
}
.icon-contact{
  background-color: var(--color-blue);
  width: 19px;
  height: 19px;
  padding: 3px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info a
{
  line-height: 1.3;
}

.contact-info{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}
.logo-footer{
  max-width: 200px;
}
.line-footer{  
  margin: 75px auto 0 auto;
  background-color: var(--color-blue);
  height: 4px;
}
.copyright-info{
  padding-top: 24px;
  padding-bottom: 24px;
}
.copyright-info p,
.copyright-info a{
  margin-bottom: 0;
  margin-block-start: 0;
  color: var(--color-black);
font-family: var(--font-family-text);
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 34px; 
letter-spacing: 0.56px;
text-transform: uppercase;
}
footer .social-icons a:hover rect,
footer .social-icons a:focus rect{
  fill: var(--color-blue);
}
footer .social-icons a:hover svg path,
footer .social-icons a:focus svg path{
  fill: var(--color-white);
}
.mt-100{
  padding-top: 70px;
}
.m-b15{
  margin-bottom: 1.5em !important;
}
.location-single{
  padding-top: 12rem;
}
article.location{
  background-color: #f5f5f5;
}

article.location .entry-title{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (min-width: 1500px) and (max-width: 1921px) { 
  .box-info{
    max-width: 617px;
  }
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  
  .show-sm{
    display: none !important;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
   .p-md-t2{
     padding-top: 2em;
   }
   .p-md-b2{
    padding-bottom: 2em;
   } 
   .p-md-b0{
    padding-bottom: 0;
   }
   .location-single{
    padding-top: 12rem;
  }
 }

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 
  .p-lg-t0{
    padding-top: 0 !important;
   }
   .p-lg-b0{
    padding-bottom: 0 !important;
   }
   .p-lg-t2{
    padding-top: 2em;
   }
   .p-lg-t3{
    padding-top: 3em;
   }
   .p-lg-t4{
    padding-top: 4em !important;
   }
   .p-lg-t5{
    padding-top: 5em !important;
   }
   .p-lg-t6{
    padding-top: 6em;
   }
   .p-lg-b6{
    padding-bottom: 6em;
   }
   .m-lg-t0{
    margin-top: 0 !important;
   }
   .justify-end-lg {
    justify-content: flex-end;    
  }
  .text-lg-end{
    text-align: right;
  }
	 .p-lg-s2{
    padding-left: 2em;
   }
  .p-lg-e5{
    padding-right: 5em;
   }
   .p-lg-s5{
    padding-left: 5em;
   }
  .p-lg-e6{
    padding-right: 6em;
   }
   .p-lg-s6{
    padding-left: 6em;
   }
   .p-lg-b4{
    padding-bottom: 4em !important;
   }
   .description.m-start-0 p:first-child{
    margin-block-start: 0;
  }
   .flex-row-lg { 
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex-column-lg{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .col-lg-5-1 {
    flex-basis: 45.666667%;
    max-width: 45.666667%;
}
.col-lg-7-1 {
  flex-basis: 54.333333%;
  max-width: 54.333333%;
}
.col-filter{
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 0;
}
 }

 /* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
  .p-xl-b0{
    padding-bottom: 0;
  }
 }

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }

@media (min-width: 1921px) {
  .back-and-forth-row.reverse .col-text, .section-elements .col-text {
    padding-right: 70px;
    padding-left: calc(((100% - calc(80rem + 4% * 2)) / 2) + 2rem);
}
.back-and-forth-row.normal .col-text{
  padding-left: 70px;
    padding-right: calc(((100% - calc(80rem + 4% * 2)) / 2) + 2rem);
}
 }

@media (min-width: 2000px) { 
  .responsive-menu-interior{
    min-width: 60em;
    width: 60em;
  }
 }
 @media (min-width: 3000px) { 
  .responsive-menu-interior{
    min-width: 80em;
    width: 80em;
  }
  .page-internal-hero {
    height: 44em;   
}
.banner-portfolio,
.page-hero-default{
  height: 35em;
}
.info-text-image {
  height: 40em;
}
.info-text-image.large{
  height: 43em; 
}

 }
/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}
@media (max-width: 1920px) {
  .page-main-hero {
    height: 100vh !important;   
  } 
  .container{  
    max-width: 1420px;
  }
  .portfolio-row div,
  .portfolio-related .portfolio-row div,
  .portfolio-featured .portfolio-row div
   {
    height: 300px;
    }
 }
 @media (max-width: 1534.98px) { 
  .container {   
    max-width: 95vw;
  }
  .back-and-forth-row.normal .col-text {
    padding-left: 50px;
    padding-right: calc(((100% - 95vw) / 2) + 2rem);
  }
  .back-and-forth-row.reverse .col-text,
  .section-elements .col-text {
    padding-right: 50px;
    padding-left: calc(((100% - 95vw) / 2) + 2rem);
}
.animate-element-image{ 
    right: -20%;
    bottom: 10%;
}
.page-main-hero {
  height: 40em !important;   
}
.page-internal-hero{
  height: 30em !important;
}
.portfolio-row{
  padding-left: 0;
  gap: 6px !important;
}
ul.responsive-menu-items a{
  font-size: 30px;
  line-height: 43px;
}
.responsive-menu-interior{
  padding: 57px 57px 0;
}
ul.responsive-menu-items li ul.sub-menu a {
  padding: 8px 15px 6px 25px;
  font-size: 1.2em;
  line-height: 35px;
}
ul.responsive-menu-items li.menu-item-has-children::after{
  top: 18px;
    right: -11px;
    width: 23px;
    height: 14px;
}
ul.responsive-menu-items li.menu-item-has-children.open::after{
  top: 18px;
}
}
/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { 
  .page-main-hero {
    height: 50em !important;   
  }
  .site-footer{
    text-align: center;
  }
  footer .social-icons{
    justify-content: center;
  }
  .contact-info{
    justify-content: center;
  }
  .col-footer{
    margin-bottom: 30px;
  }
  .logo-footer { 
    margin-bottom: 30px;
  }
  
  .line-footer { 
    margin: 0 auto 0 auto; 
  }
  .logo-footer {
    max-width: 180px;
}
.contact-info { 
  gap: 10px;
  margin-bottom: 5px;
	position: relative;
}
.animate-element-image{
  display: none;
}
.history-slider .h-100{
  height: auto !important;
}
.box-history{
  padding: 2em 2em 4em;
}
.glider-prev-history{
  bottom: 30px;
}
.glider-next-history{
  bottom: 30px;
}
.info-text-image {
  height: auto;
  margin-bottom: -5px;
}

.portfolio-row div,
.portfolio-related .portfolio-row div,
.portfolio-featured .portfolio-row div {
  height: 260px;
}
.col-title-market{
  text-align: center;
}
.calculator-box{
  flex-direction: column;
}
.selected-shape-image,
.concrete-calculator-form {
  width: 100%;
}
.shape-info,
.calculator-main {
  padding: 35px !important;
}
.calculator-container h6{
  font-size: 24px;
  margin-bottom: 36px;  
}
.calculator-container .shape-title h6{
  padding-left: 55px;
  text-align: left;
}
.total-cubic{
  font-size: 35px;
  line-height: 45px;
}
.total-unit{
  font-size: 16px; 
  line-height: 22px;
}
.shape-list-item a{
  font-size: 22px;
}
.shape-list-item{
  height: 65px;
}
.shape-list-item:not(:last-child) {
  margin-bottom: 15px;
}
	.contact-footer-3 .icon-contact{
		    position: absolute;
            left: 0;
	}
	.contact-footer-3 {
		max-width: 230px;
		        margin-left: auto;
        margin-right: auto;
	}
}

@media (max-width: 1023.98px) { }


/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
  .container {   
    max-width: 100vw;
}
section{
  padding: 3em 0;
}
.section-services{
  padding-bottom: 0 !important;
}
  .page-main-hero {
    height: 40em !important;
  } 
  .line,
  .page-internal-hero .line{
    width: 150px;
  }
  .site-header{
    padding: 0 0 10px;
  }
  .site-header img.logo{
    width: 90px;
  }
  .site-header.header-scrolled img.logo {
    width: 70px;
}
.site-header.header-scrolled img.logo, .site-header.header-scrolled-top img.logo {
  width: 70px;
}
.site-header.header-scrolled,
.site-header.header-scrolled-top {  
  padding: 0 0 6px; 
}
.responsive-menu-interior{
  width: 100%;
  min-width: 100%;
  padding: 100px 50px 0;
}
ul.responsive-menu-items a{
  font-size: 30px;
  line-height: 54px;
}
ul.responsive-menu-items li.menu-item-has-children::after{
  top: 24px;
  right: -6px;  
  width: 24px;
  height: 14px;
}
ul.responsive-menu-items li ul.sub-menu a {
  padding: 3px 9px 3px 12px;
  font-size: 1em;
}
ul.responsive-menu-items li.menu-item-has-children.open::after{
  top: 22px;
}
.button, body .gform_button, .menu .button a{
  padding: 20px 30px;
  height: auto;
    line-height: 1 !important;
}
section{
  margin: 0;
}
.back-and-forth-row.normal .col-text,
.back-and-forth-row.reverse .col-text
{ 
  padding: 3em 2em 0 3em;
}
.section-elements .col-text{
  padding: 0 2em 0 2em;
}
.counters-section{
  padding-bottom: 1em;
}
.title-element{
  font-size: 23px;
}
.section-elements { 
  padding-bottom: 1.5em;
}
.glider-next { 
  right: 21px;
}
.glider-prev{
  left: 21px;
}
.glider-next svg,
.glider-prev svg{
  max-width: 40px;
}
.testimonial-interior {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
section.section-testimonials-slider {
  padding: 3em 0;
}
.quote-icon svg{
  max-width: 70px;
}
.overlay-contact{
  position: unset;
}
.box-media,
.back-and-forth-media,
.back-and-forth-video {
  height: 23em !important;
}
.section-contact .container{
  width: 100vw;
    padding: 0;
}
.row-0{
  margin: 0;
  padding: 0;
}
.col-0{
  margin: 0;
  padding: 0;
}
.section-contact{
  padding: 0 !important;
}
.box-info {
  padding: 3em 1rem;
  background-color: #fff !important;
}
.info-careers .box-info{
  background-color: var(--color-lightgray) !important;
}
.glider-prev-history,
.glider-prev-media {  
  right: 155px;
}
.glider-prev-media{
  right: calc(50% + 10px);
}
.glider-next-media{
  right: calc(50% - 50px) !IMPORTANT;
}
.section-info-text-image .row-back-forth{
  flex-direction: column-reverse;
}
.section-info-text-image{
  padding-bottom: 0;
}
.column-reverse-mv{
  flex-direction: column-reverse !important;
}
.back-and-forth-row:not(.back-and-forth-bottom-mv){
  padding-bottom: 0 !important;
}
.back-and-forth-row:not(.back-and-forth-top-mv){
  padding-top: 0 !important;
}
.project .overlay{
  font-size: 19px; 
  line-height: 24px;
}
.row-reverse-mv{
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.col-filter{ 
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; 
}
.col-title-filter{
  text-align: center;
  padding-bottom: 1em;
}
.box-404 h1
{
  font-size: 10em;
}
.box-thank-you h1{
  font-size: 5em;
}
#laz-store-locator {
  display: block;
  margin: 40px auto;
  padding-top: 0;
}

#location-list {
  padding-left: 0;
  padding-right: 0;
}
#location-search{
  margin: 0 auto 0 auto;
}
body.page-template-page-locations .section-info-text{
  padding-bottom: 1em !important;
}
#address-input{
  font-size: 16px;
  padding: 10px 10px;
}
#search-button{
  padding: 10px;
}
#search-button svg{
  width: 20px;
}
#location-list .location { 
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#location-list .location:first-child {
  padding-top: 20px;
}
.location h3 a, .location h3, .gm-style-iw-d h3 a{
  font-size: 26px;
}
.info-text-image.large,
.info-text-image.medium{
  height: auto;
  margin-top: 1em;
}
.back-and-forth-media.large,
.back-and-forth-media.medium {
  height: auto !important;
}
	.popmake-content .row{
		flex-direction: column-reverse;
	}
	.col-info-popup{
		padding-bottom: 1em;
	}
	.pum-container, .pum-theme-lightbox .pum-container{
  width: 90% !important;
  left: 0 !important;
  margin: 0 auto !important;
  right: 0 !important;
}
	.pum-theme-1950 .pum-container{
		 width: 100% !important;
	}
	.pum-theme-1950 .pum-content p,
	.pum-theme-1950 .pum-content p a{
		font-size: 14px ! IMPORTANT;
		font-weight: 400 !important;
	}
	html.pum-open-fixed #page {
    padding-top: 42px;
}
 } 

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) { 
  .page-main-hero {
    height: 35em !important;
}
.page-internal-hero{
  height: 30em !important;
}
.box-media,
.back-and-forth-media {
  height: 20em !important;
}
.accordion{
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
}
.panel .row {
  padding: 20px 5px;
}
.accordion:after{
  margin-left: 5px;
  right: 10px;
  width: 17px;
  height: 17px;
}
.box-contact {  
  padding: 30px;
}
p {
  margin-bottom: 1.2em;
  margin-block-start: 0.2em;
}
.site-header.header-scrolled { 
  -webkit-transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  -o-transform: translateY(-150%);
  transform: translateY(-150%);
}
.scrollToTopBtn{
  right: 2rem;
  display: none;
}
.portfolio-row div {
  height: 380px !important;
  width: 100%;
}
.portfolio-row{
  flex-direction: column;
}
.box-404 h1 {
  font-size: 5em;
}
.box-thank-you h1{
font-size: 3em;
}
.section-concrete-calculator{
  padding-top: 0;
}
.button-cta-header{
  display: none !important;
}
	
 }
 @media (max-width: 640px) { 
 .gform_wrapper.gravity-theme .ginput_complex span:not(:last-of-type) { 
  margin-bottom: 20px !important; 
}
.gform_wrapper.gravity-theme .ginput_complex span:last-of-type{
  margin-bottom: 0 !important;
}
.dataTables_wrapper{
  overflow-x: scroll;
}
table.dataTable thead th, table.dataTable thead td{
  padding: 15px 20px;
  font-size: 20px;
}
table.dataTable tbody th, table.dataTable tbody td{
  padding: 15px 20px;
}

 }
/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
  .hide-sm{
    display: none !important;
  }
  .icon-element {
    margin-right: 12px;
    max-width: 50px;
}
.title-element {
  font-size: 20px;
}
p, li, a, .description {
  font-size: 18px;
}
.section-elements .col-text {
  padding: 0 1rem 0 1rem;
}
.back-and-forth-row.normal .col-text, .back-and-forth-row.reverse .col-text {
  padding: 3em 1rem 1rem 1rem;
}
.container {
  padding-right: 1rem;
  padding-left: 1rem;  
}
.row{
  margin-left: 0;
  margin-right: 0;
}
.responsive-menu-interior {
  padding: 100px 1em 0;
}
.testimonial-interior { 
  padding: 0 42px;
}
.page-main-hero {
  height: 35em !important;
}
.portfolio-row div {
  height: 300px !important;
}
.box-thank-you,
.box-404 {
  height: auto;
  margin-top: 5em;
  padding-top: 3em;
}
.section-thank-you,
.error-404{
  min-height: auto;
  padding-bottom: 3em;
}
#map,
#location-list {
  height: 452px;
}
.calculator-container h6 {
  font-size: 16px;
  margin-bottom: 23px;
}
.shape-info, .calculator-main {
  padding: 27px !important;
}
.back-shape{
  top: 19px;
    left: 19px;
}
.counter-number { 
  font-size: 40px;
}
.section-subtitle{
  font-size: 16px;
}
.page-internal-hero {
  height: 30em !important;
}
	.description ul {  
    grid-template-columns: repeat(1, auto);
   
}
	.pum-container, .pum-theme-lightbox .pum-container{
		padding: 30px !important;
	}
	.simple-banner .simple-banner-text,
	.simple-banner .simple-banner-text a{
    font-weight: 400;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.3;
}
	.pum-theme-1950 .pum-content p,
	.pum-theme-1950 .pum-content p a{
		font-size: 13px ! IMPORTANT;
		font-weight: 400 !important;
	}
}
@media (max-width: 480px) {
    .simple-banner .simple-banner-text, .simple-banner .simple-banner-text a {
        font-weight: 400;
        padding: 7px 12px;
        font-size: 14px;
        line-height: 1.3;
    }
}

/* Store Locator */
.section-laz-locator .box-locator {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-laz-locator .store-locator-container {
    border: none;
    box-shadow: none;
}