/*
Theme Name: Construction
Version: 6.0
Theme URI: https://cyberoptik.net/
Description: Customizable responsive Wordpress theme created for Construction Co. by CyberOptik
Author: CyberOptik
Author URI: https://cyberoptik.net/
Template: optik-theme
*/





/******************************************************************************
 * * *  IMPORTS & VARIABLES  * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/

@import url("../optik-theme/style.css");



/***  OPEN SANS  ***/

/* Normal */
@font-face {
  font-family: 'Open Sans';
  font-weight: normal;
  src: url('fonts/Open_Sans/OpenSans-Regular.ttf');
}

/* Italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: normal;
  src: url('fonts/Open_Sans/OpenSans-Italic.ttf');
}

/* Semi-Bold */
@font-face {
  font-family: 'Open Sans';
  font-weight: 600;
  src: url('fonts/Open_Sans/OpenSans-SemiBold.ttf');
}

/* Bold */
@font-face {
  font-family: 'Open Sans';
  font-weight: bold;
  src: url('fonts/Open_Sans/OpenSans-Bold.ttf');
}



/***  BARLOW  ***/

/* Semi-Bold */
@font-face {
  font-family: 'Barlow';
  font-weight: 600;
  src: url('fonts/Barlow/Barlow-SemiBold.ttf');
}





/******************************************************************************
 * * *  STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
}

body {
	font-family: var(--wp--custom--font--1);
	color: var(--wp--custom--dark--1);
}

:focus-visible {
	outline-color: var(--wp--custom--secondary--light);
}



/***  BACK TO TOP BUTTON  ***/

.btt-button .fa {
	border-radius: var(--wp--custom--radius--full);
	background-color: var(--wp--custom--primary--main);
	color: white;
}

.btt-button:hover .fa {
	background-color: var(--wp--custom--primary--light);
	color: white;
}





/******************************************************************************
 * * *  CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  TEXT & LINKS  ***/

a {
	color: var(--wp--custom--secondary--main);
}

a:hover {
	color: var(--wp--custom--dark--2);
}

.content h1 a:not([class]), 
.content h2 a:not([class]), 
.content h3 a:not([class]), 
.content h4 a:not([class]), 
.content h5 a:not([class]), 
.content h6 a:not([class]), 
.content p a:not([class]), 
.content ul a:not([class]), 
.content ol a:not([class]) {
	border-bottom: 1px dotted var(--wp--custom--secondary--main);
}

.content h1 a:not([class]):hover, 
.content h2 a:not([class]):hover, 
.content h3 a:not([class]):hover, 
.content h4 a:not([class]):hover, 
.content h5 a:not([class]):hover, 
.content h6 a:not([class]):hover, 
.content p a:not([class]):hover, 
.content ul a:not([class]):hover, 
.content ol a:not([class]):hover {
	border-bottom: 1px solid var(--wp--custom--dark--3);
}



/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wp--custom--font--2);
  font-weight: 600;
  color: black;
}

h1 {
	font-size: 4.5em;
}

h2 {
	font-size: 2.5em;
}

h2:after {
  display: block;
  width: 65px;
	height: 4px;
	margin-top: 15px;
	background-color: var(--wp--custom--primary--main);
  content: '';
}

h2.has-text-align-center:after {
	margin-left: auto;
	margin-right: auto;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1.15em;
}

h6 {
	font-size: 1em;
}

@media screen and (max-width: 600px) {
	h1 {
		font-size: 3.5em;
	}
}



/***  BORDERS & DIVIDERS  ***/

hr, .divider {
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	border-top: 1px solid #e2e2e2;
	margin: 2.5em auto;
	padding: 0;
}



/***  BUTTONS  ***/

.button, 
.wp-block-button__link, 
.button-outline, 
.is-style-outline .wp-block-button__link {
	padding: 0.75em 2.25em;
	border-color: var(--wp--custom--primary--dark);
	border-radius: 0;
	font-weight: 600;
	background-color: var(--wp--custom--primary--dark);
	color: white;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--dark--1);
	background-color: var(--wp--custom--dark--1);
	color: white;
}

.button [class*="fa"], 
.wp-block-button__link [class*="fa"], 
.button:hover [class*="fa"], 
.wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}

/* Outlined Button */

.button-outline, 
.is-style-outline .wp-block-button__link {
	background: none;
	color: var(--wp--custom--primary--main);
}

.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--dark--1);
	background: none;
	color: var(--wp--custom--dark--1);
}

