
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Cardo:ital,wght@0,400;0,700;1,400&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');
body{
  
  font-family: "Bitter", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
/* ---------- Lockout-Padlock-Hero ---------- */
.lockout-padlock {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vh;
}

.lockout-padlock img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.4s ease;
}

.lockout-padlock::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.55);*/ /* optional overlay */
  z-index: 1;
}

.lockout-padlock-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  color: #fff;
  text-align: left;
  padding: 20px;
  margin-left: 13%;
  /* Initial state for fade-up animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

/* Stagger animation for children */
.lockout-padlock-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: rgb(200,153,0);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.lockout-padlock-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
  color: #f1f1f1;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

.lockout-btn {
  display: inline-block;
  background: hsl(46, 100%, 39%);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

.lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Fade-Up Animation ---------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .lockout-padlock {
    justify-content: center;
    height: 40vh;
  }
  .lockout-padlock-content {
    margin-left: 5%;
    text-align: center;
  }
  .lockout-padlock-content h1 {
    font-size: 2rem;
  }
  .lockout-padlock-content p {
    font-size: 0.85rem;
  }
}


.lockout-btn:hover {
  background: #000840;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ---------- Lockout Padlock Hero - Responsive ---------- */
@media (max-width: 992px) {
  .lockout-padlock {
    height: 45vh;
  }
  .lockout-padlock img {
    width: 120%;
    left: -10%;
  }
  .lockout-padlock-content {
    text-align: center;
  }
  .lockout-padlock-content h1 {
    font-size: 1.8rem;
  }
  .lockout-padlock-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .lockout-padlock {
    height: 40vh;
  }
  .lockout-padlock img {
    width: 130%;
    left: -15%;
  }
  .lockout-padlock-content {
    width: 90%;
    text-align: center;
    padding: 15px;
  }
  .lockout-padlock-content h1 {
    font-size: 1.6rem;
  }
  .lockout-padlock-content p {
    font-size: 0.8rem;
  }
  .lockout-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .lockout-padlock {
    height: 30vh;
  }
  .lockout-padlock img {
    width: 180%;
    left: -50%;
  }
    .lockout-padlock-content {
    width: 60%;
    text-align:left;
    margin-left: 2%;
  }
  .lockout-padlock-content h1 {
    font-size: 1rem;
    
  }
  .lockout-padlock-content p {
    font-size: 0.65rem;
  }
  .lockout-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
}
/*--End-Lockout-Padlock----*/

/*---Start-Lockout-Hasps--*/
/* --- Lockout Hasps Hero Section --- */
.lockout-hasps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text on desktop */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vh; /* default height */
}

.lockout-hasps img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.4s ease;
}

.lockout-hasps::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* overlay for readability */
  z-index: 1;
}
.lockout-hasps-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  color: #fff;
  text-align: center; /* centers inline text */
  padding: 20px;
  margin: 0 auto; /* center container horizontally */
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* horizontal center */
  justify-content: center; /* optional: vertical center if height is set */
}

.lockout-hasps-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: rgb(200,153,0);
}

.lockout-hasps-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: center;
  color: #f1f1f1;
}

/* --- Button with smaller width --- */
.lockout-hasps-btn {
  display: inline-block;
  background: hsl(46, 100%, 39%);
  color: #fff;
  border: 1px solid hsl(46, 100%, 70%);
  padding: 8px 14px; /* smaller width */
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center; /* ensures button text is centered */
}
/* ---------- Fade Up Animation ---------- */
.lockout-hasps-content h1,
.lockout-hasps-content p,
.lockout-hasps-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Optional: stagger the animation */
.lockout-hasps-content h1 {
  animation-delay: 0.3s;
}

.lockout-hasps-content p {
  animation-delay: 0.8s;
}

