/*
Theme Name: DuPage Security Solutions
Version: 1.0
Description: Customizable responsive accessible Wordpress child theme created by CyberOptik
Author: CyberOptik
Author URI: https://www.cyberoptik.net/
Template: optik-theme-6
*/





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

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



/* Add font imports here */

/***  Poppins  ***/ 

/* Regular */
@font-face {
	font-family: 'Poppins';
	font-weight: 400;
	src: url('fonts/poppins/poppins-regular.woff2');
}

/*Regular Italic */
@font-face {
	font-family: 'Poppins';
	font-style: italic;
	src: url('fonts/poppins/poppins-italic.woff2');
}

/* Bold */
@font-face {
	font-family: 'Poppins';
	font-weight: 700;
	src: url('fonts/poppins/poppins-bold.woff2');
}

/***  Style Script  ***/ 

/* Regular */
@font-face {
	font-family: 'Style Script';
	font-weight: 400;
	src: url('fonts/stylescript/stylescript-regular.woff2');
}



 


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



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 16px;
}

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



/***  BACK TO TOP BUTTON  ***/
.btt-button [class*="fa"] {
  border-radius: var(--wp--custom--radius--sm);
  font-weight: 300;
  color: white;
  background: linear-gradient(180deg, var(--wp--custom--primary--main) 35%, var(--wp--custom--primary--dark) 100%);
  background-size: 100% 200%; /* necessary for sliding */
  background-position: top;
  transition: background-position 0.5s ease, background 0.5s ease;
}

.btt-button:hover [class*="fa"] {

  background-position: bottom;

}





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



/***  TEXT & LINKS  ***/

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

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

.main-wrap a:not([class]) {
	border-bottom: 1px dotted currentColor;
}

.main-wrap a:not([class]):not(:has(img)):hover {
	border-bottom-style: solid;
}


/***  HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	color: var(--wp--custom--dark--1);
}

h1 {
	font-size: 3.5em;
	text-transform: uppercase;
}

h2 {
	font-size: 2.25em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1.15em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 3.5em;
    font-family: var(--wp--custom--font--2);
	color: var(--wp--custom--primary--light);
}

h6 + h2{
	margin-block: 0!important;
}

.heading-line{margin-top:40px!important;}

.heading-line:before,
h6 + h2:before{
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--wp--custom--primary--main);
    top: -25px;
    left: 0;
}

.heading-line:before{background-color:white;}

h6.has-text-align-center + h2:before{left:calc(50% - 25px);}

@media screen and (max-width:1200px){
	h1,h6 {font-size: 3em;}
}

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

	h2 { font-size: 1.7em; }

	h6 + h2:before{top:-15px}
}

/***  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: 1em 2em;
  border:2px solid var(--wp--custom--primary--dark);
  border-radius: var(--wp--custom--radius--sm);
  background: linear-gradient(180deg, var(--wp--custom--primary--main) 35%, var(--wp--custom--primary--dark) 100%);
  background-size: 100% 200%;
  background-position: top;
  font-weight: 600;
  color: white;
  transition: background-position 0.5s ease;
}

.button:hover, 
.wp-block-button__link:hover, 
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
  background-position: bottom; /* slides the gradient down on hover */
	border-color: var(--wp--custom--primary--light);
}


