/* [project]/src/pages/about/about.css [client] (css) */
.about-page {
  color: #fff;
  box-sizing: border-box;
  background-color: #000410;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.value-icon-div {
  background-color: #6c6c6c;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.value-icon-div img {
  width: 60%;
  height: 60%;
}

.about-hero h1 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: 80px;
  font-weight: 700;
}

.mission-vision {
  flex-direction: column;
  align-items: center;
  margin-top: 96px;
  display: flex;
}

.section-title {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
}

.section-text {
  max-width: 1000px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.6;
}

.info-list {
  margin-bottom: 30px;
  padding-left: 40px;
  font-size: 20px;
  list-style-type: disc;
}

.image-group {
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}

.image-group img {
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  height: auto;
}

.mission-vision-box {
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  padding: 0 20px;
  display: flex;
}

.mission, .vision {
  background-color: #fff;
  border-top: 10px solid #bfdbfe;
  border-radius: 16px;
  flex: 1;
  padding: 24px 28px;
}

.mission {
  background-image: url("../media/mission.0b4c92bf.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}

.vision {
  background-image: url("../media/vision.bf4b099c.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
}

.mission h3, .vision h3 {
  color: #111827;
  margin: 0;
  padding: 0 0 8px 10px;
  font-size: 32px;
}

.mission li, .vision li {
  color: #111827;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.2;
}

.mission ul, .vision ul {
  margin: 0;
  padding-left: 28px;
  list-style-type: disc;
}

.values {
  flex-direction: column;
  align-items: center;
  padding: 96px 0;
  display: flex;
}

.values .section-title {
  margin-bottom: 16px;
}

.values .section-text {
  text-align: center;
  margin-bottom: 40px;
}

.value-cards {
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  display: flex;
}

.value-card {
  text-align: center;
  background: linear-gradient(to top right, #36363e, #292930);
  border-radius: 12px;
  width: 403px;
  padding: 20px;
  transition: transform .3s;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h4 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 24px;
}

.value-card p {
  color: #d6d6d6;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}

.promise-section {
  background: #fff;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.promise-content {
  background-color: #dbeafe;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  margin: 96px 260px 64px;
  padding: 40px 60px;
  display: flex;
}

.promise-content h2 {
  color: #111827;
  margin: 0;
}

.promise-content p {
  color: #1f2937;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}

.promise-image {
  width: 100%;
}

.promise-image img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 360px;
  margin: 20px 0;
}

.promise-values {
  color: #111827;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
}

.about-tick {
  background-color: #111827;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  display: flex;
}

.why-section {
  color: #fff;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 96px 130px;
  display: flex;
}

.why-section h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
}

.why-grid {
  border-top: 2px solid #ffffff4d;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  display: flex;
}

.why-card {
  text-align: center;
  border-right: 2px solid #ffffff4d;
  max-width: 260px;
  padding: 30px;
}

.why-card:last-child {
  border: none;
}

.why-card img {
  object-fit: contain;
  background-color: #fff;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  padding: 10px;
}

.why-card h4 {
  white-space: nowrap;
  margin-bottom: 10px;
  font-size: 24px;
}

.why-card p {
  font-size: 16px;
  line-height: 2;
}

.about-award-section {
  background-color: #fff;
  width: 100%;
}

.about-award-section .awards-container {
  width: 75%;
  margin: 30px auto;
}

@media (max-width: 768px) {
  .mission-vision-box {
    flex-direction: column;
    align-items: center;
  }

  .promise-values {
    flex-wrap: wrap;
    gap: 20px;
  }

  .value-cards, .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-card {
    border: none;
  }
}

.grid-section {
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  display: grid;
}

.grid-item {
  color: #fff;
  background: linear-gradient(135deg, #4169e1, #00c4ff);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
}

.who-we-are-section {
  color: #fff;
  width: 75%;
  font-family: Poppins, sans-serif;
}

.who-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

.who-images {
  flex-direction: column;
  flex: 1;
  gap: 20px;
  min-width: 320px;
  display: flex;
}

.top-image img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.bottom-images {
  justify-content: space-between;
  gap: 15px;
  display: flex;
}

.bottom-images img {
  object-fit: cover;
  border-radius: 12px;
  width: 55%;
  height: auto;
}

.bottom-images img:first-child {
  width: 40%;
}

.who-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  min-width: 350px;
  display: flex;
}

.who-content h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
}

.who-content p {
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
}

.who-content ul {
  margin-bottom: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.who-content li {
  color: #ccc;
  margin-top: 5%;
  font-size: 18px;
  line-height: 2;
}

.now-rap {
  white-space: nowrap;
}

.border-line {
  border: 1px solid #e4e4e4;
  margin: 40px 0;
}

@media (max-width: 992px) {
  .who-container {
    flex-direction: column;
  }

  .bottom-images img:first-child {
    width: 100%;
  }

  .bottom-images {
    flex-direction: column;
  }

  .bottom-images img {
    width: 100%;
  }

  .who-content h2 {
    text-align: center;
  }

  .about-page .award-card {
    height: 70px;
  }

  .who-content {
    min-width: unset;
  }
}

@media (min-width: 200px) {
  .about-page {
    margin-top: 50px;
  }

  .about-hero h1 {
    margin: 40px 0;
    font-size: 35px;
  }

  .about-page h2 {
    margin: 0;
    font-size: 28px;
  }

  .who-images {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: fit-content;
  }

  .top-image {
    width: 28%;
    height: 60px;
    display: flex;
  }

  .bottom-images {
    flex-direction: row;
    justify-content: start;
    gap: 10px;
    width: 55%;
    height: 60px;
  }

  .bottom-images img, .bottom-images img:first-child {
    width: 50%;
    height: auto;
  }

  .who-we-are-section {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .who-container {
    flex-wrap: unset;
  }

  .about-page section > div, .values .section-text {
    padding: 0 18px;
  }

  .who-images {
    width: 100%;
    min-width: unset;
  }

  .about-page p {
    font-size: 14px;
    line-height: 1.2;
  }

  .who-content li {
    font-size: 12px;
    line-height: 1.2;
  }

  .about-page .border-line {
    margin: 20px 0;
  }

  .mission-vision {
    margin-top: 30px;
  }

  .mission li, .vision li {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .mission-vision-box {
    gap: 20px;
    padding: 0;
  }

  .mission, .vision {
    padding: 15px;
  }

  .mission h3, .vision h3 {
    font-size: 20px;
  }

  .values {
    width: 100%;
    padding: 30px 0;
  }

  .value-cards {
    gap: 15px;
    margin-top: 0;
  }

  .value-card {
    width: 42%;
    height: 100px;
    padding: 5px;
  }

  .value-icon-div {
    width: 20px;
    height: 20px;
  }

  .value-card h4 {
    white-space: nowrap;
    margin: 4px 0;
    font-size: 11.5px;
  }

  .value-card p {
    margin: 0;
    font-size: 9px;
    line-height: 1.1;
  }

  .promise-content {
    margin: 30px 20px;
    padding: 20px !important;
  }

  .promise-content h2 {
    font-size: 20px;
  }

  .promise-content p {
    font-size: 12px;
    line-height: 1.1;
  }

  .promise-image img {
    height: 160px;
  }

  .promise-values div {
    font-size: 15px;
  }

  .why-section {
    padding: 0;
  }

  .why-section h2 {
    margin-top: 30px;
  }

  .why-grid {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 15px;
    padding: 20px 0 !important;
  }

  .why-card {
    width: 43%;
    padding: 10px;
  }

  .why-card img {
    width: 30px;
    height: 30px;
  }

  .why-card h4 {
    text-align: center;
    margin: 0 5px;
    font-size: 14px;
  }

  .why-card p {
    font-size: 9px;
    line-height: 1.1;
  }

  .awards-logos {
    gap: 6px !important;
  }

  .about-page .award-card {
    height: 25px;
  }
}

@media (min-width: 450px) {
  .about-hero h1 {
    margin: 40px 0;
  }

  .top-image {
    width: 30%;
    height: 90px;
    display: flex;
  }

  .bottom-images {
    width: 65%;
    height: 90px;
  }

  .value-icon-div {
    width: 30px;
    height: 30px;
  }

  .value-card h4 {
    white-space: nowrap;
    margin: 4px 0;
    font-size: 12px;
  }

  .value-card p {
    margin: 5px 0;
    font-size: 10.4px;
    line-height: 1.2;
  }

  .why-section {
    padding: 0;
  }

  .why-section h2 {
    margin-top: 30px;
  }

  .why-card img {
    width: 30px;
    height: 30px;
  }

  .why-card h4 {
    text-align: center;
    margin: 0 5px;
    font-size: 14px;
  }

  .why-card p {
    font-size: 12px;
    line-height: 1.1;
  }

  .promise-image img {
    height: 200px;
  }

  .awards-logos {
    gap: 6px !important;
  }

  .about-page .award-card {
    height: 30px;
  }
}

@media (min-width: 600px) {
  .about-page section > div {
    padding: 0 40px;
  }

  .about-page p {
    font-size: 16px;
    line-height: 1.2;
  }

  .top-image {
    width: 30%;
    height: 160px;
    display: flex;
  }

  .bottom-images {
    width: 65%;
    height: 160px;
  }

  .mission-vision-box {
    flex-direction: row;
  }

  .value-card {
    height: 150px;
    padding: 15px;
  }

  .value-icon-div {
    width: 50px;
    height: 50px;
  }

  .value-card h4 {
    margin: 10px 0;
    font-size: 16px;
  }

  .value-card p {
    font-size: 12px;
  }

  .promise-image img {
    height: 300px;
  }

  .promise-content {
    margin: 30px 60px;
    padding: 30px;
  }

  .why-card h4 {
    font-size: 18px;
  }

  .why-card p, .who-content li {
    font-size: 14px;
  }

  .why-section h2 {
    margin-top: 50px;
  }

  .awards-logos {
    gap: 6px !important;
  }

  .about-page .award-card {
    height: 45px;
  }
}

@media (min-width: 768px) {
  .why-grid {
    flex-wrap: unset;
    border-bottom: 2px solid #ffffff4d;
    width: 70%;
    margin-bottom: 35px;
    padding: 0 20px !important;
  }

  .why-card h4 {
    white-space: normal;
    text-align: left;
    font-size: 16px;
  }

  .why-card p {
    font-size: 12px;
  }

  .why-card {
    text-align: left;
    width: 22%;
  }

  .why-card img {
    width: 25px;
    height: 25px;
  }

  .value-card {
    width: 27%;
  }

  .awards-logos {
    gap: 6px !important;
  }

  .about-page .award-card {
    height: 70px;
  }
}

@media (min-width: 933px) {
  .promise-image img {
    height: 380px;
  }
}

@media (min-width: 988px) {
  .about-page {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .about-page p {
    text-align: left;
    font-size: 17px;
    line-height: 1.5;
  }

  .who-content li {
    font-size: 15px;
    line-height: 1.6;
  }

  .who-container {
    flex-wrap: wrap;
    gap: 25px;
    align-items: stretch !important;
  }

  .who-images {
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 20px;
    min-width: 320px;
    display: flex;
  }

  .promise-content h2 {
    margin-top: 0 !important;
  }

  .value-cards {
    width: 90% !important;
  }

  .top-image {
    all: unset;
    flex: 1;
  }

  .top-image img {
    height: 100%;
  }

  .bottom-images {
    gap: 15px;
    width: 100%;
    display: flex;
  }

  .bottom-images img {
    object-fit: cover;
    border-radius: 10%;
    flex-grow: 1;
    height: auto;
  }

  .bottom-images img:first-child {
    width: 40% !important;
  }

  .value-card {
    width: 26%;
    padding: 25px 15px;
  }

  .value-card p {
    font-size: 13px;
    line-height: 1.3;
  }

  .value-card h4 {
    font-size: 17px;
  }

  .why-grid {
    margin-bottom: 45px;
  }

  .why-card {
    padding: 50px 15px;
  }

  .why-card h4 {
    white-space: nowrap;
    font-size: 20px;
  }

  .why-card p {
    font-size: 15px;
    line-height: 2;
  }

  .about-page section > div {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero h1 {
    margin: 70px 0;
    font-size: 65px;
  }

  .who-content h2 {
    margin-top: 0 !important;
  }

  .about-page h2 {
    margin-top: 80px;
    font-size: 35px;
  }

  .promise-content {
    margin: 60px 100px;
  }

  .mission-vision {
    width: 100%;
  }

  .mission, .vision {
    padding: 30px 20px;
  }

  .mission h3, .vision h3 {
    font-size: 25px;
  }

  .mission li, .vision li {
    margin-top: 15px;
    font-size: 16px;
  }

  .about-page .award-card {
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .about-page .award-card {
    height: 130px;
  }

  .awards-logos {
    gap: 15px !important;
  }

  .value-card {
    width: 27%;
  }

  .value-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .value-card {
    width: 27%;
    padding: 40px 15px;
  }

  .promise-values div {
    font-size: 18px;
  }

  .promise-image img {
    height: 440px;
  }

  .promise-content {
    padding: 30px !important;
  }
}

@media (min-width: 1300px) {
  .about-page p, .who-content li {
    line-height: 2;
  }

  .about-hero h1 {
    margin: 90px 0;
  }
}

@media (min-width: 1400px) {
  .promise-image img {
    height: 500px;
  }
}

@media (min-width: 1500px) {
  .promise-image img {
    height: 700px;
  }
}

@media (min-width: 1800px) {
  .about-hero h1 {
    font-size: 80px;
  }

  .about-page h2 {
    margin-top: 100px;
    font-size: 40px;
  }

  .about-page p {
    font-size: 20px;
  }

  .mission, .vision {
    padding: 50px 30px;
  }

  .mission h3, .vision h3 {
    font-size: 32px;
  }

  .mission li, .vision li {
    font-size: 22px;
  }

  .value-card h4 {
    font-size: 24px;
  }

  .value-card p {
    font-size: 16px;
  }

  .promise-values div {
    font-size: 24px;
  }

  .why-grid {
    margin-top: 30px;
    margin-bottom: 55px;
  }

  .why-card {
    margin-right: 30px;
  }

  .why-card img {
    width: 64px;
    height: 64px;
  }

  .why-card h4 {
    font-size: 24px;
  }

  .why-card p {
    font-size: 16px;
  }

  .why-section h2 {
    margin-top: 80px;
  }

  .value-icon-div {
    width: 64px;
    height: 64px;
  }

  .value-card {
    width: 28%;
    padding: 65px 15px;
  }
}

/* [project]/src/components/sections/awardrecognition/award.css [client] (css) */
.awards-container {
  text-align: center;
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
}

.awards-title {
  color: #222;
  margin: 0;
  font-size: clamp(32px, 1.5vw + 1rem, 40px);
  font-weight: 600;
}

.awards-logos {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2%;
  margin-top: 32px;
  display: flex;
}

.award-card {
  background: #fff;
  border-radius: 5px;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 132px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 0 9px 1px #dedede;
}

.award-img {
  object-fit: contain;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .awards-logos {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .awards-title {
    font-size: 1rem;
  }

  .award-img {
    max-width: 70px;
  }
}

/*# sourceMappingURL=src_bf64be6c._.css.map*/