/* #2 Comparison Section */
.comparison-section {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 100%;
}

.comparison-content {
  display: flex;
  position: relative;
}

/* Common */
.comparison-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
}

.comparison-block h3 {
  padding: 0 100px;
}

.comparison-title {
  width: 100%;
  text-align: center;
}

@media (max-width: 1000px) {
  .comparison-title {
    font-size: 28px;
    line-height: 1.1;
  }
}

@media (max-width: 768px) {
  .comparison-content {
    flex-direction: column;
    align-items: stretch;
  }

  .comparison-title {
    font-size: 28px;
    max-width: 100%;
  }

  .comparison-block {
    padding: 20px 0;
  }

  .comparison-block h3 {
    padding: 0 0;
  }
}

@media (max-width: 480px) {
  .comparison-block h3 {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .comparison-title {
    font-size: 24px;
  }

  .comparison-block {
    padding: 0 0;
  }
}

/* Left */
.comparison-left {
  background-color: #4b0082;
}

.comparison-left h3 {
  color: white;
}

/* Right */
.comparison-right {
  background-color: rgba(216, 185, 255, 0.4);
}

.comparison-right h3 {
  color: #4b0082;
}

/* VS */
.comparison-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.comparison-vs h2 {
  font-size: 72px;
}

/* Responsive Part */
@media (max-width: 768px) {
  .comparison-left {
    width: 100%;
  }

  .comparison-right {
    width: 100%;
  }
}

/* #2.1 - Feature Section */
.one-adv-section {
  margin-top: 100px;
  width: 70%;

  /*Flex*/
  display: flex;
  flex-direction: column;
  align-self: center;

  gap: 3rem;
}

/* One item */
.one-adv-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;

  background-color: #f9f4ff;
}

.one-adv-indicator {
  border-radius: 2px;
  background-color: #4b0082;
  align-self: stretch;
  width: 0.75rem;
  height: 86px;
}

.one-adv-title {
  color: #4b0082;
  margin: auto 0;
  width: 25%;

  letter-spacing: -0.64px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}

.one-adv-description {
  color: #000;
  width: 75%;
  letter-spacing: -0.44px;
  margin: auto 0;
  font-size: 1.125rem;
  line-height: 1.5;

  padding-right: 10px;
}

@media (max-width: 900px) {
  .one-adv-section {
    width: 90%;
  }
  /* .one-adv-item {
    flex-wrap: wrap;
  } */

  .one-div-description {
    /* max-width: 100%; */
  }
}

@media (max-width: 700px) {
  .one-adv-title {
    width: 40%;
  }

  .one-adv-description {
    width: 60%;
  }

  .one-adv-indicator {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .one-adv-title {
    font-size: 20px;
  }

  .one-adv-description {
    font-size: 16px;
  }

  .one-adv-indicator {
    height: 160px;
  }
}

/* 3.0 Second Advantage Section */
.sec-vs-section {
  background-color: rgba(216, 185, 255, 0.4);
  margin-top: 100px;
  margin-bottom: 100px;
}

.sec-vs-content {
  color: #4b0082;

  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8rem;
}

.sec-vs-text {
  font-size: 72px;
  margin: 50px 0;
}

.sec-vs-description {
  padding-top: 10px;
}

/* 3.1 Second Advantage Detail, And the Third */
.sec-adv-section,
.third-adv-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-adv-image-section,
.third-adv-image-section {
  width: 50%;
  padding: 20px;
  text-align: center;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.microscope {
  padding-right: 50px;
}

/* .graduation {
  padding-left: 50px;
} */

/* The content */
.sec-adv-content-section,
.third-adv-content-section {
  width: 50%;

  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 20px;
}

.sec-adv-item {
  width: 100%;
  padding-right: 30px;
}

.sec-adv-title {
  background-color: #4b0082;
  color: white;

  padding: 10px 15px;
  border-radius: 5px;

  display: inline-block;

  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}

.sec-adv-description,
.third-adv-description {
  margin-top: 10px;
  padding-left: 1%;

  font-size: 18px;
  line-height: 1.5;
}

.third-adv-title {
  color: #4b0082;
  font-weight: bold;
  line-height: 1.1;
}

.third-adv-description {
  padding-left: 0;
}

/*Responsive */
@media (max-width: 1200px) {
  .sec-adv-content-section {
    padding-right: 0;
  }

  .microscope {
    padding-right: 20px;
  }

  /* .graduation {
    padding-left: 20px;
  } */
}

@media (max-width: 1000px) {
  .sec-adv-section,
  .third-adv-section {
    flex-direction: column;
    gap: 3rem;
  }

  .sec-adv-image-section {
    width: 60%;
    padding: 0;
  }

  .microscope {
    width: 80%;
  }

  .third-adv-image-section {
    width: 80%;
  }

  .graduation {
    padding-left: 0;
  }

  .sec-adv-content-section,
  .third-adv-content-section {
    width: 90%;
  }

  .sec-adv-item {
    align-items: center;
    padding-right: 20px;
  }

  .third-adv-item {
    align-items: center;
  }
  .third-adv-title {
    text-align: center;
  }

  .sec-adv-description,
  .third-adv-description {
    text-align: center;
  }

  .sec-adv-title {
    display: block;
  }
}

@media (max-width: 768px) {
  .sec-adv-image-section,
  .third-adv-image-section {
    width: 100%;
  }

  .microscope {
    width: 70%;
  }

  .sec-adv-content-section,
  .third-adv-content-section {
    gap: 2rem;
  }

  .sec-adv-description {
    font-size: 16px;
  }

  .sec-adv-title,
  .third-adv-title {
    font-size: 20px;
  }
}

/*5 Advantage Section*/
.advantages-section {
  background-color: #4b0082;
  margin-top: 100px;
  width: 100%;
}

.advantages-content {
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

.advantages-title {
  color: #fff;
  align-self: center;
  font-weight: bold;
  text-align: center;
}

/* Content */
.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;

  margin-top: 50px;
  padding: 0 10%;
}

.advantages-row {
  display: flex;
  justify-content: space-around;
  align-items: start;
  gap: 3rem;
}

/* Item */
.advantage-item {
  display: flex;
  gap: 1.5rem;
  color: #fff;
  width: 45%;
}

.advantage-icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 72px;
  margin: auto 0;
}

/* Text Content */
.advantage-content {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.advantage-title {
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.16px;
}

.advantage-description {
  line-height: 1.5;
  margin-top: 14px;
  font-size: 18px;
}

@media (max-width: 1200px) {
  .advantage-title {
    height: 52px;
  }
}

@media (max-width: 1000px) {
  .advantage-item {
    flex-direction: column;
  }
}

@media (max-width: 610px) {
  .advantage-title {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    padding: 0 5%;
  }

  .advantages-row {
    flex-direction: column;
    width: 100%;
  }

  .advantage-item {
    width: 90%;
    align-items: center;
  }
  .advantage-icon {
    width: 50px;
  }

  .advantage-title {
    font-size: 20px;
    height: auto;
    text-align: center;
  }

  .advantage-description {
    text-align: center;
    font-size: 16px;
  }
}