.lockout-hasps-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lockout-hasps-btn:hover {
  background: #000840;
  border-color: #000840;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .lockout-hasps {
    height: 45vh;
  }
  .lockout-hasps img {
    width: 120%;
    left: -10%;
  }
  .lockout-hasps-content {
    text-align: center;
  }
  .lockout-hasps-content h1 {
    font-size: 1.8rem;
  }
  .lockout-hasps-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .lockout-hasps {
    height: 40vh;
  }
  .lockout-hasps img {
    width: 130%;
    left: -15%;
  }
  .lockout-hasps-content {
    width: 90%;
    text-align: center;
    padding: 15px;
  }
  .lockout-hasps-content h1 {
    font-size: 1.6rem;
  }
  .lockout-hasps-content p {
    font-size: 0.8rem;
  }
  .lockout-hasps-btn {
    padding: 7px 12px; /* smaller button on smaller screens */
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .lockout-hasps {
    height: 25vh;
  }
  .lockout-hasps img {
    width: 160%;
    left: -60%;
  }
  .lockout-hasps-content h1 {
    font-size: 1.4rem;
  }
  .lockout-hasps-content p {
    font-size: 0.65rem;
  }
  .lockout-hasps-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/*---End-lockout-hasps-----*/

/*----start-Circuit-Lockout-----*/
/* ------- Circuit Breaker Lockout Hero ------ */
.circuit-breaker-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vh; /* fixed height */
}

/* Background image */
.circuit-breaker-lockout img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%); /* center image */
  z-index: 0;
  transition: all 0.4s ease;
}

/* Overlay */
.circuit-breaker-lockout::after {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content container */
.circuit-breaker-lockout-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column; /* vertical stack */
  align-items: flex-start; /* left-aligned text */
  justify-content: center; /* vertical centering */
  margin-left: 13%; /* distance from left edge */
}

/* Heading */
.circuit-breaker-lockout-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: rgb(200,153,0);
}

/* Paragraph */
.circuit-breaker-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
  color: #f1f1f1;
  text-align: left;
}

/* Button */
.circuit-breaker-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.circuit-breaker-lockout-content h1,
.circuit-breaker-lockout-content p,
.circuit-breaker-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Optional: stagger the animation */
.circuit-breaker-lockout-content h1 {
  animation-delay: 0.3s;
}

.circuit-breaker-lockout-content p {
  animation-delay: 0.8s;
}

.circuit-breaker-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.circuit-breaker-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .circuit-breaker-lockout-content {
    max-width: 90%;
    padding: 15px;
  }

  .circuit-breaker-lockout-content h1 {
    font-size: 2.5rem;
  }

  .circuit-breaker-lockout-content p {
    font-size: 0.85rem;
  }

  .circuit-breaker-lockout img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .circuit-breaker-lockout-content {
    max-width: 90%;
    padding: 10px;
  }

  .circuit-breaker-lockout-content h1 {
    font-size: 2rem;
  }

  .circuit-breaker-lockout-content p {
    font-size: 0.8rem;
  }

  .circuit-breaker-lockout-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .circuit-breaker-lockout img {
    width: 130%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .circuit-breaker-lockout-content {
    max-width: 90%;
    padding: 5px;
  }

  .circuit-breaker-lockout-content h1 {
    font-size: 1.6rem;
  }

  .circuit-breaker-lockout-content p {
    font-size: 0.75rem;
  }

  .circuit-breaker-lockout-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .circuit-breaker-lockout img {
    width: 200%;
  left: 0%;
  }
   .circuit-breaker-lockout  {
    height: 25vh;
  }

}

/*----End-Circuit-Lockout----*/

/*----start-Cylinder-Lockout-----*/
/* ------- Cylinder Lockout Hero ------ */
.cylinder-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text on desktop */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vh; /* default desktop height */
}

.cylinder-lockout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.cylinder-lockout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* overlay */
  z-index: 1;
}

