.raleway-body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

.productspage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  /* background-color: transparent; */
  background-color: #FFFFFF;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 2;
}

.topbar:hover {
  opacity: 1;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 260px;
  height: 60px;
}

.logo span {
  width: 270px;
  font-size: 14px;
  padding-left: 30px;
}

.sections {
  margin-right: 100px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight {
  position: absolute;
  height: 5px;
  width: 90%;
  background: #E49D0B;
  bottom: 0;
  left: 5%;
  margin-right: 120px;
}

.active {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #E49D0B;
  font-weight: 600;
}

.sections a {
  margin-right: 20px;
}

.sections .head {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.sections .head::before {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: black;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sections .head::after {
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: black;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sections .head:hover::before, .head:hover::after {
  width: 100%;
}

.productsbody {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: 80px;
}

.productsbody h1 {
  font-size: 30px;
  font-weight: 700;
  padding: 20px;
  font-style: normal;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.footbar {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #000000ca;
  font-size: 14px;
  bottom: 0;
}

.bizsafe {
  position: absolute;
  color: white;
  bottom: 0;
  right: 0;
  margin: 20px 60px 60px 20px;
}

.bizsafe-size {
  width: 140px;
  height: 70px;
}

.copyright {
  position: absolute;
  color: white;
  bottom: 0;
  right: 0;
  margin: 20px;
}

.address {
  display: flex;
  padding: 5px;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 10px 10px 20px 20px;
  color: white;
}

.email {
  color: gold;
  text-decoration: underline;
  cursor: pointer;
}

.email:hover {
  color: rgba(255, 217, 0, 0.847);
}

.product-section-desk {
  background-color: #F5F5F5;
  width: 100%;
  height: 350px;
  margin: 0px 0px 40px 0px;
  position: relative;
  left: -100%; /* Start off-screen */
  animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
}

.product-section-wld {
  background-color: #F5F5F5;
  width: 100%;
  height: 350px;
  margin: 0px 0px 40px 0px;
  position: relative;
  right: -100%; /* Start off-screen */
  animation: swipe-in-right 0.5s ease-in-out 1s forwards;
}

.product-section-electrics {
  background-color: #F5F5F5;
  width: 100%;
  height: 350px;
  margin: 0px 0px 40px 0px;
  position: relative;
  left: -100%; /* Start off-screen */
  animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
}

@keyframes swipe-in-left {
  from {
      left: -100%;
  }
  to {
      left: 0;
  }
}

@keyframes swipe-in-right {
  from {
      right: -100%;
  }
  to {
      right: 0;
  }
}

.product-image-right {
  width: 800px;
  max-width: 800px;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.product-image-left {
  width: 800px;
  max-width: 800px;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}

.product-image-style {
  width: 100%;
  height: 100%;
}

.product-title-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 10px 10px 20px;
  position: absolute;
  margin: 20px 20px 0px 0px;
  right: 0;
  width: 500px;
  max-width: 500px;
}

.product-title-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 10px 10px 20px;
  position: absolute;
  margin: 20px 0px 0px 20px;
  left: 0;
  width: 500px;
  max-width: 500px;
}

.product-section h2 {
  font-size: 20px;
  font-weight: 600;
}

.cta {
  position: relative;
  padding: 19px 22px;
  transition: all .2s ease; 
  width: 170px;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #3773c9de;
  width: 56px;
  height: 56px;
  transition: all .3s ease; 
}

.cta:hover:before {
  width: 100%;
  background-image: linear-gradient(to right, #3773c9, #71b280);
}

.cta span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle; 
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all .3s ease; 
}
  
.cta:hover svg {
  transform: translateX(0); 
}

.cta:active {
  transform: scale(0.96); 
}

.hidden {
  display: none;
}

#deskManual {
  transition: opacity 0.5s ease;
}

#deskManual.visible {
  display: block;
  opacity: 1;
  background-color: white;
  z-index: 2;
  height: 670px;
  width: 90%;
  max-width: 90%;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border: 3px solid black;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto; /* Make the manual interactive */
}

#wldManual {
  transition: opacity 0.5s ease;
}

#wldManual.visible {
  display: block;
  opacity: 1;
  background-color: white;
  z-index: 2;
  height: 450px;
  width: 90%;
  max-width: 90%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border: 3px solid black;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto; /* Make the manual interactive */
}

#electricsManual {
  transition: opacity 0.5s ease;
}

#electricsManual.visible {
  display: block;
  opacity: 1;
  background-color: white;
  z-index: 2;
  height: 380px;
  width: 90%;
  max-width: 90%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border: 3px solid black;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto; /* Make the manual interactive */
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: opacity 0.5s ease;
}

.content.dimmed {
  opacity: 0.3;
  pointer-events: none
}

.heading {
  font-weight: 600;
  font-size: 22px;
  color: #094DAC;
}