.button-outline [class*="fa"], 
.is-style-outline .wp-block-button__link [class*="fa"], 
.button-outline:hover [class*="fa"],
.is-style-outline .wp-block-button__link:hover [class*="fa"] {
	color: inherit !important;
}



/***  ICONS  ***/

.fa {font-weight: 600;}

/* Icon Colors */

.fa, .fas, .far, .fal, .fab {
	color: var(--wp--custom--primary--main);
}

a .fa, a .fas, a .far, a .fal, a .fab {
	color: var(--wp--custom--primary--main);
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {
	color: var(--wp--custom--dark--1);
}

/* Icon Backgrounds */

.fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a .fa-bg {
	background-color: var(--wp--custom--primary--main);
	color: white;
}

a:hover .fa-bg {
	background-color: var(--wp--custom--dark--2);
	color: white;
}

/* Icon Borders */

.fa-br {
	border-color: var(--wp--custom--primary--main);
}

a .fa-br {
	border-color: var(--wp--custom--primary--main);
}

a:hover .fa-br {
	border-color: var(--wp--custom--dark--2);
}



/***  LISTS  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
	color: var(--wp--custom--primary--main);
}

.main .contact-list li a {
	display: block;
	color: var(--wp--custom--dark--2);
}

.main .contact-list li a:hover {
	color: var(--wp--custom--primary--main);
	text-decoration: none;
}



/***  FORMS  ***/

/* Inputs */

input[type="text"], input[type="email"], input[type="number"], 
input[type="password"], input[type="search"], input[type="tel"], 
input[type="url"], input[type="date"], input[type="datetime-local"], 
input[type="month"], input[type="time"], input[type="week"], 
textarea, select, .filter-reset {
	border-radius: var(--wp--custom--radius--xs);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {
	border-color: var(--wp--custom--secondary--light);
}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--dark);
	border-radius: 0;
	font-weight: 600;
	color: white;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	border-color: var(--wp--custom--dark--1);
	background-color: var(--wp--custom--dark--1);
	color: white;
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	border-color:  var(--wp--custom--dark--2);
	background-color:  var(--wp--custom--dark--2);
	color: white;
}

/* Ninja Forms */

.nf-form-fields-required {display: none;}





/******************************************************************************
 * * *  HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  SCROLL BAR  ***/

.scroll-bar {
	background-color: var(--wp--custom--dark--1);
}

.scroll-logo {
	max-height: 60px;
}



/***  HEADER  ***/

.header-wrap {
  position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: transparent;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-masthead {
	padding-top: 25px;
	padding-bottom: 25px;
}

.header-logo {
	max-height: 70px;
}

/* Menu Button */

.header .menu-button .fa, 
.header .menu-button:hover .fa {
	color: white;
}

.header .menu-button.active .fa {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAV MENUS  ***/

.nav-menu > li > a {
	color: white;
}

.header-menu > li > a {
	padding-top: 35px;
	padding-bottom: 35px;
}

.single-service .nav-menu > li.services-link > a, 
.single-service .nav-menu > li.services-link > span, 
.single-product .nav-menu > li.products-link > a, 
.single-product .nav-menu > li.products-link > span, 
.single-member .nav-menu > li.members-link > a, 
.single-member .nav-menu > li.members-link > span, 
.single-post .nav-menu > li.posts-link > a, 
.single-post .nav-menu > li.posts-link > span, 
.category .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > span, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-page-ancestor > a, 
.nav-menu > li.current-page-ancestor > span, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a, 
.nav-menu > li:focus > a {
	color: var(--wp--custom--primary--main);
}

.nav-menu li a:focus-visible > span {
	outline: 2px solid var(--wp--custom--secondary--light);
}

/* Nav Button */

.nav-menu > li.nav-button > a > span {
	padding: 0.75em 1.5em;
	margin-top: -0.75em;
	margin-bottom: -0.75em;
	background-color: var(--wp--custom--primary--dark);
	border-radius: 0;
	color: white;
}

.nav-menu > li.nav-button:hover > a > span {
	background-color: white;
	color: var(--wp--custom--dark--1);
}



/***  DROPDOWN MENUS  ***/

.nav-menu li ul li:first-child {
	padding-top: 8px;
}

.nav-menu li ul li:last-child {
	padding-bottom: 8px;
}

.nav-menu li ul li:not(:last-child) {border-bottom: 1px solid var(--wp--custom--light--2);}

.nav-menu li ul li > a, 
.nav-menu li ul li > span {
	color: var(--wp--custom--dark--2);
}

.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li:hover > a, 
.nav-menu li ul li:focus > a {
	background-color: var(--wp--custom--primary--dark);
	color: white;
}

/* Nested Dropdowns */

.nav-menu li ul li ul {
	top: -8px;
}



/***  HIDDEN NAV  ***/

.hidden-nav {
	background-color: var(--wp--custom--dark--1);
}

.hidden-menu > li:not(:last-child) {
	border-bottom: 1px solid var(--wp--custom--dark--2);
}

.hidden-menu li a {
	color: var(--wp--custom--dark--1);
}

.hidden-menu li a {
	color: white;
}

.hidden-menu li.current-menu-item > a {
	color: var(--wp--custom--primary--main);
}

.hidden-menu li ul li > span {
	padding: 0;
}

.hidden-menu li ul {
	font-size: 0.94em;
}

.hidden-menu li a:focus-visible > span {
	outline-color: var(--wp--custom--secondary--light);
}

.hidden-nav::-webkit-scrollbar {
	width: 10px;
	background-color: var(--wp--custom--dark--1);
}

.hidden-nav::-webkit-scrollbar-thumb {
	border: 0;
	background-color: var(--wp--custom--dark--2);
}





/******************************************************************************
 * * *  BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  BANNER  ***/

.banner {
	background-color: var(--wp--custom--dark--1);
	text-align: left;
}

.banner-inner, 
.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--xxl) + 100px);
	padding-bottom: var(--wp--custom--spacer--xxl);
}

