/* Swiper */
@media (min-width: 1280px) {
  .swiper-button-prev {
    background-image: url("../../assets/address/arrow_left.png");
    background-size: 100% 100%;
  }

  .swiper-button-next {
    background-image: url("../../assets/address/arrow_right.png");
    background-size: 100% 100%;
  }
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 12px 16px 30px;
}

.breadcrumb-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumb-section span,
.breadcrumb-section a {
  font-family: Ubuntu;
  font-size: 14px;
  font-weight: 300;
  line-height: 18.2px;
  text-align: center;
  color: #353535;
}

.breadcrumb-section span {
  font-family: Ubuntu;
  font-weight: 400;
}

@media (min-width: 1280px) {
  .breadcrumb-section {
    background-color: #f9f7f7;
    padding: 20px 0 0;
  }

  .breadcrumb-section .container {
    width: 1200px;
    margin: 0 auto;
  }
}

/* Features Section */
.features-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.features-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.features-section .features-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.features-section .feature-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.features-section .feature-card .content {
  display: flex;
  gap: 16px;
}

.features-section .feature-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-section .feature-card .description {
  display: flex;
}

.features-section .feature-card .description p {
  font-size: var(--features-font-size);
  font-weight: 300;
  line-height: var(--features-line-height);
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .features-section .container {
    flex-direction: row;
    width: 1200px;
    gap: 36px;
  }

  .features-section .title {
    width: 376px;
  }

  .features-section .features-panel {
    width: 788px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }

  .features-section .feature-card {
    max-width: 376px;
    background-color: #f9f7f7;
    padding: 20px;
  }

  .features-section .feature-card .content {
    gap: 20px;
  }

  .features-section .feature-card .description {
    width: 288px;
  }

  .features-section .feature-card .content-image {
    width: 27.63px;
    height: 31.39px;
  }

  .features-section .feature-card .content-image img {
    width: 27.63px;
    height: 31.39px;
  }
}

/* Teacher Types Section */
@media (min-width: 1280px) {
  .teacher-types-section .type-card {
    background-image: url("../../assets/teacher-types/native_speaker.png");
    background-size: 100% 100%;
  }
}

/* Other Programs Section */
.other-programs-section .card-green {
  background-color: #e7ebe4;
}

.other-programs-section .card-cream {
  background-color: #f9f7f7;
}

.other-programs-section .card-gray {
  background-color: #e5e9ec;
}

.other-programs-section .card-blue {
  background-color: #E6EAED;
}

/* Features Section */
.why-learn-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-learn-section .header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-learn-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;  
}

.why-learn-section .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22.41px;
}

.why-learn-section .content-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-learn-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-learn-section .summary,
.why-learn-section .description {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.why-learn-section .why-learn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 36px;
}

.why-learn-section .list-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.why-learn-section .list-item img {
  width: 24px;
  height: 24px;
}

.why-learn-section .stats-card {
  min-width: 272px;
  width: 100%;
  height: 44.83px;
  padding: 11.5px 9px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  background-color: #F9F7F7;

  position: absolute;
  top: -10%;
  z-index: 1;
}

.why-learn-section .stats-card .stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14.75px;
}

.why-learn-section .stats-card span {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.why-learn-section .stats-card p {
  font-family: Ubuntu;
  font-size: 10px;
  font-weight: 300;
  line-height: 10.4px;
  text-align: left;
  color: #353535;
}

.why-learn-section .stats-card .separator {
  height: 22.24px;
  border: 0.37px solid #353535;
  margin: 0 14.75px;
}

.why-learn-section .wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-learn-section .summary {
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #353535;    
}

@media (min-width: 1280px) {
  .why-learn-section .container {
    width: 1200px;
  }

  .why-learn-section .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .why-learn-section .title {
    width: 538.65px;
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
  }

  .why-learn-section .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 51.5px;
  }

  .why-learn-section .content-image {
    width: 685px;
    height: 433px;
    border-radius: 12px;
    background-color: #E9EEF2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .why-learn-section .content-image img {
    width: 365px;
    height: 340px;
  }

  .why-learn-section .description {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
  }

  .why-learn-section .summary {
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }

  .why-learn-section .why-learn-list {
    width: 481px;
    gap: 36px;
  }

  .why-learn-section .list-item {
    gap: 36px;
  }
  
  .why-learn-section .list-item img {
    width: 48px;
    height: 48px;
  }

  .why-learn-section .stats-card {
    width: 613px;
    height: 103px;
    padding: 20px 36px;
  }

  .why-learn-section .stats-card span {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
    text-wrap: nowrap;
  }
  
  .why-learn-section .stats-card p {
    min-width: 192px;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }
  
  .why-learn-section .stats-card .separator {
    height: 60px;
    border: 1px solid #353535;
    margin: 0 16px;
  }

  .why-learn-section .wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .why-learn-section .summary {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }

  .why-learn-section .main-summary {
    width: 525.35px;
    font-family: Ubuntu;
    font-size: 16px;
    font-weight: 300;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    text-align: left;
    color: #353535;
  }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

