/*
Theme Name: The Stem Support
Theme URI: /wp-content/themes/thestemsupport/
Author: The Stem Group
Author URI: https://www.thestemgroup.com/
Description: This is the description for the theme.
Version: 7.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: Not for resale, personal use or useage by other parties but cleint.
License URI: http://www.thestemgroup.com
Tags: two-columns
Text Domain: stem-framework


This theme is protected under copyright of the designer
*/

/* ========================================================================
   Main Structure
   ======================================================================== */

html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-image: none;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #eaeaea;
	font-size:16px;
}

#page {
  width: auto;
  flex: 1 0 auto;
}

main {
  width: 100%;
}

.site-footer {
  flex-shrink: 0;
}


/* ========================================================================
   Footer
   ======================================================================== */

footer {
  width: 100%;
  height: 220px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-top: 1px solid black;
}

.footer-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer_c1 {
  min-width: 345px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  text-align: left;
}

#footer_c2 {
  min-width: 345px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  text-align: left;
}

#footer_c3 {
  min-width: 345px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  text-align: right;
}

@media (max-width: 768px) {
  footer {
    height: auto;
  }

  .footer-container {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
  }

  #footer_c1,
  #footer_c2,
  #footer_c3 {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}


/* ========================================================================
   Header
   ======================================================================== */

header {
  width: 100%;
  height: 90px;
  margin: 0;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(234, 234, 234, 0.9);
  box-shadow: 0 -15px 15px 0px rgba(0,0,0,0.3), 0 15px 15px 0px rgba(0,0,0,0.3);
}

.stem-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 768px) {
  .stem-logo {
    width: 90%;
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
    margin: 20px auto 20px auto;
  }

  .stem-logo img {
    display: inline-block;
    width: 100%;
    height: auto;
  }
}

/* ========================================================================
   Navigation
   ======================================================================== */

nav {
  width: 100%;
  max-width: 1100px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#nav-menu-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 200px;
  align-items: center;
}

.nav-menu-main, .nav-menu-social {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-menu-main li {
  font-weight: 300;
}

.nav-menu-social li {
  font-weight: 300;
}



.hamburger {
  width: 35px;
  height: 30px;
  margin: 5%;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

.hamburger .bar {
  width: 30px;
  height: 4px;
  position: absolute;
  background-color: #ffc600;
  transition: all 0.3s ease-in-out;
}

.hamburger .bar:nth-child(1) {
  top: 6px;
}

.hamburger .bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .bar:nth-child(3) {
  bottom: 6px;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    margin: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #nav-menu-container {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    flex-direction: column;
    background-color: gray;
  }
  #nav-menu-container.active {
    display: flex;
  }
  .nav-menu-main, .nav-menu-social {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .nav-menu-main li, .nav-menu-social li {
    font-size: 1.4em;
    margin-bottom: 36px;
    text-align: center;
    margin-right: 0;
  }

}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  #nav-menu-container {
    display: flex;
  }
}



/* ========================================================================
   Custom Content
   ======================================================================== */




.home-band-icons-wrapper {
    width: 100%;
    min-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
    background-image: url(/wp-content/themes/thestemsupport/images/background_reviews.jpg);
}

@media (max-width: 768px) {
  .home-band-icons-wrapper {
    min-width: 0;
  }
}

.home-band-midspan-wrapper {
    width: 100%;
    min-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
    background-image: url(/wp-content/themes/thestemsupport/images/background-keyboard.jpg);
}

@media (max-width: 768px) {
  .home-band-midspan-wrapper {
    min-width: 0;
  }
}

.home-band-family-wrapper {
    width: 100%;
    min-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
    background-image: url(/wp-content/themes/thestemsupport/images/background-macpro.jpg);
}

@media (max-width: 768px) {
  .home-band-family-wrapper {
    min-width: 0;
  }
}


.services-video {
    position: relative;
    width: 50%;
    margin: 20px auto;
    aspect-ratio: 16 / 9;
}

.services-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
  .services-video {
    width: 100%;
  }
}



