/*
Theme Name: Standard Wire
Version: 5.6
Theme URI: http://www.cyberoptik.net
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: http://www.cyberoptik.net
Template: optik-theme
*/



/*
 * CUSTOMIZABLE CSS
 */



/* -----------------------------------------------------------------------------
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 CSS IMPORTS
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 THEME MODULES
 *   2.3 BACK TO TOP BUTTON
 *
 * 3 CONTENT STYLES
 *   3.1 TEXT & LINKS
 *   3.2 HEADINGS
 *   3.3 BORDERS & DIVIDERS
 *   3.4 BUTTONS
 *   3.5 ICONS
 *   3.6 LIST STYLES
 *   3.7 FORM STYLES
 *
 * 4 HEADER STYLES
 *   4.1 SCROLL BAR
 *   4.2 TOP BAR
 *   4.3 HEADER 
 *   4.3 NAV BAR
 *   4.5 NAV MENUS
 *   4.6 DROPDOWN MENUS
 *   4.7 MOBILE NAV
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 PAGE NAVBAR
 *   5.3 MAIN
 *   5.4 ARCHIVE
 *   5.5 SINGLE
 *
 * 6 FOOTER STYLES
 *   6.1 CTA BAR
 *   6.2 FOOTER
 *   6.3 BOTTOM BAR
 *
 * 7 CUSTOM THEME STYLES
 *
 * ---------------------------------------------------------------------------*/





/******************************************************************************
 * * *  1 CSS IMPORTS  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

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



/***  MULISH  ***/

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

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

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

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

/* Extra Bold */
@font-face {
  font-family: 'Mulish';
  font-weight: 800;
  src: url('fonts/Mulish/Mulish-ExtraBold.ttf');
}





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



/***  2.1 UNIVERSAL STYLES  ***/

:root {
  --primary: #df0024;
  --primary-dk: #a7001b;
  --primary-lt: #fd2648;
  --secondary: #04314e;
  --secondary-dk: #021826;
  --secondary-lt: #1678b7;
  --dark-1: #222;
  --dark-2: #555;
  --dark-3: #888;
  --light-1: #E9E9E9;
  --light-2: #F1F3F5;
  --light-3: #F7F7F7;
  --radius-1: 50%;
  --radius-2: 5px;
  --radius-3: 20px;
  --shadow-1: 0px 5px 20px rgba(0,0,0,0.5);
  --shadow-2: 0px 5px 30px rgba(0,0,0,0.15);
  --font-1: 'Mulish', sans-serif;
}

html {font-size: 16px;}

body {
  line-height: 1.6em;
  font-family: var(--font-1);
  color: var(--dark-1);
  background: white;
  font-size: 15px;
  font-weight: 500;
}

p:empty:before {display: none !important;}



/***  2.2 THEME STYLES  ***/

.section-container {max-width: 1300px;}