.wp-block-button__link{
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

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

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

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


/* OUTLINED BUTTONS */

.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 {
	background: none;
	border-color: var(--wp--custom--secondary--main);
	color: var(--wp--custom--secondary--main);
}

/*secondary*/
.secondary-button.button-outline, 
.secondary-button.is-style-outline .wp-block-button__link {
	color: var(--wp--custom--secondary--main);
	border-color: var(--wp--custom--secondary--main);
}

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

/*white*/
.white-button.button-outline, 
.white-button.is-style-outline .wp-block-button__link {
	background: none;
	color: white;
}

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

/* Golden Button */

.wp-block-button:not(.secondary-button):not(.is-style-outline) .wp-block-button__link { 
	position: relative;
	overflow: hidden;
	color: black;
	z-index: 0;
}

.wp-block-button:not(.secondary-button):not(.is-style-outline) .wp-block-button__link:before {
	content: '';
	position: absolute;
	inset: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background: linear-gradient(135deg, rgba(191, 149, 63, 1) 0%, rgba(191, 149, 63, 1) 40%, rgba(251, 245, 183, 1) 50%, rgba(170, 119, 28, 1) 60%, rgba(170, 119, 28, 1) 100%);
	background-position: center center;
	transform-origin: center center;
	transform: rotate(0) scale(3) translateX(-10%);
	transition: all 300ms ease-in-out;
	z-index: -1;
}

.wp-block-button:not(.secondary-button):not(.is-style-outline) .wp-block-button__link:hover {
	border-color: var(--wp--custom--primary--dark);
	color: black;
}

.wp-block-button:not(.secondary-button):not(.is-style-outline) .wp-block-button__link:hover:before {
	transform: rotate(0) scale(3) translateX(10%);
}




/***  ICONS  ***/

.fa {
	font-weight: 700;
}

/* 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--secondary--main);
}

/* 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--secondary--main);
	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--secondary--main);
}



/***  LISTS  ***/

 .brand-list li{
	position: relative;

}

.brand-list:not([class*="col"]) li{
	display: inline-block;
	width: 100%;
}

 .brand-list li:not(:last-child) { margin-bottom: 0.5em;}

 .brand-list li:before{
    position: absolute;
    top: 0.33em;
    left: -1.75em;
    width: 1.3em;
    height: 1.3em;
    display: block;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 1em;
    text-align: center;
}

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before,
.brand-list li:before,  
.arrow-list li [class*="fa"], 
.check-list li [class*="fa"], 
.check-circle-list li [class*="fa"], 
.icon-list li [class*="fa"], 
.contact-list li [class*="fa"],
.brand-list li [class*="fa"] {
	color: var(--wp--custom--primary--main);
	font-weight: 700;
}

.brand-list li:before{
	content: "\f084";
}



/***  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--primary--main);
}

/* Buttons */

input[type="submit"], 
input[type="reset"], 
input[type="button"], 
form button {
	border-color: var(--wp--custom--primary--main);
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xs);
	color: white;
}

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

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





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



/***  SCROLL BAR  ***/

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

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



/***  TOP BAR  ***/

.top-bar {
	background-color: var(--wp--custom--light--2);
}



/***  HEADER  ***/

/*resize header widht*/
@media screen and (min-width:1024px){
	.scroll-masthead, 
	.header-masthead{width:200px;}
	
    .scroll-left, .scroll-right, 
    .header-left, .header-right{ width: calc(100% - 200px);}
}

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

.header-right:not(:first-child){text-align: left;}

/* Menu Button */

.header .menu-button [class*="fa"], 
.header .menu-button:hover [class*="fa"] {
	color: var(--wp--custom--dark--1);
}

.header .menu-button.active [class*="fa"] {
	background-color: var(--wp--custom--primary--main);
	color: white;
}



/***  NAVBAR  ***/

.navbar {
	background-color: var(--wp--custom--secondary--dark);
}



/***  NAV MENUS  ***/
.nav-menu{
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .5px;
}

@media screen and (max-width:1250px){
	.nav-menu{font-size: .95em;}
}

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

.single-post .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > a, 
.single-service .nav-menu > li.services-link > a, 
.single-career .nav-menu > li.careers-link > a, 
.single-resource .nav-menu > li.resources-link > a, 
.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-ancestor > span, 
.nav-menu > li.current-menu-ancestor > button, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li.current-menu-item > span, 
.nav-menu > li.current-menu-item > button, 
.nav-menu > li:hover > a, 
.nav-menu > li:hover > span, 
.nav-menu > li:hover > button {
	color: white;
    background-color: var(--wp--custom--secondary--main);
}

/* Nav Button */

.nav-menu > li.nav-button {
	background-color: transparent !important;
}

.nav-menu > li.nav-button > a {
	margin-left: 10px;
	margin-right: 10px;
	background-color: var(--wp--custom--primary--main);
	border-radius: var(--wp--custom--radius--xl);
	color: white;
}

