/* ==================== ABOUT SECTION TWO ==================== */
.box-about-2 {
  display: flex;
  overflow: hidden;
  background: #f7f7f7;
}

.box-about-2 .num {
  width: 100%;
  font-size: 138px;
  line-height: 108px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgba(6, 83, 159, 0.1);
}

.box-about-2 .title {
  width: 100%;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.box-about-2 .summary {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 10px;
}

.box-about-2 .content-img img {
  width: 100%;
  height: auto;
}

/* Policy About */
.box-about-2 .policy-about {
  width: 100%;
}

.box-about-2 .policy-about .item-poly {
  width: 100%;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}

.box-about-2 .policy-about .item-poly.style2 {
  padding: 7px 10px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.box-about-2 .policy-about .item-poly.style2:hover {
  border-left-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(6, 83, 159, 0.2);
  transform: translateX(5px);
}

.box-about-2 .item-poly .icons {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-about-2 .item-poly .icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.box-about-2 .item-poly .txt {
  flex: 1;
}

/* Responsive - iPad */
@media (min-width: 768px) and (max-width: 991px) {
  .box-about-2 .content-img {
    text-align: center;
    margin-top: 30px;
  }

  .box-about-2 .content-img .img {
    max-width: 70%;
    margin: 0 auto;
  }

  .box-about-2 .content-img img {
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .box-about-2 .num {
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .box-about-2 .title {
    font-size: 22px;
  }
}

