/*
Theme Name: Shawn Brown Enterprise
Version: 6.1
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 */

/** Source Sans 3 **/
/* Normal */
@font-face {
	font-family: 'Source Sans 3';
	font-weight: normal;
	src: url('fonts/Source_Sans_3/SourceSans3-Regular.ttf');
}

/* Italic */
@font-face {
	font-family: 'Source Sans 3';
	font-style: italic;
	font-weight: normal;
	src: url('fonts/Source_Sans_3/SourceSans3-Italic.ttf');
}

/* Semibold */
@font-face {
	font-family: 'Source Sans 3';
	font-weight: 600;
	src: url('fonts/Source_Sans_3/SourceSans3-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Source Sans 3';
	font-weight: bold;
	src: url('fonts/Source_Sans_3/SourceSans3-Bold.ttf');
}

 
/** Source Serif 4 **/
/* Normal */
@font-face {
	font-family: 'Source Serif 4';
	font-weight: normal;
	src: url('fonts/Source_Serif_4/SourceSerif4-Regular.ttf');
}

/* Italic */
@font-face {
	font-family: 'Source Serif 4';
	font-style: italic;
	font-weight: normal;
	src: url('fonts/Source_Serif_4/SourceSerif4-Italic.ttf');
}

/* Semibold */
@font-face {
	font-family: 'Source Serif 4';
	font-weight: 600;
	src: url('fonts/Source_Serif_4/SourceSerif4-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Source Serif 4';
	font-weight: bold;
	src: url('fonts/Source_Serif_4/SourceSerif4-Bold.ttf');
}


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



/***  UNIVERSAL STYLES  ***/

html {
	font-size: 17px;
}

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--full);
	background-color: var(--wp--custom--secondary--main);
	font-weight: 300;
	color: white;
}

.btt-button:hover [class*="fa"] {
	background-color: var(--wp--custom--secondary--light);
	color: white;
}





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



/***  TEXT & LINKS  ***/

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

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



/***  HEADINGS  ***/

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

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
}

h6 {
	font-size: 0.85em;
}

@media screen and (max-width: 600px){
h1 {font-size: 2em;}
h2 {font-size: 1.75em; }
h3 {font-size: 1.3em;  }
h4 {font-size: 1.2em;}
h5 {font-size: 0.9em;}
h6 {font-size: 0.75em;}
}

/***  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--secondary--main);
	box-shadow: 0px 16px 32px -16px rgba(97,149,75, 0.64);
	border-radius: var(--wp--custom--radius--sm);
	background-color: var(--wp--custom--secondary--main);
	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--secondary--light);
	background-color: var(--wp--custom--secondary--light);
	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: white;
}

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



/***  ICONS  ***/

.fa {
	font-weight: 300;
}

/* 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  ***/

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-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"] {
	color: var(--wp--custom--primary--main);
}



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

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



/***  TOP BAR  ***/

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



/***  HEADER  ***/

@media screen and (min-width: 901px) {
	.header-masthead { width: 240px; }

	.header-right { width: calc( 100% - 240px ); }
}

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

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

/* Menu Button */

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

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



/***  NAVBAR  ***/

.navbar {
}



/***  NAV MENUS  ***/

.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: var(--wp--custom--primary--light);
}

/* 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--secondary--main);
	border-radius: var(--wp--custom--radius--sm);
	color: white;
}

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

/* Dropdowns */

.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: var(--wp--custom--dark--1);
}

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

/* Nested Dropdowns */

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



/***  HIDDEN NAV  ***/

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

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





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



/***  BANNER  ***/

.banner {
	background-color: black;
	text-align: left;
}

.banner:before {
	opacity: 0.3!important;
}

.banner-inner {
	margin-top: 100px;
	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);
}

.banner-tall:before {
	background-attachment: fixed;
	background-position: center center;
}
.banner-tall .banner-inner {
	margin-top: 100px!important;
	min-height: 700px;
	max-width: 700px;
    margin: unset;
}

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

.banner a:hover {
	color: white;
}

.banner .deck, .banner p {
	margin-top: 20px;
}

.banner .button { color:white; }

/***  HEADLINE BAR  ***/

.headline-bar {
}



/***  ENTRY NAVBAR  ***/

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

.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: 0;
	overflow: hidden;
	color: var(--wp--custom--dark--1);
	border-bottom:3px solid transparent;
}

.entry-cols .entry-link:hover {
	transform: translateY(-3px);
}