.nav-menu > li.nav-button > a:hover {
	background-color: var(--wp--custom--primary--light);
}

/* Dropdowns */

.nav-menu > li > ul{
	left: 9px;
	background-color: var(--wp--custom--primary--dark);
}

.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 > a, 
.nav-menu li ul > li > span, 
.nav-menu li ul > li > button {
	color: white;
}

.single-careers .nav-menu li ul li.careers-link > a, 
.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li.current-menu-item > span, 
.nav-menu li ul li.current-menu-item > button, 
.nav-menu li ul li:hover > a, 
.nav-menu li ul li:hover > span, 
.nav-menu li ul li:hover > button {
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/* Nested Dropdowns */

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



/***  HIDDEN NAV  ***/

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

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





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



/***  BANNER  ***/

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

.banner-inner {
	padding-top: var(--wp--custom--spacer--lg);
	padding-bottom: var(--wp--custom--spacer--lg);
}

.banner-viewheight .banner-inner {
	padding-top: calc(var(--wp--custom--spacer--lg) + 140px);
	padding-bottom: var(--wp--custom--spacer--lg);
}
body.home .custom-banner > .wp-block-cover__image-background{    background-position: 50% 0!important;}
.custom-banner h6{
	position: relative;
	opacity: 1;
}

.custom-banner h6:before{
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--wp--custom--primary--main);
    bottom: -10px;
    left: 0;
}

.banner a {
	color: var(--wp--custom--primary--light);
}

.banner a:hover {
	color: white;
}



/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

.entry-menu > li > a {
	color: var(--wp--custom--dark--3);
}

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



/***  MAIN  ***/

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



/***  ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--wp--custom--radius--sm);
	background-color: white;
	overflow: hidden;
	color: var(--wp--custom--dark--2);
	box-shadow: rgb(0 0 0 / 12%) 0 3px 11px 0;
}

.entry-cols .entry-thumb-wrap{
	overflow: hidden;
	border-bottom: 1px solid var(--wp--custom--light--2);
}

.entry-cols .entry-link img{
	transition: all 300ms ease-in-out;
	width:100%;
}

.entry-cols .entry-link:hover img{
	transform: scale(1.05);
}

.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--dark--2);
	border-bottom:1px dotted var(--wp--custom--dark--2);
}

.entry-cols .entry-link:hover .entry-link-text {
	color: var(--wp--custom--primary--dark);
	border-bottom:1px solid var(--wp--custom--primary--dark);
}

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

/*service cols*/

.service-cols .entry-link {
    position: relative;
    overflow: hidden;
}

.service-cols .entry-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(242, 1, 1, 0) 0%,
        rgba(46, 84, 175, 0) 48%,
        rgba(255, 210, 86, 0.5) 57%,
        rgba(255, 210, 86, 0) 64%,
        rgba(255, 210, 86, 0) 100%
    );
    z-index: 1;
    transform: translateX(-100%);
    transition: transform 1s ease;
}


.service-cols .entry-link:hover:before {
    transform: translateX(100%);
    transition: transform 1s ease;
}


.service-cols .entry-link:not(:hover):before {
    transform: translateX(-100%);
    transition: none;
}




@media (min-width:901px) and (max-width:1200px) {
	.service-cols .service{width:50%;}
}

@media screen and (max-width:768px) {
	.service-cols .service{width:100%;}
}

.service-cols .entry-link{background-color:black;}

.service-cols .entry-thumb-wrap{opacity:.35;}

.service-cols .service-text-wrap{
	position: absolute;
    bottom: 0;
    z-index: 1;
}

.service-cols .entry-link .entry-title,
.service-cols .entry-link:hover .entry-title,
.service-cols .entry-link .entry-excerpt-wrap{
	color:white;
}


/* Archive Pagination */

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

.archive-pagination a:hover {
	background-color: var(--wp--custom--primary--dark);
	color: white;
}

.archive-pagination a [class*="fa"], 
.archive-pagination a:hover [class*="fa"] {
	color: inherit !important;
	transition: all 0ms ease-in-out;
}



