.para-img-flex{
display: flex;
gap: 1rem;
align-items: center;
}


.stat-logos-wrap.mb.no-c {
  flex-wrap: wrap !important;
  row-gap: 1rem !important;
  column-gap: 1rem !important;
}


.stat-logo-wrap.is-s
    height: 1rem !important;
    max-height: 2rem !important;
    max-width: 5rem !important;
}


.nav-banner.desk-show{ display: flex!important;}
.nav-banner.mb-show {display: none!important;}


@media (max-width: 479px) {

.nav-banner.mb-show {display: flex!important;}
.nav-banner.desk-show{ display: none!important;}
.nav-banner{
position: sticky!important;
top:0;
z-index: 999;
}
  .navbar{
top: 2rem;
}

.nav-banner{
position: sticky!important;
top:0;
z-index: 999;
}


.stat-logos-wrap {
    overflow: hidden !important;
    flex-wrap: nowrap !important; 
    display: flex !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    flex-flow: row !important; 
    padding: 1rem 0 !important;
  }

 
  #cert-section .logo-track {
    flex-wrap: nowrap !important;
    width: calc(170px * 12 + 1.5rem * 11) !important;
    animation: scrollLogos 25s linear infinite !important;
    display: flex !important;
    gap: 1.5rem !important; 
    will-change: transform;
  }
  #cert-section .stat-logo-wrap {
    flex-shrink: 0 !important; 
    width: 170px !important;   
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mb-show {
    display: flex !important;
  }
  
  #cert-section.stat-logos-wrap:hover .logo-track {
    animation-play-state: paused;
  }

}



@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Scroll by half the track width */
  }
}



.logo-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 1rem; 
  width: auto;
  animation: none;
}

.mb-show{ display: none }

@media (max-width: 479px) {
  .mb-show{ display:block }
  .content.hero-content{
  gap:1rem!important;
  }
  .hero-section{
  padding-top: 3rem!important;
  }
  .banner-text{
   font-size:0.8rem!important;
  }
  .content-new.video-card.bg.sp-2{
  padding:2rem 1rem!important;
  }
  .payment-item{
  padding: 1rem;
  }
  .vid-img.en{
  width: 100%!important;
  }
  .flex-top{
  flex-flow: column;
  }
  .enroll-grid{
  display:flex!important;
  flex-flow:column!important;
  }
  
  .flex.mb{
    flex-flow: row!important;
    flex-wrap: wrap!important;

  }
  .white-tag{
    background: #f9f9f9!important;
    }
  .hero-features{
  flex-flow: column;
  align-items: flex-start!important;
  }
  .hero-line{
  transform:rotate(90deg);
  }
  .hero-section{
  padding-bottom: 2rem!important;
  }
  .stat-logos-wrap{
  flex-wrap: wrap;
  }
    .course-detail-item{
    display: flex!important;
    flex-flow: column!important;
    }
  .dd-wrap{
  max-width: 100%;
  }
  .stat-logos-wrap.mb{
  flex-flow: row!important;
  }
  .course-detail-stat{
  padding:0rem!important;
  }
  
}



