

body {
  font-family: 'Calibri', 'Helvetica', 'Arial', sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

.main-column-div  {
  display: flex; 
  flex-direction: column;
  align-items: center;
}

.main-column-div {
  width: 100%;
  margin: auto;
}

.stuff-to-hide-for-now-div, .hide-this {
  display: none !important;
}

.bold-text {
  font-weight: bold;
}

.light-gray-border {
  border-bottom: 1px solid #b3b2b2;
  border-top: 0px;
  width: 100%;
}

.underlined {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}



.website-header {
  height: 60px;
  background-color: #343434;
  display: flex;
  justify-content: space-between;
}

.website-header   a   {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Montserrat';
}

.user-account-link {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Montserrat';
  text-decoration: underline;
  cursor: pointer;
}

.header-div-left {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 10px;
}

.header-div-right {
  display: flex;
  align-items: center;
  margin-right: 40px;
  gap: 32px;
}

.website-header-logo-image {
  height: 80px;
}

.website-header-company-name {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat';
}

.clickable-header-item-left {
  text-decoration: none;
  color: inherit;
}

.boldest-text {
  font-weight: 900;
}



.website-footer {
  /* height: 60px; */
  background-color: #343434;
  display: flex;
  flex-direction: column;
  /* padding-left: 24px;
  padding-right: 24px; */
  padding-top: 18px;
}

.website-footer   a   {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Montserrat';
}

.footer-section-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid gray;
  padding-bottom: 20px;
}

.footer-section-left {
  display: flex;
  flex-direction: column;
  width: 33.33%;
}

.footer-text-1 {
  color: white;
  margin-left: 30px;
  font-size: 16px;
}

.footer-section-right {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
  gap: 32px;
  width: 66.66%;
}

.footer-section-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 36px;
  margin-bottom: 50px;
}

.footer-section-bottom-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-section-div-for-layout {
  display: flex;
  flex-direction: row;
  width: 25%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  margin-left: 30px;
}

.right-section-div-for-layout {
  display: flex;
  justify-content: center;
  width: 75%;
}

.footer-section-bottom-2 {
  display: flex;
  flex-direction: row;
  border-top: 1px solid gray;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: center;
}

.footer-product-summary-div {
  display: flex;
  justify-content: center;
  width: 75%;
}

.footer-product-summary {
  /* margin-top: 36px; */
  /* margin-bottom: 36px; */
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 64px;
  margin-left: 30px;
  color: #e3e3e3;
  text-align: justify;
  font-size: 16px;
}

.footer-product-summary-2 {
  margin-top: 32px;
  margin-bottom: 40px;
  margin-right: 64px;
  margin-left: 30px;
  color: #e3e3e3;
  text-align: justify;
  font-weight: 400;
}

.footer-website-logo-div {
  display: flex;
  flex-direction: row;
  width: 25%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  margin-left: 30px;
}





/* v1 RESPONSIVE CSS ADJUSTMENTS */

/* Anything LARGER than the below items use the default CSS styling, specified above */

/* NOTE: My personal main computer is a 1920x1080 resolution, BUT has 120% custom scaling applied at the level of Windows.
This effectively means that the ACTUAL CSS viewport dimensions, as per Chrome Dev tools, are right around 1603 x 813px.
Thus, when I test on my screen resolution at this scaling, I'm basically testing at what a 1600px laptop at 100% scaling would see at 100% browser zoom. */




/* Larger laptops/desktops */
@media (max-width: 1600px) { /* My de-facto browser CSS resolution width is 1603px, so this is the cutoff for anything JUST smaller than my settings */

  .website-header-logo-image {
    height: 78px;
  }

  .website-header-company-name {
    font-size: 18px;
  }

  .website-header a, .website-footer a, .user-account-link {
    font-size: 11.5px;
  }
  
  .footer-text-1 {
    font-size: 15.5px;
  }

  .footer-product-summary {
    font-size: 15.5px;
  }

  .footer-section-resources  a {
    font-size: 14px;
  }

}