.paragraph {
  font-size: 16px;
}

.paragraph a {
  color: #E49D0B;
}

/** screen responsiveness **/
@media only screen and (min-width: 300px) and (max-width: 360px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 8px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 8px;
  }

  /* .highlight {
    height: 3px;
    width: 40px;
    margin-right: 86px;
  } */

  .logo img {
    width: 110px;
    height: 30px;
  }

  .logo span {
    width: 110px;
    font-size: 8px;
    padding-left: 8px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 10px 10px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 10px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 10px 10px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 10px;
  }

  /* #deskManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 350px;
    width: 250px;
    position: absolute;
    top: 0;
    left: 4%;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */

  /* #wldManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 350px;
    width: 250px;
    position: absolute;
    top: 0;
    left: 4%;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }

  #electricsManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 350px;
    width: 250px;
    position: absolute;
    top: 0;
    left: 4%;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }

  #instlManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 350px;
    width: 250px;
    position: absolute;
    top: 0;
    left: 4%;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */

  .heading {
    font-weight: 600;
    font-size: 14px;
    color: #094DAC;
  }

  .paragraph {
    font-size: 12px;
  }

  .list {
    font-size: 12px;
  }
  
}

@media only screen and (min-width: 361px) and (max-width: 400px) {
  
  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 8px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 8px;
  }

  /* .highlight {
    height: 3px;
    width: 60px;
    margin-right: 83px;
  } */

  .logo img {
    width: 110px;
    height: 30px;
  }

  .logo span {
    width: 110px;
    font-size: 8px;
    padding-left: 8px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 20px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
  
  .product-section-instl {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 2s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 11px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 11px;
  }

  /* #deskManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 450px;
    width: 280px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */
  
  /* #wldManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 450px;
    width: 280px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #electricsManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 450px;
    width: 280px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #instlManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 450px;
    width: 280px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */
  
  .heading {
    font-weight: 600;
    font-size: 15px;
    color: #094DAC;
  }
  
  .paragraph {
    font-size: 13px;
  }
  
  .list {
    font-size: 13px;
  }
}

@media only screen and (min-width: 401px) and (max-width: 500px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 10px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 10px;
  }

  /* .highlight {
    height: 3px;
    width: 70px;
    margin-right: 90px;
  } */

  .logo img {
    width: 110px;
    height: 30px;
  }

  .logo span {
    width: 110px;
    font-size: 8px;
    padding-left: 8px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 22px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
  
  .product-section-instl {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 2s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 11px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 250px;
    max-width: 250px;
    font-size: 11px;
  }

  /* #deskManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 500px;
    width: 310px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */
  
  /* #wldManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 500px;
    width: 310px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #electricsManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 500px;
    width: 310px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #instlManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 500px;
    width: 310px;
    left: 7%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */
  
  .heading {
    font-weight: 600;
    font-size: 15px;
    color: #094DAC;
  }
  
  .paragraph {
    font-size: 13px;
  }
  
  .list {
    font-size: 13px;
  }
}