/***  SINGLE  ***/





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



/***  CTA BAR  ***/

/*CTA BAR IMG BG*/
.cta-bar {
	background-color: var(--wp--custom--dark--3);
	padding:0;
	color: var(--wp--custom--dark--1);
}

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


.cta-bar h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6 {
	color: var(--wp--custom--dark--1);
} 

.custom-cta.wp-block-cover .wp-block-group {
	padding: 1.5em;
}
.custom-cta  .wp-block-columns,
.cta-bar .wp-block-columns{
	position: relative;
	overflow: hidden;
}

.custom-cta .wp-block-columns .wp-block-outermost-icon-block,
.cta-bar .wp-block-columns .wp-block-outermost-icon-block{
	position: absolute;
    right: -25px;
    top: -52px;
}

.custom-cta .wp-block-buttons,
.cta-bar .wp-block-buttons{
	position: relative;
	z-index: 10;
}


/***  FOOTER  ***/

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

.footer .wp-block-heading{
	color: white;
}

.footer a,
.footer .contact-list li:before{
	color: var(--wp--custom--light--1);
}

.footer h3{
	text-transform: uppercase;
	margin-bottom: 40px;
	position: relative;
}

.footer h3:before{
	content: "";
	position: absolute;
	width: 25px;
	height: 2px;
	background: var(--wp--custom--primary--main);
	bottom: -15px;
	left: 0;
}

.footer a:hover {
	color: white;
}

.footer .menu li a {
    display: inline-block;
    padding: .5em 1em .5em 0;
}

/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
	border-top: 2px solid var(--wp--custom--primary--main);
	background-color: black;
	font-size: 0.9em;
	
	color: white;
}

/* Menus */

.bottom-bar a {
	color: var(--wp--custom--light--1);
}

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





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

/* Add custom theme styles here */

/*CONTENT BLOCK IMAGE WITH LINKS*/
section#main .wp-block-image a img{transition: all 300ms ease-in-out;}

section#main .wp-block-image a:hover img { transform: scale(1.05); }

/*MEDIA TEXT WIDGET*/
 section#main .wp-block-media-text__media a img{transition: all 300ms ease-in-out;}

 
 section#main .wp-block-media-text__media a:hover img { transform: scale(1.05); }
 
 .wp-block-media-text>.wp-block-media-text__content{
	padding-right: 0;
	padding-left: 25px;
}

@media screen and (max-width:600px){
    .wp-block-media-text__media img{
        width:auto;
		max-width: 100%;
		margin-bottom: 1em;
    }

	.wp-block-media-text>.wp-block-media-text__content{padding:0;}
}


/*BLOCK COLUMNS*/
@media screen and (max-width: 900px) {
    /*customized column width to full width on tablet*/
    .wp-block-columns .wp-block-column{flex-basis:100%!important;}
    
	.tablet-reverse-order{flex-direction: column-reverse;}
}

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


/*laptop-modify-cols*/
@media (min-width:901px) and (max-width:1200px) {
	.laptop-3-cols,
	.laptop-2-cols{flex-wrap: wrap!important;}

	.laptop-3-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column{flex-basis: calc(33.33% - 55px)!important;}

	.laptop-2-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column{flex-basis: calc(50% - 55px)!important;}
	
	.laptop-stack{flex-direction:column!important;}
}

/*tablet-modify-cols*/
@media (min-width:601px) and (max-width:900px) {
	.tablet-2-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column{flex-basis: calc(50% - 55px)!important;}
	
	.tablet-3-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column{flex-basis: calc(33.33% - 20px)!important;}
}

@media screen and (max-width:600px){
	.mobile-2-cols.wp-block-columns > .wp-block-column{flex-basis: calc(50% - 55px)!important;}
}

/*stack-mobile*/
@media screen and (max-width:600px){
	.stack-mobile{flex-direction: column;}
}

/*bg-col-padding*/
@media screen and (max-width:1200px){
	.bg-col-padding{padding:var(--wp--custom--spacer--sm)!important;}
}


/***  ICON CARDS  ***/

