@charset "UTF-8";
/* The Roboto font looks like our Myriad Pro font used in our documents */
@import url("https://unpkg.com/normalize.css") layer(normalize);
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
@layer normalize, base, demo, flip, debug;
:root {
  --page-banner: url('images/page-banners/Home Page Manhole Banner.png');
}

main.page-about {
  --page-banner: url('../images/page-banners/About Page.png');
}

main.page-accessories {
  --page-banner: url('../images/page-banners/Accessories.png');
}

main.page-career {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-chargers {
  --page-banner: url('../images/page-banners/Chargers.png');
}

main.page-contactus {
  --page-banner: url('../images/page-banners/Contact Us.png');
}

main.page-cookies {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-csk {
  --page-banner: url('../images/page-banners/Confined Space Kits.png');
}

main.page-expos {
  --page-banner: url('../images/page-banners/Expos.png');
}

main.page-faq {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-gas-cylinders {
  --page-banner: url('../images/page-banners/Gas Cylinders.png');
}

main.page-glossary {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-hak {
  --page-banner: url('../images/page-banners/Hand Aspirator Kits.png');
}

main.page-ir-link {
  --page-banner: url('../images/page-banners/GCT IR Link.png');
}

main.page-mgc-detectors {
  --page-banner: url('../images/page-banners/MGC.png');
}

main.page-mgc {
  --page-banner: url('../images/page-banners/MGC.png');
}

main.page-mgc-dock {
  --page-banner: url('../images/page-banners/MGC Docks.png');
}

main.page-mgc-docks {
  --page-banner: url('../images/page-banners/MGC Docks.png');
}

main.page-mgc-probes {
  --page-banner: url('../images/page-banners/Hand Aspirator Kits.png');
}

main.page-patents {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-privacy {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-products {
  --page-banner: url('../images/page-banners/Product Categories.png');
}

main.page-resources {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-sgc-detectors {
  --page-banner: url('../images/page-banners/SGCs.png');
}

main.page-sgc {
  --page-banner: url('../images/page-banners/SGCs.png');
}

main.page-sgc-dock {
  --page-banner: url('../images/page-banners/SGC Docks.png');
}

main.page-warranty {
  --page-banner: url('../images/page-banners/Resources.png');
}

main.page-xp {
  --page-banner: url('../images/page-banners/MGC.png');
}

main.page-survey {
  --page-banner: url('../images/page-banners/survey.png');
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto, sans-serif";
  color: #007bff;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
.button:hover {
  background-color: rgb(0, 98.4, 204);
}

.card {
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #6c757d;
  border-radius: 4px;
}

.blink {
  color: white;
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.blink-red {
  color: red;
  animation: blinkred 1s linear infinite;
}

@keyframes blinkred {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.new-badge {
  color: white;
  background-color: red;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: bold;
  margin-left: 5px;
  animation: blink 1s linear infinite;
}

.information-widget {
  height: 0;
  transition: all 0.7s ease-in-out;
}

.information-widget[open] {
  height: auto;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #003057;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #ff7f30;
}

.nav {
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.nav .nav-top-line .top-menu {
  height: 2rem;
  min-width: 100%;
  background-color: #ff7f30;
  color: #003057;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1rem 0 0;
  margin: 0;
}
.nav .nav-top-line .top-menu a {
  color: #003057;
  background-color: #ff7f30;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.nav .nav-top-line .top-menu a:link, .nav .nav-top-line .top-menu a:visited {
  color: #003057;
  background-color: #ff7f30;
}
.nav .nav-top-line .top-menu a:hover {
  color: #ff7f30;
  background-color: #003057;
}
.nav .nav-top-line .top-menu a[data-current=true] {
  background-color: #003057;
  color: #ff7f30;
}
.nav .nav-top-line .top-menu a:active {
  color: #ff7f30;
  background-color: #003057;
}
.nav .nav-top-line .top-menu a img {
  height: 1rem;
  width: auto;
  margin: 0;
  vertical-align: middle;
}
.nav .nav-top-line .top-menu a img:hover {
  color: white;
}
.nav .nav-bottom-line .bottom-menu {
  height: 52px;
  min-width: 100%;
  background-color: #003057;
  color: white;
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}
.nav .nav-bottom-line .bottom-menu .logo {
  margin-right: auto;
}
.nav .nav-bottom-line .bottom-menu .logo img {
  height: 50px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
  padding-left: 5px;
  background-color: #003057;
}
.nav .nav-bottom-line .bottom-menu .right-menu {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul {
  list-style: none;
  background: #003057;
  margin: 0;
  padding: 0;
  display: flex;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li {
  display: inline-block;
  position: relative;
  height: 100%;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li.selected {
  background-color: #ff7f30;
  color: #003057;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li a {
  display: block;
  padding: 0 0.75rem;
  color: white;
  text-decoration: none;
  text-align: center;
  height: 100%;
  line-height: 52px;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li a:hover {
  background-color: rgba(255, 127, 48, 0.8);
  color: #003057;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li:hover ul.dropdown {
  display: block;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown {
  width: 100%;
  background: #003057;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  animation: growOut 300ms ease-in-out forwards;
  transform-origin: top center;
}
@keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown li {
  display: block;
  background-color: #003057;
  color: white;
  font-size: 0.75rem;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown li.selected {
  background-color: #ff7f30;
  color: #003057;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown li a {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown li a:hover {
  background-color: #ff7f30;
  color: #003057;
}
.nav .nav-bottom-line .bottom-menu .hamburger {
  display: none;
}
@media screen and (max-width: 765px) {
  .nav .nav-top-line .top-menu {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem;
    justify-content: center;
  }
  .nav .nav-top-line .top-menu a {
    margin: 0.25rem;
    font-size: 0.9rem;
  }
  .nav .nav-top-line .top-menu a img {
    height: 0.8rem;
  }
  .nav .nav-bottom-line .bottom-menu {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.5rem;
  }
  .nav .nav-bottom-line .bottom-menu .logo {
    margin-right: auto;
    margin-bottom: 0;
  }
  .nav .nav-bottom-line .bottom-menu .logo img {
    height: 40px;
    padding: 0;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    position: static;
    background: #003057;
    z-index: 998;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu.active {
    display: flex;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul {
    width: 100%;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul li {
    display: block;
    width: 100%;
    text-align: left;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul li a {
    padding: 0.5rem;
    line-height: normal;
    width: 100%;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul li.has-dropdown {
    position: relative;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown {
    position: static;
    width: 100%;
    animation: none;
    display: block;
  }
  .nav .nav-bottom-line .bottom-menu .right-menu ul li ul.dropdown li {
    font-size: 0.85rem;
    padding-left: 1rem;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger span {
    background: white;
    display: block;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    transition: all 0.3s ease;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger span:nth-child(1) {
    top: 0;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger span:nth-child(2) {
    top: 0;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger span:nth-child(3) {
    top: 0;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav .nav-bottom-line .bottom-menu .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
  }
}

.breadcrumbs {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: #6c757d;
}
.breadcrumbs li[aria-current=page] {
  color: #6c757d;
  font-weight: 500;
}
.breadcrumbs a {
  color: #003057;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  color: #ff7f30;
}

footer {
  width: 100%;
  background-color: #e9e9e9;
  padding-bottom: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
footer .footer-container {
  margin-left: 1rem;
  margin-right: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  padding-top: 1rem;
}
@media (width < 768px) {
  footer .footer-container {
    grid-template-columns: 1fr; /* Switch to a single column layout */
    grid-template-rows: auto; /* Adjust row height automatically */
  }
}
footer .footer-container .col-1 {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer-container .col-1 img {
  width: 90%;
  height: auto;
  margin: auto;
}
@media only screen and (width < 768px) {
  footer .footer-container .col-1 img {
    width: 60%;
    margin-bottom: 1.5rem;
  }
}
@media (width < 768px) {
  footer .footer-container .col-2 {
    margin-bottom: 1.5rem;
  }
}
footer .footer-container .col-2 .item2 {
  grid-column: 2;
  font-weight: bold;
  border-bottom: 1px solid #ff7f30;
  padding-top: 0;
}
footer .footer-container .col-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer .footer-container .col-2 ul {
  padding-top: 2rem;
  display: flex;
}
footer .footer-container .col-2 ul li {
  padding-right: 1rem;
}
footer .footer-container .col-2 ul li a img {
  height: 1.2rem;
  width: 1.2rem;
}
footer .footer-container .col-2 ul li a:hover {
  background: #ff7f30;
}
footer .footer-container .col-2 a.buttonClass {
  border-width: 1px;
  color: #003057;
  border: solid 1px #003057;
  border-radius: 28px;
  padding: 0.5rem 1rem;
  background: transparent;
  text-align: center;
}
footer .footer-container .col-2 a.buttonClass:hover {
  background: #ff7f30;
}
@media (width < 768px) {
  footer .footer-container .col-3 {
    margin-bottom: 1.5rem;
  }
}
footer .footer-container .col-3 .item3 {
  grid-column: 3;
  font-weight: bold;
  border-bottom: 1px solid #ff7f30;
  padding-top: 0;
}
footer .footer-container .col-3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-container .col-3 a {
  text-decoration: none;
  color: black;
}
footer .footer-container .col-3 a:hover {
  color: #003057;
}
@media (width < 768px) {
  footer .footer-container .col-4 {
    margin-bottom: 1.5rem;
  }
}
footer .footer-container .col-4 .item4 {
  grid-column: 4;
  font-weight: bold;
  border-bottom: 1px solid #ff7f30;
  padding-top: 0;
}
footer .footer-container .col-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-container .col-4 a {
  text-decoration: none;
  color: black;
}
footer .footer-container .col-4 a:hover {
  color: #003057;
}
footer .footer-container .col-5 .item5 {
  grid-column: 5;
  font-weight: bold;
  border-bottom: 1px solid #ff7f30;
  padding-top: 0;
}
footer .footer-container .col-5 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer-container .col-5 a {
  text-decoration: none;
  color: black;
}
footer .footer-container .col-5 a:hover {
  color: #003057;
}

.home-page-container .home-tag-line {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  color: #ff7f30;
  padding: 1rem 0;
}
.home-page-container .banner-container {
  display: flex;
  height: 428px;
  width: 100%;
  overflow: hidden;
}
.home-page-container .banner-container .video-container,
.home-page-container .banner-container .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: auto;
  background-color: #003057;
}
.home-page-container .banner-container .video-container {
  flex: 2;
}
.home-page-container .banner-container .image-container {
  flex: 3;
  position: relative;
  height: auto;
}
.home-page-container .banner-container .image-container .background-image {
  width: 100%;
  height: 100%;
  object-fit: fit;
}
.home-page-container .banner-container .image-container .text-overlay {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  padding: 0 clamp(5px, 2px + 0.8vw, 10px);
  width: 45%;
}
.home-page-container .banner-container .image-container .text-overlay p {
  font-size: clamp(0.6rem, 0.36rem + 1.22vw, 1.5rem);
  width: auto;
}
.home-page-container .banner-container .image-container .text-overlay a.buttonClass {
  font-size: clamp(0.6rem, 0.36rem + 1.22vw, 1.5rem);
  width: auto;
  height: auto;
  border-width: 1px;
  color: white;
  border: solid 1px white;
  border-radius: 28px;
  padding: 0.25rem 0.5rem;
  background: #ff7f30;
}
.home-page-container .banner-container .image-container .text-overlay a.buttonClass:hover {
  background: #003057;
}
.home-page-container .banner-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.home-page-container .banner-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (width < 768px) {
  .home-page-container .banner-container {
    flex-direction: column;
    height: auto;
  }
  .home-page-container .video-container {
    flex: none;
    height: auto;
  }
  .home-page-container .image-container {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .home-page-container .image-container .text-overlay p {
    font-size: 1.25rem;
    padding: 5px 5px;
    width: 100%;
  }
  .home-page-container .image-container .text-overlay div a.buttonClass {
    width: auto;
    border-width: 1px;
    color: white;
    border: solid 1px white;
    border-radius: 28px;
    padding: 0.5rem 0.5rem;
    background: #ff7f30;
  }
  .home-page-container .image-container .text-overlay div a.buttonClass:hover {
    background: #003057;
  }
}
.home-page-container .warranty-notice .animated-border-div {
  margin: 1rem auto;
  width: 70%;
  position: relative;
  box-sizing: border-box;
  padding: 1.3rem;
  background: linear-gradient(90deg, #003057, #ff7f30, #003057, #ff7f30, #003057);
  background-size: 200% 100%;
  animation: revolveBorder 4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Inner div for the white content area */
}
.home-page-container .warranty-notice .animated-border-div .content-inner {
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-page-container .warranty-notice .animated-border-div {
  /* Text styling */
}
.home-page-container .warranty-notice .animated-border-div span {
  padding: 0.8rem 1.2rem;
  color: black;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  overflow-wrap: anywhere; /* Allows wrapping at any point */
  min-width: 0; /* Ensures the span can shrink */
}
@keyframes revolveBorder {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
@media (max-width: 768px) {
  .home-page-container .warranty-notice .animated-border-div {
    width: 96%;
  }
}
@media (max-width: 600px) {
  .home-page-container .warranty-notice {
    /* Adjusted breakpoint to 600px */
  }
  .home-page-container .warranty-notice .animated-border-div span {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
    overflow-wrap: break-word; /* Breaks at word boundaries on small screens */
  }
}
.home-page-container .reliable {
  margin: 3rem 10% 1rem 10%;
}
@media screen and (max-width: 765px) {
  .home-page-container .reliable {
    margin: 3rem 0.5rem 1rem 0.5rem;
    width: 95%;
  }
}
.home-page-container .reliable .top-line {
  display: flex; /* Use flexbox for horizontal layout */
  align-items: center; /* Vertically center elements */
  justify-content: space-between;
  height: 1.5rem;
}
@media screen and (max-width: 765px) {
  .home-page-container .reliable .top-line .child-1 {
    width: 90%;
  }
}
.home-page-container .reliable .top-line .child-1 h3 {
  color: #003057;
  white-space: nowrap;
  margin-right: 2rem;
  font-weight: bold;
  font-size: 1.75rem;
}
@media screen and (max-width: 1024px) {
  .home-page-container .reliable .top-line .child-1 h3 {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 765px) {
  .home-page-container .reliable .top-line .child-1 h3 {
    font-size: 1.25rem;
    margin-right: 0;
  }
}
.home-page-container .reliable .top-line .child-2 {
  display: flex;
  align-items: center;
  flex: 1;
}
.home-page-container .reliable .top-line .child-2 hr {
  width: 100%;
  color: #003057;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 765px) {
  .home-page-container .reliable .top-line .child-2 {
    display: none;
  }
}
.home-page-container .reliable p {
  max-width: 100%;
  margin-top: 2rem;
}
.home-page-container .additional-info {
  width: 90%;
  margin: 0 auto;
  background-color: #003057;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 7rem;
}
@media (width < 765px) {
  .home-page-container .additional-info {
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    width: 80%;
  }
}
.home-page-container .additional-info .info-card {
  height: 100%;
  display: grid;
  gap: 2rem;
}
@media (width < 765px) {
  .home-page-container .additional-info .info-card {
    border-bottom: 1px solid #ff7f30;
    padding-bottom: 2rem;
  }
  .home-page-container .additional-info .info-card:first-child {
    margin-top: 3rem;
  }
  .home-page-container .additional-info .info-card:last-child {
    border: none;
  }
}
.home-page-container .additional-info .info-card .top-div {
  grid-row: 1;
  margin: 0 auto;
  height: 95px;
}
.home-page-container .additional-info .info-card .top-div .img {
  width: 94px;
  height: 94px;
  margin: 0 auto 1rem;
}
.home-page-container .additional-info .info-card .centered-div {
  grid-row: 2;
  align-self: center;
  max-width: auto;
  margin: 0 auto;
  height: auto;
}
.home-page-container .additional-info .info-card .centered-div p {
  font-size: 1.2rem;
  color: white;
  text-align: center;
}
.home-page-container .additional-info .info-card .bottom-div {
  grid-row: 3;
  margin: 0 auto;
}
.home-page-container .additional-info .info-card .bottom-div a.buttonClass {
  border-width: 1px;
  color: white;
  border: solid 1px white;
  border-radius: 28px;
  padding: 0.5rem 1rem;
  background: #ff7f30;
  white-space: nowrap; /* Prevents text from wrapping */
  display: inline-block;
  padding: 10px 20px; /* Adjust padding as needed */
  text-align: center;
  min-width: 120px; /* Ensures button maintains its width */
}
.home-page-container .additional-info .info-card .bottom-div a.buttonClass:hover {
  background: #003057;
}

.about-page-container .page-banner {
  height: 485vw;
  max-height: 485px; /* Limit the maximum height to 485px */
  width: 100vw;
  background-image: var(--page-banner);
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
}
.about-page-container .page-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 40vw;
  color: white;
  text-align: left;
  margin-bottom: 2rem;
  margin-left: 1rem;
}
.about-page-container .page-banner .banner-text .top-div {
  font-size: clamp(1.25rem, 1.09rem + 2.03vw, 3rem);
  font-weight: bolder;
  text-align: left;
}
.about-page-container .page-banner .banner-text .bottom-div {
  font-size: clamp(1rem, 0.36rem + 1.25vw, 2rem);
  font-weight: normal;
  line-height: 1.2;
  max-width: 100%; /* Prevent it from overflowing the container width */
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.about-page-container .about-body {
  margin: 3rem auto;
  padding: 0 0.8rem;
  min-width: 320px;
}
@media screen and (width <= 600px) {
  .about-page-container .about-body {
    width: 95%;
  }
}
@media screen and (width > 600px) {
  .about-page-container .about-body {
    width: 80%;
  }
}
@media screen and (width > 1000px) {
  .about-page-container .about-body {
    width: 70%;
  }
}
@media screen and (width > 1300px) {
  .about-page-container .about-body {
    width: 55%;
  }
}
.about-page-container .about-body .top-line {
  display: flex; /* Use flexbox for horizontal layout */
  align-items: center; /* Vertically center elements */
  justify-content: space-between;
  height: 1.5rem;
  font-size: 1.5vw;
}
.about-page-container .about-body .top-line .child-1 h2 {
  white-space: nowrap;
  color: #003057;
  margin-right: 0.8rem; /* Add spacing between h2 and bar */
  font-size: clamp(0.8rem, 0.36rem + 1.25vw, 1.5rem);
}
.about-page-container .about-body .top-line .child-2 {
  display: flex;
  align-items: center;
  flex: 1;
  align-self: center;
}
.about-page-container .about-body .top-line .child-2 hr {
  width: 100%;
  color: #003057;
  margin-bottom: 0.5rem;
}
.about-page-container .about-body .top-line .child-3 img {
  height: auto;
  width: 6vw;
  align-items: end;
}
.about-page-container .about-body .about-text {
  width: clamp(60%, 200% - 20vw, 100%);
  max-width: clamp(60%, 200% - 20vw, 100%);
  margin: 1rem auto;
}
.about-page-container .about-body .about-text p {
  margin-top: 1rem;
  color: #003057;
  opacity: 0.8;
  font-weight: 500;
  max-width: 100%;
}
.about-page-container .about-body .about-text p span {
  color: #003057;
  font-weight: bold;
}
.about-page-container .about-body .about-text p a {
  color: #003057;
  font-weight: bold;
}
.about-page-container .about-body .sponsor {
  width: 100%;
  margin: 3rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-content: normal;
  justify-content: center;
  color: #003057;
}
.about-page-container .about-body .sponsor img {
  max-width: 200px;
  height: auto;
}
.about-page-container .about-body .sponsor .sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.about-page-container .about-body .sponsor .sponsor-text {
  text-align: center;
  margin-top: 1rem;
}

.cookies-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .cookies-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.cookies-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.cookies-page-container .big-page-container {
  min-width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .cookies-page-container .big-page-container {
    min-width: 100%;
    padding: 0.5rem;
  }
}
.cookies-page-container .big-page-container h1 {
  font-size: 2rem;
  margin-bottom: 0;
  color: #003057;
}
.cookies-page-container .big-page-container h3 {
  font-size: 1.5rem;
  color: #003057;
  margin-bottom: 0;
  margin-top: 2rem;
}

.contactus-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .contactus-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.contactus-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
  color: #003057;
}
.contactus-page-container .big-page-container {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 765px) {
  .contactus-page-container .big-page-container {
    width: 98%;
  }
}
.contactus-page-container .big-page-container .info {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #ff7f30;
}
.contactus-page-container .big-page-container .line {
  margin: 1rem 0;
  border-width: 100%;
  border: solid 1.5px #003057;
}
.contactus-page-container .big-page-container .contact-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 765px) {
  .contactus-page-container .big-page-container .contact-info {
    grid-template-columns: 1fr;
  }
}
.contactus-page-container .big-page-container .holidays-container .header {
  width: 100%;
  background-color: #ff7f30;
  color: white;
  font-size: 1.2rem;
  padding-left: 0.5rem;
}
.contactus-page-container .big-page-container .holidays-container .holidays-table {
  width: 100%;
}
.contactus-page-container .big-page-container .holidays-container .holidays-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.contactus-page-container .big-page-container .holidays-container .holidays-table tbody td:first-child {
  width: 30%;
  padding-left: 1rem;
}
@media screen and (max-width: 765px) {
  .contactus-page-container .big-page-container .holidays-container .holidays-table tbody td:first-child {
    width: 60%;
  }
}

.patents-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .patents-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.patents-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.patents-page-container .big-page-container {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .patents-page-container .big-page-container {
    min-width: 100%;
    padding: 0.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .patents-page-container .big-page-container {
    min-width: 80%;
    padding: 0.5rem;
  }
}
.patents-page-container .big-page-container .heading {
  font-size: 2rem;
}
.patents-page-container .big-page-container .patent-table {
  width: 100%;
  margin: auto;
  border-collapse: collapse;
}
.patents-page-container .big-page-container .patent-table thead tr td {
  border: 1px solid #ccc;
  padding: 3px 0.5rem;
  margin: auto;
  background-color: #003057;
  color: white;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .patents-page-container .big-page-container .patent-table thead tr td {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .patents-page-container .big-page-container .patent-table thead tr td {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1300px) {
  .patents-page-container .big-page-container .patent-table thead tr td {
    font-size: 1.5rem;
  }
}
.patents-page-container .big-page-container .patent-table tbody .heading {
  background-color: lightgrey;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .patents-page-container .big-page-container .patent-table tbody .heading {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1024px) {
  .patents-page-container .big-page-container .patent-table tbody .heading {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1300px) {
  .patents-page-container .big-page-container .patent-table tbody .heading {
    font-size: 1.25rem;
  }
}
.patents-page-container .big-page-container .patent-table tbody td {
  border: 1px solid #ccc;
  padding: 3px 0.5rem;
}
.patents-page-container .big-page-container .patent-table tbody .space {
  padding-left: 2rem;
}

.cookies-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .cookies-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.cookies-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.cookies-page-container .big-page-container {
  width: 60%;
  margin: auto;
}
.cookies-page-container .big-page-container .heading {
  font-size: 2rem;
}
.cookies-page-container ul,
.cookies-page-container ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cookies-page-container .big-page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}
.cookies-page-container .heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cookies-page-container .policy-section {
  margin-bottom: 3rem;
}
.cookies-page-container .policy-section h2 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.cookies-page-container .policy-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}
.cookies-page-container .policy-section p strong {
  font-weight: bold;
}
.cookies-page-container ul.privacy-list {
  list-style: disc;
  margin-left: 2.25rem;
  margin-bottom: 1.5rem;
}
.cookies-page-container ul.privacy-list li {
  margin-bottom: 0.75rem;
  color: #333;
}
.cookies-page-container ul.privacy-list li::marker {
  color: #ff7f30;
}
.cookies-page-container ul.privacy-list li ul.privacy-list-sub {
  list-style: circle;
  margin-left: 2.25rem;
  margin-top: 0.5rem;
}
.cookies-page-container ul.privacy-list li ul.privacy-list-sub li::marker {
  color: rgb(255, 190.0724637681, 150);
}

.glossary-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .glossary-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.glossary-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.glossary-page-container .big-page-container {
  width: 80%;
  margin: auto;
}
.glossary-page-container .big-page-container .heading {
  font-size: 2rem;
}
.glossary-page-container .big-page-container .index {
  text-align: center;
  margin-bottom: 20px;
}
.glossary-page-container .big-page-container .index a {
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
  color: #007bff;
}
.glossary-page-container .big-page-container .index a:hover {
  text-decoration: underline;
}
.glossary-page-container .big-page-container .glossary {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.glossary-page-container .big-page-container .glossary-section {
  margin-bottom: 20px;
}
.glossary-page-container .big-page-container .glossary-section h2 {
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}
.glossary-page-container .big-page-container ul {
  list-style: none;
  padding: 0;
}
.glossary-page-container .big-page-container ul li {
  margin-bottom: 10px;
}
.glossary-page-container .big-page-container ul li strong {
  color: #000;
}

.faq-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .faq-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.faq-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.faq-page-container .big-page-container {
  width: 60%;
  margin: auto;
}
.faq-page-container .big-page-container .qandaH {
  background-color: #003057;
  color: white;
  text-align: center;
  font-size: 1.5rem;
}
.faq-page-container .big-page-container .panel-faq {
  margin-bottom: 10px;
}
.faq-page-container .big-page-container .panel-faq .qa-first-letter {
  font-size: 1.5rem;
}
.faq-page-container .big-page-container .panel-faq .question {
  background-color: #f2f2f2;
  padding: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.faq-page-container .big-page-container .panel-faq .question .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-page-container .big-page-container .panel-faq .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
}
.faq-page-container .big-page-container .panel-faq .answer ul {
  margin: 1em 0; /* Add spacing above and below the list */
  padding-left: 2em; /* Indent the list for numbers */
}
.faq-page-container .big-page-container .panel-faq .answer li {
  display: block; /* Ensure each list item is a block element */
  margin-bottom: 0.5em; /* Space between list items */
}
.faq-page-container .big-page-container .panel-faq {
  /* When the question is active (clicked) */
}
.faq-page-container .big-page-container .panel-faq .question.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.faq-page-container .big-page-container .panel-faq .question.active + .answer {
  max-height: 500px; /* Adjust based on your content */
  padding: 10px;
}

.accessories-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .accessories-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.accessories-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.accessories-page-container .product-cards {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (width < 960px) {
  .accessories-page-container .product-cards {
    margin: 0 auto;
    grid-template-columns: 1fr;
    width: 300px;
  }
}
.accessories-page-container .product-cards .product-card {
  border: 1px solid #003057;
  display: grid;
  grid-template-rows: 1fr auto; /* Top fills space, bottom stays fixed */
  height: 100%;
  box-sizing: border-box; /* Includes borders and padding in height calculations */
}
.accessories-page-container .product-cards .product-card a {
  color: white;
  text-align: center;
}
.accessories-page-container .product-cards .product-card .top-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensures it stretches fully */
  overflow: hidden; /* Prevents oversized content from breaking layout */
}
.accessories-page-container .product-cards .product-card .top-div img {
  height: auto;
  max-height: 100%; /* Keeps image within container height */
  width: auto; /* Maintains aspect ratio */
  max-width: 100%; /* Ensures image fits container width */
}
.accessories-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  height: 2rem;
  line-height: 2rem;
  box-sizing: border-box; /* Ensures it fits within the grid cell */
  margin-top: auto; /* Pushes it to the bottom of the .product-card */
}

.chargers-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .chargers-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.chargers-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.chargers-page-container .big-page-container {
  width: 76%;
  margin: 1rem auto 0;
}
.chargers-page-container .big-page-container .product-cards {
  background-color: #003057;
  border-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1500px) {
  .chargers-page-container .big-page-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 1000px) {
  .chargers-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.chargers-page-container .big-page-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.chargers-page-container .big-page-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.chargers-page-container .big-page-container .product-cards .product-card .img-div {
  width: auto; /* Same width as card-header */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.chargers-page-container .big-page-container .product-cards .product-card .img-div img {
  width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
  background-color: white;
}
.chargers-page-container .big-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.chargers-page-container .big-page-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}

.csk-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .csk-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.csk-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.csk-page-container .big-page-container {
  width: 76%;
  margin: 1rem auto 0;
}
.csk-page-container .big-page-container .product-cards {
  background-color: #003057;
  border-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1500px) {
  .csk-page-container .big-page-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 1000px) {
  .csk-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.csk-page-container .big-page-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.csk-page-container .big-page-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.csk-page-container .big-page-container .product-cards .product-card .img-div {
  width: auto; /* Same width as card-header */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.csk-page-container .big-page-container .product-cards .product-card .img-div img {
  width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
  background-color: white;
}
.csk-page-container .big-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.csk-page-container .big-page-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}
.csk-page-container .big-page-container .product-cards {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .csk-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

.gas-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .gas-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.gas-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.gas-page-container .big-gas-container .general-info {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 76%;
  margin: 1rem auto;
}
.gas-page-container .big-gas-container .general-info .heading {
  font-size: 2rem;
  font-weight: bold;
  color: #003057;
  margin-bottom: 1rem;
}
.gas-page-container .big-gas-container .general-info .info {
  font-size: 1.25rem;
}
.gas-page-container .big-gas-container {
  width: 76%;
  margin: 1rem auto 0;
}
.gas-page-container .big-gas-container .top-section {
  border-top-left-radius: 25px;
  background-color: lightgrey;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.gas-page-container .big-gas-container .top-section .gas-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  max-width: 600px;
  margin: auto;
}
.gas-page-container .big-gas-container .top-section .gas-item .gas-img-container {
  width: 150px;
  background-color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1.5rem;
}
.gas-page-container .big-gas-container .top-section .gas-item .gas-img-container img {
  max-width: 100%;
  height: auto;
  height: 217px;
  margin: auto;
}
.gas-page-container .big-gas-container .top-section .gas-item .description {
  display: flex;
  flex-direction: column;
}
.gas-page-container .big-gas-container .top-section .gas-item .description h3 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
  color: #003057;
}
.gas-page-container .big-gas-container .top-section .gas-item .description p {
  margin: 0;
  font-size: 0.8rem;
}
@media (width < 768px) {
  .gas-page-container .big-gas-container .top-section {
    flex-direction: column;
  }
  .gas-page-container .big-gas-container .top-section .gas-item {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .gas-page-container .big-gas-container .top-section .gas-item .gas-img-container {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.gas-page-container .big-gas-container .pre-cards-section {
  text-align: center;
  background-color: #003057;
  color: white;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
}
.gas-page-container .big-gas-container .pre-cards-section h2 {
  color: white;
  margin-bottom: 0;
}
.gas-page-container .big-gas-container .product-cards {
  background-color: #003057;
  border-bottom-right-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1250px) {
  .gas-page-container .big-gas-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 768px) {
  .gas-page-container .big-gas-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.gas-page-container .big-gas-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.gas-page-container .big-gas-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.gas-page-container .big-gas-container .product-cards .product-card .img-div {
  width: 100%; /* Same width as card-header */
  height: 260px;
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.gas-page-container .big-gas-container .product-cards .product-card .img-div img {
  max-width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
}
.gas-page-container .big-gas-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.gas-page-container .big-gas-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}

.hak-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .hak-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.hak-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.hak-page-container .big-page-container {
  width: 76%;
  margin: 1rem auto 0;
}
.hak-page-container .big-page-container .product-cards {
  background-color: #003057;
  border-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1500px) {
  .hak-page-container .big-page-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 1000px) {
  .hak-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.hak-page-container .big-page-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.hak-page-container .big-page-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.hak-page-container .big-page-container .product-cards .product-card .img-div {
  width: auto; /* Same width as card-header */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.hak-page-container .big-page-container .product-cards .product-card .img-div img {
  width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
  background-color: white;
}
.hak-page-container .big-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.hak-page-container .big-page-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}
.hak-page-container .big-page-container .product-cards {
  grid-template-columns: repeat(1, 1fr);
}
.hak-page-container .big-page-container .product-cards .product-card-button {
  border-radius: 15px;
  border-color: #ff7f30;
  padding: 5px;
}

.irLink-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .irLink-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.irLink-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.irLink-page-container .big-page-container {
  width: 76%;
  margin: 1rem auto 0;
}
.irLink-page-container .big-page-container .product-cards {
  background-color: #003057;
  border-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1500px) {
  .irLink-page-container .big-page-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 1000px) {
  .irLink-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.irLink-page-container .big-page-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.irLink-page-container .big-page-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.irLink-page-container .big-page-container .product-cards .product-card .img-div {
  width: auto; /* Same width as card-header */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.irLink-page-container .big-page-container .product-cards .product-card .img-div img {
  width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
  background-color: white;
}
.irLink-page-container .big-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.irLink-page-container .big-page-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}
.irLink-page-container .big-page-container .product-cards {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .irLink-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

.probes-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .probes-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.probes-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.probes-page-container .big-page-container {
  width: 76%;
  margin: 1rem auto 0;
}
.probes-page-container .big-page-container .product-cards {
  background-color: #003057;
  border-radius: 25px;
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
}
@media (width < 1500px) {
  .probes-page-container .big-page-container .product-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 1.5rem;
  }
}
@media (width < 1000px) {
  .probes-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 1.5rem;
  }
}
.probes-page-container .big-page-container .product-cards .product-card {
  width: 100%;
  display: flex;
  flex-direction: column; /* Ensures that the header, image, and bottom div stack vertically */
  align-items: center; /* Centers the card contents horizontally */
}
.probes-page-container .big-page-container .product-cards .product-card .card-header {
  text-align: center;
  background-color: #ff7f30;
  color: #003057;
  width: 100%; /* Ensure card-header takes up full width */
}
.probes-page-container .big-page-container .product-cards .product-card .img-div {
  width: auto; /* Same width as card-header */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  background-color: white;
}
.probes-page-container .big-page-container .product-cards .product-card .img-div img {
  width: 100%; /* Prevent the image from exceeding its container's width */
  max-height: 250px; /* Limit the height to 252px */
  object-fit: contain; /* Maintain aspect ratio */
  background-color: white;
}
.probes-page-container .big-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  width: 100%;
  text-align: left;
}
.probes-page-container .big-page-container .product-cards .product-card .bottom-div span.partno {
  color: #ff7f30;
}
.probes-page-container .big-page-container .product-cards {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .probes-page-container .big-page-container .product-cards {
    grid-template-columns: 1fr;
    align-items: center;
  }
}
.probes-page-container .big-page-container .product-cards .product-card .acc-container .left .accImage {
  background-color: white;
}

.products-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .products-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.products-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.products-page-container .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px); /* Each column is 300px */
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  align-items: stretch; /* Ensure all cards are the same height */
}
.products-page-container .product-cards a {
  display: block; /* Ensure the anchor behaves like a block element */
  text-decoration: none; /* Remove underline from the entire clickable card */
  height: 100%; /* Ensures the anchor covers the full height of the card */
}
.products-page-container .product-cards .product-card {
  width: 300px; /* Card width */
  border: 1px solid #003057;
  display: flex;
  flex-direction: column;
  height: 100%; /* Make each card take up the full available height */
}
.products-page-container .product-cards .product-card .top-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1; /* Allow the top-div to grow and fill space equally */
}
.products-page-container .product-cards .product-card .top-div img {
  max-width: 100%;
  height: auto;
  max-height: 100%; /* Ensure image doesn't overflow or shrink the card */
}
.products-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.products-page-container .product-cards .product-card .bottom-div a {
  color: white;
  text-align: center;
}

.acc-container {
  border: 1px solid #ccc;
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
@media only screen and (width < 600px) {
  .acc-container {
    flex-direction: column;
  }
}
.acc-container .left {
  width: 50%;
  font-size: 0.8rem;
  border-right: 1px solid #ccc;
  padding-right: 10px;
}
@media only screen and (width < 1000px) {
  .acc-container .left {
    width: 100%;
    border: none;
    padding-right: 0;
    margin: auto;
  }
}
.acc-container .left .accImage {
  margin: 0.25rem auto;
  max-width: 161px;
  max-height: 161px;
}
.acc-container .left {
  text-align: center;
}
.acc-container .right {
  margin: 0.25rem;
  padding: 0.25ren;
  width: 50%;
}
@media only screen and (width < 600px) {
  .acc-container .right {
    width: 90%;
    margin: auto;
  }
}
.acc-container .right .accBanner {
  text-align: center;
  min-width: 100%;
  background-color: #003057;
  color: white;
}
.acc-container .right .accPartNumber {
  width: 100%;
  background-color: #ff7f30;
  color: #003057;
  text-align: center;
  font-size: 0.8rem;
}
.acc-container .right .accDesc {
  font-size: 0.9rem;
  padding: 0.5rem 0.5rem;
}

.gas-product-matrix {
  max-width: 1100px;
  margin: 3rem auto 1rem;
  padding: 0 1rem;
}
.gas-product-matrix h2 {
  color: #003057;
  text-align: center;
  margin-bottom: 0.25rem;
}
.gas-product-matrix__intro {
  text-align: center;
  color: #333;
  max-width: 60ch;
  margin: 0 auto 1.5rem;
}
.gas-product-matrix__scroll {
  overflow-x: auto;
}
.gas-product-matrix__table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid #003057;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.gas-product-matrix__table thead {
  background-color: #003057;
  color: white;
}
.gas-product-matrix__table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gas-product-matrix__table tbody tr {
  border-top: 1px solid rgba(0, 48, 87, 0.15);
}
.gas-product-matrix__table tbody tr:nth-child(even) {
  background-color: rgba(0, 48, 87, 0.03);
}
.gas-product-matrix__table .gas-cell {
  width: 28%;
  padding: 1rem;
  vertical-align: middle;
  text-align: left;
  border-right: 1px solid rgba(0, 48, 87, 0.15);
}
.gas-product-matrix__table .gas-cell .gas-name {
  display: block;
  font-weight: 700;
  color: #003057;
  font-size: 1.05rem;
}
.gas-product-matrix__table .gas-cell .gas-code {
  display: block;
  margin-top: 0.15rem;
  color: #ff7f30;
  font-weight: 700;
  font-size: 0.95rem;
}
.gas-product-matrix__table .product-cell {
  padding: 1rem;
  vertical-align: middle;
}
.gas-product-matrix .product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gas-product-matrix .product-pills li {
  margin: 0;
}
.gas-product-matrix .product-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  padding: 0.45rem 0.8rem;
  background-color: white;
  border: 1px solid #003057;
  border-radius: 4px;
  color: #003057;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.gas-product-matrix .product-pill__name {
  font-weight: 700;
  font-size: 0.95rem;
}
.gas-product-matrix .product-pill__partno {
  margin-top: 0.1rem;
  color: #ff7f30;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.gas-product-matrix .product-pill:hover, .gas-product-matrix .product-pill:focus {
  background-color: #003057;
  color: white;
  transform: translateY(-1px);
}
.gas-product-matrix .product-pill:hover .product-pill__partno, .gas-product-matrix .product-pill:focus .product-pill__partno {
  color: rgba(255, 127, 48, 0.8);
}
@media only screen and (width < 600px) {
  .gas-product-matrix {
    margin-top: 2rem;
  }
  .gas-product-matrix__table {
    border: none;
    box-shadow: none;
  }
  .gas-product-matrix__table thead {
    display: none;
  }
  .gas-product-matrix__table tbody tr {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(0, 48, 87, 0.2);
    border-radius: 4px;
    margin-bottom: 0.75rem;
  }
  .gas-product-matrix__table tbody tr:nth-child(even) {
    background: white;
  }
  .gas-product-matrix__table .gas-cell {
    display: block;
    width: 100%;
    padding: 0 0 0.5rem 0;
    margin-bottom: 0.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 48, 87, 0.15);
  }
  .gas-product-matrix__table .product-cell {
    display: block;
    padding: 0;
  }
}

.mgc-detectors-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .mgc-detectors-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.mgc-detectors-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.mgc-detectors-page-container .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.mgc-detectors-page-container .product-cards .product-card {
  border: 1px solid #003057;
  display: flex;
  flex-direction: column;
}
.mgc-detectors-page-container .product-cards .product-card .top-div {
  display: flex;
  flex-grow: 1; /* Takes up available space */
  justify-content: center;
  align-items: center;
}
.mgc-detectors-page-container .product-cards .product-card .top-div img {
  width: auto; /* Adjust the width as needed */
  height: 293px;
}
.mgc-detectors-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.mgc-detectors-page-container .product-cards .product-card .bottom-div a {
  color: white;
  text-align: center;
}

.mgc-docks-page-container {
  min-width: 445px;
}
.mgc-docks-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .mgc-docks-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.mgc-docks-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.mgc-docks-page-container .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.mgc-docks-page-container .product-cards .product-card {
  border: 1px solid #003057;
  display: flex;
  flex-direction: column;
}
.mgc-docks-page-container .product-cards .product-card .top-div {
  display: flex;
  flex-grow: 1; /* Takes up available space */
  justify-content: center;
  align-items: center;
}
.mgc-docks-page-container .product-cards .product-card .top-div img {
  width: auto; /* Adjust the width as needed */
  height: 293px;
}
.mgc-docks-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.mgc-docks-page-container .product-cards .product-card .bottom-div a {
  color: white;
  text-align: center;
}

.display-product-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .display-product-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.display-product-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.display-product-page-container .product-heading {
  color: #ff7f30;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  position: relative; /* This is needed for the ::after positioning */
}
.display-product-page-container .product-heading::after {
  content: ""; /* Required for ::after */
  display: block;
  width: 90%; /* 90% of the container width */
  margin: 0 auto; /* Center the line */
  border-bottom: 1px solid #003057; /* The solid line */
  margin-top: 0.3rem; /* Space between text and line */
}
@media (width > 767.95px) {
  .display-product-page-container .product-page-container {
    width: 92%;
  }
}
@media (width > 768px) and (width < 991.95px) {
  .display-product-page-container .product-page-container {
    width: 80%;
  }
}
@media (width > 992px) and (width < 1199.95px) {
  .display-product-page-container .product-page-container {
    width: 75%;
  }
}
@media (width > 1200px) and (width < 1399.95px) {
  .display-product-page-container .product-page-container {
    width: 70%;
  }
}
@media (width > 1400px) {
  .display-product-page-container .product-page-container {
    width: 65%;
  }
}
.display-product-page-container .product-page-container {
  margin: 1.5rem auto;
}
.display-product-page-container .product-page-container .product-section {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  grid-template-areas: "thumbs product-display misc-info";
  gap: 1.5rem;
}
@media (width < 768px) {
  .display-product-page-container .product-page-container .product-section {
    grid-template-columns: 1fr;
    grid-template-areas: "thumbs" "product-display" "misc-info";
  }
}
.display-product-page-container .product-page-container .product-section .product-display {
  grid-area: product-display;
  text-align: center;
}
.display-product-page-container .product-page-container .product-section .product-display h4 {
  text-align: center;
  font-size: 1.25rem;
  color: #003057;
}
.display-product-page-container .product-page-container .product-section .product-display .zoom-container {
  display: inline-block;
  overflow: hidden;
  cursor: zoom-in;
}
.display-product-page-container .product-page-container .product-section .product-display .zoom-container .prod-on-display {
  transition: transform 0.3s ease;
}
.display-product-page-container .product-page-container .product-section .product-display .prod-on-display {
  margin: 0 auto;
  height: 480px;
  width: auto;
}
.display-product-page-container .product-page-container .product-section .product-display .disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: #003057;
}
.display-product-page-container .product-page-container .product-section .thumbs {
  margin-top: 2rem;
  grid-area: thumbs;
  gap: 1rem;
  border-right: 1px #ccc solid;
}
.display-product-page-container .product-page-container .product-section .thumbs img {
  width: auto;
  height: 80px;
  margin: auto;
  padding: 5px;
}
.display-product-page-container .product-page-container .product-section .thumbs .prod-text {
  font-size: 0.7rem;
  text-align: center;
}
.display-product-page-container .product-page-container .product-section .misc-info {
  grid-area: misc-info;
}
.display-product-page-container .product-page-container .product-section .misc-info .special-notice {
  margin-bottom: 1rem;
}
.display-product-page-container .product-page-container .product-section .misc-info .special-notice h2 {
  margin-bottom: 0;
  padding: 0;
}
.display-product-page-container .product-page-container .product-section .misc-info h3 {
  margin-bottom: 0.25rem;
  color: #003057;
  font-family: sans-serif;
  font-size: 1.25rem;
}
.display-product-page-container .product-page-container .product-section .misc-info p {
  margin-top: 0.25rem;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details summary {
  background-color: #003057;
  color: white;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details summary::after {
  content: "▶";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details[open] summary::after {
  transform: rotate(90deg);
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article {
  background-color: white;
  color: #333;
  padding: 1rem;
  border: 1px solid #003057;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  /* Ensure padding and content are visible in the open state */
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article[open] {
  max-height: 300px; /* Adjust as needed */
  opacity: 1;
  padding: 1rem;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article {
  /* Additional content styling */
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article p {
  margin: 0.5rem 0;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}
.display-product-page-container .product-page-container .product-section .misc-info .accordion-wrapper details article li {
  margin-bottom: 0.25rem;
}

.sgc-detectors-page-container {
  min-width: 445px;
}
.sgc-detectors-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .sgc-detectors-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.sgc-detectors-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.sgc-detectors-page-container .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.sgc-detectors-page-container .product-cards .product-card {
  border: 1px solid #003057;
  display: flex;
  flex-direction: column;
}
.sgc-detectors-page-container .product-cards .product-card .top-div {
  display: flex;
  flex-grow: 1; /* Takes up available space */
  justify-content: center;
  align-items: center;
}
.sgc-detectors-page-container .product-cards .product-card .top-div img {
  width: auto; /* Adjust the width as needed */
  height: 293px;
}
.sgc-detectors-page-container .product-cards .product-card .bottom-div {
  background-color: #003057;
  color: white;
  font-weight: bold;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.sgc-detectors-page-container .product-cards .product-card .bottom-div a {
  color: white;
  text-align: center;
}

.resources-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .resources-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.resources-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.resources-page-container .big-resources-container {
  width: 90%;
  margin: 1rem auto 0;
}
.resources-page-container .big-resources-container .heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: #003057;
  margin-bottom: 1rem;
}
.resources-page-container .big-resources-container .prog-notices {
  width: 100%;
}
.resources-page-container .big-resources-container .prog-notices div {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: top;
}
.resources-page-container .big-resources-container .product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  padding: 16px;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 8px;
}
.resources-page-container .big-resources-container .product-cards .product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-header {
  background: #003057;
  color: white;
  padding: 8px;
  text-align: center;
  font-weight: bold;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body {
  display: flex;
  flex: 1;
  padding: 8px;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .left {
  flex: 1;
  max-width: 100px;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .left img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .right {
  flex: 2;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: top;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .right a {
  color: #003057;
  text-decoration: none;
  margin-bottom: 4px;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .right a:hover {
  background-color: #ff7f30;
  color: #003057;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .inline-elements {
  display: inline-flex; /* Aligns children inline with flexbox */
  align-items: center; /* Vertically centers icon and text */
  gap: 8px; /* Space between icon and text */
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .download-icon {
  display: inline; /* Ensure image is inline */
  vertical-align: middle; /* Align with text */
  width: 24px; /* Adjust size as needed */
  height: auto;
}
.resources-page-container .big-resources-container .product-cards .product-card .card-body .title-text {
  display: inline; /* Ensure text is inline */
  vertical-align: middle; /* Align with icon */
}
.resources-page-container .more-info {
  background-color: #f2f2f2;
  width: 90%;
  margin: auto;
  padding-bottom: 2rem;
}
.resources-page-container .more-info .heading {
  font-size: 2rem;
  color: #ff7f30;
  text-align: center;
  margin: 1.5rem 0;
}
.resources-page-container .more-info .panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}
@media screen and (width < 992px) {
  .resources-page-container .more-info .panels {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (width < 700px) {
  .resources-page-container .more-info .panels {
    grid-template-columns: 1fr;
  }
}
.resources-page-container .more-info .panels {
  gap: 2rem;
  align-items: center;
  justify-items: center;
  margin: 0 1.5rem;
}
.resources-page-container .more-info .panels .panel {
  background-color: #003057;
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  height: 200px;
}
.resources-page-container .more-info .panels .panel .left {
  width: 40%;
  padding: 1rem;
  color: white;
  align-items: center;
  align-content: center;
}
.resources-page-container .more-info .panels .panel .left img {
  max-height: 180px;
  padding: 1rem;
  background-color: white;
  border-radius: 10px;
  display: block;
}
.resources-page-container .more-info .panels .panel .right {
  width: 60%;
  padding: 1rem;
  color: white;
  font-size: 1.2rem;
  align-items: center;
  align-content: center;
}
.resources-page-container .more-info .panels .panel .right a {
  color: #ff7f30;
  text-decoration: none;
}
.resources-page-container .more-info .panels .panel .right a:hover {
  background-color: #ff7f30;
  color: white;
}
.resources-page-container .updates {
  width: 90%;
  margin: 1.5rem auto;
  padding-bottom: 2rem;
}
.resources-page-container .updates .patch-heading {
  font-size: 2rem;
}
.resources-page-container .updates table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  margin-bottom: 2rem;
}
.resources-page-container .updates table caption {
  background-color: #003057;
  color: white;
  line-height: 3rem;
  font-size: 2rem;
}
.resources-page-container .updates table th,
.resources-page-container .updates table td {
  padding: 8px 12px;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
  white-space: normal;
  word-wrap: break-word;
}
.resources-page-container .updates table th {
  background-color: #007bff;
  color: white;
}
.resources-page-container .updates table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}
@media (width < 768px) {
  .resources-page-container .updates table table {
    width: 100%;
    display: table;
  }
  .resources-page-container .updates table th,
  .resources-page-container .updates table td {
    display: table-cell;
  }
  .resources-page-container .updates table tr {
    display: table-row;
  }
}

.expos-page-container {
  min-width: 445px;
  text-align: center;
  margin: 0 auto;
}
.expos-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100vw;
  height: auto;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: pretty;
  /* Adjust the base size and viewport percentage as needed */
  font-size: calc(2rem + 2vw);
}
.expos-page-container .page-banner .expo-heading-second-line {
  margin: 0;
  font-size: 1.2rem;
  width: 65ch;
  text-wrap: pretty;
}
.expos-page-container .page-banner {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
@media screen and (max-width: 768px) {
  .expos-page-container .page-banner .bordered-text {
    padding: 0 0.5rem;
  }
}
.expos-page-container .page-banner .bordered-text {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
}
@media screen and (max-width: 768px) {
  .expos-page-container .page-banner .expo-heading-second-line {
    padding: 0 0.5rem;
  }
}
.expos-page-container .page-banner .expo-heading-second-line {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
}
.expos-page-container .page-banner p.headline {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0 auto;
}
@media (width < 768px) {
  .expos-page-container .page-banner p.headline {
    font-size: 5vw;
  }
}

.expo-container {
  margin-top: 1rem;
}
.expo-container[data-page=Home] {
  background-image: url("../images/home/lighted-buildings-near-body-of-water-3105242.png");
}
.expo-container[data-page=Expos] {
  background-image: none;
}
.expo-container[data-page=Home] .expo-cards {
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
}
@media screen and (max-width: 765px) {
  .expo-container[data-page=Home] .expo-cards {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }
}
.expo-container p.headline {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 auto;
  color: white;
}
.expo-container .explore-container {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border: 1px solid #ccc;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  overflow: hidden;
}
.expo-container .explore-container .explore-img {
  padding: 0;
  margin: 0;
  line-height: 0;
}
.expo-container .explore-container .explore-img img {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-top-left-radius: 25px;
}
.expo-container .explore-container .explore-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}
.expo-container .explore-container .explore-text-container .explore-heading {
  padding: 0 1rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #ff7f30;
  text-align: left;
}
.expo-container .explore-container .explore-text-container .explore-text {
  padding: 0 1rem;
  margin-top: 0.5rem;
  text-align: left;
  flex-grow: 1;
}
.expo-container .explore-container .explore-text-container .explore-button {
  padding: 0.5rem 1rem;
  border: 1px solid #003057;
  border-radius: 28px;
  background-color: #003057;
  color: white;
  width: fit-content;
  margin: 0 auto 1rem;
  text-align: center;
}
.expo-container .explore-container .explore-text-container .explore-button a {
  text-decoration: none;
  color: white;
}
.expo-container .explore-container .explore-text-container .explore-button:hover {
  background-color: #ff7f30;
  color: #003057;
}
.expo-container .expo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
}
.expo-container .expo-cards .expo-card .expo-card-hr {
  width: 90%;
  margin: 0 auto;
}
.expo-container .expo-cards .expo-card {
  display: grid;
  grid-template-rows: 80px 1fr auto;
  gap: 1rem;
  width: 100%;
  background-color: white;
  border-radius: 25px;
  border: 1px solid white;
}
.expo-container .expo-cards .expo-card[data-page=Expos] {
  border: 1px solid #003057;
}
.expo-container .expo-cards .expo-card[data-page=Home] {
  width: 300px;
  max-width: 100%;
}
.expo-container .expo-cards .expo-card .expo-card-image {
  width: 95%;
  min-height: 100px;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
.expo-container .expo-cards .expo-card .expo-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
}
.expo-container .expo-cards .expo-card .card-upper-info {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 4rem;
}
.expo-container .expo-cards .expo-card .card-upper-info .card-dates,
.expo-container .expo-cards .expo-card .card-upper-info .card-booth {
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.expo-container .expo-cards .expo-card .card-upper-info .card-dates div:first-child,
.expo-container .expo-cards .expo-card .card-upper-info .card-booth div:first-child {
  flex: 1;
  max-width: 33%;
  font-weight: bold;
}
.expo-container .expo-cards .expo-card .card-upper-info .card-dates div:first-child::after,
.expo-container .expo-cards .expo-card .card-upper-info .card-booth div:first-child::after {
  content: ":";
  margin-right: 0.5rem;
}
.expo-container .expo-cards .expo-card .card-upper-info .card-dates div:last-child,
.expo-container .expo-cards .expo-card .card-upper-info .card-booth div:last-child {
  flex: 2;
  max-width: 66%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.expo-container .expo-cards .expo-card .card-middle-info {
  padding: 0.5rem 1rem;
  height: 8rem;
}
.expo-container .expo-cards .expo-card .card-middle-info .card-location {
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.expo-container .expo-cards .expo-card .card-middle-info .card-location div:first-child {
  flex: 1;
  max-width: 33%;
  font-weight: bold;
}
.expo-container .expo-cards .expo-card .card-middle-info .card-location div:first-child::after {
  content: ":";
  margin-right: 0.5rem;
}
.expo-container .expo-cards .expo-card .card-middle-info .card-location div:last-child {
  flex: 2;
  max-width: 66%;
  text-align: left;
}
.expo-container .expo-cards .expo-card .card-lower-info {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
  height: 5rem;
  overflow: hidden;
}
.expo-container .expo-cards .expo-card .card-lower-info > div:first-child {
  flex: 1;
  max-width: 33%;
  font-weight: bold;
}
.expo-container .expo-cards .expo-card .card-lower-info > div:first-child::after {
  content: ":";
  margin-right: 0.5rem;
}
.expo-container .expo-cards .expo-card .card-lower-info > div:last-child {
  flex: 2;
  max-width: 66%;
}
.expo-container .expo-cards .expo-card .card-lower-info .times-container {
  width: 100%;
}
.expo-container .expo-cards .expo-card .card-lower-info .times-container .time-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: normal;
}
.expo-container .expo-cards .expo-card .card-lower-info .times-container .time-row .day {
  flex: 0 0 30px;
  text-align: left;
}
.expo-container .expo-cards .expo-card .card-lower-info .times-container .time-row .date {
  flex: 0 0 30px;
  text-align: center;
  margin-right: 1rem;
}
.expo-container .expo-cards .expo-card .card-lower-info .times-container .time-row .time-range {
  flex: 1;
  text-align: left;
}
.expo-container .expo-cards .expo-card .expo-card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
}
.expo-container .expo-cards .expo-card .expo-card-button a.buttonClass {
  width: 70%;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 100;
  color: orange;
  border: solid 1px #ff7f30;
  border-radius: 28px;
  background: white;
  margin-bottom: 1rem;
  white-space: nowrap;
  display: inline-block;
}
.expo-container .expo-cards .expo-card .expo-card-button a.buttonClass:hover {
  background: #003057;
  color: white;
}

@media screen and (max-width: 1024px) {
  .expo-container .expo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .expo-container .expo-cards {
    grid-template-columns: 1fr;
  }
}
.contactus-form {
  width: 90%;
}
@media screen and (max-width: 600px) {
  .contactus-form {
    width: 98%;
  }
}
.contactus-form {
  border: solid 1px #003057;
  margin: auto;
  padding-bottom: 1rem;
}
.contactus-form .header {
  text-align: center;
  color: #ff7f30;
  font-size: 2rem;
  margin: 1.2rem auto;
}
.contactus-form .sub-header {
  text-align: center;
  margin-bottom: 1.2rem;
  padding: 1rem 2rem;
}
.contactus-form .contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactus-form .contact-form .selectors {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 10px;
}
.contactus-form .contact-form .selectors label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
}
.contactus-form .contact-form .selectors label input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 50%;
  outline: none;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
}
.contactus-form .contact-form .selectors label input[type=radio]:checked {
  background-color: orange;
  border-color: orange;
}
.contactus-form .contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}
@media (width < 1000px) {
  .contactus-form .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.contactus-form .contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.contactus-form .contact-form input,
.contactus-form .contact-form select,
.contactus-form .contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.contactus-form .contact-form .multi-select {
  position: relative;
  width: 100%;
  max-width: 95%;
}
@media screen and (max-width: 600px) {
  .contactus-form .contact-form .multi-select {
    max-width: 93%;
  }
}
.contactus-form .contact-form .multi-select {
  margin: 0 1rem;
}
.contactus-form .contact-form .multi-select .select-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}
.contactus-form .contact-form .multi-select .options {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
}
.contactus-form .contact-form .multi-select .options label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 5px;
  cursor: pointer;
}
.contactus-form .contact-form .multi-select .options label input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.contactus-form .contact-form .multi-select:hover .options {
  display: block;
}
.contactus-form .contact-form .selected-items {
  margin: 0 1rem;
}
.contactus-form .contact-form .full-width {
  grid-column: span 2;
  margin: 0 1rem;
}
@media (width < 599px) {
  .contactus-form .contact-form .full-width {
    grid-column: span 1;
  }
}
.contactus-form .contact-form button {
  padding: 10px;
  margin: 0 1rem;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.contactus-form .contact-form button:hover {
  background-color: #0056b3;
}
.contactus-form .contact-form .inline-elements {
  margin: 0 1rem;
}
.contactus-form .contact-form .title-text {
  display: inline; /* Ensure text is inline */
  vertical-align: middle; /* Align with icon */
}
.contactus-form .contact-form #submitButton {
  padding: 10px 15px;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contactus-form .contact-form .sending {
  background-color: #ffc107; /* Yellow */
}
.contactus-form .contact-form .success {
  background-color: #28a745; /* Green */
}
.contactus-form .contact-form .error {
  background-color: #dc3545; /* Rose/Red */
}

.warranty-page-container {
  min-width: 445px;
}
.warranty-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .warranty-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.warranty-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
}
.warranty-page-container .big-page-container {
  width: 90%;
  min-width: 320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .warranty-page-container .big-page-container {
    grid-template-columns: 1fr;
  }
}
.warranty-page-container .big-page-container .warrantyPanel .newInfo {
  border: 1px solid #003057;
  padding: 1rem;
  background-color: lightyellow;
}
.warranty-page-container .big-page-container #warrantyForm fieldset {
  position: relative;
  border: 1px solid #ddd;
  padding: 0.5rem;
}
.warranty-page-container .big-page-container #warrantyForm fieldset legend {
  border: none;
  padding: 0 0.5rem;
}
.warranty-page-container .big-page-container #warrantyForm .form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 0.3rem;
}
.warranty-page-container .big-page-container #warrantyForm .form-row label {
  padding: 0.5em 1rem 0.5em 0;
}
.warranty-page-container .big-page-container #warrantyForm .form-row input:focus {
  border: 0.1em solid blue;
  box-shadow: 0.2rem blue;
}
.warranty-page-container .big-page-container #warrantyForm .form-row input,
.warranty-page-container .big-page-container #warrantyForm .form-row button {
  padding: 0.5rem;
}
.warranty-page-container .big-page-container #warrantyForm .warSubmit {
  position: relative;
  text-align: right;
}
.warranty-page-container .big-page-container #warrantyForm .warSubmit button {
  background: #003057;
  color: white;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  right: 0.5rem;
}
.warranty-page-container .big-page-container #warrantyForm .serialNumberMsg {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: red;
}
.warranty-page-container .big-page-container #warrantyReqForm {
  border: 1px solid #ccc;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable {
  min-width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable th {
  border: 1px solid #ccc;
  padding: 0.5rem;
  white-space: nowrap;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  min-width: 0;
  max-width: 300px;
  overflow-wrap: break-word;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  margin: auto;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td:nth-child(1) {
  max-width: 8rem;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td:nth-child(2) {
  max-width: 5rem;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td:nth-child(3) {
  max-width: 8rem;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable td:nth-child(4) {
  max-width: 400px;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container input:focus {
  border: 0.1em solid blue;
  box-shadow: 0.2rem blue;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container input {
  max-width: 100%;
  box-sizing: border-box;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container input,
.warranty-page-container .big-page-container #warrantyReqForm #results-container button {
  padding: 0.5rem;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container .child {
  width: 100%;
  margin: 0;
  padding: 0 0.4rem;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container .warGreen {
  border: 1px solid #003057;
  background: green;
  color: black;
  font-weight: bold;
  text-align: center;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container .warRed {
  border: 1px solid #003057;
  background: red;
  color: black;
  font-weight: bold;
  text-align: center;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container .warYellow {
  border: 1px solid #003057;
  background: yellow;
  color: black;
  font-weight: bold;
  text-align: center;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container .warNormal {
  border: 1px solid #003057;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container textarea {
  width: 100%;
  height: 3rem;
  max-width: 100%;
  box-sizing: border-box;
}
.warranty-page-container .big-page-container #warrantyReqForm #results-container textarea:focus {
  border: 0.1em solid blue;
  box-shadow: 0.2rem blue;
}
@media (max-width: 768px) {
  .warranty-page-container .big-page-container #warrantyReqForm #results-container #warrantyTable {
    display: block;
    overflow-x: auto;
  }
}
.warranty-page-container .big-page-container .form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 0.3rem;
}
.warranty-page-container .big-page-container .form-row label {
  padding: 0.5em 1rem 0.5em 0;
}
.warranty-page-container .big-page-container .form-row input:focus,
.warranty-page-container .big-page-container .form-row textarea:focus {
  border: 0.1em solid blue;
  box-shadow: 4px blue;
}
.warranty-page-container .big-page-container .form-row input,
.warranty-page-container .big-page-container .form-row button {
  padding: 0.5rem;
}
.warranty-page-container .big-page-container fieldset {
  position: relative;
  border: 0.1em solid #ddd;
  padding: 0.5rem;
}
.warranty-page-container .big-page-container fieldset legend {
  border: none;
  padding-left: 1rem;
  padding-right: 1rem;
}
.warranty-page-container .big-page-container .consent-warranty {
  display: inline-flex;
  gap: 1.5rem;
}
.warranty-page-container .big-page-container .consent-warranty label {
  align-content: center;
}
.warranty-page-container .big-page-container .consent-warranty input {
  padding-left: 1.5rem;
  text-align: left;
  align-content: center;
}
.warranty-page-container .big-page-container .warranty-buttons {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.warranty-page-container .big-page-container .warranty-buttons button {
  background: #003057;
  color: white;
  border: 0;
  border-radius: 0.5rem;
}

.career-page-container .page-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.career-page-container .page-banner .banner-heading {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  font-weight: bolder;
}
.career-page-container .page-banner .banner-text {
  color: #003057;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 0 3rem;
}
.career-page-container .big-page-container {
  margin: 1rem auto; /* Center the container */
  width: 90%; /* Default for ≤768px */
}
@media (min-width: 769px) {
  .career-page-container .big-page-container {
    width: 80%; /* For >768px */
  }
}
@media (min-width: 1025px) {
  .career-page-container .big-page-container {
    width: 60%; /* For >1024px */
  }
}
.career-page-container .big-page-container .top-article {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.career-page-container .big-page-container .top-article .pic {
  width: 40%;
}
.career-page-container .big-page-container .top-article .content {
  width: 60%;
}
.career-page-container .big-page-container .top-article .content p :first-child {
  color: #003057;
}
.career-page-container .big-page-container .top-article .content a.button {
  margin-top: 2rem;
}
.career-page-container .big-page-container .top-article .content a:link,
.career-page-container .big-page-container .top-article .content a:visited {
  background-color: #ff7f30;
  color: white;
  padding: 0.75rem;
  border-radius: 1rem;
}
.career-page-container .big-page-container .positions {
  color: #ff7f30;
  font-size: 2rem;
  margin: 1rem 0;
  font-weight: bold;
}
.career-page-container .big-page-container .panel-career {
  margin-bottom: 10px;
}
.career-page-container .big-page-container .panel-career .listing {
  background-color: #003057;
  color: white;
  padding: 10px;
  font-size: 1.5rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.career-page-container .big-page-container .panel-career .listing .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.career-page-container .big-page-container .panel-career {
  /* When the question is active (clicked) */
}
.career-page-container .big-page-container .panel-career .listing.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}
.career-page-container .big-page-container .panel-career .listing.active + .answer {
  max-height: 500px; /* Adjust based on your content */
  padding: 10px;
}
.career-page-container .big-page-container .panel-career .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
  background-color: #f2f2f2;
  border-radius: 0 0 10px 10px;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-heading {
  display: none;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-body .job-section {
  margin-bottom: 1rem;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-body .job-section-heading {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-body p span {
  font-weight: bold;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-body ul {
  margin-top: 0.25rem;
  margin-bottom: 0;
  margin-left: 1rem;
  list-style: disc;
  list-style-position: outside;
}
.career-page-container .big-page-container .panel-career .answer .panel .panel-body ul li {
  margin-left: 1.5rem;
}

.survey-page-container .page-banner {
  background-image: var(--page-banner);
  width: 100%;
  height: 220px;
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  /* Adjust the base size and viewport percentage as needed */
  font-size: clamp(1.5rem, 2rem + 1vw, 5rem);
}
@media screen and (max-width: 768px) {
  .survey-page-container .page-banner {
    padding: 0 0.5rem;
  }
}
.survey-page-container .page-banner {
  color: white;
  text-shadow: 1px 1px 0 black, -1px -1px 0 black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
}
.survey-page-container .survey-sent {
  width: 80%;
  margin: auto;
  border: #ccc solid 1px;
  text-align: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 2rem 0;
}
.survey-page-container .survey-sent .btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.survey-page-container .big-page-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.survey-page-container .big-page-container .survey-panel {
  background-color: #003057;
  border-radius: 8px;
  overflow: hidden;
}
.survey-page-container .big-page-container .survey-panel .survey-header {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}
.survey-page-container .big-page-container .survey-panel .survey-panel-body {
  background-color: white;
  padding: 2rem;
}
.survey-page-container .big-page-container .survey-group {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #003057;
  border-radius: 8px;
}
.survey-page-container .big-page-container .survey-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.survey-page-container .big-page-container .survey-answer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.survey-page-container .big-page-container .survey-answer label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}
.survey-page-container .big-page-container .survey-answer input[type=radio],
.survey-page-container .big-page-container .survey-answer input[type=checkbox] {
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.survey-page-container .big-page-container .form-group {
  margin-bottom: 1rem;
}
.survey-page-container .big-page-container .form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.survey-page-container .big-page-container .form-group select,
.survey-page-container .big-page-container .form-group input[type=text],
.survey-page-container .big-page-container .form-group input[type=email],
.survey-page-container .big-page-container .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.survey-page-container .big-page-container .form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.survey-page-container .big-page-container .iExplain {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.survey-page-container .big-page-container #survey-table-screen {
  width: 100%;
  margin-bottom: 1rem;
}
.survey-page-container .big-page-container #survey-table-screen th,
.survey-page-container .big-page-container #survey-table-screen td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #ddd;
}
.survey-page-container .big-page-container #survey-table-screen th:first-child,
.survey-page-container .big-page-container #survey-table-screen td:first-child {
  text-align: left;
  font-weight: 500;
}
.survey-page-container .big-page-container .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.survey-page-container .big-page-container .product-grid .product-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.survey-page-container .big-page-container .btn-submit {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #003057;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.survey-page-container .big-page-container .btn-submit:hover {
  background-color: rgb(0, 19.8620689655, 36);
}
.survey-page-container .big-page-container .us-only {
  display: none;
}
.survey-page-container .big-page-container .hidden {
  display: none;
}
@media (max-width: 768px) {
  .survey-page-container .big-page-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .survey-page-container .survey-panel .survey-header {
    font-size: 1.5rem;
  }
  .survey-page-container .survey-panel .survey-panel-body {
    padding: 1rem;
  }
  .survey-page-container .survey-group {
    padding: 1rem;
  }
  .survey-page-container .survey-question {
    font-size: 1.1rem;
  }
  .survey-page-container #survey-table-screen {
    font-size: 0.9rem;
  }
  .survey-page-container #survey-table-screen th,
  .survey-page-container #survey-table-screen td {
    padding: 0.5rem;
  }
}
@media (max-width: 480px) {
  .survey-page-container .product-grid {
    grid-template-columns: 1fr;
  }
  .survey-page-container .survey-answer label {
    font-size: 0.9rem;
  }
  .survey-page-container .form-group select,
  .survey-page-container .form-group input[type=text],
  .survey-page-container .form-group input[type=email],
  .survey-page-container .form-group textarea {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header,
footer,
main,
section,
article {
  container-type: inline-size;
}

html {
  font-size: 100%;
  line-height: 1.5;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: white;
  min-height: 100svh;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* Global rule, scoped to avoid .panel-career */
:not(.panel-career) ul,
:not(.panel-career) ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #007bff;
}
a:hover {
  color: #0056b3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

figcaption {
  max-width: 65ch;
  text-wrap: pretty;
}

.hr-line {
  width: 100%;
  height: 1px;
  border: 1px solid #003057;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.assembled {
  display: grid;
  grid-template-columns: 80px auto;
  text-align: left;
  align-items: center;
  margin: 1rem auto;
}

.download-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.inline-elements {
  display: flex;
  align-items: center; /* Vertically centers items */
  gap: 10px; /* Adds space between the image and the link */
}

.video-thumb {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.softwarenotice {
  font-weight: 700;
  width: 100%;
}

.hidden {
  display: none;
}