.reviews {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.diy {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.diy-band-wrapper {
    width: 100%;
    min-width: 1100px;
    padding: 60px 0;
    background-image: url(/wp-content/themes/thestemsupport/images/background_diy.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .diy-band-wrapper {
    min-width: 0;
  }
}


.contact-band-wrapper {
    width: 100%;
    min-width: 1100px;
    padding: 60px 0;
    background-image: url(/wp-content/themes/thestemsupport/images/background_contact.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-band-wrapper {
    min-width: 0;
  }
}


.reviews-band-wrapper {
    width: 100%;
    min-width: 1100px;
    padding: 60px 0;
    background-image: url(/wp-content/themes/thestemsupport/images/background_reviews.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .reviews-band-wrapper {
    min-width: 0;
  }
}


.services-band-wrapper {
    width: 100%;
    min-width: 1100px;
    padding: 60px 0;
    background-image: url(/wp-content/themes/thestemsupport/images/background_services.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: 0 -15px 15px 0 rgba(0, 0, 0, 0.3), 0 15px 15px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .services-band-wrapper {
    min-width: 0;
  }
}




   /* ========================================================================
   Blog Sections
   ======================================================================== */

.articles-wrapper {
  width: 1100px;
  height: auto;
  margin: 20px auto 65px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}

.articles-content {
  width: auto;
  min-width: 0;
  display: flex;
  flex: 1 1 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  order: 0;
  gap: 50px;
  box-sizing: border-box;
}

.article-item {
  width: 280px;
  min-height: 225px;
  display: flex;
  flex: 0 0 calc(50% - 25px);
  flex-direction: column;
  box-sizing: border-box;
}

.article-thumbnail-image img {
  width: 100%;
  max-width: 395px;
  height: auto;
  margin: 0 0 20px 0;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #bfc1c4;
  border-radius: 15px;
}


.articles-widgets {
  width: 240px;
  flex: 0 0 240px;
  order: 1;
  align-self: flex-start;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .articles-wrapper {
    width: 100%;
    padding: 0 15px;
    flex-direction: column;
    box-sizing: border-box;
  }

  .articles-content {
    gap: 30px;
  }

  .post,
  .page,
  .article-item {
    width: 100%;
    flex-basis: 100%;
  }

  .widget-area,
  .custom-sidebar {
    width: 100%;
    order: 2;
  }

  .articles-widgets {
    width: 100%;
    flex-basis: auto;
    order: 1;
  }

  header {
    height: auto;
    flex-direction: column-reverse;
  }
}

.page-header {
  width: 100%;
  margin-bottom: 30px;
  flex-basis: 100%;
}


/* ========================================================================
   A La Cart Sections
   ======================================================================== */

.full {
  width: 90%;
  min-width: 0;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  padding: 20px;
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
}


/* Two 50% width Boxes
-------------------------------------------------------------- */

.even-container {
  margin: 20px 0 20px 0;
  display: flex;
  column-gap: 20px;
}

.even-box {
  margin: 20px 0 20px 0;
  flex: 1;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .even-container {
    width: 100%;
    gap: 20px;
    flex-direction: column;
  }

  .even-box {
    width: 100%;
  }
}


/* Three 33% width Boxes
-------------------------------------------------------------- */

.thirds-container {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
}

.thirds-box {
  width: calc(33.33% - 20px);
  margin: 20px 0 20px 0;
  overflow-wrap: break-word;
  border: none;
}

@media (max-width: 768px) {
  section.thirds-container {
    width: 100%;
    gap: 20px;
    flex-direction: column;
  }

  .thirds-box {
    width: 100%;
  }
}


/* Two boxes, 33% on left, 66% on right
-------------------------------------------------------------- */

.onethirdleft-container {
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: space-between;
  gap: var(--gap, 20px);
}

.onethirdleft-box-left {
  max-width: 33%;
  margin: 20px 0 20px 0;
  flex-basis: 33%;
  overflow-wrap: break-word;
}

.onethirdleft-box-right {
  max-width: 66%;
  margin: 20px 0 20px 0;
  flex-basis: 66%;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .onethirdleft-container {
    width: 100%;
    flex-direction: column;
  }

  .onethirdleft-box-left,
  .onethirdleft-box-right {
    max-width: 100%;
    flex-basis: auto;
  }
}


/* Two boxes, 66% on left, 33% on right
-------------------------------------------------------------- */

.twothirdsleft-container {
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: space-between;
  gap: var(--gap, 20px);
}

.twothirdsleft-box-left {
  min-width: 0;
  max-width: 66%;
  margin: 20px 0 20px 0;
  flex-basis: 66%;
  overflow-wrap: break-word;
}

.twothirdsleft-box-right {
  min-width: 0;
  max-width: 33%;
  margin: 20px 0 20px 0;
  flex-basis: 33%;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .twothirdsleft-container {
    width: 100%;
    flex-direction: column;
  }

  .twothirdsleft-box-left,
  .twothirdsleft-box-right {
    max-width: 100%;
    flex-basis: auto;
  }
}


/* ========================================================================
   Special Elements
   ======================================================================== */

#rounded_box {
  width: 246px;
  height: 47px;
  margin-bottom: 17px;
  padding-top: 8px;
  box-shadow: 0px 0px 20px #9f9f9f;
  border-radius: 0px 00px 40px 40px / 0px 0px 200px 200px;
  background-color: #ffffff;
}

.clear {
  width: 100%;
  height: 1px;
  clear: both;
}

.clearfooter {
  height: 80px;
  clear: both;
}

hr.thin {
  width: 80%;
  height: 1px;
  border: 0;
  background-color: #000000;
  color: #ffffff;
}

.call-now-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #B50003;
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.call-now-button:hover {
  background-color: #FA0000;
  color: #ffffff !important;
  text-decoration: none;
  text-shadow: none !important;
}

/* ========================================================================
   Image Control
   ======================================================================== */

.img_top_left {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 40px;
  float: right;
}

.img_mid_left {
  margin-top: 40px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 40px;
  float: right;
}

img {
  border: none;
}

.svg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Wordpress Specific
-------------------------------------------------------------- */

.alignright {
  float: right;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}


/* ========================================================================
   Text Styles
   ======================================================================== */

h1 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2rem;
  font-weight: 300;
	margin:0 0 30px 0;
	text-align:center;
  color: #000000;
}

h2 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  margin: 0px;
  color: #000000;
}

h3 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.675rem;
  font-weight: 300;
  color: #000000;
}

h4 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #000000;
}

h5 {
  font-family: verdana;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}

h6 {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin: 0px;
  color: #000000;
}

p {
  font-family: verdana;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.5em;
}

ul {
  font-family: verdana;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.5rem;
}

li {
  font-family: verdana;
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.5rem;
}

.entry-title {
  font-weight: bold;
}
.entry-content h2,
.entry-content h3 {
  font-weight: 600;
  margin-top: 20px;
}

.font_footer {
	font-family: verdana;
	font-size: 0.70rem;
	color: #68AEE0;
	line-height: 1em;
}

.link_footer {
  font-family: verdana;
  font-size: 0.7rem;
  font-weight: bold;
  margin: 0px;
  color: #ffffff;
}

.excerpt {
  font-size: 2rem;
}

.white {
  color: #ffffff;
}

.yellow {
  color: #eeff00;
}

.red {
  color: #ff0004;
}

.green {
  color: #00ff15;
}

blockquote {
  font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L","Times New Roman", serif;
  width: 60%;
  margin: 10px auto 10px auto;
  padding: 0.5em 20px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
  font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
  font-size: 4em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  content: open-quote;
  color: #ccc;
  line-height: 0.1em;
}

blockquote p {
  display: inline;
}

blockquote cite {
  font-size: 1.2rem;
  margin-top: 10px;
  display: block;
  color: #acacac;
}


/* Wordpress Specific Text Styles
-------------------------------------------------------------- */

.wp-caption-text {
  text-align: center;
}

.entry-utility {
  font-family: verdana;
  font-size: 0.8rem;
  color: #000000;
}

.entry-meta {
  font-family: verdana;
  font-size: 0.8rem;
  color: #000000;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  top: 10px;
  left: 10px;
  z-index: 1000;
  border: 1px solid black;
  background: white;
  padding: 10px;
}


/* ========================================================================
   Link Styles
   ======================================================================== */

a:link {
	color:#B50003;
	text-decoration:none;
}
a:visited {
	color:#B50003;
	text-decoration:none;
}
a:hover {
	color:#FA0000;
	text-decoration:none;
	text-shadow:1px 1px 2px black;
}
a:active {
	color:#B50003;
	text-decoration:none;
}



.nav-menu a:link {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
}
.nav-menu a:visited {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
}
.nav-menu a:hover {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
	color:#FA0000;
	text-decoration:none;
	text-shadow:1px 1px 2px black;
}
.nav-menu a:active {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
}
.active-nav-item a {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}






/* ========================================================================
   Wordpress Unique Styles
   ======================================================================== */



  /*========================================================================
  PAGINATION
  ========================================================================*/
.pagination {
  font-family: verdana;
  font-size: 12px;
  display: flex;
  justify-content: center;
  clear: both;
  padding: 30px 0;
}

.nav-links {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.pagination .nav-links {
  display: inline-flex;
  border: 1px solid #ddd;
}

.pagination .page-numbers {
  transition:
    background-color 0.2s,
    color 0.2s;
  margin: 0;
  border-right: 1px solid #ddd;
  background: #fff;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
}

.pagination .page-numbers:last-child {
  border-right: none;
}

.pagination a.page-numbers:hover {
  background: #f0f0f0;
  color: #000;
}

.pagination .page-numbers.current {
  cursor: default;
  background: #666;
  color: #fff;
}

.pagination .dots {
  border-right: 1px solid #ddd;
  background: #fff;
  padding: 8px 12px;
  color: #999;
}

/* ========================================================================
   Post Navigation
   ======================================================================== */

.post-navigation {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px 0;
  text-align: center;
}

.navigation.post-navigation {
  text-align: center;
}

.post-navigation > .nav-links {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  max-width: 320px;
  flex: 1;
  text-align: center;
}

.post-navigation a {
  font-family: verdana;
  padding: 0;
  display: inline-block;
  border: none;
  background: none;
  color: #555;
  text-decoration: none;
}

.post-navigation .nav-subtitle {
  font-family: verdana;
  font-size: 0.75em;
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #888;
}

.post-navigation .nav-title {
  font-family: verdana;
  font-size: 1em;
  margin-top: 4px;
  display: block;
}

.post-navigation a:hover .nav-title {
  color: #000000;
}


/* ========================================================================
   Comments
   ======================================================================== */
.comment-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.comment-list .comment {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.comment-author .avatar {
  margin-right: 15px;
  float: left;
  border-radius: 50%;
}

.comment-author .fn {
  font-family: verdana;
  font-style: normal;
  font-weight: bold;
}

.comment-meta {
  font-family: verdana;
  font-size: 0.8em;
  color: #888;
}

.comment-body {
  clear: both;
}

.comment-reply-link {
  font-family: verdana;
  font-size: 0.9em;
  margin-top: 10px;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 3px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
}

.comment-form label {
  font-family: verdana;
  margin-bottom: 5px;
  display: block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}

.comment-form .form-submit input {
  width: auto;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #000;
  color: #fff;
}

.bypostauthor {
  border: 1px solid #e3e3e3;
  background-color: #f5f5f5;
}


/* ========================================================================
   ACCESSIBILITY
   ======================================================================== */

.screen-reader-text {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  word-wrap: normal !important;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}


/*========================================================================
  SIDEBAR & WIDGETS
========================================================================*/

.widget-area,
.custom-sidebar {
  width: 240px;
  margin-bottom: 20px;
  padding: 20px;
  flex: 0 0 240px;
  order: 1;
  align-self: flex-start;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: whitesmoke;
}

.widget-title,
.wp-block-heading,
[class$="__label"] {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  color: #333;
  letter-spacing: 1px;
}

.widget-container,
.widget {
  padding-bottom: 20px;
}
.widget-area > p {
  margin-bottom: 18px;
}

.widget-area ul,
.widget-area ol,
.custom-sidebar-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.widget-area li,
.custom-sidebar-list li {
  margin-bottom: 8px;
  padding: 5px 0;
}
.widget-area li::before,
.custom-sidebar-list li::before {
  content: none;
}

.widget_nav_menu .menu,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul,
.widget-area-list,
.custom-sidebar-list {
  border-bottom: none;
}
.widget_nav_menu .menu > li,
.widget_meta ul > li,
.widget_pages ul > li,
.widget_recent_comments ul > li,
.widget_recent_entries ul > li,
.widget-area-list li,
.custom-sidebar-list li {
  padding: 4px 0;
  border-bottom: 1px solid #e2e2e2;
}
.widget_nav_menu .menu > li:last-child,
.widget_meta ul > li:last-child,
.widget_pages ul > li:last-child,
.widget_recent_comments ul > li:last-child,
.widget_recent_entries ul > li:last-child,
.widget-area-list li:last-child,
.custom-sidebar-list li:last-child {
  border-bottom: none;
}

.widget-area-list a,
.custom-sidebar-list a,
.archive_link a {
  color: #515050;
  text-decoration: none;
}
.widget-area-list a:hover,
.custom-sidebar-list a:hover,
.archive_link a:hover {
  color: #fa0000;
  text-shadow: 1px 1px 2px black;
}
.widget-area-list li.current-term a,
.custom-sidebar-list li.current-term a {
  font-weight: bold;
  color: #000;
}
.widget-area-term-count,
.custom-sidebar-term-count {
  font-size: 0.8rem;
  margin-left: 4px;
  color: #666;
}

.custom-sidebar-dropdown,
.widget-area-dropdown,
.widget_categories select,
.widget_archive select {
  font-size: 1em;
  width: 100%;
  min-width: 0;
  margin-bottom: 18px;
  padding: 8px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #222;
  transition: border-color 0.2s;
}
.custom-sidebar-dropdown:focus,
.widget-area-dropdown:focus,
.widget_categories select:focus,
.widget_archive select:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.25);
}

.custom-search-form,
.widget_search .search-form {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.custom-search-label,
.widget_search .search-form label {
  width: 100%;
  flex: 1;
  display: block;
}
.custom-search-field,
.widget_search .search-field {
  font-size: 1em;
  width: 100%;
  margin-bottom: 0;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.custom-search-submit,
.widget_search .search-submit {
  font-size: 1.3em;
  margin-left: -36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  color: #2c3e50;
}
.custom-search-submit:focus,
.widget_search .search-submit:focus {
  outline: none;
}
.custom-search-submit svg,
.widget_search .search-submit svg {
  width: 20px;
  height: 20px;
  fill: #2c3e50;
}


/* ========================================================================
   WordPress Core
   ======================================================================== */


.alignwide {
  margin-left: -100px;
  margin-right: -100px;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
    max-width: 100%;
}









/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000; 
    color: #ffffff !important; 
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-cta:hover,
.btn-cta:focus {
    background-color: #7c7c7c; /* A slightly darker gray for hover */
    color: #ffc600 !important; /* Yellow text for hover */
    text-shadow: none; /* Override default link hover */
    transform: translateY(-2px); /* Add a subtle lift effect */
}


/* ========================================================================
   WooCommerce
   ======================================================================== */

/* 										 Typography 									  */

.woocommerce,
.woocommerce-page {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
}

.woocommerce p,
.woocommerce label,
.woocommerce td,
.woocommerce th,
.woocommerce span,
.woocommerce li {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* 										 Buttons 									  */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: #ffffff !important;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover {
  background-color: #7c7c7c;
  color: #ffc600 !important;
  text-shadow: none;
  transform: translateY(-2px);
}

/* 										 Tables 									  */

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.woocommerce table.shop_table th {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  background-color: #343434;
  color: #ffffff;
  text-align: left;
}

.woocommerce table.shop_table td {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

/* 										 Forms 									  */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.woocommerce form .form-row label {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

/* 										 Cart 									  */

.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  max-width: 400px;
  float: right;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
}

.woocommerce .quantity .qty {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  width: 60px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
}

.woocommerce a.remove {
  color: #000000 !important;
  font-size: 1.2rem;
}

.woocommerce a.remove:hover {
  color: #ff0000 !important;
  background: none;
}

/* 										 My Account 									  */

.woocommerce-account .full {
  overflow: visible;
}

.woocommerce-account .entry-title {
  margin-bottom: 20px;
}

/* The shortcode outputs a wrapper div.woocommerce — make THAT the flex container */
.woocommerce-account .entry-content.woocommerce > .woocommerce {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.woocommerce-account .entry-content.woocommerce .woocommerce-MyAccount-navigation {
  max-width: none;
  float: none;
  flex: 0 0 200px;
  margin: 0 30px 20px 0;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
  float: none;
}

.woocommerce-MyAccount-navigation ul li a {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  display: block;
  padding: 10px 15px;
  margin: 0;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease;
  line-height: 1.5;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #343434;
  color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  flex: 1 1 0%;
  min-width: 0;
  float: none;
  width: auto;
  max-width: none;
  overflow: hidden;
}

/* 										 Notices 									  */

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  padding: 15px 20px;
  border-top: 3px solid #000000;
  background-color: #f6f5f5;
}

.woocommerce .woocommerce-message {
  border-top-color: #000000;
}

.woocommerce .woocommerce-info {
  border-top-color: #343434;
}

.woocommerce .woocommerce-error {
  border-top-color: #ff0000;
}

/* 										 Price 									  */


.woocommerce .price,
.woocommerce .amount,
.woocommerce span.price,
.woocommerce p.price {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  color: #000000;
  font-weight: bold;
}

/* Main single product price only (not thumbnails/related/upsell) */
.single-product .product .summary > .price .woocommerce-Price-amount.amount {
  font-size: 2rem !important;
  line-height: 1.05;
  color: #000;
  font-weight: bold;
  letter-spacing: -1px;
}

.woocommerce del .amount {
  color: #999999;
  font-weight: 200;
}

.woocommerce ins .amount {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

/* 										 Product Listing 									  */

.woocommerce ul.products li.product {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.woocommerce ul.products li.product > a:not(.button) {
  width: 100%;
}

.woocommerce ul.products li.product .star-rating {
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
  max-height: 3em;
}

/* Clip overflowing title text within the product link wrapper */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  border: 1px solid #eee;
  transition: opacity 0.3s ease;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  overflow: hidden;
}

.woocommerce ul.products li.product a img:hover {
  opacity: 0.85;
}

/* Price + Add to Cart joined bar */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product a.button.add_to_cart_button {
  height: 44px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0 18px;
}

.woocommerce ul.products li.product .price {
  flex: 1 1 0%;
  width: auto;
  background-color: #f6f5f5;
  border-radius: 10px 0 0 10px;
  text-align: left;
  margin: 0;
  float: none;
  clear: none;
}

.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product a.button.add_to_cart_button {
  flex: none;
  width: auto;
  background: #000;
  color: #fff !important;
  border-radius: 0 10px 10px 0;
  box-shadow: none;
  margin: 0;
  float: none;
  clear: none;
  border: none;
  transition: background 0.2s;
}

.woocommerce ul.products li.product .button.add_to_cart_button:hover,
.woocommerce ul.products li.product a.button.add_to_cart_button:hover {
  background: #7c7c7c;
  color: #ffc600 !important;
}

/* 										 Star Rating 									  */

.woocommerce .star-rating {
  color: #000000;
}

/* 										 Breadcrumb 									  */

.woocommerce .woocommerce-breadcrumb {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 0.85rem;
  font-weight: 200;
  color: #999999;
  margin-bottom: 20px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #343434;
}


/* 										 Mobile 									  */

@media (max-width: 768px) {

  /* My Account */
  .woocommerce-account .entry-content.woocommerce > .woocommerce {
    flex-direction: column;
  }

  .woocommerce-account .entry-content.woocommerce .woocommerce-MyAccount-navigation {
    width: 100%;
    float: none;
    flex: none;
    margin-right: 0;
    margin-bottom: 20px;
  }

  /* Cart */
  .woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    max-width: none;
    float: none;
  }

  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  /* Make the cart table horizontally scrollable on narrow screens */
  .woocommerce-cart .woocommerce-cart-form {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Checkout: stack billing details and order review */
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    float: none;
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  /* Single product: stack image and summary */
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary.entry-summary {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  /* Product loop: tighten the price+button bar for 2-column narrow cards */
  .woocommerce ul.products li.product .price,
  .woocommerce ul.products li.product .button.add_to_cart_button,
  .woocommerce ul.products li.product a.button.add_to_cart_button {
    height: 38px;
    font-size: 0.78rem;
    padding: 0 8px;
  }

  /* Increase tap target size for general WooCommerce buttons */
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    padding: 14px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  /* But keep the joined add-to-cart bar button auto-width */
  .woocommerce ul.products li.product .button.add_to_cart_button,
  .woocommerce ul.products li.product a.button.add_to_cart_button {
    width: auto;
    padding: 0 8px;
  }
}






/* Woocommerce template page layout Section */
/* Articles Section */



.woocommerce-wrapper {
    height:auto;
    width: min(90%, 1100px);
    margin:80px auto 65px auto;
    background-color:#ffffff;
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
}

.page-header.archive-header {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
}

.woocommerce-wrapper > .widget-area {
    flex: 0 0 240px;
    max-width: 240px;
    min-width: 180px;
    margin-bottom: 0;
    margin-right: 0;
}

.woocommerce-content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 80px;
    justify-content: space-around;
    flex-direction: row;
    box-sizing: border-box;
    order: 2;
    width: auto;
}

.woocommerce-item {
    flex: 0 0 calc(50% - 40px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .woocommerce-wrapper {
        flex-direction: column;
        width: 95%;
        gap: 0;
    }
    .woocommerce-wrapper > .widget-area {
        max-width: 100%;
        width: 100%;
        flex-basis: auto;
        margin-bottom: 30px;
    }
    .woocommerce-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        order: 2;
        gap: 20px;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        box-sizing: border-box;
    }
    .woocommerce-item {
        flex-basis: auto;
        width: 100%;
        max-width: 450px;
    }

    /* Constrain WooCommerce's native product grid */
    .woocommerce-content ul.products,
    .woocommerce-content .woocommerce ul.products {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Single-column product grid on mobile */
    .woocommerce-content ul.products li.product {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }

    /* Restore full bar sizing for single-column cards */
    .woocommerce-content ul.products li.product .price,
    .woocommerce-content ul.products li.product .button.add_to_cart_button,
    .woocommerce-content ul.products li.product a.button.add_to_cart_button {
        height: 44px;
        font-size: 1rem;
        padding: 0 18px;
    }
}

.ppc-button-wrapper {
    transform: scale(0.75);
    transform-origin: center center;
}

/* WooCommerce: product gallery thumbnails spacing */
.flex-control-thumbs {
    margin-top: 20px !important;
}
.flex-control-thumbs li {
    padding: 5px !important;
}

/* Related products: keep price + Add to Cart on same joined bar */
.related.products ul.products li.product .price,
.related.products ul.products li.product .button.add_to_cart_button,
.related.products ul.products li.product a.button.add_to_cart_button {
    padding: 0 10px;
    font-size: 0.85rem;
}



