/** @format */

html, body {
  overflow-x: hidden;
}

section:nth-of-type(odd) {
  background-color: #f7f7f7;
}


#home {
  width: 100%;
  height: auto;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(165, 162, 162, 0.5),
      rgba(165, 162, 162, 0.5)
    ),
    url("../images/pvb/pvb-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

#home .container {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 120px;
}

#home .middle-content {
  flex-grow: 1;
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#home .middle-content h1.title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 60px;
}

#home .middle-content p {
  font-size: 1.25rem;
}

.inner-btn {
  width: fit-content;
  padding: 8px 32px;
  background: var(--inner-primary);
  color: var(--white-color);
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
}

th,
td {
  color: var(--dark-color);
  text-align: start;
}

thead th {
  background-color: var(--primary-color);
  color: #fff;
}

#section4 {
  overflow: hidden;
}

#section4 .main-content-two {
  align-items: flex-start;
}
#section4 h2.title {
  margin-top: 60px;
}
#section4 .left-content,
#section5 .left-content,
#section6 .left-content {
  flex: none;
  height: 100%;
  justify-content: space-between;
}

#section5 .main-content-two {
  gap: 80px;
  align-items: flex-start;
}

#section5 .content-img img {
  max-width: 100%;
}

#section6 .main-content-two {
  gap: 55px;
  align-items: flex-start;
}

.content-img img {
  margin: auto;
}

#section9 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#section9::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(165, 162, 162, 0.5),
      rgba(165, 162, 162, 0.5)
    ),
    url("../images/pvb/industrial-section-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

#section9 .industrial-card-img {
  position: relative;
  z-index: 0;
}

#section9 .industrial-card-img .title {
  margin-top: 16px;
  text-align: center;
}

#section9 .industrial-card-img::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -10px;
  width: calc(100% + 17px);
  height: 80%;
  background-color: #fff;
  opacity: 0.8;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  z-index: -1;
}

.industrial-card-desc {
  margin-top: 38px;
  padding: 0 8px;
}

#section9 h2.title {
  text-align: center;
  margin-top: 60px;
}

#section9 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

#section9 .four-column-container {
  grid-template-columns: repeat(1, 1fr);
}

#section10 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

#section10 .content {
  width: 100%;
}

#section10 .main-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
}

#section10 .container ul {
  color: var(--dark-color);
  padding-left: 24px;
}

#section10 .show-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#section10 img {
  width: 100%;
  height: 260px;
  max-width: 600px;
}

#section10 .show-images-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}

.show-group-image-bottom {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 61rem) {
  #home {
    height: calc(100vh - 120px);
    margin-top: 120px;
  }

  #home .middle-content {
    margin-left: 140px;
  }

  #section5 .content-img img {
    max-width: 560px;
  }

  #section9 {
    height: 100vh;
  }

  #section10 .container {
    align-items: flex-end;
  }

  #section10 .content {
    width: auto;
  }

  #section10 .main-content,
  #section10 .show-images-bottom {
    flex-direction: row;
    align-items: flex-end;
  }

  #section10 img {
    width: auto;
  }

  #section9 .four-column-container {
    grid-template-columns: repeat(4, 1fr);
  }

  #section9 .industrial-card-img::before {
    width: calc(100% + 20px);
  }
}
