body {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: var(--color-text-black);
  font-family: var(--font-family-body);
  font-size: var(--text-base);
  line-height: 150%;
  letter-spacing: 0.16px;
  background-color: transparent;
  padding-top: 100px;
  margin: 0 !important;
  overflow-x: hidden;
}
body .fauxlink {
  cursor: pointer;
}
body a {
  color: var(--brand-black);
}
body a:not(.button):hover {
  color: var(--color-brand-red);
}
body a:focus,
body input:focus {
  outline: none;
}
body p.smallfont {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
body .richtext a {
  color: var(--color-brand-blue);
  text-decoration: underline;
}
body .richtext a:hover {
  color: var(--color-brand-blue);
  text-decoration: none;
}
body .richtext ul,
body ul.fancy {
  list-style: none;
  text-align: left;
  margin: 15px 0;
  padding: 0;
}
body .richtext ul:first-child {
  margin-top: 0;
}
body .richtext ul li,
body ul.fancy li {
  padding: 6px 6px 6px 20px;
  position: relative;
}
body .richtext ul li:before,
body ul.fancy li:before {
  color: var(--color-brand-red);
  content: "\f111";
  font-family: 'Font Awesome 6 Pro';
  font-size: 10px;
  font-weight: 900;
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
}
.block.bg-white,
.block .bg-white {
  background: var(--color-ui-white);
}
.block.bg-black,
.block .bg-black {
  background: var(--color-text-black);
}
.block.bg-black .heading,
.block.bg-black p,
.block.bg-black ul li,
.block.bg-black ol li,
.block.bg-black a:not(.button),
.block .bg-black .heading,
.block .bg-black p,
.block .bg-black ul li,
.block .bg-black ol li,
.block .bg-black a:not(.button) {
  color: var(--color-ui-white);
}
.block.bg-black a:not(.button):hover,
.block .bg-black a:not(.button):hover {
  color: var(--color-ui-white);
  text-decoration: underline;
}
.block.bg-blue,
.block .bg-blue {
  background: var(--color-brand-blue);
}
.block.bg-blue .heading,
.block.bg-blue p,
.block.bg-blue ul li,
.block.bg-blue ol li,
.block.bg-blue a:not(.button),
.block .bg-blue .heading,
.block .bg-blue p,
.block .bg-blue ul li,
.block .bg-blue ol li,
.block .bg-blue a:not(.button) {
  color: var(--color-ui-white);
}
.block.bg-blue a:not(.button):hover,
.block .bg-blue a:not(.button):hover {
  color: var(--color-ui-white);
  text-decoration: underline;
}
.block.bg-lightgray,
.block .bg-lightgray {
  background: var(--color-ui-01);
}
.block.bg-image-overlay,
.block .bg-image-overlay {
  position: relative;
  z-index: 0;
}
.block.bg-image-overlay:before,
.block .bg-image-overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(283deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.8) 100%);
  z-index: -1;
}
.block.bg-image-overlay .heading,
.block.bg-image-overlay p,
.block.bg-image-overlay ul li,
.block.bg-image-overlay ol li,
.block.bg-image-overlay a:not(.button),
.block .bg-image-overlay .heading,
.block .bg-image-overlay p,
.block .bg-image-overlay ul li,
.block .bg-image-overlay ol li,
.block .bg-image-overlay a:not(.button) {
  color: var(--color-ui-white);
}
.block.bg-image-overlay a:not(.button):hover,
.block .bg-image-overlay a:not(.button):hover {
  color: var(--color-ui-white);
  text-decoration: underline;
}
.block.bg-texture-topright,
.block .bg-texture-topright {
  background-image: url(/assets/images/content/bg-texture-topright.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
}
.block.bg-texture-gray-bottomleft,
.block .bg-texture-gray-bottomleft {
  background-image: url(/assets/images/content/bg-texture-gray-bottomleft.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
}
.block.bg-texture-bottomright,
.block .bg-texture-bottomright {
  background-image: url(/assets/images/content/bg-texture-gray-bottomright.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% auto;
}
.block.has-bg.has-bg-image.bg-image-overlay:not(.full) {
  padding: var(--gutter);
}
.buttons {
  column-gap: var(--space-md);
  display: flex;
}
.buttons .button {
  margin: 0;
}
.button {
  font-family: var(--font-family-heading);
  font-size: var(--heading-xs);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  height: auto;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  padding: 9px 26px 8px;
  color: var(--color-text-white);
  background: var(--color-brand-red);
  border: 2px solid var(--color-brand-red);
  border-radius: 0px;
  box-shadow: none;
}
.button:focus {
  outline: none;
  text-decoration: none;
}
.button:hover {
  color: var(--color-brand-red);
  background: var(--color-text-white);
  border: 2px solid var(--color-brand-red);
}
.button.blue-btn {
  color: var(--color-ui-white);
  border-color: var(--color-brand-blue);
  background: var(--color-brand-blue);
}
.button.blue-btn:hover {
  color: var(--color-brand-blue);
  border-color: var(--color-brand-blue);
  background: var(--color-text-white);
}
.button.with-arrow:after {
  content: "\f061";
  font-family: var(--fontawesome);
  font-weight: 900;
  margin-left: 10px;
}
.button.border-red-btn {
  color: var(--color-ui-white);
  border-color: var(--color-ui-white);
  background: var(--color-brand-red);
}
.button.border-red-btn:hover {
  color: var(--color-brand-red);
  border-color: var(--color-brand-red);
  background: var(--color-text-white);
}
.button.border-blue-btn {
  color: var(--color-ui-white);
  border-color: var(--color-ui-white);
  background: var(--color-brand-blue);
}
.button.border-blue-btn:hover {
  color: var(--color-brand-blue);
  border-color: var(--color-brand-blue);
  background: var(--color-text-white);
}
.button.simple-btn {
  padding: 12px 0;
  color: var(--color-brand-red);
  background: none;
  border: none;
  border-bottom: 2px solid var(--color-brand-red);
}
.button.simple-btn:hover {
  color: var(--color-brand-blue);
  border-bottom: 2px solid var(--color-brand-blue);
}
#header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--color-ui-white);
}
#header.scrolling {
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
}
#header #header-top .constrain {
  display: flex;
  flex-direction: row;
  padding: 10px 0 5px 210px;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}