.banner-inner {
	max-width: 600px;
	min-height: 450px;
	margin-left: 0;
}

.banner-tall .banner-inner {
	min-height: 700px;
}

.banner .headline-wrap:not(:last-child), 
.banner p:not(:last-child) {
	margin-bottom: var(--wp--custom--spacer--sm);
}

.banner a:not([class*="button"]), 
.banner a:not([class*="button"]):hover {
	color: white;
}

.banner h1 a:not([class*="button"]), 
.banner h2 a:not([class*="button"]), 
.banner h3 a:not([class*="button"]), 
.banner h4 a:not([class*="button"]), 
.banner h5 a:not([class*="button"]), 
.banner h6 a:not([class*="button"]), 
.banner p a:not([class*="button"]), 
.banner ul a:not([class*="button"]), 
.banner ol a:not([class*="button"]) {
	border-bottom: 1px dotted white;
}

.banner h1 a:not([class*="button"]):hover, 
.banner h2 a:not([class*="button"]):hover, 
.banner h3 a:not([class*="button"]):hover, 
.banner h4 a:not([class*="button"]):hover, 
.banner h5 a:not([class*="button"]):hover, 
.banner h6 a:not([class*="button"]):hover, 
.banner p a:not([class*="button"]):hover, 
.banner ul a:not([class*="button"]):hover, 
.banner ol a:not([class*="button"]):hover {
	border-bottom: 1px solid white;
}

.banner .button:not(:last-child), 
.banner .button-outline:not(:last-child) {
	margin-right: 10px;
}

.banner .button:hover {
	background-color: white;
	color: var(--wp--custom--dark--1);
}

.banner .button-outline {
	color: white;
}

.banner .button-outline:hover {
	border-color: white;
	color: white;
}



/***  ENTRY NAVBAR  ***/

.entry-navbar {
	border-bottom: 1px solid var(--wp--custom--light--2);
}

.entry-menu > li {
	margin-bottom: -1px;
}

.entry-menu > li > a {
	color: var(--wp--custom--dark--3);
	border-bottom: 2px solid transparent;
}

.entry-menu > li.current-menu-item > a, 
.entry-menu > li:hover > a {
	border-bottom-color: var(--wp--custom--primary--main);
	color: var(--wp--custom--dark--1);
}



/***  ENTRY LIST  ***/

.content .entry-list li a {
	border-bottom: 1px dashed transparent;
}

.content .entry-list li a:hover {
	border-bottom: 1px solid var(--wp--custom--dark--3);
}



/***  MAIN  ***/

#main-wrap {
  scroll-margin-top: -100px;
}

.main-boxed, 
.main-sidebar {
	padding-top: var(--wp--custom--spacer--xxl);
	padding-bottom: var(--wp--custom--spacer--xxl);
}

.spaced-xs, 
.spaced-xs-top {
	padding-top: var(--wp--custom--spacer--xs);
}

