/*
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * October 2026 by Evergreen Digital Presence
*/

/* colors
green
1D323B 56666C 8F999E C6CCCE E9EBEC
192B32 16262C 0F191E 070D0F 030506

tan
D9D5C8 E3E0D6 EDEBE4 F5F4F1 FCFBFA
B8B5AA A3A096 6D6B64 363532 161514
*/

/* Bootstrap screen sizes
https://getbootstrap.com/docs/5.3/layout/breakpoints/#core-concepts

xs: screens <576px
sm: screens ≥576px
md: screens ≥768px
lg: screens ≥992px
xl: screens ≥1200px
xxl: screens ≥1400px

customize breakpoints if desired:

$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
);
*/

/* google fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  background-color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 1em; /* 16px */
  margin-top: 68px; /* same as height in header */
}

a {
  color: #AD4200;
  text-decoration: underline;
}

a:hover {
  color: #D87B40;
}

a.anchor {
  display: block;
  position: relative;
  top: -25px;
  visibility: hidden;
}

/* ****************************************************** NAVIGATION ***/

/* notes
 * ms-auto on the html pages aligns nav-items to the right; remove this class to align left
 * if menu wraps to a second line, rename navbar-expand-md on the html pages to navbar-expand-lg
*/

.navbar {
  transition: background-color 0.5s ease; /* for smooth transition */
  font-size: .95em;
  background-color: #1D323B;
  color: #E9EBEC;
  border-bottom: 4px solid #E9EBEC;
  padding: 15px 0px 15px 0px;
}

.navbar .nav-link { /* overrides bs active link */
  --bs-navbar-active-color: #A0B6BF !important;
}

.navbar a,
.navbar a:focus { /* navbar links */
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center; /* caret */
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: #E9EBEC;
}

.navbar a i,
.navbar a:focus i { /* navbar offsite and search icons */
  margin-left: 0px;
  color: #E9EBEC;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a { /* navbar links hover and focus */
  color: #A0B6BF;
}

.navbar.scrolled { /* transition on scrolling */
  background-color: rgba(29, 50, 59, 0.8); /* semi-transparent background */
}

