.List {
  padding-top: 25px;
}
.List-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  flex-grow: 1;
  background-color: #31544b;
}
.list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  padding: 20px;
}
.list-item img {
  height: 55px;
  margin-right: 10px;
}
.list-item h1 {
  font-size: 28px;
  padding: 20px;
}
.orange-number {
  color: #ffb548;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  padding-left: 20px;
}
.list-big {
  padding-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.list-col-1 {
  width: 50%;
}
.list-col-2 {
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.list-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #6b95bd;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 15px;
  width: 100%;
}
.title-with-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #4e6a63;
  font-size: 17px;
  font-weight: 100;
  text-align: justify;
}
.circle-blue {
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  background-color: #193028;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.circle-blue img {
  width: 70%;
}

.circle-orange {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background-color: #f9a826;
  border-radius: 50%;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.arrow-div,
.arrow-div-grey {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #4e6a63;
  font-size: 14px;
  font-weight: 500;
  padding: 14px;
  background-color: #ffffff;
  margin-bottom: 12px;
}
.arrow-div-grey {
  background-color: #dfdddd;
}

.arrow-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 10px;
  font-size: 17px;
}

/* grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background-color: #f6f5f4;
  padding-top: 25px;
  font-family: Bahij TheSansArabic;
}

.grid-item {
  background-color: white;
  padding: 35px;
}

.grid-item.wide {
  grid-column: span 1;
  /* padding-left: 230px; */
}
.grid-item.small {
  grid-column: span 1;
  /* padding-left: 230px; */
}

.grid-item .number {
  font-size: 2.7rem;
  font-weight: bold;
  color: #31544b;
  position: relative;
  display: inline-block;
  text-align: center;
}

.grid-item .number::after {
  content: "";
  display: block;
  width: 70px;
  bottom: 10px;
  position: relative;
  height: 10px;
  background-color: #fcb44a;
  margin: 1px 0 0 0;
}

.grid-item p {
  color: #31544b;
  font-size: 1rem;
  line-height: 1.8;
}

/* grid ends*/

@media screen and (max-width: 768px) {
  .title-with-arrow {
    font-size: 12px;
    padding-right: 20px;
    padding-top: 5px;
  }

  .list-text {
    padding-bottom: 20px;
  }
  .circle-blue {
    margin-bottom: 0px;
  }
  .intersect {
    width: 15px;
    height: 15px;
  }
  .arrow-div,
  .arrow-div-grey {
    padding: 10px;
    font-size: 12px;
  }

  .circle-orange {
    width: 30px;
    height: 30px;
    max-width: 30px;
    max-height: 30px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .circle-orange img {
    width: 15px;
    height: 15px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .arrow-text {
    padding-right: 20px;
  }
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-item.wide {
    grid-column: span 1;
    /* padding-left: 230px; */
  }
  .grid-item.wide {
    /* padding-left: 0px; */
  }
  .list-col-1 {
    width: 100%;
  }
  .list-col-2 {
    width: 100%;
  }
  .list-big {
    padding-top: 30px;
    gap: 0px;
  }
}
@media screen and (max-width: 480px) {
  .circle-orange {
    width: 25px;
    height: 25px;
    margin-right: 2px;
    padding: 7px;
  }
  .circle-blue {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  .circle-blue img {
    width: 10px;
    height: 10px;
  }
  .circle-orange img {
    width: 10px;
    height: 10px;
  }
  .intersect {
    width: 10px;
    height: 10px;
  }
  .title-with-arrow {
    padding-top: 0px;
  }
}

body[lang="en"] {
  .circle-blue img {
    transform: rotateY(180deg);
  }


  .circle-orange {
    transform: rotateY(178deg);
  }
  @media screen and (max-width: 768px) {
    .arrow-text {
      padding-right: 0px;
      padding-left: 20px;
      width: 90%;
    }
  }
  @media screen and (max-width: 480px) {
    .arrow-text {
      padding-right: 0px;
    }
    .title-with-arrow {
      padding-left: 15px;
    }
  }
}