.spaced-xs, 
.spaced-xs-btm {
	padding-bottom: var(--wp--custom--spacer--xs);
}

.spaced-sm, 
.spaced-sm-top {
	padding-top: var(--wp--custom--spacer--sm);
}

.spaced-sm, 
.spaced-sm-btm {
	padding-bottom: var(--wp--custom--spacer--sm);
}

.spaced, 
.spaced-top, 
.spaced-md, 
.spaced-md-top {
	padding-top: var(--wp--custom--spacer--md);
}

.spaced, 
.spaced-btm, 
.spaced-md, 
.spaced-md-btm {
	padding-bottom: var(--wp--custom--spacer--md);
}

.spaced-lg, 
.spaced-lg-top {
	padding-top: var(--wp--custom--spacer--lg);
}

.spaced-lg, 
.spaced-lg-btm {
	padding-bottom: var(--wp--custom--spacer--lg);
}

.spaced-xl, 
.spaced-xl-top {
	padding-top: var(--wp--custom--spacer--xl);
}

.spaced-xl, 
.spaced-xl-btm {
	padding-bottom: var(--wp--custom--spacer--xl);
}



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: 0;
	background-color: white;
	box-shadow: var(--wp--custom--shadow--3);
	overflow: hidden;
	color: var(--wp--custom--dark--2);
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
	box-shadow: var(--wp--custom--shadow--4);
}

.entry-cols .entry-icon-wrap:first-child {padding: 30px 30px 0;}

.entry-cols .entry-icon svg {
	width: 60px;
	fill: var(--wp--custom--primary--main);
}

.entry-cols .entry-text-wrap {padding: 30px;}

.includes-link-text .entry:not(.col-full) .entry-text-wrap {padding-bottom: 80px;}

.entry-cols .entry:not(.col-full) .entry-link-text-wrap {
	left: 30px;
	bottom: 30px;
}

.entry-cols .entry-link .entry-link-text {color: var(--wp--custom--secondary--main);}

.entry-cols .entry-link:hover .entry-link-text {color: var(--wp--custom--dark--2);}

.entry-cols .entry-link .entry-link-text [class*="fa"], 
.entry-cols .entry-link:hover .entry-link-text [class*="fa"] {
	color: inherit;
}

/* Archive Pagination */

.archive-pagination a {
	border-radius: var(--wp--custom--radius--xl);
	border-color: var(--wp--custom--light--1);
	color: var(--wp--custom--primary--dark);
}

.archive-pagination a:hover {
	border-color: var(--wp--custom--dark--2);
	color: var(--wp--custom--dark--2);
}

.archive-pagination a .fa, 
.archive-pagination a:hover .fa {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





/******************************************************************************
 * * *  FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  CTA BAR  ***/

.cta-bar {
	padding: 0;
	background-color: var(--wp--custom--dark--3);
	color: white;
}

.cta-bar-container {
	padding: 0;
	max-width: none;
}

.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {
	color: white;
} 



/***  FOOTER  ***/

.footer {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
	background-color: var(--wp--custom--dark--1);
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.footer h1, 
.footer h2, 
.footer h3, 
.footer h4, 
.footer h5, 
.footer h6, 
.footer a {
	color: white;
}

.footer a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--main);
}

/* Footer Menu */

.footer .entry-menu {
	margin-top: 25px;
}

.footer .entry-menu li a {
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	color: white;
}

.footer .entry-menu li a:hover {
	color: var(--wp--custom--primary--main);
}

/* Footer Contact List */

.footer .contact-list {
	margin-top: 30px;
}

.footer .contact-list a {
	display: block;
}

/* Footer Social */

.wp-block-social-links .wp-block-social-link.wp-social-link {
	border: 1px solid rgba(255,255,255,0.5);
}




/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	background-color: var(--wp--custom--dark--1);
	border-top: 1px solid var(--wp--custom--dark--2);
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.bottom-bar a {
	color: white;
}

.bottom-bar a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--main);
}

/* Menus */

.bottom-bar .menu a {
	color: white;
}

.bottom-bar .menu a:hover {
	text-decoration: none;
	color: var(--wp--custom--primary--main);
}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  FANCY IMAGE  ***/

.fancy-image {
	position: relative;
	padding-right: 50px;
	padding-bottom: 50px;
}

.fancy-image:after {
  position: absolute;
	top: 50px;
	left: 50px;
	z-index: -1;
  display: block;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	border: 4px solid var(--wp--custom--primary--main);
  content: '';
}

