/* six cards */

.six-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 90px;
}

.one-card {
  width: 32%;
  margin-bottom: 60px;
  background-color: white;
  padding: 65px 50px;
  position: relative;
  text-align: center;
  border-top: 12px solid #ffb548;
  display: flex;
  justify-content: center;
  align-items: center;
  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-weight: bold;
    color: white;
    position: absolute;
    border-radius: 100%;
}


.one-card h1 {
  font-size: 26px;
  font-weight: 400;
  color: #31544b;
  margin-top: 10px;
  vertical-align: center;
  line-height: 40px;
}
/* six cards ends */

@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;
  }
  .orange-number {
    font-size: 40px;
  }
  .one-card {
    width: 48%;
  }
}

@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%;
  }
  .orange-number {
    font-size: 20px;
  }
  .one-card {
    width: 100%;
    margin: 30px 0;
  }
}

.number-english {
  display: none;
}
body[lang="en"] {
  .number-english {
    display: inline;
  }

  .logo-div {
    left: 0px;
  }
  .logo-div::before {
    top: -27.8675px;
  }

  .logo-div::after {
    bottom: -27.2px;
  }
}