#header #header-top .constrain a.tel {
  color: var(--color-text-black);
  font-family: var(--font-family-body);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.18px;
}
#header #header-top .constrain a.tel i {
  color: var(--color-brand-red);
  font-size: var(--text-base);
  font-weight: 900;
  line-height: 100%;
  margin-right: 5px;
}
#header #header-top .constrain a.button {
  margin: 0;
}
#header #header-bottom .constrain {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 210px;
  position: relative;
}
#header #header-bottom .constrain .logo {
  width: 180px;
  position: absolute;
  bottom: 15px;
  left: 0;
}
@media only screen and (min-width: 767px) and (max-width: 1199px),only screen and (max-width: 767px) {
  #header #header-top .constrain {
	padding: 0;
	column-gap: 0;
	height: 38px;
  }
  #header #header-top .constrain a.tel {
	width: 50%;
	height: 100%;
	color: var(--color-text-white);
	font-family: var(--font-family-heading);
	font-size: var(--heading-xs);
	line-height: 120%;
	text-transform: uppercase;
	background: var(--color-brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
  }
  #header #header-top .constrain a.tel i {
	color: var(--color-text-white);
  }
  #header #header-top .constrain a.button {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  #header #header-top .constrain a.button:after {
	content: "";
	margin: 0;
  }
  #header #header-top .constrain .search-container {
	display: none;
	position: absolute;
	width: 100%;
	top: 100px;
	left: 0;
  }
  #header #header-top .constrain .search-container .search-form {
	width: 100%;
	background: var(--color-ui-01);
	padding: 8px 25px 8px 0;
	border: none;
  }
  #header #header-top .constrain .search-container .search-form button {
	height: 100%;
  }
  #header #header-top .constrain .search-container.active {
	display: block;
  }
  #header #header-bottom .constrain {
	padding: 5px 20px;
  }
  #header #header-bottom .constrain a.logo {
	position: relative;
	bottom: auto;
	left: auto;
	width: 130px;
  }
  #header #header-bottom .constrain nav {
	display: none;
  }
  #header #header-bottom .constrain #mobile-toggle {
	display: flex;
	align-items: center;
	column-gap: 40px;
  }
  #header #header-bottom .constrain #mobile-toggle i {
	color: var(--color-text-black);
	font-size: var(--text-base);
	font-weight: 900;
  }
  #header #header-bottom .constrain #mobile-toggle i.active:before {
	content: "\f00d";
  }
}
@media only screen and (max-width: 767px) {
  #header #header-top .constrain {
	column-gap: 3px;
  }
  #header #header-top .constrain a.button {
	padding: 0 5px;
  }
}
.bucket-tpl .bucket-inner {
  height: 354px;
  position: relative;
  overflow: hidden;
}
.bucket-tpl .bucket-inner .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.bucket-tpl .bucket-inner .image img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.bucket-tpl .bucket-inner .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--gutter-sm) var(--space-lg);
  background: linear-gradient(180deg,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0) 74.86%);
  text-align: left;
}
.bucket-tpl .bucket-inner .content span.h4 {
  color: var(--color-text-white);
}
.bucket-tpl .bucket-inner .content p {
  color: var(--color-text-white);
  opacity: 0;
  visibility: hidden;
}
.bucket-tpl .bucket-inner .content .button {
  color: var(--color-text-white);
  border-color: var(--color-text-white);
  background: transparent;
  position: absolute;
  bottom: var(--gutter-sm);
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 1199px) {
  .bucket-tpl .bucket:hover .bucket-inner .content {
	background: linear-gradient(0deg,var(--color-brand-blue) 0%,var(--color-brand-blue) 100%);
  }
  .bucket-tpl .bucket:hover .bucket-inner .content p,
  .bucket-tpl .bucket:hover .bucket-inner .content .button {
	opacity: 1;
	visibility: visible;
  }
  .bucket-tpl .bucket:hover .bucket-inner .content .button:hover {
	background: var(--color-text-white);
	color: var(--color-brand-blue);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1199px),only screen and (max-width: 767px) {
  .bucket-tpl .bucket-inner .content {
	background: linear-gradient(0deg,var(--color-brand-blue) 0%,var(--color-brand-blue) 100%);
  }
  .bucket-tpl .bucket-inner .content p {
	margin-bottom: 24px;
  }
  .bucket-tpl .bucket-inner .content p,
  .bucket-tpl .bucket-inner .content a.button {
	opacity: 1;
	visibility: visible;
  }
  .bucket-tpl .bucket-inner .content a.button {
	position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .bucket-tpl .bucket-inner {
	height: auto;
	min-height: 315px;
  }
  .bucket-tpl .bucket-inner .image {
	display: none;
  }
  .bucket-tpl .bucket-inner .content {
	position: relative;
	min-height: 315px;
  }
  .bucket-tpl .bucket-inner .content a.button {
	position: relative;
	bottom: auto;
	margin-top: 10px;
  }
}
.bucket-button-tpl .bucket-inner {
  height: 100%;
  border: 1px solid var(--color-text-white);
  background: var(--color-brand-red);
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
}
.bucket-button-tpl .bucket-inner span.h5 {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: var(--color-text-white);
  padding: var(--gutter-sm) var(--space-lg);
  margin: 0;
}
.bucket-button-tpl .bucket-inner span.h5 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  column-gap: 20px;
  text-decoration: none !important;
}
.bucket-button-tpl .bucket-inner span.h5 a i {
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (min-width: 1199px) {
  .bucket-button-tpl .bucket:hover .bucket-inner {
	background: var(--color-brand-blue);
  }
  .bucket-button-tpl .bucket:hover .bucket-inner span.h5,
  .bucket-button-tpl .bucket:hover .bucket-inner span.h5 a {
	color: var(--color-text-white);
  }
  .bucket-button-tpl .bucket:hover .bucket-inner a.h5:hover {
	color: var(--color-text-white);
  }
}
.bucket-text-tpl .bucket-inner {
  height: 275px;
  position: relative;
  overflow: hidden;
  background: var(--color-ui-white);
  box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.1);
}
.bucket-text-tpl .bucket-inner .content {
  width: 100%;
  height: 100%;
  padding: var(--gutter-sm) var(--space-lg);
}
@media only screen and (min-width: 1199px) {
  .bucket-text-tpl .bucket:hover .bucket-inner .content {
	background: linear-gradient(0deg,var(--color-brand-blue) 0%,var(--color-brand-blue) 100%);
  }
  .bucket-text-tpl .bucket:hover .bucket-inner .content span.h4,
  .bucket-text-tpl .bucket:hover .bucket-inner .content p {
	color: var(--color-text-white);
  }
  .bucket-text-tpl .bucket:hover .bucket-inner .content .button,
  .bucket-text-tpl .bucket:hover .bucket-inner .content .button:hover {
	color: var(--color-text-white);
	border-color: var(--color-text-white);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1199px),only screen and (max-width: 767px) {
  .bucket-text-tpl .bucket-inner {
	height: 100%;
  }
}
#qc-wrap {
  background: url(/assets/images/content/bg-quick-contact.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: var(--section-space) 0;
  position: relative;
  z-index: 0;
  color: var(--color-text-white);
}
#qc-wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(283deg,rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.9) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#qc-wrap >.constrain {
  display: flex;
  column-gap: var(--gutter);
}
#qc-wrap .contact-info .heading {
  color: var(--color-text-white);
}
#qc-wrap .contact-info p {
  font-weight: var(--font-weight-bold);
  margin: 24px 0;
}
@media only screen and (max-width: 767px) {
  #qc-wrap >.constrain {
	flex-direction: column;
  }
}
#rfq span.h4,
#contact span.h4 {
  color: var(--color-brand-blue);
  margin: 15px 0 0;
}
#rfq .input-group:first-child span.h4,
#contact .input-group:first-child span.h4 {
  margin-top: 0;
}
#rfq label span.required,
#contact label span.required {
  color: var(--color-brand-red);
}
#footer {
  clear: both;
}
#footer #footer-top {
  padding: 40px 0 0;
}
#footer #footer-top .constrain {
  border-bottom: 1px solid var(--color-ui-02);
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
#footer #footer-top .constrain .footer-block:first-child {
  row-gap: 20px;
}
#footer #footer-top .constrain .footer-block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#footer #footer-top .constrain .footer-block a.logo {
  width: 180px;
}
#footer #footer-top .constrain .footer-block .social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 25px;
}
#footer #footer-top .constrain .footer-block .social-links a {
  color: var(--color-brand-red);
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
}
#footer #footer-top .constrain .footer-block a.h6 {
  margin: 0;
}
#footer #footer-top .constrain .footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer #footer-top .constrain .footer-block ul li a {
  padding: 6px 0;
  display: inline-block;
}
#footer #footer-bottom .constrain {
  padding: 15px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer #footer-bottom .constrain p,
