/** Shopify CDN: Minification failed

Line 132:33 Unexpected "{"
Line 133:0 Expected identifier but found "."

**/
/* ============ override the pre-defined sections ============ */
.choose-subject__box {
  gap: 1.6rem !important;
}

.choose-subject-action {
  width: 469px;
  max-width: 100%;
  margin: 3.2rem auto 0;
}

@media (max-width: 767px) {
  .choose-subject-action {
    width: 206px;
    margin: 2.4rem auto 0;
  }

  .en .choose-subject-action {
    width: 264px;
    font-size: 1.2rem !important;
  }

  .choose-subject__box p {
    font-size: 1.4rem !important;
  }

  .en .choose-subject__box p {
    padding-inline: 0.3rem;
  }
}

/* ============ Features Section ============ */
.features-as__title,
.features-as__desc {
  text-align: center;
}

/* .features-as__title {
  color: var(--main-color);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-family: "Expo-Medium";
} */

.features-as__desc {
  color: var(--text-gray);
  margin-top: 1.6rem !important;
  font-size: clamp(1.6rem, 1vw, 2rem);
}

.features-as__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .features-as__box {
    flex-direction: column;
    gap: 4rem;
  }
}

.features-as__box--first {
  margin-top: 3.2rem;
}

.features-as__box--second,
.features-as__box--third {
  margin-top: 10.2rem;
}

@media (max-width: 767px) {
  .features-as__box--first {
    margin-top: 2.4rem;
    flex-direction: column-reverse;
  }

  .features-as__box--second,
  .features-as__box--third {
    margin-top: 4.8rem;
  }

  .features-as__box--third {
    flex-direction: column-reverse;
  }
}

.features-as__box .text-box {
  width: 551px;
  max-width: 100%;
}

.features-as__box .text-box__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

@media (max-width: 767px) {
  .features-as__box .text-box__header {
    justify-content: center;
  }
}

.features-as__box .text-box__header h3 {
  color: var(--text-black);
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-family: "Expo-Medium";
}

@media (max-width: 767px) {
  .en .features-as__box .text-box__header h3 {
    text-align: center;
  }
}

.features-as__box .text-box .desc {
  color: var(--text-gray);
  font-size: clamp(1.6rem, 1vw, 2.4rem);
  margin-top: 3.2rem;
}

.features-as__box--first .desc {
  width: 75%;
}
.features-as__box--second .desc, {
.features-as__box--third .desc
  width: 90%;
}

@media (max-width: 767px) {
  .features-as__box .text-box .desc {
    margin-top: 1.6rem;
    text-align: center;
    width: 100%;
  }

  .en .features-as__box .text-box .desc {
    font-size: 1.4rem;
  }
}

.features-as__box .features-as-action {
  width: 198px;
  margin-top: 3.2rem;
}

@media (max-width: 767px) {
  .features-as__box .features-as-action {
    margin-inline: auto;
  }
}

.features-as__box .img-box {
  max-width: 100%;
  display: flex;
}
  
.features-as__box--first .img-box {
  width: 625px;
}
  
.features-as__box--second .img-box {
  width: 645px;
}
  
.features-as__box--third .img-box {
  width: 551px;
}

/* ============ Packages Section ============ */
.materials-packages {
  padding-block: 4.2rem;
  background-image: url('packages-img.png');
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .materials-packages {
    padding-block: 2.4rem;
  }
}

.packages__title,
.packages__desc {
  color: #fff;
  text-align: center;
}

.packages__title {
  font-family: 'Expo-Medium';
  font-size: clamp(2.4rem, 2vw, 3.6rem);
}

.packages__desc {
  font-size: clamp(1.6rem, 1vw, 2rem);
  margin-top: 1.6rem;
}

.packages__cards {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.4rem;
}  

@media (max-width: 767px) {
  .packages__cards {
    margin-top: 2.4rem;
  } 
}  
  
.packages__card {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2.4rem;
  color: var(--main-color);
}

.packages__card h3,
.packages__card > p {
  text-align: center;
  font-family: 'Expo-Medium';
}  

.packages__card h3 {
  font-size: clamp(2rem, 2vw, 3.6rem);
}
  
.packages__card > p {
  font-size: clamp(1.2rem, 1vw, 1.6rem);
  margin-top: 1.6rem;
}

@media (max-width: 767px) {
  .packages__card > p {
    margin-top: 1rem;
  } 
} 

.packages__features {
  padding-top: 2.4rem !important;
  margin-top: 3rem !important;
  border-top: 1px solid var(--main-color);
} 

@media (max-width: 767px) {
  .packages__features {
    margin-top: 2.1rem;
  }
}

.packages__feature {
  display: flex;
  align-items: center;
}  

.packages__feature .circle {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.packages__feature .circle::before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: var(--main-color);
  border-radius: 50%;
}  
  
.packages__feature p {
  padding: 1rem;
  font-family: 'Expo-Medium';
}

.en .packages__feature p {
  font-size: 1.4rem;
}  

.packages__card .packages-action {
  width: 210px;
  margin-top: 3.9rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .packages__card .packages-action {
    margin-top: 2.1rem;
  }
}  















  