.cylinder-lockout-content {
  position: absolute;
  top: 50%;
  left: 55%; /* desktop: right-side text */
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.cylinder-lockout-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.cylinder-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.cylinder-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.cylinder-lockout-content h1,
.cylinder-lockout-content p,
.cylinder-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Stagger the animation for a smooth sequence */
.cylinder-lockout-content h1 {
  animation-delay: 0.3s;
}

.cylinder-lockout-content p {
  animation-delay: 0.8s;
}

.cylinder-lockout-content .cylinder-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cylinder-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .cylinder-lockout {
    height: 60vh;
  }
  .cylinder-lockout img {
    width: 120%;
    left: -10%;
  }
  .cylinder-lockout-content {
    left: 55%;
  }
  .cylinder-lockout-content h1 {
    font-size: 1.8rem;
  }
  .cylinder-lockout-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .cylinder-lockout {
    height: 50vh;
  }
  .cylinder-lockout img {
    width: 130%;
    left: -15%;
  }
  .cylinder-lockout-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .cylinder-lockout-content h1 {
    font-size: 1.6rem;
  }
  .cylinder-lockout-content p {
    font-size: 0.8rem;
  }
  .cylinder-lockout-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cylinder-lockout {
    height: 25vh;
  }
  .cylinder-lockout img {
    width: 160%;
    left: -5%;
  }
  .cylinder-lockout-content h1 {
    font-size: 1rem;
    margin-top: 20%;
  }
  .cylinder-lockout-content p {
    font-size: 0.55rem;
  }
  .cylinder-lockout-btn {
    padding: 6px 10px;
    margin-bottom: 15%;
    font-size: 0.5rem;
  }
}
/*----End-Cylinder-Lockout----*/
/*----Start-Multipurpose-Cable-Lockout-----*/
.hero-multipurpose-cable-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text on desktop */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vh; /* default desktop height */
}

.hero-multipurpose-cable-lockout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-multipurpose-cable-lockout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* overlay */
  z-index: 1;
}

.hero-multipurpose-cable-lockout-content {
  position: absolute;
  top: 50%;
  left: 13%; /* desktop: right-side text */
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-multipurpose-cable-lockout-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-multipurpose-cable-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-multipurpose-cable-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-multipurpose-cable-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}
/* ---------- Fade Up Animation ---------- */
.hero-multipurpose-cable-lockout-content h1,
.hero-multipurpose-cable-lockout-content p,
.hero-multipurpose-cable-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Stagger animations for smooth sequential effect */
.hero-multipurpose-cable-lockout-content h1 {
  animation-delay: 0.3s;
}

.hero-multipurpose-cable-lockout-content p {
  animation-delay: 0.8s;
}

.hero-multipurpose-cable-lockout-content .hero-multipurpose-cable-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-multipurpose-cable-lockout {
    height: 60vh;
  }
  .hero-multipurpose-cable-lockout img {
    width: 120%;
    left: -10%;
  }
  .hero-multipurpose-cable-lockout-content {
    left: 55%;
  }
  .hero-multipurpose-cable-lockout-content h1 {
    font-size: 1.8rem;
  }
  .hero-multipurpose-cable-lockout-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-multipurpose-cable-lockout {
    height: 50vh;
  }
  .hero-multipurpose-cable-lockout img {
    width: 130%;
    left: -15%;
  }
  .hero-multipurpose-cable-lockout-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-multipurpose-cable-lockout-content h1 {
    font-size: 1.6rem;
  }
  .hero-multipurpose-cable-lockout-content p {
    font-size: 0.8rem;
  }
  .hero-multipurpose-cable-lockout-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-multipurpose-cable-lockout {
    height: 22vh;
  }
  .hero-multipurpose-cable-lockout img {
    width: 120%;
    left: -6%;
  }
  .hero-multipurpose-cable-lockout-content h1 {
    font-size: 0.80rem;
    margin-top: 95%;
  }
  .hero-multipurpose-cable-lockout-content p {
    font-size: 0.35rem;
  }
  .hero-multipurpose-cable-lockout-btn {
    padding: 6px 10px;
    font-size: 0.5rem;
    margin-bottom: 100%;
  }
}
/*----End-Multipurpose-Cable-Lockout----*/


/* ------- Electrical Lockout Hero ------ */
.hero-electric-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text on desktop */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh; /* default desktop height */
}

