.hero-section-corporate {
  position: relative;
  min-height: 267px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/corporate_responsibility/environment-day-concept.jpg);
  background-position: center;
}
.hero-section-corporate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
}
.hero-section-corporate h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
.hero-section-corporate p {
  font-size: 1.125rem;
  color: #ff7800;
}
.corporate-right {
  padding: 30px 30px 30px 40px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

th {
  white-space: nowrap; /* prevents text from wrapping */
  overflow: hidden; /* hides any text that overflows the cell */
  text-overflow: ellipsis; /* adds an ellipsis to indicate that text is cut off*/
  background-color: #ff7800;
  color: #fff;
  border: 0.5px solid #dddddd;
  font-size: 12px;
  padding: 20px 12px;
  text-align: center;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td {
  color: #6d7882;
  padding: 20px 15px;
  height: 60px;
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background: #f2f2f2;
}

@media (min-width: 767px) {
  .hero-section-corporate {
    min-height: 445px;
  }

  .hero-section-corporate h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1030px) {
  .hero-section-corporate {
    background-position: unset;
  }
}

@media (max-width: 767px) {
  .corporate-right{
    padding: 30px 0px 30px 0px;
  }
}