#footer #footer-bottom .constrain a {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.16px;
  margin: 0;
  padding: 0;
}
#footer #footer-bottom .constrain #copyright a:before {
  content: "|";
  margin: 0 10px;
}
#footer #footer-bottom .constrain #back-top {
  cursor: pointer;
}
#footer #footer-bottom .constrain #back-top i {
  margin-right: 10px;
}
#footer #footer-bottom .constrain #back-top:hover {
  color: var(--color-brand-red);
}
@media only screen and (min-width: 767px) and (max-width: 1199px),only screen and (max-width: 767px) {
  #footer #footer-top .constrain .footer-block {
	width: 23%;
  }
  #footer #footer-top .constrain .footer-block a.logo {
	width: 130px;
  }
  #footer #footer-bottom .constrain {
	padding-left: 20px;
	padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #footer #footer-top .constrain {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: var(--space-xl);
  }
  #footer #footer-top .constrain .footer-block {
	width: 100%;
	align-items: center;
	text-align: center;
  }
  #footer #footer-bottom .constrain {
	flex-direction: column;
	text-align: center;
	row-gap: var(--space-xl);
  }
}
.richtext.columntext-2 ul {
  column-count: 2;
}
.block.pt-0 {
  padding-top: 0 !important;
}
.heading.heading-big {
  font-size: 64px;
}
@media (max-width: 1199px) {
  .heading.heading-big {
	font-size: 36px;
  }
}
.buckets.bucket-text-tpl .bucket .content .button {
  margin-top: 0;
}