.icon-cards {
	text-align: center;
}

.icon-cards .wp-block-column {
	background-color: var(--wp--custom--light--2);
	padding: var(--wp--custom--spacer--md) var(--wp--custom--spacer--sm);
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover {
	background-color: var(--wp--custom--primary--light);
	color: white;
}

.icon-cards .wp-block-column .wp-block-heading, 
.icon-cards .wp-block-column .wp-block-heading a {
	color: var(--wp--custom--primary--main);
	border-bottom: none;
	transition: all 350ms ease-in-out;
}

.icon-cards .wp-block-column:hover .wp-block-heading, 
.icon-cards .wp-block-column:hover .wp-block-heading a, 
.icon-cards .wp-block-column:hover .wp-block-heading a:hover {
	color: white;
}

.icon-cards .wp-block-outermost-icon-block {
	justify-content: center;
}

.icon-cards .wp-block-heading:not(:first-child) {
	margin-top: 0.25em;
	font-size: 1.45em;
}


/*img-limit-height*/
@media screen and (max-width:900px){
	.img-limit-height{text-align: center;}

	.img-limit-height img{max-height: 400px;}
}

/*service-columns*/

.service-columns .icon-container{border-radius: var(--wp--custom--radius--full);}

.service-columns.link-cards .wp-block-column{
	padding: var(--wp--custom--spacer--xs);
	transition: all 350ms ease-in-out;
	background-color: var(--wp--custom--primary--main);
}

.service-columns.link-cards .wp-block-column:hover{
	background-color: var(--wp--custom--primary--light);
	transform: translateY(-3px);
}

.service-columns.link-cards .wp-block-column .wp-block-heading,
.service-columns.link-cards .wp-block-column a{
	color: white;
	transition: all 350ms ease-in-out;
	margin: 20px 0 0;
}

.service-columns.link-cards .wp-block-column:hover .wp-block-heading,
.service-columns.link-cards .wp-block-column:hover a{color: var(--wp--custom--dark--1);}

@media screen and (max-width:600px){
	.service-columns.link-cards .wp-block-column{padding:var(--wp--custom--spacer--xs) var(--wp--custom--spacer--xxs);}
	
	.service-columns.link-cards .wp-block-column > .wp-block-group{
		flex-direction:column!important;
		text-align:center;
	}
}

/*border-radius-sm*/
.border-radius-sm,
.border-radius-sm img,
.border-radius-sm.wp-block-outermost-icon-block .icon-container,
.border-radius-sm iframe{border-radius: var(--wp--custom--radius--sm);}

/*link cards*/

/*GUT SLIDER*/
.home-brands.wp-block-gutsliders-logo-carousel .gutslider-caption{position: initial;}

.home-brands.wp-block-gutsliders-logo-carousel .swiper-container-outer{height: auto;}

/*contain-cover*/
.dot-cover .wp-block-cover__image-background{
	background-size: 80px!important;
    opacity: .3;
}

/*YT EMBED*/
.wp-block-embed__wrapper iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/*relative-pos*/
.relative-pos{position: relative;}

.img-decor img{
	border-radius: var(--wp--custom--radius--sm);
	box-shadow: rgb(0 0 0 / 12%) 0 3px 11px 0;
}

/*icon-decor*/
.icon-decor{
	position: absolute;
    right: -80px;
    top: -80px;
    z-index: -1;
}

/*dots-decoration*/
.dots-decoration + .wp-block-image{
	position:relative;
	z-index:2;
}
.dots-decoration{
	position:relative;
	z-index:1;
}

@media screen and (max-width:900px){
	.dots-decoration{
		margin-left:-35px!important;
		margin-right:-35px!important;
	}
}

/*align left image*/
@media screen and (min-width: 421px) {
	.wp-block-image.alignleft{
		margin:0 30px 20px 0;
	}
}

/*brands-full*/
.brands-full .wp-element-caption{
	text-align: center;
	margin-top: 1.5em;
}

.brands-full figure { text-align: center; }

.brands-full figure img { max-width: 80%;; }

@media screen and (max-width:900px){
	.brands-full { grid-template-columns: repeat(2, minmax(0, 1fr))!important;}
}

@media screen and (max-width:600px){
	.brands-full { grid-template-columns: repeat(1, minmax(0, 1fr))!important;}
}

/*boxed-cols*/
.boxed-cols .wp-block-column{
	background-color: var(--wp--custom--light--1);
	padding: var(--wp--custom--spacer--sm);
	border-radius: var(--wp--custom--radius--sm);
}

.boxed-cols .icon-container{
	border-radius: var(--wp--custom--radius--full);
}

.has-primary-dark-background-color,
.has-primary-dark-background-color h2,
.has-primary-dark-background-color h3,
.has-primary-dark-background-color h4,
.has-primary-dark-background-color h5,
.has-primary-dark-background-color h6,
.has-primary-dark-background-color .arrow-list li:before,
.has-primary-dark-background-color .check-list li:before,
.has-primary-dark-background-color .check-circle-list li:before,
.has-primary-dark-background-color .icon-list li:before,
.has-primary-dark-background-color .contact-list li:before,
.has-primary-dark-background-color .arrow-list li [class*="fa"],
.has-primary-dark-background-color .check-list li [class*="fa"],
.has-primary-dark-background-color .check-circle-list li [class*="fa"],
.has-primary-dark-background-color .icon-list li [class*="fa"],
.has-primary-dark-background-color .contact-list li [class*="fa"],
.has-primary-dark-background-color .brand-list li [class*="fa"] { color: white; }

.has-primary-dark-background-color a{
	color: var(--wp--custom--light--1);
}


.has-primary-dark-background-color a:hover{
	color: var(--wp--custom--secondary--main);
}

/*detail accordion*/
 details{
	 border: 1px solid var(--wp--custom--light--2);
	 padding: 0 20px;
	 margin-top:0!important;
	 margin-bottom:0!important;
 }

details summary{
	background-color:transparent;
    padding: 20px calc(1em + 40px) 20px 20px;
}

 details summary:after{
    font-weight: 700;
	 left:unset;
	 right:20px;
 }
 
 details[open]{
	 border-color:var(--wp--custom--primary--main);
	 background-color:white;
}
 
 details[open] summary:after{color:white;}
 
 details:not([open]):hover summary{background-color:var(--wp--custom--light--1);}
 
 details[open] summary{
	 background-color:var(--wp--custom--primary--main)!important;
	 color:white!important;
 }
 
 details > :last-of-type{padding-bottom:20px;}
 
 details:not(:last-of-type){margin-bottom:20px;}
 
 details summary{
	 margin-left: -20px;
	 margin-right: -20px;
 }

details.wp-block-details ul:not([class*="col"]) li{width:auto;}

/*resource-group*/
.resource-group .wp-block-image{
	border:1px solid var(--wp--custom--light--2);
    padding: 5px;
}

/*animate.css*/
.custom-delay-quarter-s { animation-delay: .25s; }
.custom-delay-half-s { animation-delay: .5s; }
.custom-delay-three-quarter-s { animation-delay: .75s; }
.custom-delay-one-n-quarter-s { animation-delay: 1.25s; }
.custom-delay-one-n-half-s { animation-delay: 1.5s; }

/*animate hide initial*/
/*banner*/
body:not(.block-editor-page) .banner h1:not(.animate__animated),
body:not(.block-editor-page) .banner .deck-wrap:not(.animate__animated),
body:not(.block-editor-page) .button:not(.animate__animated),
/*cta*/
body:not(.block-editor-page) section.cta-bar h2:not(.animate__animated),
body:not(.block-editor-page) section.cta-bar p:not(.animate__animated),
/*content*/
body:not(.block-editor-page) .main-container h2:not(.animate__animated),
body:not(.block-editor-page) .main-container h6:not(.animate__animated),
body:not(.block-editor-page) .wp-block-button:not(.animate__animated),
body:not(.block-editor-page) .animate_opacity:not(.animate__animated),
body:not(.block-editor-page) [class*="animate-on-scroll"]:not(.animate__animated)
{ opacity:0; }
