/* ==================== ABOUT SECTION ONE ==================== */
.box-about-1 {
  display: flex;
  overflow: hidden;
}

.box-about-1 .num {
  width: 100%;
  font-size: 138px;
  line-height: 108px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgba(6, 83, 159, 0.1);
}

.box-about-1 .title {
  width: 100%;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.box-about-1 .summary {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 10px;
}

.box-about-1 .content-img img {
  width: 100%;
  height: auto;
}

/* Responsive - iPad */
@media (min-width: 768px) and (max-width: 991px) {
  .box-about-1 .content-img {
    text-align: center;
    margin-top: 30px;
  }

  .box-about-1 .content-img .img {
    max-width: 70%;
    margin: 0 auto;
  }

  .box-about-1 .content-img img {
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .box-about-1 .num {
    font-size: 80px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .box-about-1 .title {
    font-size: 22px;
  }
}


