* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1 {
  color: #ff2a30 !important;
  font-size: 42px;
}

.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #060a16;
}

body {
  scroll-behavior: smooth;
  background-color: #f2f2f2;
}

nav {
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
  width: 100%;
  position: relative;
  /* background: linear-gradient(180deg, rgba(0,0,0,0.9612219887955182) 36%, rgba(255,255,255,0) 100%); */
  /* background: linear-gradient(180deg, rgba(12,12,12,1) 10%, rgba(12,12,12,0.7511379551820728) 45%, rgba(255,255,255,1) 100%); */
}

.h-logo img {
  width: 100%;
  height: 6rem;
}

.lower-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  position: relative;
}

.lower-nav ul {
  display: flex;
  justify-content: space-between;
  width: 25%;
  list-style: none;
  /* padding: 0 1rem; */
  margin-right: 2rem;
}

.upper-nav {
  padding: 1rem;
  width: 100%;
  background: black;
  color: white;
  text-align: center;
  text-transform: capitalize;
}

.h-logo {
  padding: 0 1rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #060a16;
  font-weight: 600;
  text-transform: capitalize;
}

.drop-down {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  color: black;
  background: #f2f2f2;
  width: 100%;
}

.drop-down-link:hover .dd-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);

}

.drop-down a {
  font-weight: 400;
  padding: 1rem 0;
}


.dd-container {
  z-index: 100;
  position: absolute;
  background: transparent;
  padding-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: all 0.3s ease;
  width: 20vw;
  right: 4%;
}

/* 
.drop-down-menu {
  justify-content: space-between;
  background-color: white;
  justify-content: center;
  flex-wrap: wrap;
  left: 0;
} */

.hamburger {
  z-index: 100;
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
  /* background-color: rebeccapurple; */
}

.inside-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hn-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.overlay.active {
  display: block;
  transform: translateX(0%);
}

.hidden-nav {
  background: white;
  padding: 1rem;
  height: 100vh;
  /* width: 104%; */
  position: absolute;
  top: 0;
  right: 0;
  /* left: 64.5%; */
  z-index: 100;
  width: 60vw;
  transform: translateX(100%);
  display: none;
  transition: all 0.3s ease;
  transition-delay: 0.5s;
}

.hidden-nav.active {
  display: block;
  transform: translateX(0%);
  overflow: scroll;
}

.hn-logo img {
  width: 100px;
}

.hn-logo p {
  font-size: 30px;
  text-transform: capitalize;
  margin-left: 0.5rem;
  color: #112437;
  font-weight: 600;
}

ul.hn-nav {
  display: flex !important;
  width: 100% !important;
  flex-direction: column;
  padding: 1rem;
  margin-top: 2rem;
}

.hn-nav li {
  padding: 1rem 0;
  border-bottom: 1px solid #494949;
  width: 100%;
  color: #494949;
  font-weight: 500;
}

.hn-nav li a {
  text-decoration: none;
  color: #494949;
  font-weight: 500;
}

.hn-sub-menu {
  max-height: 0;
  display: none;
  overflow: hidden;
  margin-top: 1rem;
  transition: max-height 0.3s ease;
}

.hn-sub-menu.active {
  display: flex;
  max-height: max-content;
  /* height: 50vh; */
  flex-direction: column;
}

.hn-sub-menu a {
  padding: 1rem;
  border-bottom: 1px solid;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  color: #494949;
}

.cross {
  position: absolute;
  right: 25px;
  top: 35px;
}

.cross img {
  width: 18px;
}

.hero-section {
  width: 100%;
}

.hero-section img {
  width: 100%;
  height: 100%;
}

.inside-products-section h1 {
  font-size: 36px;
  text-align: center;
  margin-top: 2rem;
  color: #fff;
}

.pid-section {
  padding: 4rem;
}

.pid-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.pid-slide p {
  text-decoration: none;
  color: #060a16;
  font-weight: 500;
  margin: 0.4rem 0;
  margin-top: 1rem;
  text-align: center;
}