@media only screen and (min-width: 501px) and (max-width: 600px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 10px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 10px;
  }

  /* .highlight {
    height: 3px;
    width: 70px;
    margin-right: 90px;
  } */

  .logo img {
    width: 150px;
    height: 40px;
  }

  .logo span {
    width: 140px;
    font-size: 10px;
    padding-left: 8px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 22px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
  
  .product-section-instl {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 2s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 300px;
    max-width: 300px;
    font-size: 12px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 300px;
    max-width: 300px;
    font-size: 12px;
  }

  /* #deskManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 750px;
    width: 450px;
    left: 6%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
  } */
  
  /* #wldManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 750px;
    width: 450px;
    left: 6%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #electricsManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 750px;
    width: 450px;
    left: 6%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  }
  
  #instlManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 750px;
    width: 450px;
    left: 6%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
    overflow: auto;
  } */
  
  .heading {
    font-weight: 600;
    font-size: 15px;
    color: #094DAC;
  }
  
  .paragraph {
    font-size: 13px;
  }
  
  .list {
    font-size: 13px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 700px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 10px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 10px;
  }

  /* .highlight {
    height: 3px;
    width: 70px;
    margin-right: 90px;
  } */

  .logo img {
    width: 150px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 20px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 22px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
  
  .product-section-instl {
    background-color: #F5F5F5;
    width: 100%;
    height: 350px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 2s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 300px;
    max-width: 300px;
    font-size: 11px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 300px;
    max-width: 300px;
    font-size: 11px;
  }

  /* #deskManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 680px;
    width: 550px;
    left: 5%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
  } */
  
  /* #wldManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 680px;
    width: 550px;
    left: 5%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
  }
  
  #electricsManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 680px;
    width: 550px;
    left: 5%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
  }
  
  #instlManual.visible {
    display: block;
    opacity: 1;
    background-color: white;
    z-index: 2;
    height: 680px;
    width: 550px;
    left: 5%;
    position: absolute;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    border: 3px solid black;
  } */
  
  .heading {
    font-weight: 600;
    font-size: 15px;
    color: #094DAC;
  }
  
  .paragraph {
    font-size: 13px;
  }
  
  .list {
    font-size: 13px;
  }
}

@media only screen and (min-width: 701px) and (max-width: 900px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 10px;
  }

  .sections a {
    margin-right: 2px;
  }

  .active {
    font-size: 10px;
  }

  /* .highlight {
    height: 3px;
    width: 80px;
    margin-right: 85px;
  } */

  .logo img {
    width: 240px;
    height: 50px;
  }

  .logo span {
    width: 240px;
    font-size: 12px;
    padding-left: 25px;
  }

  .footbar {
    height: 130px;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    bottom: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    right: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .productsbody h1 {
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    font-style: normal;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 800px;
    max-width: 800px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
  
  .product-section-instl {
    background-color: #F5F5F5;
    width: 100%;
    height: 300px;
    margin: 0px 0px 40px 0px;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 2s forwards;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 10px 0px 0px;
    right: 0;
    width: 300px;
    max-width: 300px;
    font-size: 12px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 0px 0px 20px;
    left: 0;
    width: 500px;
    max-width: 500px;
    font-size: 12px;
  }
  
  .heading {
    font-weight: 600;
    font-size: 15px;
    color: #094DAC;
  }
  
  .paragraph {
    font-size: 13px;
  }
  
  .list {
    font-size: 13px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 979px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 15px;
  }

  .sections a {
    margin-right: 12px;
  }

  .active {
    font-size: 15px;
  }

  .logo img {
    width: 180px;
    height: 50px;
  }

  .logo span {
    width: 180px;
    font-size: 13px;
    padding-left: 15px;
  }

  .footbar {
    height: 130px;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 12px;
    bottom: 0;
    left: 0;
  }

  .copyright {
    font-size: 12px;
    bottom: 0;
    right: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 140px;
    height: 60px;
  }

  .product-image-right {
    opacity: 0.6;
  }
  
  .product-image-left {
    opacity: 0.6;
  }

}

@media only screen and (min-width: 980px) and (max-width: 999px) {

  .sections {
    margin-right: 20px;
  }

  .sections .head {
    font-size: 15px;
  }

  .sections a {
    margin-right: 12px;
  }

  .active {
    font-size: 15px;
  }

  /* .highlight {
    height: 4px;
    width: 90px;
    margin-right: 120px;
  } */

  .logo img {
    width: 180px;
    height: 50px;
  }

  .logo span {
    width: 180px;
    font-size: 13px;
    padding-left: 15px;
  }

  .footbar {
    height: 130px;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 12px;
    bottom: 0;
    left: 0;
  }

  .copyright {
    font-size: 12px;
    bottom: 0;
    right: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 140px;
    height: 60px;
  }

  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 10px 0px 0px;
    right: 0;
    width: 300px;
    max-width: 300px;
    font-size: 13px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 0px 0px 20px;
    left: 0;
    width: 450px;
    max-width: 450px;
    font-size: 13px;
  }

}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .product-title-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    right: 0;
    width: 300px;
    max-width: 300px;
    font-size: 13px;
  }
  
  .product-title-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 10px 10px 20px;
    position: absolute;
    margin: 20px 20px 0px 0px;
    left: 0;
    width: 300px;
    max-width: 300px;
    font-size: 13px;
  }
}

@media only screen and (min-height: 2000px) {
  .productspage {
    height: 100%;
  }

  .productsbody {
    height: 100vh;
  }

  .product-image-right {
    width: 100%;
    max-width: 100%;
    /* width: 60vw; */
    height: 25vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0.6;
  }
  
  .product-image-left {
    width: 100%;
    max-width: 100%;
    /* width: 60vw; */
    height: 25vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    opacity: 0.6;
  }

  .product-section-desk {
    background-color: #F5F5F5;
    width: 100%;
    /* height: 300px; */
    height: 25vh;
    /* margin: 0px 0px 40px 0px; */
    margin-bottom: 3vh;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 0.5s forwards;
  }
  
  .product-section-wld {
    background-color: #F5F5F5;
    width: 100%;
    /* height: 300px;
    margin: 0px 0px 40px 0px; */
    height: 25vh;
    margin-bottom: 3vh;
    position: relative;
    right: -100%; /* Start off-screen */
    animation: swipe-in-right 0.5s ease-in-out 1s forwards;
  }
  
  .product-section-electrics {
    background-color: #F5F5F5;
    width: 100%;
    height: 25vh;
    position: relative;
    left: -100%; /* Start off-screen */
    animation: swipe-in-left 0.5s ease-in-out 1.5s forwards;
  }
}