/* --- Info Card Styles - UPDATED for New Design --- */
.info-card {
    border: 1px solid #d1d5db; /* A neutral light grey border */
    border-radius: 1.25rem; /* Slightly larger rounding */
    background-color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    overflow: hidden; /* This is key for the banner-button effect */
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
    text-align: center;
    font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.info-card-details {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1rem 1rem; /* Increased left padding for alignment */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563; /* This color will apply to the icon */
}

.info-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* This makes the new SVG icons inherit the text color */
.info-icon path {
    stroke: currentColor;
}

.price-section {
    text-align: center;
    font-size: 1.1rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.price-section .current-price {
    font-weight: bold;
    color: #000;
}

.price-section .original-price {
    color: #6b7280;
    font-weight: 400;
}

.enroll-button {
    background-color: #3B4A78; /* Dark blue color from image */
    color: #fff !important;
    font-weight: bold;
    text-align: center;
    padding: 1.1rem;
    text-decoration: none;
    width: 100%;
    border: none;
    border-radius: 0; /* Remove rounding, the parent clips it */
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2); /* 3D effect */
    transition: background-color 0.2s ease-in-out;
}
.enroll-button:hover {
    background-color: #2c3a6a; /* Slightly darker on hover */
}
/* --- New Styles for Interactive Section --- */
/* Progress Bar - UPDATED */
.progress-container {
    height: 2px;
    background-color: #e5e7eb;
    width: 100%;
}

.progress-bar {
    height: 100%;
    width: 0%;

}

/* This new class will trigger the animation */
.progress-bar.animate {
    animation: fillProgress 5s linear forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* --- New Styles for Interactive Section --- */
/* Layout */
.main-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start; /* Align items to the top */
}

.left-column {
    flex: 3;
}

.right-column {
    flex: 2;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

/* Typography */
.main-layout h1 {
    font-size: 2rem; /* Adjusted to match h3 style */
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
}

.main-layout .intro-paragraph {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Accordion Styling */
.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
    font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    width: 100%; 
    text-align: left;
    padding: 1rem 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #111827;
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.accordion-content p {
    padding-bottom: 1rem;
    padding-left: 0.25rem;
    color: #4b5563;
}

.accordion-item.active .accordion-header {
    color: #111827;
}

.accordion-item.active .accordion-content {
    opacity: 1;
}
/* Right Column Cards */
.image-swap-container {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15rem;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
    margin-bottom: 2rem;
    transition: opacity 0.5s ease-in-out;
}
/* Responsive */
@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .right-column {
        position: static;
        width: 100%;
    }
}
/* --- End of New Styles --- */

/*-- Enhancements --*/
.hero-new-wrap{
display: flex;
flex-direction: column;
gap: 2rem;
}
.hero-features{
margin-top:2rem;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-radius:0.6rem;
}
.hero-feature-item{
display: flex;
flex-direction: column;
gap:0.5rem;
}


/* -- Redesign --*/

.no-p{
padding: 1rem 0!important;
}
@media (max-width: 479px) {
  .hero-bg-grd{
  display: none;
  }
  .fearure-item.line{
  display: none;
  }
  .stat-logos-wrap{
  flex-flow: column;
  }
  .stat-logo-wrap{
  height: 3rem!important;
  }
  .content-new.video-card.bg.sp-2{
  flex-flow: column!important;
  gap: 1rem;
  grid-column-end: 2!important;
  }
  .vid-img.en{
  min-width: 100%!important;
  min-height: none;
  }
  .course-dates-grid{
  grid-template-columns: 1fr!Important;
  }
  .course-adm-cta.no-bg-border.main{
  flex-flow: column!important;
  }
}
.footer-flex.ver{
flex-flow: column;
gap: 2rem
}
.section.footer{
 background-color: #F6F7F9;
}
.white-tag{
padding:0.3rem;
background: #fff;
border-radius: 100rem;
position: relative;
}
.mw-20{
max-width: 30rem;
}

.course-adm-cta.no-bg-border.main{
flex-flow: row;
width: auto;
max-width: none;
gap: 4rem;
align-items: center;
}
.adm-cta-img-wrap.main{
width: 18rem;
height: 18rem;
min-width: 18rem;
border-radius: 1rem;
}
.cta-section{
background: #F6F7F9!important;
}
.text-xs{
  font-size:0.875rem;
}
.course-dates-grid{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 2rem;
}
.course-date{
background: #f9f9f9;

}
.content-new.video-card.bg{
background: #F9F9F9;
padding-top: 2rem;
padding-bottom: 2rem;
column-gap: 2rem;
}
.course-detail-item.gap-8{
column-gap:8rem;
}

.stat-logo-wrap{
height: 2rem;
}

.cover{
object-fit: cover;
}
.fearure-item.line{
  padding:2rem;
  margin-left: -150px;
   margin-right: -150px;
  
}
.layout-side-by-side.hero-layout{
  padding-top: 2rem;
  justify-content: center;
  column-gap: 4rem;
}
.hero-bg-grd{
   overflow: clip;
    border-radius: 32px;
    position: absolute;
    min-width: 95vw;
    max-width: 95vw;
    min-height: 650px;
    max-height: 900px;
}
.hero-grd-left{
position: absolute;
top: 0;
left: 0;
}
.hero-grd-right{
position: absolute;
top: 0;
right: 0;
}

/* -- Redsign end --*/


.adm-cta-img-wrap {
    width: 8rem;
  height: 8rem;
}


/* --- Hamburger Menu Styles --- */
.hamburger-menu {
  display: none !important; 
  flex-direction: column !important;
  justify-content: space-around !important;
  width: 2rem !important;
  height: 2rem !important;
  cursor: pointer !important;
  z-index: 1001 !important; 
}

.hamburger-bar {
  width: 100% !important;
  height: 3px !important;
  background-color: #333 !important; 
  border-radius: 5px !important;
  transition: all 0.3s ease-in-out !important;
}

/* --- Mobile Menu Media Query --- */
@media screen and (max-width: 767px) {
  .navbar{
  padding: 1rem!important;
  width:90%!important;
  }
  
  .nav-logo{
   height: auto!important;
   max-width: 50%!important;
  }
  .hamburger-menu {
    display: flex !important; 
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 100% !important; 
    left: 0 !important;
    width: 100% !important;
    background-color: #ffffff !important; 
    flex-direction: column !important;
    align-items: center !important;
    padding: 2rem 0 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    gap: 1.5rem !important;
  }

  .navbar-wrap.is-open .nav-links {
    display: flex !important; 
  }
  
  .navbar-wrap {
      position: relative !important; 
  }

  .navbar-wrap.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg) !important;
  }

  .navbar-wrap.is-open .hamburger-bar:nth-child(2) {
    opacity: 0 !important;
  }

  .navbar-wrap.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg) !important;
  }
}