.hero-electric-lockout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-electric-lockout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-electric-lockout-content {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-electric-lockout-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-electric-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-electric-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.hero-electric-lockout-content h1,
.hero-electric-lockout-content p,
.hero-electric-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Stagger the animation for smooth sequential effect */
.hero-electric-lockout-content h1 {
  animation-delay: 0.3s;
}

.hero-electric-lockout-content p {
  animation-delay: 0.8s;
}

.hero-electric-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-electric-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Electrical Lockout Hero - Responsive ---------- */
@media (max-width: 992px) {
  .hero-electric-lockout {
    height: 60vh;
  }
  .hero-electric-lockout img {
    width: 120%;
    left: -10%;
  }
  .hero-electric-lockout-content {
    left: 55%;
  }
  .hero-electric-lockout-content h1 {
    font-size: 1.8rem;
  }
  .hero-electric-lockout-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-electric-lockout {
    height: 50vh;
  }
  .hero-electric-lockout img {
    width: 130%;
    left: -15%;
  }
  .hero-electric-lockout-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-electric-lockout-content h1 {
    font-size: 1.6rem;
  }
  .hero-electric-lockout-content p {
    font-size: 0.8rem;
  }
  .hero-electric-lockout-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-electric-lockout {
    height: 30vh;
  }
  .hero-electric-lockout img {
    width: 160%;
    left: -5%;
  }
  .hero-electric-lockout-content h1 {
    font-size: 1rem;
  }
  .hero-electric-lockout-content p {
    font-size: 0.55rem;
  }
  .hero-electric-lockout-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/*----End---Electrical-Lockout-----*/

/*----Start-Pneumatic-Plug-Lockout-----*/

.hero-pneumatic-plug-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left-aligned text on desktop */
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh; /* default desktop height */
}

.hero-pneumatic-plug-lockout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-pneumatic-plug-lockout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* overlay */
  z-index: 1;
}

.hero-pneumatic-plug-lockout-content {
  position: absolute;
  top: 50%;
  left: 55%; /* desktop: right-side text */
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-pneumatic-plug-lockout-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-pneumatic-plug-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-pneumatic-plug-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.hero-pneumatic-plug-lockout-content h1,
.hero-pneumatic-plug-lockout-content p,
.hero-pneumatic-plug-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Stagger the animation for smooth sequential effect */
.hero-pneumatic-plug-lockout-content h1 {
  animation-delay: 0.3s;
}

.hero-pneumatic-plug-lockout-content p {
  animation-delay: 0.8s;
}

.hero-pneumatic-plug-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pneumatic-plug-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-pneumatic-plug-lockout {
    height: 60vh;
  }
  .hero-pneumatic-plug-lockout img {
    width: 120%;
    left: -10%;
  }
  .hero-pneumatic-plug-lockout-content {
    left: 55%;
  }
  .hero-pneumatic-plug-lockout-content h1 {
    font-size: 1.8rem;
  }
  .hero-pneumatic-plug-lockout-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-pneumatic-plug-lockout {
    height: 50vh;
  }
  .hero-pneumatic-plug-lockout img {
    width: 130%;
    left: -15%;
  }
  .hero-pneumatic-plug-lockout-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-pneumatic-plug-lockout-content h1 {
    font-size: 1.6rem;
  }
  .hero-pneumatic-plug-lockout-content p {
    font-size: 0.8rem;
  }
  .hero-pneumatic-plug-lockout-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-pneumatic-plug-lockout {
    height: 26vh;
  }
  .hero-pneumatic-plug-lockout img {
    width: 150%;
    left: -5%;
  }
  .hero-pneumatic-plug-lockout-content h1 {
    font-size: 1rem;
    margin-top: 100%;
  }
  .hero-pneumatic-plug-lockout-content p {
    font-size: 0.55rem;
  }
  .hero-pneumatic-plug-lockout-btn {
    padding: 4px 7px;
    font-size: 0.8rem;
    margin-bottom: 100%;
  }
}
/*----End-Pneumatic-Plug-Lockout----*/
/*----Start-Valve-Lockout-----*/
.hero-valve-lockout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh;
}

