.about-header h1 {
  text-align: center;
  font-size: 40px;
  color: var(--mainColor);
}
.about-header p {
  width: 90%;
  margin: auto;
  padding: 2%;
  font-size: 22px;
  font-weight: bold;
  text-align: start;
  color: var(--mainColor);
}
.about-mid {
  width: 100%;
  background: var(--mainColor);
}
.ourCommitment {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contain {
  margin: auto;
  background: var(--mainColor);
  width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 0;
  gap: 13%;
}
.pice img {
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
  box-shadow: 20px 20px 0px var(--secondaryColor);
}
.pice:hover img {
  transform: scale(1.05);
}
.ourCommitment h2 {
  position: relative;
  font-size: 29px;
  color: var(--secondaryColor);
}
.ourCommitment p {
  color: #dddddd;
  font-size: 18px;
  line-height: 29px;
  margin: 2% 0 0 0;
}
.ourCommitment h2::before {
  width: 2%;
  content: "";
  height: 4px;
  display: block;
  background: #95c11f;
  border-radius: 6px;
  position: absolute;
  top: 114%;
}
.ourCommitment h2::after {
  width: 30%;
  content: "";
  height: 4px;
  display: block;
  background: #95c11f;
  border-radius: 6px;
  position: absolute;
  top: 114%;
  left: 3%;
}
.about-last {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  padding: 55px;
  gap: 52px;
}
.texting {
  font-size: 20px;
  line-height: 2rem;
  color: var(--mainColor);
  font-weight: bold;
}
