/*
Theme Name: theme_name
Theme URI: /wp-content/themes/theme_name/
Author: The Stem Group
Contributions By: Nnamdi Ubbaonu & Tylen Miller & Sacha 
Author URI: https://www.thestemgroup.com/
Description: This is the description for the theme.
Version: 7.0
License: Not for resale, personal use or useage by other parties but cleint.
License URI: http://www.thestemgroup.com
Tags: two-columns
Text Domain: blank


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: #000000;
}

#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;
  background-color: green;
}

.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;
  background-color: yellow;
  text-align: left;
}

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

#footer_c3 {
  min-width: 345px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  background-color: blue;
  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: auto;
  height: auto;
  margin: 10px 0 0 0;
  display: flex;
}


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

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

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: medium;
  margin-right: 20px;
}

.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 {
    width: 100%;
    margin: 0;
    padding: 0 0 0 0;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    flex-direction: column;
    background-color: gray;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    font-size: 1.4em;
    margin-bottom: 36px;
    text-align: center;
  }

  .logo {
    width: 80%;
    margin: 0 auto 40px auto;
  }

  .logo img {
    width: 100%;
    height: auto;
  }
}

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

  .nav-menu {
    width: 100%;
    justify-content: space-between;
  }
}


/* ========================================================================
   Banner
   ======================================================================== */

#banner {
  width: 100%;
  height: 500px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: #ff6b6b;
}

@media (max-width: 768px) {
  #banner {
    height: 300px;
  }
}

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


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

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

.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;
}

@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;
  }

  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;
  min-height: 500px;
  margin: 0 auto 40px auto;
  padding: 20px;
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  background-color: pink;
}


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

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

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

@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;
  background-color: blueviolet;
}

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

@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);
  background-color: yellow;
}

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

.onethirdleft-box-right {
  max-width: 66%;
  margin: 20px 0 20px 0;
  flex-basis: 66%;
  overflow-wrap: break-word;
  background-color: brown;
}
@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);
  background-color: purple;
}

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

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

@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;
}


/* ========================================================================
   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: verdana;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0px;
  color: #000000;
}

h2 {
  font-family: verdana;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0px;
  color: #000000;
}

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

h4 {
  font-family: verdana;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #000000;
}

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

h6 {
  font-family: verdana;
  font-size: 0.7rem;
  font-weight: normal;
  margin: 0px;
  color: #000000;
}

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

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

li {
  font-family: verdana;
  font-size: 0.75rem;
  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.7rem;
  color: #000000;
  line-height: 1rem;
}

.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: #ffffff;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  text-decoration: none;
}
a:active {
  color: #ffffff;
  text-decoration: none;
}



a.link-nav:link {
  font-family: verdana;
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
}
a.link-nav:visited {
  color: #000000;
  text-decoration: none;
}
a.link-nav:hover {
  color: #000000;
  text-decoration: none;
  text-shadow: 1px 1px 2px black;
}
a.link-nav:active {
  color: #000000;
  text-decoration: none;
}
.active-nav-item a {
  text-decoration: underline;
  text-underline-offset: 4px;
}



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



/* ========================================================================
   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;
  background-color: fuchsia;
}

.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: "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  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%;
}

