/* #2 Discover SOA */
.discover-section {
  background-color: #4b0082;
  margin-top: 100px;
  padding: 100px 0;
}

/* The whole section */
.discover-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* The Title Part */
.discover-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.discover-subtitle {
  color: #fff;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 50px;
  text-align: center;
  width: 70%;
}

/* Discover Feature Part*/
.discover-row {
  display: flex;
  justify-content: space-around;
  width: 80%;
}

/* The single column list */
.discover-list {
  display: flex;
  width: 35%;
  flex-direction: column;
  gap: 3rem;
}

/* The single discover item */
.discover-item {
  display: flex;
  gap: 0.5rem;
}

.discover-text {
  padding-left: 1.5rem;
  width: 100%;
}

.discover-description {
  color: #fff;
}

/* Responsive Part */
@media (max-width: 1150px) {
  .discover-row {
    width: 100%;
  }

  .discover-subtitle {
    width: 90%;
  }

  .discover-list {
    width: 40%;
  }
}

@media (max-width: 1000px) {
  .discover-row {
    /* justify-content: space-between; */
  }
}

@media (max-width: 856px) {
  .discover-subtitle {
    width: 100%;
  }

  .discover-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .discover-list {
    width: 60%;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .discover-list {
    width: 90%;
  }

  .discover-section {
    margin-top: 50px;
  }
}

/* #3. Online School Section */
.online-school-section {
  margin-top: 100px;
  width: 100%;
}

/* The content container */
.online-school-content {
  display: flex;
  gap: 6rem;
  align-items: center;
}

/* The header part */
.online-school-title {
  width: 34%;
  margin: 0 0;

  /* Display */
  display: flex;
  flex-direction: column;
}

.online-school-description {
  margin-top: 24px;
}

/* The responsive part */
@media (max-width: 1100px) {
  .online-school-content {
    gap: 2rem;
  }
}
@media (max-width: 1020px) {
  .online-school-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .online-school-title {
    width: 90%;
    align-items: center;
  }

  .online-school-description {
    text-align: center;
  }
}

/* 3.2 The Online Feature part */
.online-school-features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 66%;
}

.online-row {
  display: flex;
  justify-content: space-between;
}

/* Components */
.online-item {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.online-title {
  font-size: 20px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #4b0082;
  color: #fff;
  letter-spacing: -0.24px;
  padding: 8px 29px;
}

.online-description {
  /* margin-top: 1rem; */
  padding-left: 5%;
  background-color: #f9f4ff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dotted-line {
  border-bottom: 1px dotted #4b0082;
  /* margin-top: 1rem; */
  width: 100%;

  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1020px) {
  .online-school-features {
    width: 90%;
    margin-top: 24px;
    gap: 2rem;
  }
}

@media (max-width: 690px) {
  .online-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .online-item {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .online-item {
    width: 90%;
  }
  .online-title {
    font-size: 18px;
  }
  .online-school-title {
    text-align: center;
  }
}

/* #4 Accreditation Section */
.accreditation-section {
  background-color: rgba(216, 185, 255, 0.4);
  margin-top: 100px;
  width: 100%;
  padding: 100px 0;
}
.accreditation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accreditation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accreditation-title {
  text-align: center;
}

/* Inside the header */
.accreditation-description {
  color: #4b0082;
  margin-top: 24px;
  width: 90%;
  margin-bottom: 0;
  text-align: center;
}

/* 4.2 Accreditation Grid */
.accreditation-grid {
  margin-top: 50px;
  width: 90%;

  /* Flex layout */
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
}

.accreditation-item {
  display: flex;
  flex-direction: column;

  width: 30%;
  margin-left: 0;
}

/* Individual Card */
.accreditation-card {
  border-radius: 16px;
  background-color: #4b0082;
  width: 100%;
  padding: 24px;

  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

.accreditation-logo {
  aspect-ratio: 2.94;
  object-fit: auto;
  object-position: center;
  width: 186px;
  max-width: 100%;
}

.accreditation-name {
  color: var(--Neutral-10, #fff);
  letter-spacing: -0.24px;
  margin-top: 24px;
  font-weight: 800;
}

.accreditation-info {
  color: #fff;
  margin-top: 1rem;
}

/* Responsive part */
@media (max-width: 855px) {
  .accreditation-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .accreditation-item {
    width: 90%;
  }
}

/* The note at the bottom */
.accreditation-note {
  color: #4b0082;
  align-self: end;
  margin: 55px 22px 0 0;
  font: 400 12px Inter, sans-serif;
  padding-right: 3.5%;
}
@media (max-width: 991px) {
  .accreditation-note {
    max-width: 100%;
    margin: 40px 10px 0 0;
  }
}

/* #5, Class Section */
.classes-section {
  margin-top: 100px;

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

.classes-title {
  text-align: center;
}

.classes-content {
  margin-top: 50px;
  width: 100%;
  padding: 0 20px;

  display: flex;
  gap: 4rem;
}

/* The feature part */
.class-feature {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.class-heading {
  color: #4b0082;
  letter-spacing: -0.56px;
  font-weight: 600;
  line-height: 1.1;

  height: 80px;
}

.class-text {
  color: #000;
  line-height: 2;
  letter-spacing: -0.24px;
  margin-top: 10px;
}

.how-divider {
  border: 1px dashed rgba(75, 0, 130, 0.3);
}

/* Responsive Design */

@media (max-width: 1000px) {
  .classes-content {
    gap: 2rem;
  }

  .class-text {
    line-height: 1.6;
  }
}

@media (max-width: 700px) {
  .classes-content {
    flex-direction: column;
  }

  .class-heading {
    height: auto;
  }
}

/* #6 Results Section */
.results-section {
  background-color: #4b0082;
  color: #fff;
  width: 100%;

  margin-top: 100px;
  padding: 100px 0;
  padding-bottom: 60px;
}

.results-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-title {
  color: white;
}

.results-row {
  margin-top: 50px;
  width: 90%;
  display: flex;
  justify-content: space-around;
}

.results-description {
  width: 50%;
}

.results-image {
  text-align: right;
}

.results-image img {
  width: 85%;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .results-description {
    width: 60%;
  }
}

@media (max-width: 900px) {
  .results-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .results-description {
    width: 90%;
  }

  .results-image {
    text-align: center;
  }
}