.fancy-image img {
  box-shadow: var(--wp--custom--shadow--1);
}

@media screen and (max-width: 600px) {

.fancy-image {
  padding-right: 25px;
	padding-bottom: 25px;
}

.fancy-image:after {
	top: 25px;
	left: 25px;
	width: calc(100% - 25px);
	height: calc(100% - 25px);
}

}



/*** HP ICON COLS  ***/

.hp-icon-cols .elementor-icon i, 
.hp-icon-cols .elementor-icon svg {
  width: 30px;
	height: 30px;
	font-size: 30px;
}

.hp-icon-cols .elementor-icon-box-title {margin-bottom: 8px;}



/***  HP TESTIMONIALS  ***/

.wp-block-pullquote {
	padding: 0;
	font-size: 1em;
}

.wp-block-pullquote blockquote {
	padding: 36px;
	margin: 0;
	border: none;
	background-color: white;
	box-shadow: var(--wp--custom--shadow--2);
  font-size: 1em;
	line-height: 1.6em;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

.wp-block-pullquote blockquote:before {
	display: inline-block;
	width: 1em;
	height: 1em;
	transform: translateY(-50%);
	vertical-align: middle;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	font-size: 2em;
	line-height: 1em;
	color: var(--wp--custom--primary--main);
	content: "\f10d";
}

.wp-block-pullquote blockquote p {
	font-weight: 600;
}

.wp-block-pullquote blockquote cite {
	font-style: normal;
	font-size: 0.9em;
}



/*** STATS COLS ***/

.stats-cols .elementor-counter-number {
  color: var(--primary);
}

.stats-cols .elementor-counter-title {
  text-transform: uppercase;
	letter-spacing: 0.1em;
}



/***  ICONS  ***/

.icon-container svg, 
.icon-container svg * {
	color: var(--wp--custom--primary--main);
	fill: var(--wp--custom--primary--main);
}



/***  SERVICE COLS  ***/

.service-cols .service-link, 
.service-cols .service-link:hover {
	padding: 0 0 40px;
	box-shadow: none;
	background-color: transparent;
}

.service-cols .service-icon-wrap, 
.service-cols .service-text-wrap {
	padding: 0 !important;
}

.service-cols .service-title {
	font-size: 1.25em;
}

.service-cols .service-icon svg {
	width: 40px;
	height: 40px;
}

.service-cols .service:not(.col-full) .service-link-text-wrap {
	bottom: 0;
	left: 0;
}



/***  HOME SERVICES  ***/

.home .service-cols .service-link, 
.home .service-cols .service-link:hover {
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
	gap: 20px;
}

.home .service-cols .service-icon-wrap {
	width: 40px;
}

.home .service-cols .service-icon {
	width: 100%;
}

.home .service-cols .service:not(.col-full) .service-link-text-wrap {
	display: none;
	visibility: hidden;
}



/***  HEADING NUMBER  ***/

.heading-number {
	color: var(--wp--custom--primary--main);
	display: block;
}



/***  BOX COLS  ***/

.box-cols .wp-block-column {
	background-color: white;
	box-shadow: var(--wp--custom--shadow--3);
	padding: 30px;
}

.box-cols .wp-block-column .wp-block-image {
	margin: -30px -30px 0;
	width: calc(100% + 60px);
}

.box-cols .wp-block-column .wp-block-image img {
	width: 100%;
}

.box-cols .wp-block-column .wp-block-heading {
	margin-top: 30px;
}



/***  INDUSTRY COLS  ***/

.industry-cols .industry-link, 
.industry-cols .industry-link:hover {
	padding: 0 0 40px;
	box-shadow: none;
	background-color: transparent;
}

.industry-cols .industry-icon-wrap, 
.industry-cols .industry-text-wrap {
	padding: 0 !important;
}

.industry-cols .industry-icon svg {
	width: 40px;
	height: 40px;
}

.industry-cols .industry:not(.col-full) .industry-link-text-wrap {
	bottom: 0;
	left: 0;
}



/***  CONTACT COLS  ***/

.contact-cols .wp-block-column {
	padding: var(--wp--custom--spacer--md);
	box-shadow: var(--wp--custom--shadow--5);
	background-color: white;
}

.contact-cols .wp-block-column:not(:first-child) {
	border-left: 1px solid var(--wp--custom--light--1);
}



/***  REVERSE ON MOBILE  ***/

@media screen and (max-width: 900px) {
	.reverse-on-mobile {
		flex-direction: column-reverse;
	}
}




