/*==========================================
  About - Kids Section (custom)
==========================================*/
.hk-about {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hk-about__images {
  position: relative;
  max-width: 520px;
}

.hk-about__img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(6, 49, 115, 0.15);
  position: relative;
  z-index: 1;
}

.hk-about__img-main img {
  width: 100%;
  height: auto;
  display: block;
}

.hk-about__img-sub {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 46%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 30px rgba(6, 49, 115, 0.18);
  z-index: 2;
}

.hk-about__img-sub img {
  width: 100%;
  height: auto;
  display: block;
}

.hk-about__badge {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 3;
  background-color: #fdc82e;
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 22px rgba(253, 200, 46, 0.5);
  border: 4px solid #ffffff;
}

.hk-about__badge-number {
  font-family: var(--vs-title-font);
  font-weight: 800;
  font-size: 26px;
  color: #063173;
  line-height: 1;
}

.hk-about__badge-text {
  font-family: var(--vs-body-font);
  font-weight: 700;
  font-size: 10.5px;
  color: #063173;
  line-height: 1.2;
  margin-top: 4px;
}

.hk-about__shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hk-shape-blue {
  width: 90px;
  height: 90px;
  background-color: #40a6e8;
  opacity: 0.18;
  bottom: 30px;
  left: -35px;
}

.hk-shape-green {
  width: 60px;
  height: 60px;
  background-color: #8cbf41;
  opacity: 0.22;
  top: 40%;
  right: -20px;
}

.hk-about__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(64, 166, 232, 0.12);
  color: #0a4499;
  font-family: var(--vs-body-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hk-about__title {
  font-family: var(--vs-title-font);
  font-weight: 800;
  font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.9rem);
  line-height: 1.25;
  color: #063173;
  margin-bottom: 20px;
}

.hk-about__desc {
  font-family: var(--vs-body-font);
  font-size: 17px;
  color: #56607a;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 540px;
}

.hk-about__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.hk-about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-body-font);
  font-weight: 600;
  font-size: 15px;
  color: #263257;
}

.hk-about__list-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

.hk-about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 32px;
  padding-top: 26px;
  border-top: 2px dashed #dbe6f4;
}

.hk-about__stat strong {
  display: block;
  font-family: var(--vs-title-font);
  font-weight: 800;
  font-size: 30px;
  color: #063173;
  line-height: 1;
  margin-bottom: 6px;
}

.hk-about__stat span {
  font-family: var(--vs-body-font);
  font-weight: 600;
  font-size: 14px;
  color: #7a8399;
}

@media (max-width: 991px) {
  .hk-about {
    padding: 70px 0;
  }

  .hk-about__images {
    max-width: 420px;
    margin: 0 auto 40px;
  }

  .hk-about__content {
    text-align: center;
  }

  .hk-about__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hk-about__list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hk-about__stats {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hk-about__img-sub {
    right: -12px;
    bottom: -24px;
  }

  .hk-about__badge {
    width: 92px;
    height: 92px;
    top: -16px;
    left: -12px;
  }

  .hk-about__badge-number {
    font-size: 20px;
  }

  .hk-about__badge-text {
    font-size: 9px;
  }
}