.pid-slide img {
  width: 100%;
}

.product-desc .product-desc-section:nth-child(odd) {
  flex-direction: row-reverse;
  background-color: #5151511a;
  color: white;
}

.product-desc-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 4rem;
  align-items: center;
}

.p-image {
  width: 40%;
}

.p-image img {
  width: 100%;
}

.p-desc {
  width: 50%;
  color: #fff;
}

.p-desc h1 {
  text-transform: capitalize;
  margin: 1rem 0;
  font-weight: 500;
  letter-spacing: -3px;
}

p.para {
  font-size: 14px;
  margin-bottom: 1rem;
  color: #060a16;
  text-align: justify;
  line-height: 24px;
}

.list h2 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: #060a16;
}

ul.list {
  font-size: 14px;
  line-height: 26px;
}

.list li.montserrat {
  margin-left: 1.5rem;
}

/* CSS */
.button-62 {
  background: linear-gradient(to bottom right, #1e3e97, #3b92cf);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  margin: 1rem 0;
}

.button-62:not([disabled]):focus {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5),
    -0.125rem -0.125rem 1rem rgb(71 137 239 / 50%),
    0.125rem 0.125rem 1rem rgb(90 202 255 / 50%);
}

.button-62:not([disabled]):hover {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5),
    -0.125rem -0.125rem 1rem rgb(71 137 239 / 50%),
    0.125rem 0.125rem 1rem rgb(90 202 255 / 50%);
}

footer {
  width: 100%;
  background-color: #f2f2f2;
  color: #060a16;
}

.inside-footer {
  display: flex;
  flex-direction: column;
}

.upper-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4rem;
}

.f-card {
  width: 25%;
  margin-right: 2rem;
}

.f-card h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  background: linear-gradient(to bottom right, #e12d31, #9b3032);
  text-align: center;
  width: 50%;
  font-size: 20px;
}

.links {
  list-style: none;
}

.links li {
  margin-bottom: 1rem;
}

.links li a {
  color: #060a16;
  text-decoration: none;
}

.plant-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.p-info a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  margin-bottom: 3px;
}

.p-info i {
  margin-right: 1rem;
}

.p-info p {
  margin: 0.35rem 0rem;
}

.middle-footer {
  text-align: left;
  padding: 2rem 6rem;
  display: flex;
  /* justify-content: flex-end; */
  flex-direction: column;
  align-items: flex-end;
}

.lower-footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid;
}

.lower-footer a {
  color: #00557a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.5s ease;
}

.lower-footer a:hover {
  color: #a2d900;
}

@media(max-width:1200px) {
  .p-desc h1 {
    letter-spacing: -1px;
  }
}

@media (max-width:1100px) {
  .dd-container {
    width: 30vw;
  }
}

@media (max-width: 1024px) {
  .f-card {
    font-size: 14px;
  }

  .upper-footer {
    padding: 2rem;
  }

  .f-card h2 {
    font-size: 17px;
  }

  .p-image {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .lower-nav ul {
    width: 33%;
  }

  .product-desc-section {
    padding: 2rem;
  }

  .p-desc h1 {
    font-size: 27px;
  }
}

@media (max-width: 800px) {
  .f-card {
    width: 45%;
    margin-right: 1rem;
  }

  .upper-footer {
    padding: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 765px) {
  .service-card {
    width: 50%;
  }

  .lower-footer {
    font-size: 14px;
  }

  .hamburger {
    display: block;
  }

  .lower-nav ul {
    display: none;
  }

  .product-desc-section {
    flex-direction: column !important;
  }

  .p-desc {
    width: 100%;
  }

  .p-image {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .middle-footer {
    padding: 2rem 4rem;
  }

  .p-desc h1 {
    letter-spacing: 0px;
  }
}

@media (max-width: 500px) {
  .f-card {
    width: 100%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .about-btn {
    padding: 1rem;
    width: 30%;
    font-size: 13px;
  }
}

@media (max-width: 765px) {}