.hero-valve-lockout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-valve-lockout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-valve-lockout-content {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-valve-lockout-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-valve-lockout-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-valve-lockout-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.hero-valve-lockout-content h1,
.hero-valve-lockout-content p,
.hero-valve-lockout-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Stagger the animation for smooth sequential effect */
.hero-valve-lockout-content h1 {
  animation-delay: 0.3s;
}

.hero-valve-lockout-content p {
  animation-delay: 0.8s;
}

.hero-valve-lockout-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-valve-lockout-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-valve-lockout {
    height: 60vh;
  }
  .hero-valve-lockout img {
    width: 120%;
    left: -10%;
  }
  .hero-valve-lockout-content {
    left: 55%;
  }
  .hero-valve-lockout-content h1 {
    font-size: 1.8rem;
  }
  .hero-valve-lockout-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-valve-lockout {
    height: 50vh;
  }
  .hero-valve-lockout img {
    width: 130%;
    left: -15%;
  }
  .hero-valve-lockout-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-valve-lockout-content h1 {
    font-size: 1.6rem;
  }
  .hero-valve-lockout-content p {
    font-size: 0.8rem;
  }
  .hero-valve-lockout-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-valve-lockout {
    height: 30vh;
  }
  .hero-valve-lockout img {
    width: 150%;
    left: -3%;
  }
  .hero-valve-lockout-content h1 {
    font-size: 1rem;
  }
  .hero-valve-lockout-content p {
    font-size: 0.45rem;
  }
  .hero-valve-lockout-btn {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}
/*----End-Valve-Lockout----*/
/*----Start-Lockout-Station-----*/
.hero-lockout-station {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh;
}

.hero-lockout-station img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-lockout-station::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-lockout-station-content {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-lockout-station-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-lockout-station-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-lockout-station-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: none;
  padding: 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
/* ---------- Fade Up Animation ---------- */
.hero-lockout-station-content h1,
.hero-lockout-station-content p,
.hero-lockout-station-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Staggered delays for smooth sequence */
.hero-lockout-station-content h1 {
  animation-delay: 0.3s;
}

.hero-lockout-station-content p {
  animation-delay: 0.8s;
}

.hero-lockout-station-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lockout-station-btn:hover {
  background: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-lockout-station {
    height: 60vh;
  }
  .hero-lockout-station img {
    width: 120%;
    left: -10%;
  }
  .hero-lockout-station-content {
    left: 55%;
  }
  .hero-lockout-station-content h1 {
    font-size: 1.8rem;
  }
  .hero-lockout-station-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-lockout-station {
    height: 50vh;
  }
  .hero-lockout-station img {
    width: 130%;
    left: -15%;
  }
  .hero-lockout-station-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-lockout-station-content h1 {
    font-size: 1.6rem;
  }
  .hero-lockout-station-content p {
    font-size: 0.8rem;
  }
  .hero-lockout-station-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-lockout-station {
    height: 30vh;
  }
  .hero-lockout-station img {
    width: 160%;
    left: -5%;
  }
  .hero-lockout-station-content h1 {
    font-size: 1rem;
  }
  .hero-lockout-station-content p {
    font-size: 0.50rem;
  }
  .hero-lockout-station-btn {
    padding: 6px 8px;
    font-size: 0.8rem;
  }
}
/*----End-Lockout-Station----*/
/*----Start-Lockout-Boxes-----*/
.hero-lockout-boxes {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh;
}

.hero-lockout-boxes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-lockout-boxes::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-lockout-boxes-content {
  position: absolute;
  top: 50%;
  left: 59%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-lockout-boxes-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-lockout-boxes-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-lockout-boxes-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: 1px solid hsl(46, 100%, 70%);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
/* ---------- Fade Up Animation ---------- */
.hero-lockout-boxes-content h1,
.hero-lockout-boxes-content p,
.hero-lockout-boxes-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Staggered delays for smooth sequence */
.hero-lockout-boxes-content h1 {
  animation-delay: 0.3s;
}

.hero-lockout-boxes-content p {
  animation-delay: 0.8s;
}

.hero-lockout-boxes-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lockout-boxes-btn:hover {
  background: #000840;
  border-color: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-lockout-boxes {
    height: 60vh;
  }
  .hero-lockout-boxes img {
    width: 120%;
    left: -10%;
  }
  .hero-lockout-boxes-content {
    left: 55%;
  }
  .hero-lockout-boxes-content h1 {
    font-size: 1.8rem;
  }
  .hero-lockout-boxes-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-lockout-boxes {
    height: 50vh;
  }
  .hero-lockout-boxes img {
    width: 130%;
    left: -15%;
  }
  .hero-lockout-boxes-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-lockout-boxes-content h1 {
    font-size: 1.6rem;
  }
  .hero-lockout-boxes-content p {
    font-size: 0.8rem;
  }
  .hero-lockout-boxes-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-lockout-boxes {
    height: 30vh;
  }
  .hero-lockout-boxes img {
    width: 150%;
    left: -5%;
  }
  .hero-lockout-boxes-content h1 {
    font-size: 1rem;
  }
  .hero-lockout-boxes-content p {
    font-size: 0.45rem;
  }
  .hero-lockout-boxes-btn {
    padding: 6px 6px;
    font-size: 0.8rem;
  }
}
/*----End-Lockout-Boxes----*/
/*----Start-Lockout-Tag-----*/
.hero-lockout-tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh;
}

.hero-lockout-tag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-lockout-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-lockout-tag-content {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-lockout-tag-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: rgb(200,153,0);
}

.hero-lockout-tag-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-lockout-tag-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: 1px solid hsl(46, 100%, 70%);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
/* ---------- Fade Up Animation ---------- */
.hero-lockout-tag-content h1,
.hero-lockout-tag-content p,
.hero-lockout-tag-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Staggered delays for smooth sequence */
.hero-lockout-tag-content h1 {
  animation-delay: 0.3s;
}

.hero-lockout-tag-content p {
  animation-delay: 0.8s;
}

.hero-lockout-tag-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lockout-tag-btn:hover {
  background: #000840;
  border-color: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-lockout-tag {
    height: 60vh;
  }
  .hero-lockout-tag img {
    width: 120%;
    left: -10%;
  }
  .hero-lockout-tag-content {
    left: 55%;
  }
  .hero-lockout-tag-content h1 {
    font-size: 1.8rem;
  }
  .hero-lockout-tag-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-lockout-tag {
    height: 50vh;
  }
  .hero-lockout-tag img {
    width: 130%;
    left: -15%;
  }
  .hero-lockout-tag-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-lockout-tag-content h1 {
    font-size: 1.6rem;
  }
  .hero-lockout-tag-content p {
    font-size: 0.8rem;
  }
  .hero-lockout-tag-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-lockout-tag {
    height: 30vh;
  }
  .hero-lockout-tag img {
    width: 150%;
    left: -5%;
  }
  .hero-lockout-tag-content h1 {
    font-size: 1rem;
  }
  .hero-lockout-tag-content p {
    font-size: 0.55rem;
  }
  .hero-lockout-tag-btn {
    padding: 6px 6px;
    font-size: 0.8rem;
  }
}
/*----End-Lockout-Tag----*/
/*----Start-Lockout-Kit-----*/
.hero-lockout-kit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 70vh;
}

.hero-lockout-kit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.hero-lockout-kit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-lockout-kit-content {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 500px;
}

.hero-lockout-kit-content h1 {
  font-size: 3rem;
  margin-bottom: 1px;
  color: rgb(200,153,0);
}

.hero-lockout-kit-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.hero-lockout-kit-btn {
  background: rgb(200, 153, 0);
  color: #fff;
  border: 1px solid hsl(46, 100%, 70%);
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
/* ---------- Fade Up Animation ---------- */
.hero-lockout-kit-content h1,
.hero-lockout-kit-content p,
.hero-lockout-kit-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSlow 1.8s ease forwards;
}

/* Staggered delays for smooth sequence */
.hero-lockout-kit-content h1 {
  animation-delay: 0.3s;
}

.hero-lockout-kit-content p {
  animation-delay: 0.8s;
}

.hero-lockout-kit-btn {
  animation-delay: 1.3s;
}

/* Keyframes for fade-up */
@keyframes fadeUpSlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lockout-kit-btn:hover {
  background: #000840;
  border-color: #000840;
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .hero-lockout-kit {
    height: 60vh;
  }
  .hero-lockout-kit img {
    width: 120%;
    left: -10%;
  }
  .hero-lockout-kit-content {
    left: 55%;
  }
  .hero-lockout-kit-content h1 {
    font-size: 1.8rem;
  }
  .hero-lockout-kit-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .hero-lockout-kit {
    height: 50vh;
  }
  .hero-lockout-kit img {
    width: 130%;
    left: -15%;
  }
  .hero-lockout-kit-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .hero-lockout-kit-content h1 {
    font-size: 1.6rem;
  }
  .hero-lockout-kit-content p {
    font-size: 0.8rem;
  }
  .hero-lockout-kit-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-lockout-kit {
    height: 25vh;
  }
  .hero-lockout-kit img {
    width: 150%;
    left: -5%;
  }
  .hero-lockout-kit-content h1 {
    font-size: 1.2rem;
  }
  .hero-lockout-kit-content p {
    font-size: 0.55rem;
  }
  .hero-lockout-kit-btn {
    padding: 6px 6px;
    font-size: 0.8rem;
  }
}
/*----End-Lockout-Kit----*/