@media screen and (max-width: 767px) {
  .nav-links .dropdown {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .nav-links .dropdown-toggle {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 0 !important;
  }

  .nav-links .dropdown-toggle::after {
    display: none !important;
  }

  .nav-links .dropdown-menu {
    grid-row-gap: 12px !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: unset !important;
    width: 100% !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .nav-links .dropdown-menu .dropdown-link {
    text-align: center !important;
    padding: 8px 0 !important;
  }

  .dropdown:hover .dropdown-menu {
    display: flex !important;
  }
}

a,
button,
button p,
button span,
button div,
a p,
a span,
a div,
button,
a {
  font-size: 1rem!important;
}

.rounded{
border-radius: .5rem;
}

.white-bg{
background-color: white;
}


button{
cursor: pointer;
}

/* --- FAQ --- */


.faq.w-dropdown .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq.w-dropdown .faq-icon {
  transition: transform 0.3s ease;
}


.faq.w-dropdown.is-open .faq-content {
  max-height: 500px; 
  transition: max-height 0.5s ease-in;
}


.faq.w-dropdown.is-open .faq-icon {
  transform: rotate(-180deg);
}
.dd-top:hover {
  color: gray; /* A slightly darker grey */
}

.faq-title:hover {
  color: gray;
}
.faq-title {
  cursor: pointer;
}
/* --- FAQ --- */


.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%; 
}

.custom-select-wrapper select {
  width: 100%;
  
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
 
  padding-right: 40px; 

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.custom-select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #555; 
  
  pointer-events: none; 
}


/* pop up */

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none; /* Hidden by default */
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .popup-content {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
            position: relative;
            text-align: center;
        }

        .popup-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #333333;
            cursor: pointer;
            line-height: 1;
        }
        .popup-close-btn:hover {
            color: #000000;
        }
/* pop-up end */

