/* ===== Base Styles ===== */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), 
       url(https://fonts.gstatic.com/s/opensans/v14/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2) format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), 
       url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzOgdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
}

body, p {
  font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}




/* Hero Section Styles */
.hero-section__bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-banner__bg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

.hero-section .hero-banner__bg {
  filter: brightness(1) !important;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.hero-section__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-section__content {
    text-align: left;
    color: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


.hero-section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-section__cta {
    display: inline-block;
    background-color: #f26b3a;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-decoration: none;
}

.hero-section__cta:hover {
    background-color: #e05a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
}

.hero-section__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.hero_required_subtitle{
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 22px;
}
.btn-category {
    background-color: rgb(0 0 0 / 15%);
    /* background-color: rgba(255, 255, 255, 0.15); */
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-category:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-section__content {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .hero-banner__bg {
        object-position: center;
    }
    .hero_required_subtitle{
  padding-bottom: 12px;
  font-size: 20px;
}

}

@media (max-width: 992px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-section__title {
        font-size: 40px;
    }
    
    .hero-section__subtitle {
        font-size: 18px;
    }
    .hero_required_subtitle{
    /* margin-bottom: 20px; */
    padding-bottom: 8px;
    font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 15px;
        text-align: center;
    }
    
    .hero-section__content {
        text-align: center;
        padding: 20px 15px;
    }
    
    .hero-section__title {
        font-size: 32px;
    }
    
    .hero-section__subtitle {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section__categories {
        justify-content: center;
    }
    .hero_required_subtitle{
      margin-bottom: 20px;
      padding-bottom: 2px;
      font-size: 16px;
    }
}




@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-section__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-section__subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-section__cta {
        padding: 12px 30px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn-category {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .hero-section__categories {
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        min-height: 75vh;
        /* min-height: 50vh; */
    }
    
    .hero-section__title {
        font-size: 24px;
    }
    
    .hero-section__subtitle {
        font-size: 14px;
    }
}






/* Benefits Section Styles */
.benefits-section {
  padding: 50px 0 50px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 0px;
}

.benefits-container {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 18px 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);

  min-height: 220px;   
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 4px;
  background-color: #fff;
  color: #f26b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 2px solid #f26b3a;
  box-shadow: 0 3px 10px rgba(242,107,58,0.2);
  flex-shrink: 0;
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.benefit-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  .benefits-section {
  padding: 40px 0 40px;
  margin-top: 0px;
  }

  .benefit-title {
  margin-bottom: 10px;
  margin-top: 10px;
}

.benefit-card {

  min-height: 210px;   
}

}
















.popular-courses {
  padding: 1px 0;
  background-color: #ffffff;
  margin-top: 15px;
}

.courses-container {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.divider-line {
  width: 100px;
  height: 1px;
  background-color: #f26b3a;
  margin: 0 15px;
}

.divider-icon {
  color: #f26b3a;
  font-size: 24px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.course-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.course-header {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.course-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.course-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.course-header h3 {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 90%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  
  border-radius: 4px;
  backdrop-filter: blur(-4px); 
}
.course-card:hover .course-image-wrapper img {
  opacity: 0.6;
}

.course-list {
  padding: 15px 20px;
  list-style: none;
  margin: 0;
}

.course-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.course-list li:last-child {
  border-bottom: none;
}

.course-list a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.course-list a:hover {
  color: #f26b3a;
}

.course-more-btn {
  display: block;
  padding: 12px;
  background-color: #f26b3a;
  color: white;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.course-more-btn:hover {
  background-color: #e05a2b;
  color: white;
}

@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
  
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .popular-courses {
    padding: 0px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .divider-line {
    width: 60px;
  }
  
  .course-header {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .courses-container {
    width: 100%;
    padding: 0 20px;
  }
  
  .course-card {
    margin-bottom: 20px;
  }
  
  .course-card:last-child {
    margin-bottom: 0;
  }
  
  .course-header {
    height: 90px;
  }
  
  .course-header h3 {
    font-size: 16px;
    padding: 10px;
  }
  
  .section-title {
    margin-top: 0px;
  }
  .section-divider {

  margin-bottom: 20px;
}
.section-subtitle {

  margin-bottom: 15px;
}


  
}





























/* Benefits Section Styling */
._benefits_section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

._benefits_container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

._benefits_headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

._benefits_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

._benefits_column {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

._benefits_subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #f26b3a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  line-height: 1.4;
}

._benefits_features {
  list-style: none;
  padding: 0;
  margin: 0;
}

._benefits_item {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

._benefits_icon {
  position: absolute;
  left: 0;
  top: 0;
  background: #f26b3a;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

._benefits_highlight {
  color: #2c3e50;
  font-weight: 600;
}

._benefits_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  position: relative;
}

._benefits_divider-line {
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #f26b3a, transparent);
}

._benefits_divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px;
  color: #f26b3a;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #f8f9fa;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  ._benefits_headline {
    font-size: 30px;
  }
  ._benefits_subtitle {
    font-size: 19px;
  }
  ._benefits_item {
    font-size: 15.5px;
  }
}

@media (max-width: 992px) {
  ._benefits_grid {
    flex-direction: column;
    gap: 40px;
  }
  
  ._benefits_headline {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  ._benefits_subtitle {
    font-size: 18px;
  }
  
  ._benefits_item {
    font-size: 15px;
  }
  
  ._benefits_divider {
    width: 100%;
    height: 0px;
    margin: 20px 0;
  }
  
  ._benefits_divider-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, #f26b3a, transparent);
  }
  
  ._benefits_divider-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  ._benefits_headline {
    font-size: 26px;
    margin-bottom: 35px;
  }
  
  ._benefits_subtitle {
    font-size: 17px;
  }
  
  ._benefits_item {
    font-size: 14.5px;
  }
  
  ._benefits_column {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  ._benefits_section {
    padding: 50px 0;
  }
  
  ._benefits_headline {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  ._benefits_subtitle {
    font-size: 16px;
  }
  
  ._benefits_item {
    font-size: 14px;
    line-height: 1.5;
  }
  
  ._benefits_column {
    padding: 20px;
    min-width: 250px;
  }
  
  ._benefits_icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  ._benefits_headline {
    font-size: 22px;
  }
  
  ._benefits_subtitle {
    font-size: 15.5px;
  }
  
  ._benefits_item {
    font-size: 13.5px;
  }
}



































/* Certification Section Styling */
.certification-block {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.certification-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #b8b8b8;
  padding-bottom: 1rem;
}

.certification-icon {
  font-size: 2rem;
  color: #f26b3a;
}

.certification-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: #f26b3a;
}

.certification-content {
  display: flex;
  gap: 2rem;
}

.certification-text {
  flex: 1;
}

.certification-media {
  flex: 1;
}

.highlight {
  font-weight: 600;
  color: #f26b3a;
}

.certification-features {
  margin: 1.5rem 0;
}

.certification-features p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.certification-features i {
  color: #000000;
}

.certification-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* color: hsl(187, 100%, 28%);  */
  color: hsl(187, 100%, 18%); 
  /* color: hsl(187, 100%, 8%);  */
  /* color: #001dff;  */
  /* color: #000000; */
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.2s;
}

.certification-link:hover {
  color: #f26b3a;
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .certification-content {
    flex-direction: column;
  }

  .certification-title {
  font-size: 2rem;
  }
  
  .certification-media {
    order: -1;
    margin-bottom: 1.5rem;
  }
}


















/* health cources */

.health_courses-section {
  margin: 0;
  /* padding: 40px 0; */
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

.health_courses-header {
  padding: 0 3%;
  margin-bottom: 40px;
  text-align: center;
}

.border_health {
  width: 100%;                  
  height: 1px;                  
  background-color: #e1e1e1;    
  margin: -25px 0 35px 0;        
}


.health_section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
  margin-bottom: 10px;
}

.health_header-flex {
  display: flex;
  justify-content: center;   
  align-items: center;       
  gap: 20px;                 
}

.health_header-icon {
  color: #ff6600;
  font-size: 40px;           
}


.health_courses-row {
  padding: 0 3%;
}

.health_course-col {
  padding: 15px  15px;
}

.health_course-card {
  display: flex;
  align-items: flex-start;
}

.health_icon-container {
  margin-right: 15px;
  flex-shrink: 0;
}

.health_course-icon {
  color: #ff6600;
  font-size: 24px;
  line-height: 1;
}

.health_course-content {
  flex: 1;
}

.health_course-title {
  font-size: 18px;
  margin: 0 0 10px;
}

.health_course-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.health_course-title a:hover {
  color: #ff6600;
}

.health_course-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.health_read-more {
  /* color: #001dff; */
  color: hsl(187, 100%, 18%); 
  text-decoration: none;
  font-weight: 600;
}

.health_read-more:hover {
  color: #ff6600;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .health_course-col {
    padding: 10px 5px;
  }
  
  .health_course-icon {
    font-size: 20px;
  }
  .health_section-title {
  font-size: 30px;
  }
}

@media (max-width: 576px) {
  .health_section-title {
  font-size: 28px;
  }
  .health_courses-section {
  padding-bottom: 10px;
}
 .health_header-flex{
  flex-direction: column;
  gap: 0px;
 }

.border_health {
  margin: -35px 0 20px 0;        
}

}


@media (max-width: 400px) {
  .health_section-title {
  font-size: 27px;
  }
}












/* news section */
._news_latest-releases {
  padding: 40px 0;
  background-color: #fff;
}

._news_titular-seccion {
  text-align: center;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

._news_section-divider {
  border-color: #ff6600;
  margin: 10px 0;
}

._news_section-icon {
  color: #ff6600;
  font-size: 20px;
}

._news_cards-container {
  margin-top: 30px;
  display: flex; 
  flex-wrap: wrap; 
}

._news_card {
  margin-bottom: 30px;
  display: flex; 
}

._news_card-inner {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex; 
  flex-direction: column; 
}

._news_card-inner:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


._news_figure {
  margin: 0;
  flex-shrink: 0; 
}

._news_card-image {
  width: 100%;
  height: 200px; 
  object-fit: cover; 
  display: block;
}


._news_content {
  padding: 20px;
  flex-grow: 1; 
  display: flex; 
  flex-direction: column; 
}


._news_header {
  display: flex;
  align-items: center; 
  gap: 10px; 
  margin-bottom: 15px; 
}

._news_header ._news_icon {
  margin-bottom: 0; 
}


._news_icon {
  color: #ff6600;
  font-size: 24px;
  
}




._news_title {
  margin-top: 0;
  margin-bottom: 0px;
}

._news_title a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

._news_title a:hover {
  color: #ff6600;
}



._news_excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1; 
}

._news_read-more {
  /* color: #ff6600; */
  color: hsl(187, 100%, 18%);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: auto; 
}

._news_read-more:hover {
  text-decoration: underline;
   color: #ff6600;
}

._news_view-all-container {
  margin-top: 20px;
}


@media (max-width: 767px) {
  ._news_card {
    margin-bottom: 20px;
  }
  
  ._news_content {
    padding: 15px;
  }
  
  ._news_card-image {
    height: 180px; 
  }
}