.navbar-toggler-icon { /* hamburger */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233, 235, 236, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {}

@media (min-width: 0px) {
  .navbar-brand {
    font-size: 1em;
  }
}

@media (min-width: 321px) {
  .navbar-brand {
    font-size: 1em;
  }
}

@media (min-width: 768px) {
  .navbar-brand {
  font-size: 1.2em;
  }
}

.dropdown-menu {
  top: 0;
  left: 100%;
  display: none;
  font-weight: normal;
  line-height: 32px;
  background-color: #E9EBEC;
  border: 1px solid #C6CCCE;
  border-radius: 4px;
}

.dropdown-menu a:hover,
.dropdown-menu .active,
.dropdown-menu .active:focus,
.dropdown-menu li:hover>a { /* dropdown links hover and focus */
  color: #1D323B;
  background-color: #C6CCCE;
}

.dropdown-menu .dropdown-item { /* dropdown menu items */
  font-size: 1em;
  color: #1D323B;
  padding: 0px 8px 0px 8px;
}

.dropdown-menu .dropdown-item:hover { /* dropdown menu items hover */
  background-color: #C6CCCE;
  color: #1D323B;
}

.nav-item.dropdown .dropdown-item:active { /* dropdown menu items active */
  background-color: #C6CCCE;
}

.dropdown-submenu { /* position of deep dropdown */
  position: relative;
}

.dropdown-submenu:hover .dropdown-menu { /* visibility of deep dropdown */
  display: block;
}

.dropdown-submenu .dropdown-menu { /* deep dropdown */
  font-size: .95em;
  left: 60%;
  min-width: 150px;
}

/* point caret to right (for a right-aligned submenu) */
.dropdown-submenu .dropdown-toggle::after {
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  vertical-align: 0; /* adjust vertical alignment if needed */
  margin-left: 0.255em;
  margin-right: 0;
  transform: rotate(0deg); /* reset rotation if needed */
} 

/* ****************************************************** SEARCH ***/

/* navigation search */

.search {
  font-size: 1em;
  padding-top: 8px;
  padding-bottom: 0px;
}

.search-dropdown {
   margin-left: -2px;
}
 
.search-button {
  width: 40px;
  font-size: 1.2em;
  text-align: center;
  padding: 4px 2px 2px 3px;
}

.search-box {
  position: relative;
  background-color: #AD4200;
  border: 1px solid #E9EBEC;    
}	

.search-box input, .search-box .btn {
  min-height: 38px;
  border-radius: 0px;
}

.input-group-append .btn, .input-group-append .btn:active {
  width: 120px !important;
}

.navbar .search-dropdown .dropdown-toggle::after {
  display: none;
}

.navbar .search-dropdown .dropdown-menu {
  width: 400px;
  left: auto;
  right: 0px;
  border-radius: 2px;
  font-size: 1em;
  padding: 20px;
}

@media (max-width: 600px) {
  .navbar .search-dropdown .dropdown-menu {
    width: 100%;
    margin: 0;
  }
}

.navbar .search-dropdown .dropdown-toggle::after {
  display: none;
}

/* search page box */

.search-sm {
  text-align: left;
  margin-top: 18px;
  margin-bottom: 12px;
}

.search-title {
  font-size: 1.2em;
}

.search-description {
  font-size: 1em;
  padding-top: 4px;
}

form.example input[type=text] {
  padding: 4px;
  font-size: 1em;
  float: left;
  width: 80%;
  border: 1px solid #C6CCCE;
  background: #EFF0F1;
}

form.example button {
  float: left;
  width: 20%;
  padding: 4px;
  background: #56666C;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: normal;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
  background: #1D323B;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}

/* ****************************************************** FOOTER ***/

#footer {
  font-size: .9em;
  font-weight: normal;
  background-color: #000000;
  color: #E9EBEC;
  margin-top: -20px;
  padding: 0px;
}

.footer-top {
  padding-top: 40px;
}

.footer-bottom {
  background-color: #082C3E;
}

.footer-menu {
  margin-bottom: 10px;
}

.footer-menu a {
  text-decoration: none;
  color: #E9EBEC;
}

.footer-menu a:hover {
  transition: 0.3s;
  color: #8F999E;
}

.footer-social-icons {}

.footer-social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 1px;
  background-color: #1D323B;
  color: #FAF7F3;
  margin: 4px 4px 20px 0px ;
  padding: 8px 0px;
}

.footer-social-icons a:hover {
  text-decoration: none;
  background-color: #577281;
  color: #FAF7F3;
}

.bxl-twitter-x:before { /* twitter x boxicon */
  content:"\1d54f"
}

.footer-contact {
  margin-bottom: 12px;
}

.footer-contact a {
  text-decoration: none;
  color: #E9EBEC;
}

.footer-contact a:hover {
  transition: 0.3s;
  color: #C6CCCE;
}

.footer-copyright {
  font-size: .85em;
  text-align: left;
  color: #E9EBEC;
  padding-top: 0px;
  padding-bottom: 20px;
}

.footer-copyright a {
  text-decoration: none;
  color: #E9EBEC;
}

.footer-copyright a:hover {
  transition: 0.3s;
  text-decoration: underline;
  color: #C6CCCE;
}

.footer-attribution-small {
  font-size: .85em;
  text-align: left;
  color: #E9EBEC;
  padding-top: 0px;
  padding-bottom: 20px;
}

.footer-attribution-large {
  font-size: .85em;
  text-align: right;
  color: #E9EBEC;
  padding-top: 0px;
  padding-bottom: 20px;
}

-------------------------------------------------------------------------
SITE-WIDE OR GENERAL STYLES
------------------------------------------------------------------------- 
*/

.container-fluid {
  width: 100%;
}