.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 {
	padding: 0.75em 2.25em;
	border-color: var(--wp--custom--secondary--main);
	box-shadow: 0px 16px 32px -16px rgba(97,149,75, 0.64);
	border-radius: var(--wp--custom--radius--sm);
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

.entry-cols .entry-link:hover .entry-link-text {
	border-color: var(--wp--custom--secondary--light);
	background-color: var(--wp--custom--secondary--light);
	color: white;
}

/* Archive Pagination */

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

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

.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-container {max-width: none; padding:0;}

.cta-bar {
	padding-top: 0;
	padding-bottom: 0;
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

.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--xl);
	padding-bottom: var(--wp--custom--spacer--xl);
	background-color: var(--wp--custom--primary--dark);
	font-size: 0.9em;
	color: var(--wp--custom--light--1);
}

.footer a {
	color: white;
}

.footer a:hover {
	color: var(--wp--custom--secondary--light);
}

.footer h1, 
.footer h2, 
.footer h3, 
.footer h4, 
.footer h5, 
.footer h6 {
	color: var(--wp--custom--secondary--light);
}

/* Footer Icon List */

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

.footer .icon-list li a, 
.footer .arrow-list li a, 
.footer .check-list li a, 
.footer .check-circle-list li a, 
.footer .contact-list li a {
	color: white;
}

.footer .icon-list li a:hover, 
.footer .arrow-list li a:hover, 
.footer .check-list li a:hover, 
.footer .check-circle-list li a:hover, 
.footer .contact-list li a:hover {
	color: var(--wp--custom--secondary--light);
}

/***  6.3 BOTTOM BAR  ***/

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

/* Menus */

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

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


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

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



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

/* Add custom theme styles here */

@media screen and (max-width: 900px) {
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {flex-basis: 100% !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;
}

.sb-cols .wp-block-column {
  padding: 35px 30px !important;
  background-color: white;
  box-shadow: 0px 40px 120px -40px rgba(0, 0, 0, 0.24);
}

body.wp-admin .sb-cols { flex-direction: column; }

.img-border,
.img-border--left {
	border-style: solid;
    border-width: 4px 4px 4px 4px;
    border-color: var(--wp--custom--secondary--main);
    
}

.img-border { margin: 40px 0px 0px 70px; }

.img-border--left { margin: 40px 70px 0px 0px; }

@media screen and (max-width: 900px) {
	.img-border { margin: 22px 0px 0px 44px; }

	.img-border--left { margin: 22px 44px 0px 0px; }
}

.img-border img,
.img-border--left img {
	/* margin: -44px 0px 0px -44px;
    padding: 0px 44px 44px 0px; */
		position: relative;
		top: -44px;
	box-shadow: 64px 64px 160px -40px rgba(0, 0, 0, 0.24);
}

.img-border img { left: -44px; }

.img-border--left img { right: -44px; }

@media screen and (max-width: 900px) {
	.img-border img { 
		top: -22px;
		left: -22px;
		box-shadow: 32px 32px 80px -20px rgba(0, 0, 0, 0.24);
	 }

	.img-border--left img { 
		top: -22px;
		right: -22px;
		box-shadow: 32px 32px 80px -20px rgba(0, 0, 0, 0.24);
	 }
}


.headings:after,
.headings--center:after {
    display: block;
	width: 60px;
	height: 3px;
	margin-top: 15px;
	margin-left: 0;
	margin-right: auto;
	background-color: var(--wp--custom--secondary--main);
    content: '';
}

.headings--center:after {
	margin-left: 50%;
	transform: translateX(-50%);
}


.wp-block-cover .wp-block-cover__background {
	margin-top:0;
	margin-left: 0;
	margin-right: 0;
}


/** Team **/

.member-box img {
	filter: brightness(88%) contrast(88%) saturate(80%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.2s;
    box-shadow: 0px 64px 80px -48px rgba(0, 0, 0, 0.24);
}

.member-box .member-text-wrap {
	margin-top:30px;
}


/** Services Block **/

.services-block .wp-block-column {
 -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.services-block .wp-block-column a:hover {
  text-decoration:none!important;
}

.services-block .wp-block-column:hover .wp-block-cover__background.has-black-background-color.has-background-dim {
    opacity: 0.75; 
    transition: background-color 0.3s, opacity 0.3s;
}

.services-block-hover-solid .wp-block-column:hover  .is-style-outline .wp-block-button__link { background-color: var(--wp--custom--secondary--light); }

@media screen and (max-width: 900px) {
	.services-block { gap: 0 !important; }
	
	.services-block .services { margin: 0; }
	
	.services-columns { 
		margin-top: 0 !important; 
		margin-bottom: 0 !important; 
	}
}
/*Media Queries */
/* Tablets  */
@media screen and (max-width: 1024px){
  
}


/* iPad Mini & iPad Air (Portrait) */
@media screen and (max-width: 900px) {
	.section-reverse {
   		 flex-direction: column-reverse;
	}
}

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

}


