.about-corps {
  /* margin-top: 100px; */
  margin-top: 70px;
}
.about-corps__container {
  padding-left: 40px;
  padding-right: 40px;
}
.about-corps__container h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
.about-corps__history {
  margin-top: 40px;
}
.about-corps__history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.about-corps__history-grid__column {
  margin-top: 0px;
}
.about-corps__history-grid__column p {
  /* padding-bottom: 30px; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.about-corps__img-container {
  /* aspect-ratio: 16/9; */
  aspect-ratio: unset;
  width: 100%;
  margin-top: 60px;
}
.about-corps__img-container img {
  height: 100%;
  width: 100%;
}
.about-corps__stucture {
  margin-top: 60px;
}
.about-corps__structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.structure-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background-color: #f0f1ee;
}
.structure-item h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;

  width: 440px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.structure-item:hover .structure-link {
  color: #6c834b;
}
.structure-link {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: inline-flex;
  gap: 10px;
  color: black;
  flex-shrink: 0;
  transition: color 0.4s;
}
.structure-link:hover {
  color: #6c834b;
}
.stucture-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.stucture-item__shevron {
  width: 67px;
  height: 67px;
  /* height: 94px; */
  display: flex;
  justify-content: center;
  align-content: center;
}
.stucture-item__shevron img {
  width: 100%;
  height: auto;
  max-height: 100%;
  max-width: 100px;
}

@media screen and (max-width: 1024px) {
  .structure-item h4 {
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .about-corps__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-corps__history-grid {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
  .about-corps__structure-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .about-corps__container h3 {
    font-size: 24px;
  }
  .about-corps__history-grid__column p {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .structure-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .structure-item h4 {
    font-size: 16px;
  }
}