#main {
  width: 100%;
  margin-bottom: -16px;
}

#main a {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-weight: 400;
  font-size: 1.5em;
  color: #1E4356;
  margin-top: 28px;
  padding-bottom: 8px;
}

h2 {
  font-size: 1.3em;
  font-weight: 400;
  color: #1E4356;
}

h3 {
  font-size: 1.2em;
  font-weight: 400;
  color: #1E4356;
}

h4 {
  font-size: 1.1em;
  font-weight: 400;
  color: #1E4356;
}

.subtext-h1 {
  font-size: 1em;
  margin-top: -8px;
  padding-bottom: 18px;
}

.subtext-h2 {
  font-size: .9em;
  margin-top: -8px;
  padding-bottom: 18px;
}

.cursor {}

.cursor a {
  cursor: pointer;
}

.logo-tree { /* appears on home page */
  width: 16px;
  height: 38px;
}

.read-more-link {
  display: inline;
  font-size: .9em;
  text-transform: uppercase;
}

.read-more-link a {
  text-decoration: none;
}

.read-more-shop {
  display: inline;
  font-size: 1em;
  text-transform: uppercase;
  margin-right: 4px;
}

.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tip {
  cursor: pointer;
  border-bottom: 1px dotted #000000;
  color: #444444;
}

/* *********************************************************** COL01 ***/

#content-col1 {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* *********************************************************** COL02 ***/

#content-col2 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.col02-sidebox {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  margin: 30px 0px 30px 0px;
  padding: 30px;
}

.col02-sideBox-header {
  font-size: 1.15em;
  font-weight: 400;
  text-align: center;
  line-height: 1.35em;
  background-color: #1D323B;
  color: #FFFFFF;
  margin-top: 24px;
  padding: 8px;
}

.col02-sideBox-content {
  background-color: #E9EBEC;
  border: 1px solid #C6CCCE;
  padding: 12px 18px 12px 18px;;
}

.col02-sidebox-resources {
  font-size: .9em;
  padding-top: 2px;
}

/* ***************************************************** BLOCKQUOTES ***/

blockquote {
  font-size: 1.1em;
  padding: 8px 12px;
  margin-bottom: 10px;
}

blockquote p {
  font-size: .9em;
  line-height: 1.4em;
  color: #343434;
  margin: 0px;
}

blockquote.bg-rust-lg {
  font-size: 1.2em;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: 5px solid #AD4200;
  margin: 8px 6px 2px 12px;
}

blockquote.bg-rust-sm {
  font-size: 1.2em;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: 5px solid #AD4200;
  margin: 0px 12px -10px 12px; 
}