/* Normal laptops */
@media (max-width: 1440px) {

  .website-header-logo-image {
    height: 76px;
  }

  .website-header-company-name {
    font-size: 17px;
  }

  .website-header a, .website-footer a, .user-account-link {
    font-size: 11.0px;
  }
  
  .footer-text-1 {
    font-size: 15.0px;
  }

  .footer-product-summary {
    font-size: 15.0px;
  }

  .footer-section-resources  a {
    font-size: 13.5px;
  }

}




/* Smaller laptops / large tablets */
@media (max-width: 1280px) { 

  .website-header-logo-image {
    height: 74px;
  }

  .website-header-company-name {
    font-size: 16px;
  }

  .website-header a, .website-footer a, .user-account-link {
    font-size: 10.5px;
  }
  
  .footer-text-1 {
    font-size: 14.0px;
  }

  .footer-product-summary {
    font-size: 14.0px;
  }

  .footer-section-resources  a {
    font-size: 13.5px;
  }

}




/* Tablets portrait and smaller */
@media (max-width: 1024px) {

}

/* Mobile screens? */
@media (max-width: 768px) { 

}




.hamburger-button {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ececec;
  font-weight: 700;
  padding-left: 0px;
  padding-right: 0px;
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #343434;
  border: 1px solid #000000;
  width: 200px;
  z-index: 1000;
}

.mobile-menu a, .mobile-menu span {
  padding: 12px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  border-bottom: 1px solid #000000;
}

/* ===== NEW: mobile combined image defaults (hidden on desktop) ===== */
.mobile-company-image-link {
  display: none; /* shown only on mobile */
  min-width: 0;
  text-decoration: none;
}

.company-logo-and-name-image {
  display: block;
  width: 100%;      /* fill available width */
  height: auto;     /* keep aspect ratio */
  max-height: 44px; /* prevents it from getting huge; adjust */
  object-fit: contain;
}

.company-logo-and-name-image-footer {
  display: none;
  width: auto;
  padding-left: 16px;
  padding-right: 16px;
  max-height: 44px;
  object-fit: contain;
  margin-bottom: 30px;
}

/* Ensure dropdown anchors correctly to header */
.website-header {
  position: relative; /* IMPORTANT because .mobile-menu is position:absolute */
}





@media (max-width: 900px) {


}




/* ===== MOBILE STYLES ===== */
@media (max-width: 600px) {

  /* Hide desktop elements */
  .desktop-nav {
    display: none;
  }

  .header-div-left {
    display: none;
  }

  /* Turn header into 2-column row: image takes leftover space, hamburger fixed */
  .website-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 0px;
    padding-left: 10px;
  }

  /* Show the mobile image + hamburger */
  .mobile-company-image-link {
    display: block;
  }

  .hamburger-button {
    display: block;
  }

  /* Optional: make the hamburger easier to tap */
  .hamburger-button {
    padding-right: 10px;
    padding-left: 10px;
  }

  /* Keep dropdown aligned with hamburger area */
  .mobile-menu {
    top: 100%;   /* directly below header */
  }




  .footer-section-top {
    flex-direction: column;
  }

  .footer-section-left {
    text-align: center;
    width: 100%;
  }

  .footer-section-right {
    margin-right: 0px;
    margin-top: 30px;
    gap: 4px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-text-1 {
    margin-left: 0px;
    margin-top: 20px;
  }

  .footer-section-bottom {
    flex-direction: column;
  }

  .footer-website-logo-div {
    width: 100%;
    margin-left: 0px;
  }

  .footer-product-summary-div {
    width: 100%;
  }
  
  .footer-product-summary {
    margin-right: 30px;
    margin-left: 30px;
  }

  .footer-website-logo-div {
    display: none;
  }

  .company-logo-and-name-image-footer {
    display: block;
  }

}



.interactive-map-div {
    width: 90%;
    height: 650px;
    border-radius: 0px;
    overflow: hidden;
    background: #e5e7eb;
}