.section-spacer {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-spacer-top {padding-top: 80px;}
.section-spacer-btm {padding-bottom: 80px;}

.section-spacer-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-spacer-top-sm {padding-top: 60px;}
.section-spacer-btm-sm {padding-bottom: 60px;}

.section-spacer-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-spacer-top-lg {padding-top: 100px;}
.section-spacer-btm-lg {padding-bottom: 100px;}



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

.btt-button .fa {
  border-radius: var(--radius-1);
  background-color: var(--primary);
	font-weight: 300;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

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





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



/***  3.1 TEXT & LINKS  ***/

.text-primary {color: var(--primary) !important;}

a {color: var(--primary);}

a:hover {color: var(--secondary); text-decoration: none;}



/***  3.2 HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: var(--secondary);
}

h1 {
  font-size: 3.75em; 
  font-weight: 800;
  line-height: 1.1em;
}
h2 {
  font-size: 2.4em;
}
h3 {font-size: 1.68em;}
h4 {font-size: 1.22em;}
h5 {font-size: 1em;}
h6 {font-size: 0.85em;}

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



/***  3.3 BORDERS & DIVIDERS  ***/

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



/***  3.4 BUTTONS  ***/

.button, 
.elementor-button, 
.product-cat-content .elementor-button {
  padding: 0.75em 2em;
  border: 2px solid var(--primary);
	border-radius: var(--radius-2);
  background-color: var(--primary);
  font-weight: 300;
  color: white !important;
  text-transform: uppercase;
}

.button:hover, 
.elementor-button:hover, 
.product-cat-content .elementor-button:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: white !important;
}

.button i, 
.elementor-button i {
  color: black !important;
}

.button:hover i, 
.elementor-button:hover i {
  color: white !important;
}

/* Empty Button */

.button-empty, .btn-empty .elementor-button {
  padding: 0.75em 0;
  background: none;
  border: none;
  color: white!important;
  text-transform: uppercase;
  box-shadow: none!important;
}

.button-empty:hover, .btn-empty .elementor-button:hover {
  border-color: none;
  background: none;
  color: var(--primary)!important;
}

.button-empty i, .btn-empty .elementor-button i {
  color: white!important;
}

.button-empty:hover i, .btn-empty .elementor-button:hover i {
  color: var(--primary) !important;
}



/***  3.5 ICONS  ***/

/*  Icon Colors  */

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

a .fa, a .fas, a .far, a .fal, a .fab {
  color: var(--primary);
  webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {color: var(--secondary);}

/*  Icon Backgrounds  */

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

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

a:hover .fa-bg {
  background-color: var(--secondary);
  color: white;
}

/*  Icon Borders  */
.fa-br {border-color: var(--primary);}
a .fa-br {border-color: var(--primary);}
a:hover .fa-br {border-color: var(--secondary);}

/* Twitter X */

.fa-brand.fa-x-twitter {color: #58ccff !important;}
a .fa-brand.fa-x-twitter {color: #51bceb !important;}
a:hover .fa-brand.fa-x-twitter, 
a:hover .fa-hover-brand.fa-x-twitter {color: #58ccff !important;}

.fa-bg-brand.fa-x-twitter {background-color: #58ccff !important;}
a .fa-bg-brand.fa-x-twitter {background-color: #51bceb !important;}
a:hover .fa-bg-brand.fa-x-twitter {background-color: #58ccff !important;}
a:hover .fa-bg-hover-brand.fa-x-twitter {
  color: white;
  background-color: #58ccff !important;
}

.fa-br-brand.fa-x-twitter {border-color: #58ccff !important;}
a .fa-br-brand.fa-x-twitter {border-color: #51bceb !important;}
a:hover .fa-br-brand.fa-x-twitter, 
a:hover .fa-br-hover-brand.fa-x-twitter {border-color: #58ccff !important;}

/* Elementor Icons */

.elementor-view-stacked .elementor-icon {background-color: var(--primary);}
.elementor-view-stacked .elementor-icon i {color: white;}
.elementor-view-stacked .elementor-icon:hover {background-color: var(--secondary);}



/***  3.6 LISTS  ***/

/* Icon Lists */

.arrow-list, 
.check-list, 
.check-circle-list, 
.icon-list, 
.contact-list {list-style: none;}

.arrow-list li, 
.check-list li, 
.check-circle-list li, 
.icon-list li, 
.contact-list li {position: relative;}

.contact-list li a {color: var(--dark-1);}

.icon-list li .fa, 
.icon-list li .fal, 
.icon-list li .fas, 
.icon-list li .fab, 
.icon-list li .fad, 
.contact-list li .fa, 
.contact-list li .fal, 
.contact-list li .fas, 
.contact-list li .fab, 
.contact-list li .fad {
  position: absolute;
  top: 0.25em;
  left: -1.75em;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.arrow-list li:not(:last-child), 
.check-list li:not(:last-child), 
.check-circle-list li:not(:last-child), 
.icon-list li:not(:last-child), 
.contact-list li:not(:last-child) {margin-bottom: 0.5em;}

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
  position: absolute;
  top: 0.33em;
  left: -1.75em;
  width: 1em;
  height: 1em;
  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;
  color: var(--primary);
}

.arrow-list li:before, 
.icon-list li.arrow:before, 
.contact-list li.arrow:before {content: "\f105";}

.check-list li:before, 
.icon-list li.check:before, 
.contact-list li.check:before {content: "\f00c";}

.check-circle-list li:before, 
.icon-list li.check-circle:before, 
.contact-list li.check-circle:before {content: "\f058";}

.icon-list li.map-marker:before, 
.contact-list li.map-marker:before {content: "\f3c5";}

.icon-list li.phone:before, 
.contact-list li.phone:before {content: "\f095";}

.icon-list li.fax:before, 
.contact-list li.fax:before {content: "\f1ac";}

.icon-list li.envelope:before, 
.contact-list li.envelope:before {content: "\f0e0";}

.icon-list li.clock:before, 
.contact-list li.clock:before {content: "\f4fd";}

.icon-list li.share:before, 
.contact-list li.share:before {content: "\f14d";}

/* Double Size Icon List */

.icon-list-2x li, 
.contact-list-2x li {margin-left: 3em;}

.icon-list-2x li:not(:last-child), 
.contact-list-2x li:not(:last-child) {margin-bottom: 1em;}

.icon-list-2x li:before, 
.contact-list-2x li:before {
  font-size: 1.5em;
  top: 0;
  right: calc(100% + 1em);
}

/* Column Lists */

@media screen and (min-width: 601px) {

.two-col-list, 
.three-col-list, 
.four-col-list, 
.five-col-list {
  width: 100%;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.two-col-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.three-col-list, 
.four-col-list, 
.five-col-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.two-col-list li, 
.three-col-list li, 
.four-col-list li, 
.five-col-list li {
  display: inline-block;
  width: calc(100% - 1.75em);
}

}

@media screen and (min-width: 901px) {

.four-col-list, 
.five-col-list {
  -webkit-column-count: 4; /* Chrome, Safari, Opera */
  -moz-column-count: 4; /* Firefox */
  column-count: 4;
}

}

@media screen and (min-width: 1025px) {

.five-col-list {
  -webkit-column-count: 5; /* Chrome, Safari, Opera */
  -moz-column-count: 5; /* Firefox */
  column-count: 5;
}

}



/***  3.7 FORM STYLES  ***/

/* Inputs */

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(--primary);}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
  background-color: var(--primary);
  height: 50px;
  border-radius: var(--radius-2);
  padding: 0.75em 2em;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  background-color: var(--secondary);
  color: white;
}

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

/* Search Form */

.search-form {position: relative;}

input[type="text"].search-field {background-color: var(--light-3);}

input[type="text"].search-field:focus {background-color: white;}

input[type="Submit"].search-submit {
  display: block;
  position: absolute;
  z-index: 50;
  top: 50%;
  right: 0;
  float: none;
  width: 42px;
  height: 42px;
  border: 0;
  margin-top: -21px;
  background: rgba(0,0,0,0) url(images/icon-search.svg) center center no-repeat !important;
  background-size: 1.5em !important;
  opacity: 0.6;
  cursor: pointer;
  cursor: hand;
}

input[type="Submit"].search-submit:hover {
  outline: none;
  opacity: 1;
}

input[type="Submit"].search-submit:active {
  background-color: rgba(0,0,0,0.025);
  outline: none;
}

/* Ninja Forms */

.nf-before-form-content {display: none !important;}

.nf-field-element input[type="button"], 
.nf-field-element input[type="submit"] {height: 50px;}

.nf-form-content button, 
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}





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



/***  4.1 SCROLL BAR  ***/

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

.scroll-logo-wrapper {
  padding-top: 20px;
	padding-bottom: 20px;
}

.scroll-logo img {max-height: 40px;}

.scroll-bar .section-container {max-width: none;}



/***  4.2 TOP BAR  ***/

.top-bar {
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: var(--light-2);
  color:black;
}

.top-bar .col-custom {
  padding-top: 2px;
  padding-bottom: 2px;
}


.menu-top-menu-container a {
  font-weight: 600;
  color:black;
}

.menu-top-menu-container a:hover {
  color:var(--primary);
}



/***  4.3 HEADER  ***/

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
} 

.header-container {max-width: none;}


.header .col-custom {
  padding-top: 0;
  padding-bottom: 0;
}

.header .logo-wrapper {
  padding-top: 30px;
	padding-bottom: 30px;
}

.logo img {max-height: 52px;}

/* Menu Button */

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

.header .menu-button.active .fal {
  background-color: var(--secondary);
  color: white;
}



/***  4.5 NAV MENUS  ***/

.nav-menu > li > a {
  padding: 12px 12px 5px;
  border-bottom: 3px solid transparent;
  color: white;
  font-weight: 600;
  font-style: normal;
  z-index: 2;
}

@media screen and (max-width: 1400px) {
	.nav-menu > li > a {
		font-size: 0.96em;
		padding-left: 8px;
		padding-right: 8px;
	}
}

.nav-menu > li > a > span:after {
  display: block;
	margin-top: 5px;
	height: 2px;
	width: 100%;
  content: '';
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

.tax-product-cat .nav-menu > li.products-link > a > span:after, 
.single-product .nav-menu > li.products-link > a > span:after, 
.single-service .nav-menu > li.services-link > a > span:after, 
.single-post .nav-menu > li.posts-link > a > span:after, 
.nav-menu > li.current-menu-ancestor > a > span:after, 
.nav-menu > li.current-page-parent > a > span:after, 
.nav-menu > li.current-menu-item > a > span:after, 
.nav-menu > li:hover > a > span:after {
  background-color: var(--primary);
}

/* Nav Button */

.nav-menu > li.nav-button > a > span {
  display: block;
  padding: 0.5em 2.25em;
  border-radius: var(--radius-2);
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  background-color: var(--primary);
  color: white;
  transition: all 300ms ease-in-out;
  font-weight: 600;
}
.nav-menu > li.nav-button > a > span:after {display: none;}

.nav-menu > li.nav-button.current-menu-item > a > span, 
.nav-menu > li.nav-button:hover > a > span {
  background-color: var(--primary-lt);
  color: white;
}


/***  4.6 DROPDOWN MENUS  ***/

.nav-menu li ul {
  left: 50%;
  border-radius: var(--radius-2);
  background-color: white;
  width: 240px;
  margin-top: -10px;
	transform: translateX(-50%);
}

.nav-menu li ul li:first-child {
  border-top: 2px solid var(--primary);
	border-top-left-radius: var(--radius-2);
	border-top-right-radius: var(--radius-2);
	overflow: hidden;
}

.nav-menu li ul li:last-child {
  border-bottom: 2px solid var(--primary);
	border-bottom-left-radius: var(--radius-2);
	border-bottom-right-radius: var(--radius-2);
	overflow: hidden;
}

.mobile-menu li.menu-item-has-children:after {
	font-family: "Font Awesome 6 Pro";
}

.nav-menu li ul li a {
  padding: 12px 16px;
  color: var(--dark-1);
  font-size: 0.9em;
}

.nav-menu li ul li.current-menu-item > a {color: var(--primary);}

.nav-menu li ul li:hover a {
  background-color: var(--primary);
  color: white;
}


/***  4.7 MOBILE NAV  ***/

.mobile-nav {background-color: white;}

.mobile-menu > li:not(:last-child) {border-bottom: 1px solid var(--light-1);}

.mobile-menu li a {color: var(--dark-1);}

.mobile-menu li.current-menu-item > a {
  background-color: var(--primary);
  color: white;
}

.mobile-menu li ul {
  background-color: var(--light-3);
  font-size: 0.9em;
}



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

/***  5.1 BANNER  ***/

.banner {
  background: linear-gradient(-135deg, var(--secondary-lt) 0%, var(--secondary-dk) 100%)!important;
  text-align: center;
  color: white;
}

.banner-inner {
  min-height: 350px;
  padding-top: 150px;
  padding-bottom: 80px;
  max-width: 1100px;
}

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

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

.banner a:hover {color: white;}

.banner h3, 
.banner h4 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary-lt);
  margin: 0;
  margin-bottom: 0.5em;
	text-shadow: var(--shadow-1);
}

.banner h1 {margin: 0;}

.banner hr {
  border-top: 3px solid var(--primary);
	width: 75px;
	margin-top: 1.5em;
	margin-left: auto;
	margin-right: auto;
}

/* Banner Buttons */

.banner .button:hover {
  border-color: white;
  background-color: white;
  color: var(--primary) !important;
}

.banner .button:hover .fas {color: var(--secondary) !important;}

/* Banner Icons */

.banner .fa-br {color: white;}

.banner a:hover .fa-br {
  border-color: var(--primary);
	background-color: var(--primary);
  color: white;
}



/***  5.2 TITLE BAR  ***/

.breadcrumbs {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--light-2);
}

.breadcrumbs .fal {
  font-size: 0.7em;
	color: var(--dark-3);
}



/***  5.2 PAGE NAV BAR  ***/

.page-nav-bar .page-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}

.page-nav-bar .page-menu {
    display: flex;
}
.page-nav-bar .page-menu li {
    line-height: 1.4;
    text-align: center;
    margin: 0;
    font-size: 0.938em;
    border-right: var(--dark-1) solid 1px;
}

.page-nav-bar .page-menu li:first-child {
    border-left: var(--dark-1) solid 1px;
}

.page-nav-bar .page-menu li:hover > a, .page-nav-bar .page-menu li.current-menu-item > a {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.page-nav-bar .page-menu li > a {
    padding: 22px 15px;
    display: flex;
    align-items: center;
    color: white;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}

/***  5.3 MAIN  ***/

.main {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (min-width: 421px) {
.content .alignleft {margin: 0 20px 1em 0;}
.content .alignright {margin: 0 0 1em 20px;}
}


/***  5.4 ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
  border-radius: var(--radius-2);
  background-color: var(--light-3);
  overflow: hidden;
  color: var(--dark-2);
}

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

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

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

.entry-cols .entry-link .entry-title {color:var(--dark-1);padding: 20px; margin-top: 0;} 
.entry-cols .entry-link:hover .entry-title {color: var(--secondary);}

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

.entry-cols .entry-date {
  font-size: 0.9em;
  color: var(--dark-3);
}

.entry-cols .entry-cats {
  position: absolute;
  top: 30px;
  left: 30px;
}

.entry-cols .entry-cats span {
  border-radius: var(--radius-2);
  padding: 5px 10px;
  margin: 0;
  margin-right: 4px;
  background: rgba(0,0,0,0.4);
  color: white;
}

.entry-cols .entry-more {
  position: absolute;
  width: 100%;
  left: 30px;
  bottom: 30px;
}

.entry-cols .entry-link .entry-button {color: var(--primary);}

.entry-cols .entry-link:hover .entry-button {color: var(--secondary);}

/* Paging Nav */

.archive-nav a {
  padding: 0.6em 1.2em;
  border-radius: var(--radius-3);
  border: 1px solid var(--light-1);
  background: var(--light-2);
  color: var(--dark-1);
}

.archive-nav a:hover {
  background-color: var(--secondary);
  color: white;
}

/***  5.5 SINGLE  ***/





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

/***  6.1 CTA BAR  ***/

.cta-bar {
  padding-top: 100px;
  Padding-bottom: 100px;
  background: linear-gradient(-135deg, var(--secondary-lt) 0%, var(--secondary-dk) 100%);
  text-align: center;
  color: white;
}

.cta-bar .grid {align-items: center;}

.cta-bar .col-custom:last-child {margin-top: 1em;}

.cta-bar .cta-title, 
.cta-bar .elementor-widget-heading {margin-bottom: 0.5em;}

.cta-bar .cta-title + p {margin-top: 0;}

.cta-bar p + p:last-child {margin-top: 2em !important;}

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

.cta-bar .button:hover, 
.cta-bar .elementor-button:hover {
  border-color: white;
  background-color: white;
  color: var(--primary) !important;
}

.cta-bar .button:hover .fas, 
.cta-bar .elementor-button:hover .fas {color: var(--secondary) !important;}







/***  6.2 FOOTER  ***/

.footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: white;
  color: var(--dark-2);
  font-weight: 300;
}

.footer .col-custom {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer a {color: var(--dark-1);}

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

.footer .logo {
  width: 250px;
}

.footer h4 {
  font-size: 1.5em;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
	color: var(--primary);
}

.footer a {color: var(--dark-1);}

/* Footer Menus */

.footer .menu {margin-top: -5px;}

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

/* Footer Icon List */

.footer .arrow-list li, 
.footer .check-list li, 
.footer .check-circle-list li, 
.footer .icon-list li, 
.footer .contact-list li {margin-left: 1.75em;}



/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: black;
  color:var(--light-1);
  border-top: 1px solid #1d1f64;
  font-weight: 300;
}

.bottom-bar .col-custom {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bottom-bar .section-container {max-width: none;}

.bottom-bar a {color: white;}

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

.copyright, .credits {display: inline-block;}

.credits img {width: 1.1em;}




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

/* Add custom theme styles here */

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light i,
.text-light span,
.text-light li a,
.text-light li:before {color:var(--secondary-lt)!important;}

.text-light li a:hover {color:var(--secondary-dk)!important;}

.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h5,
.text-primary h6,
.text-primary p,
.text-primary i,
.text-primary span,
.text-primary li a,
.text-primary li:before {color:var(--primary)!important;}

.text-primary li a:hover {color:var(--dark-1)!important;}


.text-secondary h1,
.text-secondary h2,
.text-secondary h3,
.text-secondary h4,
.text-secondary h5,
.text-secondary h6,
.text-secondary p,
.text-secondary i,
.text-secondary span,
.text-secondary li a,
.text-secondary li:before {color:var(--secondary-dk)!important;}

.text-secondary li a:hover {color:var(--secondary-lt)!important;}


.text-white {
  font-weight: 300;
  font-style: normal;
  font-size: 19px;
}
.text-on-white {
  font-weight: 300;
  font-style: normal;
  font-size: 19px;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white i,
.text-white span,
.text-white li a,
.text-white li:before {color:white!important;}

.text-white li a:hover {color:var(--primary)!important;}
.text-white a:hover {color:var(--primary)!important;} 

.text-6 {
  font-weight: 300;
}

/** Service-Cols **/

.service-cols .elementor-column,
.service-col .elementor-column {padding: 10px;}

.service-cols .elementor-column-wrap,
.service-col .elementor-column-wrap {
  border: 1px solid var(--secondary-dk);
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  padding:0!important;
}

.service-cols .elementor-widget-wrap, 
.service-col .elementor-widget-wrap {
  padding: 25px 25px 65px 25px !important;
  height: 250px;

}

.service-cols .elementor-column-wrap:hover,
.service-col .elementor-column-wrap:hover {
  text-decoration: none!important;
}

.service-cols .elementor-widget-wrap .service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px 32px;
  color: var(--secondary-lt);
  text-align: center;
  background: rgba(33, 114, 187, 0.8);
  padding-left: -20px;
}


.padding50 .elementor-widget-wrap {
  padding: 50px!important;
}

.padding80 .elementor-widget-wrap {
  padding: 80px!important;
}

.services-nav-bar {
  background-color: black;
}



/** BIOS **/

.bio-cols .bio-content {
	height: 100%;
	padding: 30px;
	background: black;
	color: var(--light-1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bio-cols .bio-content a {color: white !important;}
.bio-cols .bio-content a:hover {color: var(--primary) !important;}

.bio-cols .bio-title {
  font-size: 20px;
  color:var(--primary);
}

.bio-cols .bio-position {
	color: var(--light-1);
	font-weight: bold;
	margin-top: -0.5em;
}

.bio-cols .bio-address a {display: block;}

.bio-cols .bio-street {
	display: block;
}



/***  PRODUCT ARCHIVE/TAX  ***/

/* Product Cat Cols */

.product-cols .product-link,
.product-cat-cols .product-cat-link {
  position: relative;
  display: block;
	color: var(--dark-2);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.product-cols .product-link:hover, 
.product-cat-cols .product-cat-link:hover {
  transform: scale(1.05);
}

.product-cols .product-thumb-wrap, 
.product-cat-cols .product-cat-thumb-wrap {margin-bottom: 15px;}

.product-cols .product-thumb-wrap, 
.product-cat-cols .product-cat-thumb-wrap {
  border-radius: var(--radius-2);
	border: 1px solid var(--light-1);
	overflow: hidden;
}

.product-cols .product-thumb-wrap {
  position: relative;
	height: 0;
	padding-bottom: 66%;
	background-color: white;
}

.product-cols .product-thumb {
  position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	max-width: 86%;
	max-height: 86%;
	transform: translateX(-50%) translateY(-50%);
}

.product-cols .product-title, 
.product-cols .product-more, 
.product-cat-cols .product-cat-title, 
.product-cat-cols .product-cat-more {margin: 0;}

.product-cols .product-title, 
.product-cat-cols .product-cat-title {
  color: var(--secondary);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.product-cols .product-link:hover .product-title, 
.product-cat-cols .product-cat-link:hover .product-cat-title {
  color: var(--primary);
}

.product-cols .product-button, 
.product-cat-cols .product-cat-button {
  color: var(--primary);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.product-cols .product-link:hover .product-button, 
.product-cat-cols .product-cat-link:hover .product-cat-button {
  color: var(--secondary);
}

/* Product Cat Intro */

.product-cat-intro {margin-bottom: 60px !important;}

.product-cat-intro .product-cat-thumb {
  border: 1px solid var(--light-1);
}

/* Prouct Table */

.product-table table {width: 100%;}

.product-table table th, 
.product-table table td {
  padding: 10px;
  text-align: left;
}

.product-table tr:nth-child(even) {background-color: var(--light-3);}

@media screen and (max-width: 900px) {
	.product-table {overflow-x: auto;}
	.product-table th, 
	.product-table td {min-width: 100px;}
}



/***  PRODUCT SINGLE  ***/

/* Product Nav Bar */

.product-nav-bar {border-bottom: 1px solid var(--primary);}

.product-nav-bar-inner {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media screen and (min-width: 601px) {

.product-nav-bar select, 
.product-nav-bar form {max-width: 300px;}

.product-nav-bar form {margin-left: auto;}

}

/* Product Specs */

.product-spec-title {font-weight: bold;}

.product-spec-title, 
.product-spec {padding: 10px;}

.single-product .product-spec-title:nth-child(4n-1), 
.single-product .product-spec:nth-child(4n) {background-color: #f9f9f9;}

.single-product .product-notes {
	padding: 10px;
	background-color: #f3f3f3;
	font-size: 0.9em;
}

/* Product Download */

.product-downloads {
  padding: 20px;
  border: 1px solid var(--primary);
}



/***  RESOURCE COLS  ***/

.resource-cols .resource:first-child .resource-link {
  background-color: var(--primary);
  color: white;
}

.resource-cols .resource:first-child .resource-link:hover {background-color: var(--dark-1);}

.resource-cols .resource:first-child .resource-link .resource-title {color: white;}



.elementor-widget-image img {
  border-radius: var(--radius-2);
}

.wide-img img {
  width: 140%;
  max-width: none;
}

.wide-img-left img {
  margin-left: -40%;
}

.elementor-icon svg {
  color: var(--primary);
  fill: var(--primary);
}

.elementor-icon {
  border: 2px solid var(--secondary);
  border-radius: var(--radius-1);
  padding: 15px;
}



/***  ICON COLS  ***/

.icon-cols .elementor-widget-wrap {
  padding-bottom: 50px !important;
}

.icon-cols .elementor-widget-icon {margin-bottom: 15px;}

.icon-cols .elementor-widget-button {
  position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.icon-cols .elementor-widget-wrap:hover .elementor-button {
  border-color: var(--secondary);
  background-color: var(--secondary);
	color: white !important;
}

.icon-cols .elementor-widget-wrap:hover .elementor-button .fas {color: white !important;}



/***  SERVICE ICONS  ***/

.service-icon-cols .elementor-column {width: 20%;}

.service-icon-cols .elementor-row {
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (max-width: 900px) {
.service-icon-cols .elementor-column {width: 50%;}
}
@media screen and (max-width: 600px) {
.service-icon-cols .elementor-column {width: 100%;}
}





/***  BIOS  ***/

.bio-thumb img {display:none;}

a.bio-thumb,
.bio-thumb .bio-position, 
a.bio-thumb .bio-title {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a.bio-thumb:hover, 
a.bio-thumb:hover .bio-title {color: white;}



/***  ELEMENTOR ADDITIONS  ***/

.elementor-widget-image, 
.elementor-widget-image.rounded {overflow: visible;}

.elementor-widget-image img {
  position: relative;
  border-radius: var(--radius-3);
  box-shadow: var(--shadow-2);
}



/***  LOGO COLS  ***/

.logo-cols .elementor-row {flex-wrap: wrap;}

.logo-cols .elementor-column {width: 25%;}

@media screen and (max-width: 900px) {
.logo-cols .elementor-column {width: 50%;}
}
@media screen and (max-width: 600px) {
.logo-cols .elementor-column {width: 100%;}
}

.logo-cols .elementor-widget-wrap {
  position: relative;
  border: 2px solid var(--primary);
	border-radius: var(--radius-2);
  background-color: white;
	height: 0;
	padding-bottom: 66% !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.logo-cols .elementor-widget-image {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	max-width: 80%;
	max-height: 80%;
}

.logo-cols .elementor-image img {
  box-shadow: none !important;
	border-radius: 0 !important;
}





/*
 * END OF
 * CUSTOMIZABLE CSS
 */