.gly-rotate-180 { /* rotates end quote */
  display: inline-block;
  transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* ************************************************************ FEATURES ***/

.feature-box {
  height: 100%;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding-bottom: 12px;
}

.feature-box-image {
  width: 100%;
  padding: 8px;
}

.feature-box:hover {
  background-color: #EFF0F1;
}

.feature-title {
  text-align: center;
  font-size: 1.2em;
  color: #404040;
  margin: 4px 18px 0px 18px;
}

.feature-details {
  text-align: center;
  font-size: 1em;
  color: #606060;
  margin: 4px 18px 0px 18px;
}

.feature-image {
  width: 100%;
  border: 1px solid #E9EBEC;
}

/* ******************************************************** SITE MAP ***/

.sitemap-submenu-title {}

.sitemap-submenu-title a {
  text-decoration: underline;
}

/* *************************************************** BOTTOM BORDER ***/

.bottom-border {
  margin-top: -22px;
}

/* ********************************************************* BULLETS ***/

ul.bullets {
  list-style-type: square;
  padding-top: 16px;
  padding-bottom: 4px;
  font-size: 1em;
}

ul.bullets li {
  padding-bottom: 4px;
  margin-left: -20px;
}

ul.bullets-none {
  list-style-type: none;
  margin-bottom: -2px;
  padding-top: 0px;
}

ul.bullets-none li {
  margin-left: -30px;
  padding-bottom: 8px;
}

ol.numbers {
  font-size: .9em;
}

ol.numbers li {
  padding-bottom: 8px;
}

/* ********************************************************** BUTTONS ***/

.button {
  display: inline;
  cursor: pointer;
  font-family: "Arial", sans-serif;
  font-size: .7em;
  text-align: center;
  background-color: #1D323B;
  background: -webkit-gradient(linear, left top, left bottom, from(#C6CCCE), to(#E9EBEC));
  background: -moz-linear-gradient(top, #C6CCCE, #E9EBEC);
  color: #56666C;
  border: 1px solid #8F999E;
  border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  margin: 0px 3px 6px 0px;
  padding: 5px 6px 4px 6px;
  }

.button:hover {
  background-color: #C6CCCE;
  color: #444444;
}

.button-close {
  display: inline;
  cursor: pointer;
  font-family: "Arial", sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  background-color: #E9EBEC;
  color: #56666C;
  border: 1px solid #8F999E;
  border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  margin: 0px 3px 0px 0px;
  padding: 0px 8px 0px 8px;
}

.button-close:hover {
  text-decoration: none;
  color: #8F999E;
  border: 1px solid rgba(29,50,59,0.49);
}

.button-top {
  margin-top: -2px;
}

#backBtn {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  right: 15px;
  bottom: 15px;
  z-index: 99;
  background-color: #8F999E;
  color: #1D323B;
  border: 1px solid #8F999E;
  border-radius: 4px;
  cursor: pointer;
}

#backBtn i {
  font-size: 32px;
  line-height: 0em;
}

#backBtn:hover {
  background-color: #C6CCCE;
}

#backBtn.active {
  visibility: visible;
  opacity: 1;
  color: #1D323B;
}

/* ********************************************************** FOCUS ***/

/* links, buttons, and form controls are focusable by default; this provides the color and outline */

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {   
outline: 2px solid #8F999E;
box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49); /* https://cssbud.com/css-generator/css-glow-generator */
  -webkit-box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49);
  -moz-box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49);
}

.button:focus,
.button-close:focus,
.uneditable-input:focus {   
  outline: 2px solid #8F999E;
  box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49); /* https://cssbud.com/css-generator/css-glow-generator */
    -webkit-box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49);
    -moz-box-shadow: 0px 0px 2px 2px rgba(29,50,59,0.49);
}

/* ********************************************************* GALLERY ***/

.gallery-wrapper {
  margin-left: -12px;
  margin-right: -12px;
}

.gallery-wrapper .card {
  position: relative;
  font-size: .9em;
  text-align: center;
  color: #FFFFFF;
  border: none;
}

.gallery-image {
  position: relative;
  border-radius: 0px;
  font-size: .9em;
  text-align: center;
  color: #FFFFFF;
}

.gallery-box .cursor {
  cursor: pointer;
}

.product-box {
  height: 100%;
}

.product-box-image {
  border-radius: 4px;
  background-color: #EFF0F1;
  text-align: center;
}

.product-box-image:hover {
  background-color: #E9EBEC;
}

.product-image {
  width: 100%;
}

.product-title {
  text-align: center;
  font-size: 1.2em;
  color: #606060;
  margin: 14px 18px 0px 18px;
}

.product-details {
  text-align: center;
  font-size: 1em;
  color: #606060;
  margin: 2px 18px 0px 18px;
}

.view-website-center {
  text-align: center;
}

.view-website-left {
  text-align: left;
}

/* ******************************************************** IMAGES ***/

.img-thumbnail {
  border-radius: 0px;
}

.image-container-zoom {
  overflow: hidden; /* ensures the zoomed image stays within bounds */
  border: 1px solid #E9EBEC;
}

.image-container-zoom img {
  transition: transform 0.3s ease; /* smooth transition */
}

.image-container-zoom:hover img {
  transform: scale(1.1); /* zooms in by 10% */
}

