.title-first,
.title-second {
  position: relative;
  font-size: 26px;
  color: #31544b;
  font-weight: bold;
  padding-bottom: 15px; /* space below text */
}
.title-second {
  text-align: center;
}

.title-first::before,
.title-second::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 15%; /* start from center */
  transform: translateX(50%);
  width: 340px;
  height: 4px;
  background-color: #ffb548;
  border-radius: 2px;
}

.title-second::before {
  right: 50%; /* adjust for second title */
}
.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;
}
.list-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #6b95bd;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 15px;
}
.title-with-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3a4944;
  font-size: 17px;
  font-weight: 100;
  padding-right: 30px;
}
.intersect {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0%;
  background: url(../Images/Intersect.png) no-repeat center;
  background-size: 100% 100%;
}

/* six cards */

.six-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 90px;
}

.one-card {
  width: 32%;
  margin-bottom: 60px;
  background-color: white;
  padding: 30px;
  position: relative;
  text-align: center;
  border-top: 12px solid #ffb548;
  border-top-right-radius: 5px;
}

body[lang="en"] {
    .one-card {
        border-top-right-radius: 0px;
        border-top-left-radius: 5px;
    }
}



.logo-div span {
  font-weight: 700;
  font-size: 40px;
  line-height: 93.7px;
}
.logo-div {
  width: 90px;
  height: 90PX;
  background: #31544b;
  top: -90px;
  transform: translateY(40px);
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  position: absolute;
  border-radius: 100%;
}

.one-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: #31544b;
  margin-top: 10px;
  vertical-align: center;
  line-height: 40px;
}
.one-card p {
  font-size: 18px;
  font-weight: 500;
  color: #444444;
  margin-top: 30px;
  vertical-align: center;
  line-height: 25px;
  text-align: justify !important;
}
/* six cards ends */
@media (max-width: 1024px) {
  .intersect {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .title-first {
    padding-bottom: 5px;
  }
  .title-first::before {
    right: 30%;
  }
  .List-header {
    height: 100px;
  }
  .list-item {
    font-size: 12px;
    padding: 20px;
  }
  .list-item img {
    width: 50px;
    height: 50px;
  }
  .list-item h1 {
    padding-right: 10px;
    font-size: 13px;
  }
  .orange-number {
    font-size: 40px;
  }

  .title-with-arrow {
    align-items: flex-start;
  }
  .one-card {
    width: 48%;
  }
  .logo-div::before {
    top: -28px;
  }
}

@media (max-width: 480px) {
  .title-first {
    font-size: 16px;
    /* padding-bottom: 5px;  */
  }

  .List-header {
    height: 80px;
  }
  .list-item {
    font-size: 7px;
  }
  .list-item img {
    width: 30px;
    height: 30px;
  }
  .title-with-arrow {
    font-size: 12px;
  }
  .intersect {
    position: absolute;
    width: 10px;
    height: 10px;
    /* top: 0%; */
    right: 0%;
    transform: translate(-0%, -100%);
    background: url(../Images/Intersect.png) no-repeat center;
    background-size: 100% 100%;
    margin-top: 15px;
  }
  .orange-number {
    font-size: 20px;
  }
  .one-card {
    width: 100%;
    margin: 30px 0;
  }
}
.number-english {
  display: none;
}
body[lang="en"] {
  .number-english {
    display: inline;
  }
  .orange-number {
    padding-right: 20px;
  }
  .intersect {
    left: 0%;

    transform: rotateY(180deg);
  }
  .list-item {
    text-align: left;
  }
  .title-with-arrow {
    padding-left: 30px;
  }
  .logo-div {
    left: 0px;
  }
  @media (max-width: 480px) {
    .intersect {
      margin-top: 4px;
    }
  }
}