html {
  scroll-behavior: smooth;
}


.btn{
text-decoration: none;
}


/* testimobial slider */

        .testimonials-parent {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .testimonail {
            flex: 0 0 48%;
            width: 48%;
            margin-right: 4%;
            box-sizing: border-box; 
            background-color: #f9f9f9;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 2rem;
        }
        
        @media screen and (max-width: 767px) {
            /* mobile clean up*/
          .mb-mw{
          max-width: 280px!important;
          }
          .popup-content {
          padding: 1rem;
          width: 90%;
          max-width: 340px;
          }
          .popup-overlay{
          padding: 0;
          }
   .faq-border{
  width: 95%;
  }
  .faq-title{
  width: 90%;
  }
  
  .faq-icon{
  width: 1rem;
  height: 1rem;
  }       
  .hero-img-wrap {
  width: auto;
  }
  h1 {
  font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: 2rem;
  }
  
  h2,.feature-heading {
  font-size: 1.5rem;
  }
  
  h3 {
  font-size: 1.25rem;
  }
  
  section{
  font-size: 14px;
  }
  
  .mb-hide{
  display: none;
  }
  /* mobile clean up end */
          .testimonail {
            flex-basis: 95%;
            width: 95%;
            margin-right: 5%; 
          }
        }

        .testimonial-btns-wrap {
            text-align: center;
            margin-top: 1.5rem;
        }
        .testimonial-btn {
            cursor: pointer;
            user-select: none;
            padding: 0.5rem;
            display: inline-block;
            transition: opacity 0.3s ease;
        }

        .testimonial-btn.disabled {
            opacity: 0.3;
            pointer-events: none; 
            cursor: not-allowed;
        }
/* testimobial slider */
body {
  margin: 0!important;
  padding: 0!important;
  font-family: "Inter Variable", "Helvetica Neue", Arial, sans-serif;
}

section {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  overflow:clip;
}

h1 {
  font-size: 3rem;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}
h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
p {
  margin: 0;
}
img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

/* dd */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 16rem;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 1rem;
}

.dropdown-menu .dropdown-link {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-menu .dropdown-link:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* dd end*/
.logo {
  height: 3rem;
}
.logo-top {
  display: flex;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-section {
  background-color: #fff;
  background-image: url("../images/Grid-bg.svg");
  background-position: 0 100%;
  background-size: cover;
  padding: 8rem 2rem 6rem;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 65vh;
}

.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.content.hero-content {
  max-width: 36rem;
  grid-row-gap: 2rem;
}

.content.feature-contnet {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 80%;
  grid-row-gap: 2rem;
}
.flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.flex.gap-1 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.flex.gap-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.flex.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.flex.gap-0-5 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}

.flex.gap-0-3 {
  grid-column-gap: 0.3rem;
  grid-row-gap: 0.3rem;
}

.flex.gap-0 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.icon-s {
  width: 1.5rem;
  height: 1.5rem;
}

.flex-cc {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-cc.gap-1 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.flex-cc.gap-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.flex-cc.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.flex-cc.gap-0-5 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}

.flex-cc.gap-0 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.text-xs {
  font-size: 0.75rem;
}

.form-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.input {
  background-color: #f9f9f9;
  border: 1px solid #333;
  border-radius: 0.5rem;
  min-height: 3rem;
  width: 100%;
  padding: 0rem 1rem 0rem 1rem;
}

.btn {
  color: #fff;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  font-size: 1.125em;
  display: inline-flex;
  border: 0;
  padding: 0 1rem 0 1rem;
 cursor: pointer;
 box-shadow: 4px 4px 16px 0 rgba(255, 255, 255, 0.15) inset, 0 0.998px 0.998px 0 rgba(255, 255, 255, 0.20) inset, 0 5.988px 11.976px 0 rgba(255, 255, 255, 0.12) inset, 0 0.998px 1.996px 0 rgba(8, 8, 8, 0.20), 0 3.992px 3.992px 0 rgba(8, 8, 8, 0.08);

}

.users {
  width: 5rem;
}

.flex-lc {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-lc.gap-1 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.flex-lc.gap-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.flex-lc.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.flex-lc.gap-0-5 {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}

.flex-lc.gap-0 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.text-m {
  font-size: 1.125rem;
}

.text-l {
  font-size: 1.25rem;
}

.layout-side-by-side {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.layout-side-by-side.gap-1 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.layout-side-by-side.gap-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.layout-side-by-side.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.layout-side-by-side.gap-4 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.hero-img-wrap {
  max-width: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img {
  width: 90%;
  position: relative;
  z-index: 1;
}

.hero-rect {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
}
._2-col-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wh-form-wrap {
  display: flex;
  justify-content: top;
  align-items: stretch;
  flex-direction: column;
  row-gap: 1rem;
}

.hero-top {
  display: flex;
  justify-content: top;
  align-items: stretch;
  flex-direction: column;
  row-gap: 1rem;
}
.section {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  background-color: #fff;
  line-height: 1.3;
}
.section.black-banner {
  background-color: #000;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bg-wrap {
  z-index: -1;
  position: absolute;
  inset: 0%;
}
.bg-grid {
  object-fit: cover;
  object-position: 50% 50%;
}
.bg-top-left {
  z-index: 0;
  width: 8rem;
  height: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}
.bg-bottom-right {
  z-index: 0;
  width: 8rem;
  height: auto;
  position: absolute;
  inset: auto 0% 0% auto;
}
.feature-flex {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.fearure-item {
  grid-column-gap: 0.6rem;
  grid-row-gap: 0.6rem;
  color: #fff;
  text-align: center;
  flex-flow: column;
  max-width: 18rem;
  display: flex;
}
.feature-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
}
.body {
  font-size: 1rem;
}
.para-dark-bg {
  color: #fff9;
}
.align-center {
  text-align: center;
}
.heading-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 41rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.section-flex,
.course-details-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}
.course-detail-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1.3fr 0.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
}
.tag {
  border: 0.5px solid #000;
  border-radius: 0.2rem;
  padding: 0.25rem 0.5rem;
}
.dd-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}
.dd-item {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  flex-flow: column;
  display: flex;
}
.dd-top {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
.dd-botton {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  transition: max-height 0.4s ease-out, padding 0.3s ease-out,
    margin 0.3s ease-out, opacity 0.3s ease-out;
}
.dd-botton p {
  margin-bottom: 0;
  transition: margin 0.3s ease-out;
}
.dd-item.is-open .dd-botton {
  max-height: 300px;
  opacity: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
  transition: max-height 0.5s ease-in, padding 0.4s ease-in, margin 0.4s ease-in,
    opacity 0.4s ease-in;
}

.dd-item.is-open .dd-botton p {
  margin-bottom: 10px;
}

.dd-arrow-wrap img {
  min-width: 1rem;
  transition: transform 0.3s ease;
}

.dd-item.is-open .dd-top .dd-arrow-wrap img {
  transform: rotate(180deg);
}

.dd-arrow-wrap {
  width: 1rem;
}
.line-h {
  background-color: #c6c6c6;
  width: 100%;
  height: 1px;
}
.course-details-video-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  flex-flow: column;
  padding: 1rem;
  display: flex;
  box-shadow: 0 4px 7px #0000001a;
}
.vid-img {
  width: 100%;
}
.bold {
  font-weight: 700;
}
.icon-affirm {
  width: 2.5rem;
  margin-top: -3px;
}
.course-detail-stat {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: 0rem;
  margin-bottom: 0rem;
  padding: 1rem;
  display: flex;
  flex-flow: column;
}
.stat-logos-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.inline {
  display: flex;
}
.course-detail-testimonial-wrap {
  position: relative;
}
.test-combine-img-wrap {
  height: 500px;
  position: relative;
  overflow: clip;
}
.test-rect {
  position: absolute;
  inset: auto 0% 0% auto;
  width: 100%;
  height: 100%;
}
.test-img-pot {
  width: auto;
  height: 500px;
  z-index: 1;
  margin: 0 auto 0 auto;
}
.test-text-wrap {
  border-radius: 12px;
  width: 300px;
  position: absolute;
  inset: 50% auto auto -10%;
  z-index: 2;
}
.instrctors-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.intructor-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}
.instructor-img-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  min-height: 350px;
  background-position: 0 0;
  background-size: auto;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  overflow: clip;
}
.img-ins {
  object-fit: cover;
}

.heading-wrap-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 41rem;
  margin-right: auto;
  display: flex;
}

.tag-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-text.marketing {
  color: #333333e6;
  font-size: 1rem;
  font-weight: 500;
}

.tag-text.course-date {
  font-size: 1rem;
  font-weight: 400;
}

.btn-primary {
  background-color: #ff532f;
  border-radius: 0.5em;
  min-width: 192px;
  padding: 0.875rem 1.5rem;
}

.enroll-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.img-wrapper {
  position: relative;
}

.img-wrapper.marketing {
  width: 50px;
  height: 50px;
}

.img-wrapper.discount {
  width: 2.8rem;
}

.vertical-line {
  background-color: #33333380;
  width: 0.0625rem;
  height: 5rem;
}

.flex-top {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.flex-top.gap-0-5rem {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}

.h3 {
  font-family: "Epilogue Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
}

.h3.text-secondary {
  font-size: 2.625rem;
}

.h3.marketing {
  font-size: 2.25rem;
}

.h3.marketing.s {
  font-size: 1.125rem;
}

.h3.discount {
  font-size: 1.25rem;
  font-weight: 500;
}

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

.content-new.price {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
}

.content-new.discount {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.content-new.gap-0-5rem {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.content-new.vertical {
  flex-flow: column;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
}

.content-new.vertical-left {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
}

.content-new.vertical-left.gap-0-875rem {
  grid-column-gap: 0.875rem;
  grid-row-gap: 0.875rem;
}

.content-new.vertical-left.gap-0-5rem {
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}

.content-new.marketing {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f9f9f9;
  border-radius: 1.25rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.25rem;
}

.content-new.video-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-radius: 0.5rem;
  flex-flow: column;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  box-shadow: 0 3px 20px #33333314;
}

.content-new.video-card.h-100 {
  background-color: #fff;
  height: 100%;
}

.content-new.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.content-new.vertical-center {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.content-new.cd {
  width: 1005px;
}

.content-new.course-date {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
}

.h4 {
  
  font-size: 1.5rem;
  font-weight: 500;
}

.h4.xs {
  font-size: 1rem;
  font-weight: 700;
}

.h4.xs.light {
  font-weight: 500;
}

.h4.course-date {
  font-size: 1.75rem;
  font-weight: 700;
}

.img.marketing {
  min-height: 100%;
}

.slashed {
  font-weight: 600;
  text-decoration: line-through;
}

.nav-text {
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.125em;
  font-weight: 700;
  display: flex;
}

.nav-text.benefit {
  color: #fff;
  font-size: 1.125rem;
}

.img-full {
  width: 100%;
  height: 100%;
}

.btn-cd-wrap {
  min-width: 160px;
  display: flex;
}
.testimonials-parent {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-right: auto;
  display: flex;
}
.testimonail {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  background-color: #fff;
  background-position: 50%;
  background-size: cover;
  border-radius: 1rem;
  flex-flow: column;
  width: 23rem;
  padding: 5rem 1.5rem 1.5rem;
  display: flex;
  position: relative;
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  margin-right: 1rem;
}
.testimonail.active {
  border: 1px solid #000;
}
.testimonial-quote {
  width: 2rem;
  position: absolute;
  inset: 1.5rem auto auto 1.5rem;
}
.para-light {
  color: #636363;
  margin-bottom: 0;
  font-size: 1.125rem;
}
.testimonial-img-wrap {
  width: 4rem;
}
.testimonial-name {
  font-size: 18px;
  line-height: 1.2;
}
.overflow-clip {
  overflow: clip;
}
.testimonial-wrap {
  flex-flow: column;
  margin-right: auto;
  display: flex;
}
.testimonial-btns-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.testimonial-btn {
  width: 4rem;
}
.testimonial-btn.right {
  transform-style: preserve-3d;
  transform: rotateX(0) rotateY(180deg) rotateZ(0);
}
.white-bg {
  background-color: #fff;
}
.testimonial-track {
  margin-right: auto;
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.text-white {
  color: #fff;
}
.submit-btn {
  background-color: #fff;
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 30rem;
  min-height: 3rem;
  font-size: 1.125em;
  display: block;
  border: 0;
  padding: 0 1rem 0 1rem;
  margin: 0;
}
.cta-form {
  min-width: 30rem;
}
.footer-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}
.footer-top {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}
.footer-col {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 15rem;
  display: flex;
}
.footer-heading {
  font-weight: 700;
}
.footer-link {
  color: #545454;
  text-decoration: none;
}
.footer-logo-wrap {
  width: 13rem;
}
.footer-bottom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.footer-text {
  color: #545454;
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-flex {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}
.footer-flex.gap-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
.paragraph-regular-bg {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.paragraph-regular-bg.text-weight-bold {
  font-weight: 700;
}
.faq-divider {
  background-color: #d5d9e2;
  width: 100%;
  height: 0.5px;
}
.paragraph-small {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}
.paragraph-small.text-color-gray-600 {
  color: #525f75;
}
.faq {
  background-color: #f6f7f9;
  border-radius: 8px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}
.section-regular {
  padding: 96px 5%;
  position: relative;
}
.section-regular.background-gray {
  background-color: #f6f7f9;
}
.overline {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
.faq-border {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f6f7f9;
  border: 0.5px solid #d5d9e2;
  border-radius: 12px;
  flex-flow: column;
  width: 100%;
  max-width: 638px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: flex;
}
.h2-heading {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 600;
  line-height: 72px;
}
.faq-button {
  justify-content: center;
  align-items: center;
  margin-top: 90px;
  display: flex;
}
.button-text {
  z-index: 1;
  position: relative;
}
.faq-content {
  background-color: #0000;
  margin-top: -4px;
  display: block;
  position: relative;
}
.faq-tab {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}
.faq-title {
  z-index: 2;
  flex-flow: column;
  align-items: left;
  width: 96%;
  padding: 16px;
  display: flex;
}
.button-background {
  pointer-events: none;
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
.icon-x-small {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}
.faq-icon {
  color: #23272f;
  background-color: #edeff3;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}
.faq-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  display: flex;
}
.navbar {
  padding: 1rem 0rem 1rem 0rem;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top:0;
}
.navbar-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.nav-logo {
  height: 3rem;
}
.nav-links {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.nav-link {
  color: #545454;
  text-decoration: none;
}
.course-adm-cta {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right:auto;
}
.adm-cta-img-wrap {
  overflow: clip;
  min-height: 0px;
  min-width: 8rem;
  border-radius: 100rem;
}
.btn-ghost {
  text-decoration: none;
  display: inline-flex;
  width: 100%;
  min-height: 3rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-style: solid;
  border-width: 0.15rem;
  border-color: black;
  border-radius: 0.5rem;
  background-color: transparent;
  color: black;
  font-size: 1.125em;
}

.ghost-btn-img {
  width: 1.25rem;
  height: auto;
}
.hero-section.courses {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content.hero-content.center {
  justify-content: flex-start;
  align-items: center;
}
.courses-grid {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.course-item {
  display: flex;
  padding: 1rem;
  flex-flow: column;
  gap: 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: rgba(51, 51, 51, 0.08) 0px 4px 20px 0px;
}

@media screen and (max-width: 991px) {
  .layout-side-by-side {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .feature-flex {
    flex-flow: column;
  }
  .course-detail-item {
    grid-template-columns: 1.3fr;
  }
  .course-detail-item.left {
    grid-template-columns: 1.2fr;
  }
  .course-detail-stat {
    flex-flow: column;
  }
  .test-text-wrap {
    left: 9%;
  }
  .content.feature-contnet {
    max-width: 100%;
  }
  .tag-text {
    font-size: 0.7rem;
  }

  .tag-text.course-date {
    font-size: 0.8rem;
  }

  .enroll-grid {
    grid-template-columns: 1fr;
  }

  .h4.course-date {
    font-size: 1rem;
  }
  .footer-top {
    flex-flow: column;
  }
  #mb-order-1 {
    order: -1;
  }
}



@media screen and (max-width: 767px) {

  .courses-grid{
  grid-template-columns: 1fr;
  }  
  .content.hero-content,
  .hero-img {
    width: 100%;
  }
  .instrctors-wrap {
    grid-template-columns: 1fr;
  }
  .instructor-img-wrap {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .instrctors-wrap {
    grid-template-columns: 1fr;
  }

  .h3.text-secondary {
    font-size: 1.5rem;
  }

  .h3.marketing {
    font-size: 1.6rem;
  }
  .testimonail {
    width: 100%;
    max-width: none;
  }
  .cta-form {
    min-width: 100%;
  }
  .section-regular {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .nav-links {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  
  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  .flex.mb {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mb-p-top-zero{
  padding-top: 0rem;
  }
  .faq-border,.faq-title{
  width:90%;
  }
  .flex.mb-hor {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column-gap: 0.5rem;
 
  }
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section.black-banner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .stat-logos-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
  .test-combine-img-wrap {
    height: 400px;
  }
  .test-text-wrap {
    top: 40%;
    left: -3%;
  }
  .test-combine-img-wrap {
    height: 400px;
  }
  .tag-text.marketing {
    font-size: 0.8rem;
  }

  .img-wrapper.marketing {
    width: 30px;
    height: 30px;
  }

  .img-wrapper.discount {
    width: 3rem;
  }

  .vertical-line {
    width: 12rem;
    height: 0.0625rem;
  }

  .h3.text-secondary {
    font-size: 1.2rem;
  }

  .h3.marketing {
    width: 11.25rem;
    font-size: 1.3rem;
  }

  .h3.discount {
    font-size: 1rem;
  }

  .h3.discount._w-100 {
    width: 100%;
  }

  .content-new.gap-0-5rem {
    width: 11.25rem;
  }

  .content-new.gap-0-5rem.mb-sp {
    justify-content: flex-start;
    width: auto;
  }

  .content-new.gap-0-2rem.mb-v {
    grid-column-gap: 0.3rem;
    grid-row-gap: 0.3rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .content-new.vertical.gap-0-5rem {
    padding-left: 0;
  }

  .content-new.vertical-left.gap-0-5rem {
    width: auto;
    max-width: none;
  }

  .content-new.marketing {
    padding-left: 1rem;
  }

  .content-new.video-card {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
  }

  .content-new.video-card.h-100 {
    padding-left: 0.9rem;
  }

  .content-new.gap-1em {
    grid-column-gap: 0.2em;
    grid-row-gap: 0.2em;
    flex-flow: column;
  }

  .content-new.vertical-center {
    justify-content: space-between;
    align-items: center;
  }

  .content-new.cd {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    width: 100%;
  }

  .content-new.course-date {
    flex-flow: column;
  }

  .h4.xs {
    font-size: 1rem;
  }

  .nav-text.benefit {
    font-size: 0.6em;
  }
  .mb-center-align {
    text-align: center;
  }
  .content-new.vertical-center.gap-1em.mb-1 {
    row-gap: 1rem;
    width: 100%;
  }
  .cta-form {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .footer-bottom,
  .footer-flex {
    flex-flow: column;
  }
}
