


.box-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.heading-vision {
  margin-bottom: 10rem;
}
.box {
  height: 35rem;
  width: 33rem;
  border: none;
  margin: 5px;
  border-radius: 15px;
  background-color: #fbf4ec;
  text-align: center;
}
.img-wrapper {
  background-color: #fff;
  border-radius: 50%;
  height: 13rem;
  margin: auto;
  width: 15rem;
  margin-top: 5rem;
}
.img-vision {
  height: 86px;
  margin-top: 20px;
}
.p-vision {
  margin: auto;
  width: 18rem;
  margin-top: 5rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 600px) {
  .box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

/* ------------------PROBLEM SOLVING SECTION START---------------- */
.problem_solving {
  background-color: #f0f0ec;
  border: none;
  border-radius: 15px;
  height: 600px;
  margin: 0px auto;
  margin-top: 5%;
}

.problem_solving-section {
  padding: 0px 10%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.problem_solving-heading {
  position: absolute;
  top: 5%;
  right: 25%;
}
.img-wrapper-problem-sloving svg{
  height: 400px;
  width: 950px;
}

@media only screen and (max-width: 600px) {
  .problem_solving {
    height: auto; /* Updated height property */
    margin: 0 auto;
    margin-top: 5%;
    overflow: hidden; /* Add overflow property to hide content overflow if needed */
  }

  /* Rest of the CSS code remains the same */

  .problem_solving-section {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .img-wrapper-problem-sloving svg{
    height: 180px;
    width: 310px;
  }
  .problem_solving-heading {
    position: static;
    text-align: center;
    margin-top: 20px;
    right: auto;
  }
}

/* --------------------DIGITAL-ORG-SECTION---------------- */

.digital-org-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin-top: 50px;
}

.img-digital-org {
  height: 600px;
  width: auto;
}

.right-side.content-org {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.box-digital-org {
  flex-basis: calc(50% - 20px);
  width: 250px;
  height: 140px;
  margin: 10px;
  background-color: #fbf4ec;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-para {
  font-weight: bolder;
  text-align: center;
}


@media only screen and (max-width: 768px) {
  .right-side.content-org {
    justify-content: center;
  }
}
