/** Shopify CDN: Minification failed

Line 103:19 Expected identifier but found whitespace
Line 103:21 Unexpected "{"
Line 103:30 Expected ":"
Line 147:8 Expected identifier but found whitespace
Line 147:10 Unexpected "{"
Line 147:19 Expected ":"
Line 155:8 Expected identifier but found whitespace
Line 155:10 Unexpected "{"
Line 155:19 Expected ":"
Line 160:8 Expected identifier but found whitespace
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.why-choose-us {
  text-align: center;
  padding: 80px 50px;
}

.why-choose-us h2 {
  font-size: 46px;
  line-height: 57px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.why-choose-us p.subtitle {
  color: #344054;
  font-size: 20px;
  margin: 0 0 56px;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 45px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-box {
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.stat-box h3 {
  text-align: left;
  font-size: 45px;
  margin: 0;
  font-weight: 700;
  line-height: 100%;
}

.stat-box span {
  font-size: 20px;
  font-weight: 600;
}

.stat-box p {
  color: #758599;
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  margin-top: 5px;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-container {
    
  }
}
  @media screen and (max-width:480px){
    .why-choose-us{
      padding: 50px 16px;
    }
    .why-choose-us p.subtitle{
          font-size: 16px;
    line-height: 25px;
    margin-bottom: 35px;
    }
    .stat-box h3{
          font-size: 30px;
    line-height: 40px;
    }
    .stat-box p{
      text-align: left;
    }
    .stats-container{
      grid-template-columns: 1fr ;
      align-items: center;
    justify-content: left;
      
    }
  }
.our-speciality {
  padding: 64px 50px;
  background-color: {{ section.settings.background_color }};
}

.speciality-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  border-radius: 6px;
  overflow: hidden;
}

.speciality-section.reverse-mobile {
  flex-direction: row-reverse;
}

.speciality-section .image-side {
  border-radius: 22px;
  max-width: 46%;
}

.speciality-section .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.speciality-section .text-side {
  max-width: 54%;
  padding: 28px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-side h2 {
  font-weight: 700;
  text-align: left;
  font-size: 38px;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0;
  color: {{ section.settings.heading_color }};
}

.text-side * {
  font-weight: 400;
  font-style: Regular;
  margin: 0;
  font-size: 20px;
  color: {{ section.settings.text_color }};
  line-height: 31px;
}

.text-side strong {
  color: {{ section.settings.accent_color }};
  color:#1F1F1F;
  font-size: 20px;
  font-weight: bold;
  line-height: 31px;
}
  .speciality-section ul{
    padding-left:20px;
  }
  .cstm-botom-text *{
        font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    max-width: 740px;
    margin: 40px auto 0;
  }

@media screen and (max-width: 768px) {
  .speciality-section {
    flex-direction: column;
    gap: 20px;
  }
  
  {% if section.settings.reverse_mobile %}
  .speciality-section.reverse-mobile {
    flex-direction: column-reverse;
  }
  {% endif %}
  
  .our-speciality {
    padding: 50px 16px;
  }
  
  .speciality-section .image-side {
    width: 100%;
    min-width: 100%;
  }
  
  .speciality-section .text-side {
    width: 100%;
    min-width: 100%;
    gap: 12px;
    padding:0;
  }
  
  .text-side h2 {
    font-size: 30px;
    line-height: 40px;
  }
  
  .text-side * {
    font-size: 16px;
    line-height: 25px;
  }
  
  .text-side strong {
    font-size: 16px;
  }
  .cstm-botom-text * {
    font-size: 16px;
    line-height: 1.5;
    margin: 30px auto 0;
}


}
.guarantee-section {
  max-width: 1234px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 50px;
  padding-right: 50px;
}
.guarantee-section h2 {
max-width: 919px;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 61px;
  margin: 0 auto 48px;
}
.guarantee-boxes {
  display: flex;
  justify-content: center;
  gap: 42px;

}
.guarantee-box {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  max-width: 515px;
}

.guarantee-box h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  margin: 10px 0 24px;
}
.guarantee-box p {
  font-size: 16px;
  line-height: 29px;
  color: #1A1A18;
}
@media (max-width: 768px) {
  .guarantee-section h2 {
    font-size: 22px;
  }
  .guarantee-boxes {
    flex-direction: column;
    align-items: center;
  }
}
  @media screen and (max-width:480px){
    .guarantee-section h2{
      font-size: 30px;
    line-height: 40px;
      margin-bottom:20px;
    }
    .guarantee-box h3{
     font-size: 22px;
      line-height:30px;
    }
    .guarantee-section{
      padding: 50px 16px;
    }
    .guarantee-box{
      padding:20px 15px;
    }
  
  
  
  
  }
.why-learners-section {
                                                                                                                                                                                                                                                                                                                                    padding: 80px 50px;
                                                                                                                                                                                                                                                                                                                                      max-width: 1370px;
                                                                                                                                                                                                                                                                                                                                        margin: auto;
                                                                                                                                                                                                                                                                                                                                          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                          .why-learners-section .section-header {
                                                                                                                                                                                                                                                                                                                                            display: flex;
                                                                                                                                                                                                                                                                                                                                              justify-content: space-between;
                                                                                                                                                                                                                                                                                                                                                align-items: center;
                                                                                                                                                                                                                                                                                                                                                  flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                                                                    margin-bottom: 64px !important;
                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                    .section-header .text-group {
                                                                                                                                                                                                                                                                                                                                                      max-width: 70%;
                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                      .why-learners-section .section-header h2 {
                                                                                                                                                                                                                                                                                                                                                        font-size: 46px;
                                                                                                                                                                                                                                                                                                                                                          line-height: 57px;
                                                                                                                                                                                                                                                                                                                                                            font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                              margin: 0 0 12px 0;
                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                              .why-learners-section .section-header .subtitle {
                                                                                                                                                                                                                                                                                                                                                                color: #344054;
                                                                                                                                                                                                                                                                                                                                                                  font-size: 20px;
                                                                                                                                                                                                                                                                                                                                                                    margin: 0;
                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                     .view-all-btn {
                                                                                                                                                                                                                                                                                                                                                                       padding: 16px 24px;
                                                                                                                                                                                                                                                                                                                                                                         font-size: 18px;
                                                                                                                                                                                                                                                                                                                                                                           background: transparent;
                                                                                                                                                                                                                                                                                                                                                                             border: 1px solid #333;
                                                                                                                                                                                                                                                                                                                                                                               font-weight: bold;
                                                                                                                                                                                                                                                                                                                                                                                 line-height: 18px;
                                                                                                                                                                                                                                                                                                                                                                                   border-radius: 6px;
                                                                                                                                                                                                                                                                                                                                                                                     cursor: pointer;
                                                                                                                                                                                                                                                                                                                                                                                       align-self: self-end;
                                                                                                                                                                                                                                                                                                                                                                                         transition: background 0.3s;
                                                                                                                                                                                                                                                                                                                                                                                           white-space: nowrap;
                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                           .card-wrapper {
                                                                                                                                                                                                                                                                                                                                                                                             display: flex;
                                                                                                                                                                                                                                                                                                                                                                                               justify-content: space-between;
                                                                                                                                                                                                                                                                                                                                                                                                 gap: 20px;
                                                                                                                                                                                                                                                                                                                                                                                                   flex-wrap: nowrap;
                                                                                                                                                                                                                                                                                                                                                                                                   }
                                                                                                                                                                                                                                                                                                                                                                                                     #shopify-section-template--16722378555601__learners_P6nNwG {
                                                                                                                                                                                                                                                                                                                                                                                                         background: #FAFAFA;
                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                           .card {
                                                                                                                                                                                                                                                                                                                                                                                                             background: #FCFCFC;
                                                                                                                                                                                                                                                                                                                                                                                                               padding: 40px 24px;
                                                                                                                                                                                                                                                                                                                                                                                                                 border-radius: 16px;
                                                                                                                                                                                                                                                                                                                                                                                                                   box-shadow: 0 0 0 1px #e0e0e0;
                                                                                                                                                                                                                                                                                                                                                                                                                     text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                                                       transition: all 0.3s ease;
                                                                                                                                                                                                                                                                                                                                                                                                                       }
                                                                                                                                                                                                                                                                                                                                                                                                                       
                                                                                                                                                                                                                                                                                                                                                                                                                       .card:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                                                                                                                                                                                                                                                                                                                                                                                                                         }
                                                                                                                                                                                                                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                                                                                                                                                                         .icon-img {
                                                                                                                                                                                                                                                                                                                                                                                                                           width: 80px;
                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                           .card h3 {
                                                                                                                                                                                                                                                                                                                                                                                                                             font-size: 24px;
                                                                                                                                                                                                                                                                                                                                                                                                                               font-weight: bold;
                                                                                                                                                                                                                                                                                                                                                                                                                                 line-height: 125%;
                                                                                                                                                                                                                                                                                                                                                                                                                                   margin: 24px 0 10px 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                   }
                                                                                                                                                                                                                                                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                                                                                                                                                                                   .card p {
                                                                                                                                                                                                                                                                                                                                                                                                                                     font-size: 14px;
                                                                                                                                                                                                                                                                                                                                                                                                                                       line-height: 150%;
                                                                                                                                                                                                                                                                                                                                                                                                                                         margin: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                           text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                           @media (max-width: 992px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                             .card-wrapper {
                                                                                                                                                                                                                                                                                                                                                                                                                                                 flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                   }
                                                                                                                                                                                                                                                                                                                                                                                                                                                     .card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                         width: 45%;
                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                           @media (max-width: 600px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                             .card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 width: 100%;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .section-header {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                         flex-direction: column;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                             align-items: flex-start;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .section-header .text-group {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     max-width: 100%;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         margin-bottom: 15px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @media screen and (max-width:480px){
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .why-learners-section{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       padding: 50px 16px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .why-learners-section .section-header {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  flex-direction: row;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .why-learners-section .section-header{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               margin-bottom: 30px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     gap:10px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             .why-learners-section .section-header h2{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   font-size:30px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         line-height: 40px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .why-learners-section .section-header .subtitle{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       font-size:18px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             line-height: 25px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .card-wrapper card{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           padding: 30px 15px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .card h3{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     font-size: 22px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         margin-top: 20px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .section-header .view-all-btn{
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   padding: 10px 24px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }