/* External stylesheet for the landing page */
body {font-family: 'Helvetica Neue', Arial, sans-serif; color:#111;}
.site-header{border-bottom:1px solid #111}
.logo { width: 120px; height: auto; }
.hero-left h1{font-size:2.2rem}
.course-card{border-radius:8px;border:1px solid #e6e6e6}
.card-header{font-weight:400;background:#fff;border-bottom:1px solid #111}
.trusted img{width:80px}
.step-num{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid #ccc;margin:0 auto;font-weight:700}
.cta{background:#111}
.site-footer{border-top:1px solid #e6e6e6}

.btn-dark {
  background: #000 !important;
}
:root {
  --greencolor:#B5FF4D;
  --orangecolor:#FFBB4D;
  --bluecolor:#77D6FF;
  --yellowcolor:#FFE838;
}

.btn-green {
  background-color: var(--greencolor) !important;
  color: #111 !important;
}
.btn-orange {
  background-color: var(--orangecolor) !important;
  color: #111 !important;
}
.btn-blue {
  background-color: var(--bluecolor) !important;
  color: #111 !important;
}
.btn-yellow {
  background-color: var(--yellowcolor) !important;
  color: #111 !important;
}
.badge-green {
  background-color: var(--greencolor) !important;
  color: #111 !important;
}
.badge-orange {
  background-color: var(--orangecolor) !important;
  color: #111 !important;
}  
.badge-blue {
  background-color: var(--bluecolor) !important;
  color: #111 !important;
} 
.badge-yellow {
  background-color: var(--yellowcolor) !important;
  color: #111 !important;
}

/* header navigation links - make black */
.site-header .nav-link {
  color: #111 !important;
  font-weight: 400; /* reduced weight */
}
.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #000 !important;
  text-decoration: none;
}

/* course grid connected look */
.course-grid .row.no-gutters > [class*="col-"] { border: 1px solid #111; }
.course-grid .card { border: none; border-radius: 0; }
.course-grid .card-header { background:#fff; border-bottom:1px solid #111 }
.course-grid .col-12.col-md-6.col-lg-3 + .col-12.col-md-6.col-lg-3 { border-left: 0; }
/* remove double borders between rows on small screens */
@media (max-width: 991.98px){
  .course-grid .row.no-gutters > [class*="col-"] { border-left: 1px solid #111; border-top: 1px solid #111; }
  .course-grid .row.no-gutters > [class*="col-"]:nth-child(4n+1) { border-left: 0; }
}

/* Responsive tweaks */
@media (max-width: 767.98px){
  .hero-left h1{font-size:1.6rem}
  .logo { width: 80px; }
  .trusted img{width:60px}
}

/* Remove background from trusted section so it uses page background */
.trusted {
}
.trusted .container { padding-top: 0; padding-bottom: 0; }

/* hero: avoid using height or min-height — use padding for vertical space */
.hero {
  height: auto !important; /* override any previous height rule */
  padding-top: 8rem; /* increased vertical padding */
  padding-bottom: 8rem; /* increased vertical padding */
  align-items: center; /* keep vertical centering for larger screens */
}

/* larger hero typography and spacing */
.hero-left h1 {
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-left .lead {
  font-size: 1.28rem; /* larger paragraph */
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* card title bigger + spacing */
.course-grid .card-title {
  font-size: 1.95rem; /* increased to make titles 2 lines */
  line-height: 1.04;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

/* badges: larger, inline, more padding, not full width */
.course-grid .badge {
  display: inline-block;
  width: auto;
  padding: 0.6rem 0.9rem;
  font-weight:400;
  font-size: 0.95rem;
  line-height: 1;
  border-radius: 0.25rem;
  align-self: flex-start; /* prevent stretching */
}

/* course buttons: light stroke, square corners */
.course-grid .btn {
  border: 1px solid #111 !important;
  padding: 0.8rem 1.25rem !important;
  font-size: 0.98rem !important;
  border-radius: 0 !important;
  color: inherit !important;
}
.course-grid .btn.btn-success { background: #a9e64d !important; color: #111 !important; }
.course-grid .btn.btn-warning { background: #f0a63a !important; color: #111 !important; }
.course-grid .btn.btn-info { background: #3ac6f0 !important; color: #fff !important; }
.course-grid .btn.btn-secondary { background: #f7f7f7 !important; color: #111 !important; }

/* ensure card fills height and button stays at bottom */
.course-grid .card { display: flex; flex-direction: column; }
.course-grid .card-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 2rem; }
.course-grid .btn { margin-top: auto; }

@media (max-width: 991.98px) {
  .course-grid .card-title { font-size: 1.4rem; }
  .course-grid .card-text { font-size: 1rem; }
  .course-grid .badge { font-size: 0.85rem; padding: 0.45rem 0.7rem; }
  .course-grid .card-body { padding: 1.25rem; }
  .hero-left .lead { font-size: 1.12rem; }
}

@media (max-width: 575.98px){
  .course-grid .card-title { font-size: 1.05rem; }
  .course-grid .card-text { font-size: 0.95rem; }
  .course-grid .badge { font-size: 0.8rem; padding: 0.35rem 0.5rem; }
  .course-grid .btn { padding: 0.6rem 0.9rem !important; }
  .hero-left .lead { font-size: 1rem; }
}

/* widen header and hero containers for larger screens */
.hero > .container,
.site-header > .container {
  max-width: 1300px; /* wider content area */
}

/* increase navigation spacing and make links slightly larger */
.site-header .nav-link {
  padding: 0 1rem;
  font-size: 1rem;
}

@media (min-width: 1400px) {
  .hero > .container,
  .site-header > .container,
  .site-footer > .container { max-width: 1400px; }
}

@media (max-width: 1199.98px) {
  /* slightly reduce hero container on medium screens */
  .hero > .container,
  .site-header > .container { max-width: 960px; }
}

/* Tech icons inside hero */
.icons .tech-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .icons .tech-icon { width: 44px; height: 44px; margin-right: 0.5rem; }
}

/* Hero: increase line spacing and sizes */
.hero-left h1 {
  line-height: 1.12; /* a bit more breathing */
  margin-bottom: 1rem;
}
.hero-left .lead {
  font-size: 1.28rem; /* larger paragraph */
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Bigger Join button in hero */
.hero-left .btn {
  padding: 0.9rem 1.4rem;
  font-size: 1.05rem;
  border-width: 1px;
  border-radius: 0;
}

@media (max-width: 991.98px) {
  .hero-left .lead { font-size: 1.12rem; }
  .hero-left .btn { padding: 0.8rem 1.1rem; }
}
@media (max-width: 575.98px) {
  .hero-left .lead { font-size: 1rem; }
  .hero-left .btn { padding: 0.7rem 1rem; font-size: 0.95rem; }
}

/* Current Courses card styling (right-side) */
.card.course-card {
  border: 1px solid #111; /* black border */
  border-radius: 6px;
  padding: 1.25rem; /* increase internal padding */
  background: #fff;
}

/* Current Courses: simplified list styling (removed complex/contradictory custom rules) */
.card.course-card .form-check {
  /* keep a small visual gap between items, let Bootstrap handle the rest */
  margin-bottom: 0.5rem !important;
}
.card.course-card .form-check-label {
  font-size: 1.02rem;
  line-height: 1.4;
  margin-left: 0.5rem;
}
.card.course-card .form-check-input {
  margin-right: 0.5rem;
}

/* User added CSS */

section.trusted  {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

section.trusted  h3 {
    margin-bottom: 100px !important;
    font-size: 2rem !important;
}
.feature-box img {
    width: 60%;
}
.feature-box  h6 {
    font-size: 1.2rem;
    text-transform:uppercase;
    font-weight: 800;
}
.feature-box p {
    font-size: 1.2rem;
    
}


.hero-right label{
    font-size:1rem !important;
}
.hero-right .card{
    padding: 40px 30px !important;
}
.hero-right .form-check {
    background: #F0F0F0;
    padding: 10px;
    border-radius: 5px;
    
}

.btn-dark {
    padding-top: 20px;
    padding-bottom: 20px;
}
.check-input {
    width:30px;
    height: 30px;
    margin-right:10px;
}
.check-input:after {
    content:"";
    display: inline-block;
    width: 30px;
    height:30px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #000;
}
.form-check {
    display: flex;
    align-items: center;
    padding-top:20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    padding-right:20px !important;
} 
.check-input:checked:after {
    content:"";
    display: inline-block;
    width: 30px;
    height:30px;
    background: #fff;
    border-radius: 50%;
    border: 7px solid #000;
}

.hero-left p {
    font-size: 1.4rem !important;
    line-height: 1.8rem !important;
}
.hero-section-main {
    display: flex;
    flex-direction: row;
}

.hero-section-main {
    display: flex !important;
    column-gap:10%;
}
.hero-left {
   width: 55%; 
}
.hero-right {
    width: 35%;
}
.trusted {
    background: url(../images/dottedbg.png);
}


.trusted {
    background-repeat: repeat-x;
}
.trusted h3 {
    background: #fff;
    padding-bottom: 30px;
    padding-top: 30px;
}
section.how {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}
.course-grid .card p {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin-bottom: 50px;
}

section.how h3 {
    margin-bottom: 100px !important;
    font-size: 2rem !important;
}

section.how .steps p {
    width: 70%;
    margin-top: 30px !important;
}
section.how .steps .step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}




.tfsc-learning-wrapper {
  padding: 60px 20px;
}

.tfsc-learning-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
}

.tfsc-learning-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

.tfsc-learning-step {
  text-align: center;
  position: relative;
}

.tfsc-step-circle {
  width: 56px;
  height: 56px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 14px;
  position: relative;
  background: #fff;
}

/* LINE TO RIGHT */
/* GAP SIZE BETWEEN LINE AND CIRCLE */
:root {
  --tfsc-line-gap: 10px;
  --tfsc-line-length: 120px;
}

/* LINE TO RIGHT */
.tfsc-step-first .tfsc-step-circle::after,
.tfsc-step-middle .tfsc-step-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + var(--tfsc-line-gap));
  width: var(--tfsc-line-length);
  height: 1px;
  background: #bfbfbf;
}

/* LINE TO LEFT */
.tfsc-step-middle .tfsc-step-circle::before,
.tfsc-step-last .tfsc-step-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + var(--tfsc-line-gap));
  width: var(--tfsc-line-length);
  height: 1px;
  background: #bfbfbf;
}


.tfsc-step-text {
  font-size: 20px;
  line-height: 1.4;
}

section.tfsc-learning-wrapper h2 {
  margin-top:150px !important;
    margin-bottom: 120px !important;
    font-size: 2rem !important;
    
}
.tfsc-learning-step .tfsc-step-circle {
    color: #000;
}

section.tfsc-learning-wrapper {
    margin-bottom: 200px;
}
.cta {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
} 
.cta .container {
    margin-left: 0;
    text-align: left;
    width: 40%;
}
.cta .container  h3 {
    font-size: 40px;
}
.cta .container p {
    font-size: 24px;
    margin-bottom: 70px;
}
.cta .btn-light {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}
.cta .btn-outline-light {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}


.cta-container{
max-width: 1400px !important; 
    margin: auto;
}

.hero-cta-btn {
    margin-top: 30px;
}

.site-footer .container {
    flex-direction: column;
    
}
.site-footer .footer-text-content {
    padding-top: 80px;
    padding-bottom:90px;
    width: 50%;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #000;
    padding-top: 40px;
    padding-bottom: 40px;
    
}
.footer-bottom a {
    color: #000;
}

.courses-intro .courses-description {
    text-align: left;
}
.courses-intro .courses-heading {
    font-size:2.5rem;
    font-weight: 600;
}
.courses-intro {
    padding-top: 50px;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    background:url(../images/dottedbg.png);
    background-repeat: repeat-x;
    
}


.courses-intro .row {
  background:#fff;
  padding-top: 20px;
}

.courses-list-catalog {
    flex-wrap: wrap !important;
    column-gap: 2%;
    margin-bottom: 200px !important;
}
.course-card-item {
    width: 48% !important;
    border: 1px solid #000;
}
.related-courses .course-card-item {
    width: 32% !important;
}
.card-price {
    font-size: 2rem !important;
}

.custom-course-cta {
    margin-bottom: 200px !important;
}
.custom-course-cta .btn {
    margin-top: 30px;
}

/* Course details page styles */
.course-details-page .course-details-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px;
}

.cd-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.cd-main {
  width: 65%;
}
.cd-aside {
  width: 35%;
}

.cd-title {
  font-size: 34px;
  margin-bottom: 12px;
}
.cd-sub {
  color: #666;
  margin-bottom: 24px;
}

.price-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 24px;
  border-radius: 8px;
}
.price-card-header {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-amount {
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0 16px;
}
.price-meta .meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-top: 1px solid #f0f0f0;
  padding: 8px 0;
}
.price-bullets {
  margin: 16px 0;
  padding-left: 18px;
}
.enroll-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid #000;
  background: transparent;
  text-decoration: none;
  color: #000;
  border-radius: 4px;
}

.other-courses {
  margin-top: 56px;
}
.oc-row {
  display: flex;
  gap: 20px;
}
.oc-card {
  flex: 1 1 0;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}
.oc-cta {
  display: inline-block;
  background: #eee;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  margin-top: 12px;
}

/* Small screens: stack columns */
@media (max-width: 800px) {
  .cd-row {
    flex-direction: column;
  }
  .cd-main, .cd-aside {
    width: 100%;
  }
  .oc-row { flex-direction: column; }
}

.course-accordion-content {
    display: none;

}
.course-details {
    margin-top: 100px;
    margin-bottom: 100px;
}
.course-accordion {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}
.course-accordion h3 {
    font-weight: 400;
}
.cd-row {
    background: #000;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 80px;
   
}
.course-details-page .course-details-container {
    max-width: 100%;
    padding: 0;
}
.cd-main .cd-title {
    color: #fff;
    width: 80%;
    font-size: 40px;
}
.cd-main .cd-sub {
    color: #fff;
    width: 80%;
    font-size: 20px;
    margin-top: 30px;
} 
.price-card .price-amount {
    font-size: 3rem;
}
.price-meta .meta-row {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.price-meta .meta-row p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #000;
}
.cd-aside {
    margin-bottom: -100px;
    
}
.cd-aside .price-card {
    border: 1px solid #000;
    border-radius: 20px;
}
.cd-aside .enroll-btn {
    margin-top: 30px;
}
.course-details {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 100px !important;
}

.other-courses {
    padding-left: 15%;
    padding-right: 15%;
}
.other-courses h4 {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.course-accordion h3{
    display: flex;
    justify-content: space-between;
}
.course-accordion h3 .accordion-expand {
    border: 1px solid #000;
    display: inline-flex;
    width: 45px;
    height: 45px;
   justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px !important;
    line-height: 30px !important;
    padding-bottom: 2px;
    
}

.course-accordion .accordion-expand:after {
    content: "+";
}
.course-accordion.expanded .accordion-expand:after {
    content:"-"
}
.course-accordion.expanded .course-accordion-content {
    display: block;
    margin-top: 20px;
}
.course-accordion-content ul {
    padding-left: 20px;
}
.course-accordion .accordion-expand {
    cursor: pointer;
}

.course-register-pop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top:0;
    left: 0;
    display: none;
}
.course-register-pop .course-pop-overlay {
      position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
}
.course-pop-content {
    background: #fff;
    position: fixed;
    width: 30vw;
    margin-left: 35vw;
    top: 10vh;
    padding: 20px;
}

.course-pop-content h3 {
    margin-bottom: 30px;
}

.course-pop-form input {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
}
.course-pop-form select {
    border-radius: 0;
    border-color: #000;
    height: 40px;
}
.course-pop-form .form-group {
    margin-bottom: 20px;
}
.course-pop-form textarea {
      border-radius: 0;
    border-color: #000;
}
.course-pop-close {
    position: absolute;
    right:10px;
    top: 0px;
    font-size: 30px;
    cursor: pointer;
}
.course-modal-open .course-register-pop {
    display: block;
} 
.course-modal-open {
  overflow-y:hidden;
}
.btn-submit-course {
  padding-top: 15px;
  padding-bottom: 15px;
}
#courseRequestSuccess {
    display: none;
}

.kudosclose {
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px !important;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    text-decoration: none ;
}
.kudosclose:hover {
text-decoration: none ;
color: #000;
    
}

#courseRequestSuccess .btn-icon {
    width: 24px;
    margin-right:10px;
}

.course-grid .container {
    max-width: 1400px;
}
.courses-intro .container {
    max-width: 1400px;
}

.insights-intro {
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 100px;
    background:url(../images/dottedbg.png);
    background-repeat: repeat-x;
}
.insights-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.insights-heading {
    font-size: 2rem;
}

.insights-text-section {
    background: #fff;
    padding-top: 30px;
}

.insights-email-btn {
    display: flex;
    margin-top: 30px;
    margin-bottom: 0px;
    width: 35%;
}
.insights-email-btn input {
    height: auto;
    width: 70%;
    border-radius: 0;
}
.insights-email-btn button {
    width: 30%;
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.insights-card-item {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 0;
}
.insights-list {
    column-gap:10px;
}
.insights-card-header {
    border-bottom: 1px solid #000;
    padding: 10px;
    text-align: left;
    padding-left: 30px;
}
.insights-card-content {
    padding: 25px;
}



.insights-grid {
    margin-bottom: 100px;
}

.insights-card-item {
    width: 100%;
}

.insights-card-header p {
  margin-bottom: 0;
  font-weight:600;
}
.no-data-msg {
  width:100%;
  text-align:center;
}
.email-subscribe-msg {
  margin-top:20px;
  margin-bottom: 50px;
  color: #ff0000;
}

.request-course-form {
    width: 40%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
}


.request-course-form input {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
}
.request-course-form select {
    border-radius: 0;
    border-color: #000;
    height: 40px;
}
.request-course-form .form-group {
    margin-bottom: 20px;
}
.request-course-form textarea {
      border-radius: 0;
    border-color: #000;
}

.new-course-request-success {
    text-align: center;
    width: 30%;
    margin: auto;
     margin-top: 100px !important;
    margin-bottom: 100px;
}

.course-accordion-content h3, .course-accordion-content h2  {
    font-size: 1.3rem !important;
}

.desktop-hide {
    display: none;
}
@media screen and (max-width:900px) {

    .desktop-hide {
    display: flex;
}


    .hero {
    padding-top: 0;
    padding-bottom: 20px;
}
.hero-section-main {
    flex-direction: column !important;
}
.hero-left {
    width: 100%;
}
main.container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.hero-right {
    width: 100%;
    margin-top: 30px;
}
.course-grid .row > div {
    border: 1px solid #000 !important;
}
section.tfsc-learning-wrapper h2.tfsc-learning-title {
    margin-bottom: 100px !important;
    margin-top: 20px !important;
}
.tfsc-learning-steps {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px !important;
}
.tfsc-step-circle::after {
    display: none;
}
.tfsc-step-circle::before {
    display: none;
}
.tfsc-learning-step {
    display: flex;
    width: 100%;
    text-align: left;
    justify-content: flex-start !important;
}
.tfsc-step-circle {
    margin-left: 0;
    margin-right: 20px;
}
.tfsc-step-text {
    width: 70%;
}

section.tfsc-learning-wrapper {
    margin-bottom: 50px;
}
.cta .container {
    width: 100%;
}
.cta {
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 50px !important;
     padding-bottom: 50px !important;
}
.site-footer .footer-text-content {
    width: 100%;
}
.footer-bottom {
    flex-direction: column;
    row-gap:20px !important;
}
.hero-left h1 {
    font-size:2.5rem;
}
.site-header .logo {
    width: 120px;
}
.site-header > .container {
    padding-left: 0;
    padding-right: 0;
}
.hero-cta-btn {
    display: none;
}

.courses-intro .container {
    padding-left: 0;
    padding-right: 0;
}
.courses-list-catalog {
    flex-direction: column;
}
.courses-list-catalog .course-card-item {
    width: 100% !important;
}

.cd-row {
    padding-left: 10px;
    padding-right: 10px;
}
.cd-main .cd-title {
    width: 100%;
}
.cd-main .cd-sub {
    width: 100%;
}
.course-details {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 40px !important;
}
.other-courses {
    padding-left: 10px;
    padding-right: 10px;
}
.related-courses {
    flex-direction: column;
}
.related-courses .course-card-item {
    width: 100% !important;
}

.course-pop-content {
    width: 100vw;
    margin-left: 0;
    overflow-y: scroll;
    height: 100vh;
    top:0;
}

.insights-intro {
    padding-left: 10px;
    padding-right: 10px;
}
.insights-email-btn {
    width: 90%;
}
.insights-heading {
    font-size: 1.5rem;
}

.request-course-form {
    width: 95%;
}
.new-course-request-success {
    width: 90%;
    margin-top:20px !important;
}

.menu-pop {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px;
    row-gap: 20px;
    z-index: 9999;
}

.menu-pop a.nav-link {
    color: #fff !important;
}

.close-menu-pop {
    border: 1px solid #fff;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    text-align: center !important;
    justify-content: center;
    margin-top: 100px;
}


.hero-right .card {
    padding: 20px !important;
}
.card.course-card .form-check-label {
    font-size: 0.8rem !important;
}
.site-header .close-menu-pop:hover,.site-header .close-menu-pop:active, .site-header .close-menu-pop:focus {
    text-decoration: none !important;
    color: #fff !important;
}

.menu-icon {
    width: 30px;
}

.cta .container h3 {
    font-size: 32px;
}
.cta .container p {
    font-size: 20px !important;
}



}