
.about-vision-wrapper {
  display: flex;
  column-gap: 20px;
}
.about-visoin-text-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: clamp(16px, 5vw, 26px);
}
.about-vision-icons-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-vision-divider {
  width: 1.5px;
  height: 107px;
  border-radius: 4px;
  background-color: var(--text-color);
}
.about-vision-item {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.about-vision-icon {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-vision-icon-svg {
  width: 25px;
  height: 25px;
  fill: var(--text-color);
}

/* Founder-Section */
.founder {
  background-color: var(--background-color);
  padding: 80px 0px;
}

.founder_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 60px);
}

.founder-title {
  display: flex;
  gap: clamp(20px, 5vw, 90px);
}
.founder-title h1 {
  min-width: max-content;
  line-height: 1;
}

.founder_image {
  width: 100%;
  margin-top: clamp(34px, 5vw, 74px);
}

.founder_image img {
  width: 100%;
}

@media screen and (max-width: 931px) {
  .about-vision-divider {
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .about-visoin-text-wrapper {
    row-gap: 10px;
    text-align: left;
  }
  .about-vision-item {
    gap: 40px;
    width: 80%;
  }
  .about-vision-icon {
    width: 40px;
    height: 40px;
  }
  .about-vision-icon-svg {
    width: 22px;
    height: 22px;
  }
  .about-vision-divider {
    height: 70px;
  }
  .founder-title {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .about-visoin-text-wrapper {
    text-align: center;
  }
  .about-vision-item {
    width: 100%;
  }
  .about-vision-icons-stack {
    display: none;
  }
  .founder_content {
    text-align: center;
  }
  .founder-title {
    align-items: center;
    text-align: center;
  }
}