.image-container {
  background-color: #1D323B; /* Your dark background color */
  position: relative;
  overflow: hidden;
}

.image-container img {
  opacity: 1;
  transition: opacity 1s;
}

.image-container:hover img {
  opacity: .9; /* Less opaque, more background shows through */
}

.image-border-e9 {
  border: 1px solid #E9EBEC;
}

.image-border-c6 {
  border: 1px solid #C6CCCE;
}

.image-border-8f {
  border: 1px solid #8F999E;
}

.image-border-rounded {
  border: 1px solid #E9EBEC;
  border-radius: 6px;
}

.image-border-e9-rounded {
  border: 1px solid #E9EBEC;
  border-radius: 6px;
}

.image-border-c6-rounded {
  border: 1px solid #C6CCCE;
  border-radius: 6px;
}

.image-border-8f-rounded {
  border: 1px solid #8F999E;
  border-radius: 6px;
}

.card {
  border: none;
}

.image-caption {
  font-size: 1.3em;
  font-weight: normal;
  color: #FFFFFF;
  margin-bottom: -20px;
}

.image-credit {
  font-size: .75em;
  text-align: left;
  color: #707070;
  margin: 6px 0px 6px 6px; 
}

.image-credit a {
  color: #CB4E00;
}

.text-overlay {
  position: absolute;
  width: 90%;
  opacity: 0.8;
  transform: translate(-50%, -10px);
  bottom: 0px;
  left: 50%;
  font-size: 1.1em;
  background-color: #1D323B;
  color: #FFFFFF;
  border-radius: 2px;
  padding: 4px;
}

.text-overlay a {
  color: #FFFFFF;
}

.text-overlay .detail-link {
  display: inline;
  color: #FFFFFF;
}

/* ********************************************************** MODALS ***/

.modal-content {}

.modal-header {
  justify-content: space-between;
}

.modal-title {
  text-align: center;
  font-size: 1.1em;
  color: #1D323B;
  margin-top: 0px;
  margin-bottom: 0px;
}

.modal-title a {
  text-decoration: none;
}

h2.modal-title {
  font-size: 1.3em;
}
 
.modal-box {
  height: 100%;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  border: 1px solid #E9EBEC;
  margin-bottom: 0px;
  padding-bottom: 12px;
}

.modal-box-image {
  width: 100%;
  border-radius: 0px;
  padding: 8px;
}

.modal-box:hover {
  background-color: #EFF0F1;
}

.modal-img-top {
  width: 100%;
}

.modal-body-scrollable {
  max-height: 70vh;
  overflow-y: auto;
}

.modal { /* transition the modal into the page */
  transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out; /* Adjust '1s' for desired speed */
    -moz-transition: all .3s ease-in-out;
}

.modal-description {
  margin-top: 12px;
  font-size: .9em;
}

.auto-modal .modal-body {
  height: 70vh;
  margin-top: 12px;
}

.auto-modal .modal-body > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* ********************************************************* SERVICES ***/

.services-image {
  width: 100%;
}

.tags {
  margin-bottom: -30px;
}

.tags ul {
  list-style: none;
  padding: 0px;
}

.tags ul li {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px 2px 8px;
  border: 1px solid #C6CCCE;
  border-radius: 2px;
  background-color: #E9EBEC;
  color: #56666C;
  margin-right: 3px;
  margin-bottom: 6px;
}

.tags ul a {
  color: #192B32;
  transition: 0.3s;
}

.tags ul a:hover {
  color: #070D0F;
}

/* ********************************************************* SPACERS ***/

.spacer01 {
  padding-top: 24px;
}

.spacer02 {
  padding-top: 18px;
}

.spacer03 { /* md */
  padding-top: 12px;
}

.spacer04 { /* sm */
  padding-top: 8px;
}

.spacer05 { /* ex sm */
  padding-top: 4px;
}

.spacer06 { /* ex sm */
  padding-top: 0px;
}




