/* Global Font Variables */
@import url("https://fonts.googleapis.com/css2?family=Coming+Soon&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  /* Colour Palette */
  --e-global-palette-1: #80D649; /* Lightest Green */
  --e-global-palette-2: #6CC136; /* Light Green */
  --e-global-palette-3: #539B25; /* Green */
  --e-global-palette-4: #46861D; /* Mid Green */
  --e-global-palette-5: #386C17; /* Darkest Green. */
  --e-global-palette-6: #648798 ; /* Blue */

  --e-global-palette-7: #50991F; /* Another Green */

  /* Common reference points */
  --e-body-bg-color: #f3f3f3;
  --e-global-color-primary: var(--e-global-palette-2);
  --e-global-color-secondary: #54595F;
  --e-global-color-text: #000;
  --e-global-color-accent: var(--e-global-palette-5);
  --e-global-color-white: white;
  --e-global-color-c64abec: #6CC135;
  --e-global-typography-primary-font-family:Nunito;
  --e-global-typography-primary-font-weight: 600;
  --e-global-typography-secondary-font-family: "Nunito";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Nunito";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-text-font-line-height: 24px;
  --e-global-typography-accent-font-family: "Nunito";
  --e-global-typography-accent-font-weight: 500;
  --e-global-typography-h1-font-family: var(--e-global-typography-primary-font-family);
  --e-global-typography-h1-font-weight: 800;
  --e-global-typography-h1-font-size: 30px;
  --e-global-typography-h1-line-height: 2.5rem;
  --e-global-typography-h1-font-size_lg: 60px;
  --e-global-typography-h1-line-height_lg: 70px;
  --e-global-typography-h2-font-family: var(--e-global-typography-primary-font-family);
  --e-global-typography-h2-font-weight: 900;
  --e-global-typography-h2-font-size: 20px;
  --e-global-typography-h2-line-height: 75px;
  --e-global-typography-h2-font-weight: 900;
  --e-global-typography-h2-font-size_lg: 40px;
  --e-global-typography-h2-line-height_lg: 50px;
  --e-global-sm-viewport_gutter-v: 35px;
  --e-global-sm-viewport_gutter-h: 3rem;

  /* Button Variables */
  --button-bg-color: var(--e-global-color-accent);
  --button-text-color: #fff;
  --button-border-width: 3px;
  --button-border-color: var(--button-bg-color);
  --button-hover-bg-color: var(--e-global-color-white);
  --button-hover-text-color: var(--e-global-color-accent);
  --button-hover-border-color: var(--button-bg-color);
}

h1 {
  font-family: var(--e-global-typography-h1-font-family);
  font-weight: var(--e-global-typography-h1-font-weight);
  font-size: var(--e-global-typography-h1-font-size);
  line-height: var(--e-global-typography-h1-line-height);
}

#page-title h1,
.stm-course-bundles h1 {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--e-global-typography-h1-font-size_lg);
    line-height: var(--e-global-typography-h1-line-height_lg);
  }
}
@media (min-width: 768px) {
	#home-page-hero h1 {
		margin-top: 40px;
	  font-family: var(--e-global-typography-h2-font-family);
	  font-weight: 700;
	  font-size: var(--e-global-typography-h2-font-size_lg);
	  line-height: var(--e-global-typography-h2-line-height_lg);
	  text-transform: uppercase;
	}
}

#page-title img {
	margin: 0 auto;
	height: 200px;

  @media(min-width: 767px){
    margin-left: 300px;
  }
	
  @media (min-width: 1300px) {
	margin: 100px 0 50px 300px !important;
  }
}

@media (min-width: 1919px) {
	#home-page-hero h1 {
	  margin-top: 80px;
	  font-family: var(--e-global-typography-h1-font-family);
	  font-weight: 700;
	  font-size: var(--e-global-typography-h1-font-size_lg);
	  line-height: var(--e-global-typography-h1-line-height_lg);
	  text-transform: uppercase;
	}
	
	#page-title img {
		margin-top: 200px !important;
	}
	
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html{
  min-height: 100%;
}

body {
  background-color: #fff;
  color: #000;
  position: relative;
  overflow-x: hidden;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svg-sprite {
  display: none;
}

@media (max-width: 767px) {
  .container {
    margin: 0 20px;
  }
}
main {
  overflow: hidden;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  background-color: unset;
  border: unset;
}

mark, .mark{
  padding: unset;
}

.cta-block {
  display: block;
}

.cta {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid #fff;
  text-transform: uppercase;
  padding: 0.5rem;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cta {
    padding: 0.75rem 0.5rem;
  }
}
@media (min-width: 768px) {
  .cta {
    width: 100%;
    max-width: 200px;
    padding: 1rem;
    font-size: 13px;
  }
}

.mouse-btn {
  --scroll-width: 30px;
  --scroll-height: 60px;

  margin: 0 auto;
  width: var(--scroll-width);
  height: var(--scroll-height);
  border: 3px solid rgba(122, 122, 124, 0.918);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.mouse-scroll {
  display: block;
  width: 15px;
  height: 15px;
  background: linear-gradient(170deg, rgba(122, 122, 124, 0.918), rgb(123, 124, 124));
  border-radius: 50%;
  margin: auto;
  animation: scroller 2s linear infinite;
}

.scroll-text {
  font-size: 12px;
}

@keyframes scroller {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  50% {
    opacity: 1;
    transform: translateY(0px);
  }
  98% {
    opacity: 0;
    transform: translateY(20px);
  }
  100%{
    opacity: 0;
  }
}

.header-widget img {
    transition: width 0.3s ease, height 0.3s ease;
}

.logo-small {
    width: 80px!important;
    height: auto; /* Maintains aspect ratio */
}


#wpv-view-layout-1466 {
    position: sticky;
    top: 100px; /* Adjust this value based on your header height */
    z-index: 1000;
    background-color: #f3f3f3; /* Ensure it has a background to avoid overlap issues */
    padding: 10px 0;
}

.icon__hamburger {
  display: block;
  position: relative;
  height: 3px;
  width: 100%;
  background-color: var(--e-global-color-accent);
  border-radius: 5px;

  &:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--e-global-color-accent);
    border-radius: 5px;
  }

  &:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--e-global-color-accent);
    border-radius: 5px;
  }

  
}

.menu-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: unset;
  padding: unset;
  background-color: unset;
  display: block;
  transition: all ease 0.2s;

  @media (min-width: 1300px) {
    display: none;
  }

  &.active{
    transition: all ease 0.2s;
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 9999;

    .icon__hamburger{
      background-color: white;
      transform: rotate(45deg);
      top: 0;
      transition: all ease 0.2s;
      
      &:before{
        background-color: white;
        transform: rotate(90deg);
        top: 0;
      }

      &:after{
        display: none;
        background-color: white;
        
      }
      
    }
  }

}

.nav-icon {
  display: block;
}
.nav-ui-lock{
  overflow: hidden !important;
}

/* Footer Widgets */
footer {
  background-color: var(--e-global-palette-7);
  width: 100% !important;
  margin: 0px !important;
  padding: 50px 20px 0 !important;
  /* Footer Menu */
}
footer .footer-nav-menu a,
footer .footer-widget a {
  letter-spacing: 0px;
  color: white;
}
footer .footer-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0px;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--e-global-typography-text-font-family);
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-font-line-height);
  color: var(--e-global-color-white);
}
footer .footer-widgets .footer-1 {
  display: none;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  footer .footer-widgets .footer-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
footer .footer-widgets .footer-1 a {
  text-decoration: none !important;
}
footer .footer-widgets .footer-2 {
  font-size: 0.85rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  footer .footer-widgets .footer-2 {
    text-align: center;
  }
}
footer .footer-widgets .footer-2 .wp-block-image {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  footer .footer-widgets .footer-2 .wp-block-image {
    margin-bottom: 2rem;
  }
}
footer .footer-widgets .footer-3 {
  display: none;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  footer .footer-widgets .footer-3 {
    display: block;
  }
}
footer .footer-widgets .footer-3 a {
  text-transform: uppercase;
}
footer .footer-widget-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 var(--e-global-sm-viewport_gutter-h) var(--e-global-sm-viewport_gutter-v);
}
@media (min-width: 768px) {
  footer .footer-widget-area {
    padding: unset;
  }
}
footer .footer-widget img {
  height: 80px;
  width: auto;
}
@media (min-width: 768px) {
  footer .footer-widget img {
    height: 125px;
  }
}
footer .footer-widget p {
  color: #fff;

  a{
    text-decoration: none !important;

    &:hover{
      color: var(--e-global-color-text);
    }
  }
}
footer .footer-widget p.copyright {
  font-size: 14px;
  line-height: 19px;
}
footer .menu-footer-container {
  text-align: right;
}
footer .menu-footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
footer .menu-footer-container ul li {
  margin-bottom: 0px;
}
footer .menu-footer-container ul li a {
  color: var(--e-global-color-white);
  fill: var(--e-global-color-white);
  padding: 1px 0;
  text-decoration: none;
}
footer .menu-footer-container ul li a:hover,
footer .menu-footer-container ul li.current-menu-item a {
  color: #000000;
}

.policy-block {
	
}

.policy-block a {
	color: #000;
}

.policy-block a:hover,
.policy-block a:focus {
	color: var(--e-global-palette-5) !important;
}

.contact-block {
  padding: 5rem 0;
}
.contact-block .col-wrapper .col.col-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 993px) {
  .contact-block .col-wrapper .col.col-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 2rem;
  }
}
.contact-block .col-wrapper .col.col-content a {
  color: #fff;
  text-decoration: none !important;
}

.contact-block .col-wrapper .col.col-content a:focus,
.contact-block .col-wrapper .col.col-content a:hover {
  color: #000;
}

.contact-block .col-wrapper .col.image-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 993px) {
  .contact-block .col-wrapper .col.image-block {
    padding-left: 5em;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.contact-block .col-wrapper .col.image-block img {
  border-radius: 50%;
  background: #fff;
  width: 12em;
  height: 12em;
  -o-object-fit: contain;
     object-fit: contain;
  outline: 5px solid rgba(255, 255, 255, 0.5);
}

#homepage .lms-courses-category-container {
  padding-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  @media(min-width:768px){
    padding: 0 1rem;
  }

}
#homepage .lms-courses-category-container .wp-block-heading {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#homepage .lms-courses-category-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: unset;
  display: block;
}
@media (min-width: 1300px) {
  #homepage .lms-courses-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

#homepage .lms-courses-category-list button {
  display: none;
}
@media (min-width: 1300px) {
  #homepage .lms-courses-category-list button {
    display: block;
    margin-top: 10px;
  }
}

#homepage .lms-courses-category-list__item {
  display: inline-block;
  margin-bottom: 10px;
  padding: 20px;
  border: none;
  border-radius: 100px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative; /* Required for 'top' to work */
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out; /* Smooth animation */
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  background-color: #666;
}
@media (min-width: 1300px) {
  #homepage .lms-courses-category-list__item {
    padding: 10px;
    width: 180px;
  }
}
@media (min-width: 1300px) {
  #homepage .lms-courses-category-list__item {
    height: 400px;
  }
}

#homepage .lms-courses-category-list__item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: transparent !important;
  border: none !important;
  padding: 0px;
  overflow: unset;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#homepage .lms-courses-category-list__item a .lms-btn {
  display: none;
}
@media (min-width: 1300px) {
  #homepage .lms-courses-category-list__item a .lms-btn {
    display: block;
    margin-top: 10px;
  }

  #homepage .lms-courses-category-list__item:hover {
    top: -40px; /* Move up */
  }
}

#homepage .lms-courses-category-list__item{
  a{
    span {
      overflow: unset !important;
      white-space: unset !important;
      color: white;
      font-family: "nunito", sans-serif;
      font-size: 18px;
      line-height: 21px;
      text-transform: uppercase;
    }

    &:hover{
      span,
      button {
        color: #000000 !important;
        border-color: #000000 !important;
      }
    }
  }

  /* Custom pills for each bundle category */
  &:nth-child(1) {
    background-color: var(--e-global-palette-1) !important;
    
    @media (min-width: 1300px) {
      height: 400px;
    }
  }

  &:nth-child(2) {
    background-color: var(--e-global-palette-2) !important;

    @media (min-width: 1300px) {
      height: 469px;
    }
  }

  &:nth-child(3){
    background-color: var(--e-global-palette-3) !important;

    @media (min-width: 1300px) {
      height: 538px;
    }
  }

  &:nth-child(4) {
    background-color: var(--e-global-palette-4) !important;

    @media (min-width: 1300px) {
      height: 609px;
    }
  }


  &:nth-child(5) {
    background-color: var(--e-global-palette-5) !important;

    @media (min-width: 1300px) {
      height: 676px;
    }
  }


  &:nth-child(6) {
    background-color: var(--e-global-palette-7) !important;

    @media (min-width: 1300px) {
      height: 609px;
    }
  }


  &.bundle_coroners-operative-skills {
    background-color: var(--e-global-palette-6) !important;

    @media (min-width: 1300px) {
        height: 528px;
    }
  }
}


/* Hover effect */
#homepage .lms-courses-category-list__item:hover {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
  color: #000000 !important;
}

@media (max-width: 767px) {
  .home__our-brochure {
    padding: var(--e-global-sm-viewport_gutter-h) var(--e-global-sm-viewport_gutter-v);
  }
}
.home__our-brochure .content-block {
  padding-left: unset;
  padding-right: unset;
}
.home__our-brochure .wp-block-buttons {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  margin-top: 2rem;
}

.masterstudy-single-course-modern__topbar::before {
  background: var(--e-global-palette-5) !important;
}

.bg-primary {
  background-color: var(--e-global-color-primary);
}

.bg-secondary {
  background-color: var(--e-global-color-secondary);
}

.bg-text {
  background-color: #000;
}

.bg-accent {
  background-color: var(--e-global-color-accent);
}

.bg-c64abec {
  background-color: #6CC135;
}


.bg-pallette-1{
  background-color: var(--e-global-palette-1);
}
.bg-pallette-2{
  background-color: var(--e-global-palette-2);
}
.bg-pallette-3{
  background-color: var(--e-global-palette-3);
}
.bg-pallette-4{
  background-color: var(--e-global-palette-4);
}
.bg-pallette-5{
  background-color: var(--e-global-palette-5);
}
.bg-pallette-6{
  background-color: var(--e-global-palette-6);
}


.text-primary {
  color: var(--e-global-color-primary) !important;
}

.text-secondary {
  color: var(--e-global-color-secondary) !important;
}

.text-text {
  color: #000 !important;
}

.text-accent {
  color: var(--e-global-color-accent) !important;
}

.text-c64abec {
  color: #6CC135 !important;
}

.text-white {
  color: white !important;
}

.text-pallette-1{
  color: var(--e-global-palette-1);
}
.text-pallette-2{
  color: var(--e-global-palette-2);
}
.text-pallette-3{
  color: var(--e-global-palette-3);
}
.text-pallette-4{
  color: var(--e-global-palette-4);
}
.text-pallette-5{
  color: var(--e-global-palette-5);
}
.text-pallette-6{
  color: var(--e-global-palette-6);
}

.stroke-primary {
  stroke: var(--e-global-color-primary);
}

.stroke-secondary {
  stroke: var(--e-global-color-secondary);
}

.stroke-text {
  stroke: #000;
}

.stroke-accent {
  stroke: var(--e-global-color-accent);
}

.stroke-c64abec {
  stroke: #6CC135;
}

.p-0 {
  padding: 0rem !important;
}
.p-1 {
  padding: 1rem !important;
}
.p-2 {
  padding: 2rem !important;
}
.p-3 {
  padding: 3rem !important;
}
.p-4 {
  padding: 4rem !important;
}
.p-5 {
  padding: 5rem !important;
}
.p-6 {
  padding: 6rem !important;
}
.p-7 {
  padding: 7rem !important;
}
.p-8 {
  padding: 8rem !important;
}
.p-9 {
  padding: 9rem !important;
}
.p-10 {
  padding: 10rem !important;
}
.p-12 {
  padding: 12rem !important;
}
.p-15 {
  padding: 15rem !important;
}
.p-20 {
  padding: 20rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.pt-8 {
  padding-top: 8rem !important;
}
.pt-9 {
  padding-top: 9rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pt-12 {
  padding-top: 12rem !important;
}
.pt-15 {
  padding-top: 15rem !important;
}
.pt-20 {
  padding-top: 20rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.pb-7 {
  padding-bottom: 7rem !important;
}
.pb-8 {
  padding-bottom: 8rem !important;
}
.pb-9 {
  padding-bottom: 9rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pb-12 {
  padding-bottom: 12rem !important;
}
.pb-15 {
  padding-bottom: 15rem !important;
}
.pb-20 {
  padding-bottom: 20rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pl-7 {
  padding-left: 7rem !important;
}
.pl-8 {
  padding-left: 8rem !important;
}
.pl-9 {
  padding-left: 9rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pl-12 {
  padding-left: 12rem !important;
}
.pl-15 {
  padding-left: 15rem !important;
}
.pl-20 {
  padding-left: 20rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}
.pr-7 {
  padding-right: 7rem !important;
}
.pr-8 {
  padding-right: 8rem !important;
}
.pr-9 {
  padding-right: 9rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pr-12 {
  padding-right: 12rem !important;
}
.pr-15 {
  padding-right: 15rem !important;
}
.pr-20 {
  padding-right: 20rem !important;
}

.py-0 {
  padding-top: 0rem !important;
}
.py-1 {
  padding-top: 1rem !important;
}
.py-2 {
  padding-top: 2rem !important;
}
.py-3 {
  padding-top: 3rem !important;
}
.py-4 {
  padding-top: 4rem !important;
}
.py-5 {
  padding-top: 5rem !important;
}
.py-6 {
  padding-top: 6rem !important;
}
.py-7 {
  padding-top: 7rem !important;
}
.py-8 {
  padding-top: 8rem !important;
}
.py-9 {
  padding-top: 9rem !important;
}
.py-10 {
  padding-top: 10rem !important;
}
.py-12 {
  padding-top: 12rem !important;
}
.py-15 {
  padding-top: 15rem !important;
}
.py-20 {
  padding-top: 20rem !important;
}
.py-0 {
  padding-bottom: 0rem !important;
}
.py-1 {
  padding-bottom: 1rem !important;
}
.py-2 {
  padding-bottom: 2rem !important;
}
.py-3 {
  padding-bottom: 3rem !important;
}
.py-4 {
  padding-bottom: 4rem !important;
}
.py-5 {
  padding-bottom: 5rem !important;
}
.py-6 {
  padding-bottom: 6rem !important;
}
.py-7 {
  padding-bottom: 7rem !important;
}
.py-8 {
  padding-bottom: 8rem !important;
}
.py-9 {
  padding-bottom: 9rem !important;
}
.py-10 {
  padding-bottom: 10rem !important;
}
.py-12 {
  padding-bottom: 12rem !important;
}
.py-15 {
  padding-bottom: 15rem !important;
}
.py-20 {
  padding-bottom: 20rem !important;
}

.px-0 {
  padding-left: 0rem !important;
}
.px-1 {
  padding-left: 1rem !important;
}
.px-2 {
  padding-left: 2rem !important;
}
.px-3 {
  padding-left: 3rem !important;
}
.px-4 {
  padding-left: 4rem !important;
}
.px-5 {
  padding-left: 5rem !important;
}
.px-6 {
  padding-left: 6rem !important;
}
.px-7 {
  padding-left: 7rem !important;
}
.px-8 {
  padding-left: 8rem !important;
}
.px-9 {
  padding-left: 9rem !important;
}
.px-10 {
  padding-left: 10rem !important;
}
.px-12 {
  padding-left: 12rem !important;
}
.px-15 {
  padding-left: 15rem !important;
}
.px-20 {
  padding-left: 20rem !important;
}
.px-0 {
  padding-right: 0rem !important;
}
.px-1 {
  padding-right: 1rem !important;
}
.px-2 {
  padding-right: 2rem !important;
}
.px-3 {
  padding-right: 3rem !important;
}
.px-4 {
  padding-right: 4rem !important;
}
.px-5 {
  padding-right: 5rem !important;
}
.px-6 {
  padding-right: 6rem !important;
}
.px-7 {
  padding-right: 7rem !important;
}
.px-8 {
  padding-right: 8rem !important;
}
.px-9 {
  padding-right: 9rem !important;
}
.px-10 {
  padding-right: 10rem !important;
}
.px-12 {
  padding-right: 12rem !important;
}
.px-15 {
  padding-right: 15rem !important;
}
.px-20 {
  padding-right: 20rem !important;
}

.m-0 {
  margin: 0rem !important;
}
.m-1 {
  margin: 1rem !important;
}
.m-2 {
  margin: 2rem !important;
}
.m-3 {
  margin: 3rem !important;
}
.m-4 {
  margin: 4rem !important;
}
.m-5 {
  margin: 5rem !important;
}
.m-6 {
  margin: 6rem !important;
}
.m-7 {
  margin: 7rem !important;
}
.m-8 {
  margin: 8rem !important;
}
.m-9 {
  margin: 9rem !important;
}
.m-10 {
  margin: 10rem !important;
}
.m-12 {
  margin: 12rem !important;
}
.m-15 {
  margin: 15rem !important;
}
.m-20 {
  margin: 20rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.mt-6 {
  margin-top: 6rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mt-12 {
  margin-top: 12rem !important;
}
.mt-15 {
  margin-top: 15rem !important;
}
.mt-20 {
  margin-top: 20rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mb-7 {
  margin-bottom: 7rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mb-12 {
  margin-bottom: 12rem !important;
}
.mb-15 {
  margin-bottom: 15rem !important;
}
.mb-20 {
  margin-bottom: 20rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.ml-6 {
  margin-left: 6rem !important;
}
.ml-7 {
  margin-left: 7rem !important;
}
.ml-8 {
  margin-left: 8rem !important;
}
.ml-9 {
  margin-left: 9rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.ml-12 {
  margin-left: 12rem !important;
}
.ml-15 {
  margin-left: 15rem !important;
}
.ml-20 {
  margin-left: 20rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}
.mr-6 {
  margin-right: 6rem !important;
}
.mr-7 {
  margin-right: 7rem !important;
}
.mr-8 {
  margin-right: 8rem !important;
}
.mr-9 {
  margin-right: 9rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.mr-12 {
  margin-right: 12rem !important;
}
.mr-15 {
  margin-right: 15rem !important;
}
.mr-20 {
  margin-right: 20rem !important;
}

.my-0 {
  margin-top: 0rem !important;
}
.my-1 {
  margin-top: 1rem !important;
}
.my-2 {
  margin-top: 2rem !important;
}
.my-3 {
  margin-top: 3rem !important;
}
.my-4 {
  margin-top: 4rem !important;
}
.my-5 {
  margin-top: 5rem !important;
}
.my-6 {
  margin-top: 6rem !important;
}
.my-7 {
  margin-top: 7rem !important;
}
.my-8 {
  margin-top: 8rem !important;
}
.my-9 {
  margin-top: 9rem !important;
}
.my-10 {
  margin-top: 10rem !important;
}
.my-12 {
  margin-top: 12rem !important;
}
.my-15 {
  margin-top: 15rem !important;
}
.my-20 {
  margin-top: 20rem !important;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-0 {
  margin-left: 0rem !important;
}
.mx-1 {
  margin-left: 1rem !important;
}
.mx-2 {
  margin-left: 2rem !important;
}
.mx-3 {
  margin-left: 3rem !important;
}
.mx-4 {
  margin-left: 4rem !important;
}
.mx-5 {
  margin-left: 5rem !important;
}
.mx-6 {
  margin-left: 6rem !important;
}
.mx-7 {
  margin-left: 7rem !important;
}
.mx-8 {
  margin-left: 8rem !important;
}
.mx-9 {
  margin-left: 9rem !important;
}
.mx-10 {
  margin-left: 10rem !important;
}
.mx-12 {
  margin-left: 12rem !important;
}
.mx-15 {
  margin-left: 15rem !important;
}
.mx-20 {
  margin-left: 20rem !important;
}
.mx-0 {
  margin-right: 0rem !important;
}
.mx-1 {
  margin-right: 1rem !important;
}
.mx-2 {
  margin-right: 2rem !important;
}
.mx-3 {
  margin-right: 3rem !important;
}
.mx-4 {
  margin-right: 4rem !important;
}
.mx-5 {
  margin-right: 5rem !important;
}
.mx-6 {
  margin-right: 6rem !important;
}
.mx-7 {
  margin-right: 7rem !important;
}
.mx-8 {
  margin-right: 8rem !important;
}
.mx-9 {
  margin-right: 9rem !important;
}
.mx-10 {
  margin-right: 10rem !important;
}
.mx-12 {
  margin-right: 12rem !important;
}
.mx-15 {
  margin-right: 15rem !important;
}
.mx-20 {
  margin-right: 20rem !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.line-break {
  display: block !important;
}

.hidden {
  display: none !important;
}

.mh-42 {
  min-height: 42rem;
}
.mh-65 {
  min-height: 65rem;
}
.mh-89 {
  min-height: 89rem;
}
.mh-90 {
  min-height: 90rem;
}
.mh-100 {
  min-height: 100rem;
}
.mh-105 {
  min-height: 105rem;
}
.mh-114 {
  min-height: 114rem;
}
.mh-134 {
  min-height: 134rem;
}
.mh-140 {
  min-height: 140rem;
}
.mh-170 {
  min-height: 170rem;
}
.mh-190 {
  min-height: 190rem;
}

.mw-348 {
  max-width: 348rem;
}
.mw-361 {
  max-width: 361rem;
}

.text-bold {
  font-weight: bold;
}
.text-small {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-center {
  text-align: center;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-right {
  text-align: right;
}
.text-left, .text--align-left {
  text-align: left;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-none {
  display: none !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
.flex-basis-100 {
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
}
.flex-center-all {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}


ul {
  margin: unset;
  padding: unset;
  list-style: none;
}

.no-scroll {
  overflow: hidden;
}

/* Body Font */
body {
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 20px;
  font-weight: var(--e-global-typography-primary-font-weight);
  line-height: 31px;
  background-color: var(--e-global-body-bg-color);
  margin: 0;
  padding: 0;
}

/* Instructor Courses Styles
.stm_lms_instructor_courses__grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: stretch !important;
}
*/
.stm_lms_instructor_courses__grid {
    display: grid!important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stm_lms_instructor_courses__top {
    display: flex;
    align-items: center;
    margin: 10px 0 30px;
    padding: 10px 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}
.stm_lms_instructor_courses__top h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    border-bottom: 2px solid #386C17;
}
#stm-lms-courses-grid p {
  color: #aaa;
}
.stm_lms_instructor_courses__top a {
    padding: 15px 20px;
    margin-left: auto;
    background-color: #eef1f7!important;
    color: #273044!important;
    text-transform: none;
    letter-spacing: 0;
}
.stm_lms_instructor_courses__top a i {
    color: rgba(29,62,7,1);
    margin-right: 5px;
    transition: .3s ease;
}
.stm_lms_instructor_courses__top a:active,
.stm_lms_instructor_courses__top a:focus,
.stm_lms_instructor_courses__top a:hover {
    background-color: rgba(29,62,7,1)!important;
    color: #fff!important;
}
.stm_lms_instructor_courses__top a:active i,
.stm_lms_instructor_courses__top a:focus i,
.stm_lms_instructor_courses__top a:hover i {
    color: #fff;
}
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters {
    margin-left: 90px;
    display: flex;
}
@media (max-width: 1023px) {
    .stm_lms_instructor_courses__top .masterstudy-lms-course-filters {
        display: none;
    }
}
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters a {
    position: relative;
    padding: 0;
    margin-right: 30px;
    min-width: 0;
    border-radius: 0;
    display: inline;
    background-color: transparent!important;
    overflow: visible;
    text-transform: none;
}
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters a.clicked,
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters a:hover {
    color: rgba(29,62,7,1)!important;
}
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters a.clicked::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgba(29,62,7,1);
    position: absolute;
    bottom: -12px;
    top: auto;
    left: 0;
}
.stm_lms_instructor_courses__top .masterstudy-lms-course-filters a::after {
    display: none;
}

.stm_lms_instructor_courses__single {
    width: 100% !important;
    margin: 0 0 25px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
    float: left !important;
    box-sizing: border-box !important;
}
.stm_lms_instructor_courses__single:hover {
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
}
.stm_lms_instructor_courses__single__inner {
    display: block !important;
    width: auto !important;
    margin: 15px;
    height: 100%;
}

/* Header Widgets */
.header-widgets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: sticky;
  top: 0;
  margin: 0;
  -webkit-transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, -webkit-box-shadow;
  transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  z-index: 99999;
  padding: 1rem 1rem;
  gap: 1rem;
  background-color: var(--e-body-bg-color);

  &.full-height{
    height: 100vh;
  }
}

.header-widgets.scrolled {
  background-color: #f3f3f3;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
	opacity: 0.8;

  img{
    width: 80px!important;
    height: auto; /* Maintains aspect ratio */
  }
}

.home-header-widget-area {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 1000;
	

}

.header-widget-area {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 1000;
}

.header-widget{ 
  a{
    display: flex !important;
  }
  img {
    width: 100px;
    height: auto;
    position: relative;
    transition: all 0.25s ease;

    @media (min-width: 768px) {
      width: 160px;
      min-width: 80px;
      margin-left: 1rem;
      margin-right: 1rem;
    }
  }
}

.page.home{
  .header-widgets:not(.scrolled){
    background-color: transparent;
  }
}


.primary-header {
  font-family: var(--e-global-typography-h1-font-family);
  font-size: var(--e-global-typography-h1-font-size);
  font-weight: var(--e-global-typography-h1-font-weight);
  line-height: var(--e-global-typography-h1-line-height);
  text-transform: uppercase;
}

.narrow-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

a.masterstudy-button {
	background-color: var(--e-global-color-accent)!important;
    color: white!important;
    border: 2px solid var(--e-global-color-accent)!important;
    border-radius: 10rem!important;
    padding: 0.75rem 1rem !important;
    min-width: 2rem!important;
    font-size: 16px!important;
    font-weight: 600!important;
    text-transform: uppercase!important;
	
	 &:hover{
          background-color: white!important;
          color: var(--e-global-color-accent)!important;
}
}

a.masterstudy-button.masterstudy-button_style-primary .masterstudy-button__title:hover {
	color: var(--e-global-color-accent)!important;
}

.cf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;

	.wp-block-button {
      display: flex;
	  justify-content: end!important;
	

input[type=submit]{
        background-color: var(--e-global-color-accent);
        color: white;
        border: 2px solid var(--e-global-color-accent);
        border-radius: 10rem;
        padding: 0.75rem 1rem !important;
        min-width: 2rem;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
	
	 &:hover{
          background-color: white;
          color: var(--e-global-color-accent);
}
}
}
	
	
  @media(max-width: 767px){
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;

    .wp-block-button{
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .submit-button{
      width: 100%;
    }
  }
}



/* Columns for Input Fields */
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.row {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

@media(max-width: 767px){
	.row {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
}

.cf7-form label {
  display: block;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 31px !important;
  text-transform: uppercase;
  padding: 0 10px;
}

.cf7-form input::-webkit-input-placeholder, .cf7-form textarea::-webkit-input-placeholder {
  color: #c0c0c0;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.cf7-form input::-moz-placeholder, .cf7-form textarea::-moz-placeholder {
  color: #c0c0c0;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.cf7-form input:-ms-input-placeholder, .cf7-form textarea:-ms-input-placeholder {
  color: #c0c0c0;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.cf7-form input::-ms-input-placeholder, .cf7-form textarea::-ms-input-placeholder {
  color: #c0c0c0;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.cf7-form input::placeholder,
.cf7-form textarea::placeholder {
  color: #c0c0c0;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-transform: uppercase;
}

.wpv-archive-pagination-nav-links, .wpv-archive-pagination-nav-links-container, .wpv-pagination-nav-links, .wpv-pagination-nav-links-container, .wpv-pagination-preview-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.cf7-form input:focus::-webkit-input-placeholder, .cf7-form textarea:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0);
}

.cf7-form input:focus::-moz-placeholder, .cf7-form textarea:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0);
}

.cf7-form input:focus:-ms-input-placeholder, .cf7-form textarea:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0);
}

.cf7-form input:focus::-ms-input-placeholder, .cf7-form textarea:focus::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0);
}

.cf7-form input:focus::placeholder,
.cf7-form textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0);
}

.input-field {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0px;
  background-color: #fff !important;
  color: var(--e-global-color-accent);
}

.cf7 textarea {
  background-color: #fff !important;
}

.submit-button {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-white);
  border-width: 3px;
  border-style: solid;
  border-color: var(--e-global-color-accent);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 auto;
}

.submit-button:hover {
  background-color: var(--e-global-color-white);
  color: var(--e-global-color-accent);
}

.about .ctl-labels {
  right: unset !important;
}

.about .ctl-label-big {
  font-size: 100px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--e-global-color-primary);
  line-height: 1.1em;
  margin-left: 300px;
}

.about .ctl-icondot {
  border-radius: 100px !important;
  -webkit-border-radius: 100px !important;
}

.about .ctl-content {
  background: transparent !important;
  padding: 0px !important;
}

.about .ctl-wrapper .ctl-one-sided {
  max-width: 1400px !important;
  padding: 0px !important;
}

.about .ctl-description,
.about .ctl-wrapper .ctl-description,
.about .ctl-wrapper .ctl-description ol,
.about .ctl-wrapper .ctl-description p,
.about .ctl-wrapper .ctl-description ul {
  margin: 0px !important;
  text-align: left !important;
  background-color: unset !important;
  color: var(--e-global-color-primary) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}

.about .ctl-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--e-global-palette-5);
  text-transform: uppercase;
  line-height: 1.1em;
  text-align: left !important;
}

.about .ctl-vertical-wrapper.ctl-one-sided:not(.light-skin) .ctl-story.ctl-story-right.odd,
.about .ctl-story {
  background: transparent !important;
}

.about .ctl-wrapper .ctl-vertical-wrapper.ctl-one-sided:where(.ctl-design-3, .ctl-design-6) .ctl-story:not(.ctl-no-media) :where(.ctp-media-slider, .ctl-media, .full-width) {
  background: #fff !important;
  border: 1px solid #54595F;
  -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
          box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.about .ctl-wrapper .ctl-vertical-wrapper.ctl-one-sided:where(.ctl-design-5, .ctl-design-6) .ctl-end,
.about .ctl-wrapper .ctl-vertical-wrapper.ctl-one-sided:where(.ctl-design-5, .ctl-design-6) .ctl-start {
  display: none !important;
}

.about .ctl-wrapper .ctl-description,
.about .ctl-wrapper .ctl-description ol,
.about .ctl-wrapper .ctl-description p,
.about .ctl-wrapper .ctl-description ul .tb-brick:nth-of-type(2),
.about .ctl-wrapper .ctl-description ul .tb-brick:nth-of-type(5),
.about .ctl-wrapper .ctl-description ul .tb-brick:nth-of-type(8),
.about .ctl-wrapper .ctl-description ul .tb-brick:nth-of-type(10) {
  margin: -100px;
}

.ctl-wrapper .ctl-vertical-wrapper.ctl-one-sided:where(.ctl-design-3, .ctl-design-6) .ctl-story:not(.ctl-no-media) .ctl-title {
  margin-top: 120px !important;
}


.team-photo-grid{
  --top-margin-offset: -100px;
  
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  padding-top: 50px;
  
  .team-member{
    width: 140px;
    height: 195px;
    border-radius: 100px !important;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.095) inset, -2px 0px 2px rgba(0,0,0,0.095) inset;

    &:nth-of-type(2), 
	&:nth-of-type(4), 
    &:nth-of-type(6), 
    &:nth-of-type(8), 
    &:nth-of-type(10),
	  &:nth-of-type(12) {
      margin-top: var(--top-margin-offset);
    }
    
    img{
      padding: 15px 0px 0px 0px;
      margin: 0px;
      border: 0px solid rgba(0, 0, 0, 1);
      width: 100%;
      object-fit: cover;
      object-position: center;

      &.gravatar{
        padding-top: unset;
      }
    }
  }
}

/* Cooltime as page section */ 
.section--timeline{

  &.section__green{

    .ctl-timeline-container{
      .ctl-labels{
        
        .ctl-label-big{
          color: var(--e-global-palette-2) !important;
        }
      }

      .ctl-icondot{
        background-color: var(--e-global-palette-3) !important;
      }

      .ctl-content{
        .ctl-title{
          color: var(--e-global-palette-1) !important;
        }

        .ctl-description{
          color: var(--e-body-bg-color) !important;
        }
      }
    }
  }
}

@media only screen and (min-width: 769px) {
  .ctl-wrapper .ctl-vertical-wrapper.ctl-one-sided .ctl-story {
    width: 100% !important;
  }
}
.tb-brick:nth-of-type(2),
.tb-brick:nth-of-type(5),
.tb-brick:nth-of-type(8),
.tb-brick:nth-of-type(10) {
  margin-top: -100px;
}

.gap50 {
  gap: 50px;
}

.why-box {
  padding: 20px;
  width: 90%;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1607843137);
  border-radius: 21px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  font-family: "nunito", sans-serif;
  font-weight: 800;
}
@media (min-width: 768px) {
  .why-box {
    padding: 40px;
    width: 400px;
    height: 342px;
    -ms-flex-line-pack: center;
        align-content: center;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1607843137);
    border-radius: 21px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    font-family: "nunito", sans-serif;
    font-weight: 800;
  }
}

.why-box-number {
	color: var(--e-global-palette-5);
    font-size: 100px;
    line-height: 105px;
  }

@media (min-width: 1300px) {
  .why-box-number {
    color: var(--e-global-palette-5);
    font-size: 120px;
    line-height: 125px;
  }
}

@media (min-width: 1919px) {
  .why-box-number {
    color: var(--e-global-palette-5);
    font-size: 130px;
    line-height: 135px;
  }
}


  .why-box-text {
	color: var(--e-global-palette-5);
    font-size: 20px;
    line-height: 25px;
	}

	
@media (min-width: 1300px) {
 .why-box-text {
	color: var(--e-global-palette-5);
	font-size: 30px;
    line-height: 35px;
	}
}

@media (min-width: 1919px) {
  .why-box-text {
    font-size: 40px;
    line-height: 45px;
  }
}




#how-it-works .is-vertical {
	align-items: center!important;
}

.tilt-box {
	
	@media (min-width: 1300px) {
  -webkit-transform: matrix(1, -0.09, 0.09, 1, 0, 0);
          transform: matrix(1, -0.09, 0.09, 1, 0, 0);
	}
}

.large-pill {

  @media(max-width: 768px) {
    border-radius: 50px;
    padding: 40px 30px;
  }

  @media(min-width: 768px) {
    border-radius: 100px;
    padding: 70px 60px;
  }

  border: 1px solid #fff;
  justify-content: center;
  gap: 20px;

  .lp--list-item{
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0.25rem;

    &:last-of-type{
      margin-bottom: unset;
    }

    & p{
      padding-top: 0.75rem;
    }
  }

  
}

.tickbox {
  border-radius: 100px;
  padding: 10px;
}

.tickbox svg {
  fill: #ffffff;
}

.wpv-loop{
  td{
    @media(max-width: 767px) {
      display: flex;
    }
  }

}

.bundle-table .bundle,
.course {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #54595F;
  padding: 0px !important;
  margin: 0px !important;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
          box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

@media(min-width: 1300px){
  .bundle-table .bundle:hover{
    transform: scale(1.045);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
  }
}

ul.wp-block-list.ticks {
    list-style: none;
    padding-left: 0; /* Removes default indentation */
}

ul.wp-block-list.ticks li {
    position: relative;
    padding-left: 70px; /* Space for the icon */
    margin-bottom: 30px; /* Adjust spacing */
}

ul.wp-block-list.ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(-50%); */
    width: 50px;
    height: 50px;
    background-color: #50991F;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="white" d="M0 11c2.761.575 6.312 1.688 9 3.438 3.157-4.23 8.828-8.187 15-11.438-5.861 5.775-10.711 12.328-14 18.917-2.651-3.766-5.547-7.271-10-10.917z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

.bundle .code,
.course .code,
.news .date {
  background-color: #ccc !important;
  border-radius: 100px !important;
  color: var(--e-global-palette-5) !important;
  padding: 0.05rem 0.5rem;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
	margin-bottom: 5px!important;
}

.bundle{ 
  .header {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--e-global-palette-5) !important;
    text-transform: uppercase;
  }

  .tb-field{
    &.header{
      font-size: 30px;
      line-height: 2.5rem;
    }
  }
}


.course .header,
.news .header {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: var(--e-global-palette-5) !important;
  text-transform: uppercase;
}

.course .header {
  min-height: 66px;
}

.course .box,
.news .content {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.1em;
}

.bundle .tb-button__link,
.course .tb-button__link {
  max-width: 200px!important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bundle .cost {
  background-color: #50991F !important;
  border-radius: 100px !important;
  color: var(--e-global-color-white) !important;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bundle .tb-button__link {
  background-color: var(--button-bg-color)!important;
  border: var(--button-border-width) solid var(--button-border-color)!important;
  border-radius: 100px !important;
  color: var(--button-text-color) !important;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;

}


.bundle .tb-button__link:hover, 
.bundle .tb-button__link:focus,
.bundle .tb-button__link a:hover, 
.bundle .tb-button__link a:focus {
    color: var(--button-hover-text-color)!important;
    background-color: var(--button-bg-color)!important;
    border-color: var(--button-border-color)!important;

    &:hover{
      background-color: var(--button-hover-bg-color)!important;
      border-color: var(--button-hover-border-color)!important;
      color: var(--button-hover-text-color)!important;
    }
}


.course .tb-button__link,
.news .tb-button__link {
  background-color: var(--button-bg-color) !important;
  border-radius: 100px !important;
  border: var(--button-border-width) solid var(--button-border-color);
  color: var(--button-text-color) !important;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1rem;
  font-weight: 700;

  &:hover{
    background-color: var(--button-hover-bg-color)!important;
    border-color: var(--button-hover-border-color)!important;
    color: var(--button-hover-text-color)!important;
  }
}

.menu-header-container,
.menu-home-header-container {
  display: none;

  @media(max-width: 1299px){
    
    &.visible{
      display: block;
    }
  }
}

@media (min-width: 1300px) {
  .menu-header-container,
  .menu-home-header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.menu-user-menu-container .menu li.user-nav-top-level {
  position: relative;
}

.menu-user-menu-container .menu li.user-nav-top-level > a {
  display: inline-flex;
  background-color: var(--button-bg-color) !important;
  border: var(--button-border-width) solid var(--button-border-color) !important;
  border-radius: 100px !important;
  color: var(--button-text-color) !important;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  min-width: 155px;
}

.menu-user-menu-container .menu li.user-nav-top-level > a:hover {
  background-color: var(--button-hover-bg-color) !important;
  border-color: var(--button-hover-border-color) !important;
  color: var(--button-hover-text-color) !important;
}

.menu-user-menu-container .menu li.user-nav-top-level:hover > a {
  border-radius: 30px 30px 0 0 !important;
  color: var(--e-global-color-accent);
}

.menu-user-menu-container .menu li.user-nav-top-level > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 0;
  margin: 0;
  min-width: 155px;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border-radius: 0 0 30px 30px; /* <-- THIS sets bottom rounded corners */
  border: var(--button-border-width) solid var(--button-border-color); /* match parent border */
  border-top: none; /* remove double border between button and submenu */
}

.menu-user-menu-container .menu li.user-nav-top-level:hover > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.menu-user-menu-container .menu li.user-nav-top-level > .sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--button-hover-bg-color) !important;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--button-bg-color) !important;
}

.menu-user-menu-container .menu li.user-nav-top-level > .sub-menu li a:hover {
  background-color: var(--button-hover-bg-color) !important;
  color: var(--button-bg-color) !important;
}

.menu-user-menu-container .menu li.user-nav-top-level > .sub-menu li:last-child a {
	border-radius: 0 0 25px 25px;
 border-bottom: none; /* no double border on last item */
}



/* Style all pagination links */
.wpv-pagination-nav-links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Align items in a row */
  gap: 5px; /* Spacing between buttons */
  list-style: none;
  padding: 1em 0;
}

/* Default pagination items */
.wpv-pagination-nav-links-item a,
.page-item a,
.page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15px;
  height: 15px;
  background-color: var(--e-global-color-accent);
  color: white;
  text-decoration: none;
  font-size: 12px;
  border-radius: 0px !important; /* Optional: rounded corners */
}

.wpv_pagination_dots li a {
  background-image: unset;
}

/* Current page styling */
.wpv-pagination-nav-links-item-current a,
.active-dot a {
  background-color: var(--e-global-color-primary);
  color: #000;
  font-weight: bold;
  border: none;
}

/* Hover effect */
.wpv-pagination-nav-links-item a:hover,
.wpv-pagination-nav-links-container a.page-link:hover,
.page-item a:hover,
.page-link:hover {
  background-color: var(--e-global-color-primary);
  color: #000;
}

.pagination-dots > li > a.page-link {
  border-radius: 0 !important;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #000;
  position: relative;
  overflow-x: hidden;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.svg-sprite {
  display: none;
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1919px) {
  .container {
    padding-top: 3vw;
    padding-right: 3vw;
  }
}
main {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  background-color: unset;
  border: unset;
}

.cta-block {
  display: block;
}

.cta {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid #fff;
  text-transform: uppercase;
  padding: 0.5rem;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 767px) {
  .cta {
    padding: 0.75rem 0.5rem;
  }
}
@media (min-width: 768px) {
  .cta {
    width: 100%;
    max-width: 200px;
    padding: 1rem;
    font-size: 13px;
  }
}
/* Body Font */
body {
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 20px;
  font-weight: var(--e-global-typography-primary-font-weight);
  line-height: 31px;
  background-color: rgba(234, 234, 234, 0.5843137255);
  margin: 0;
  padding: 0;
}

.wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

#page-title .wp-block-button__link {
  padding: 10px 20px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #page-title .wp-block-button__link {
    font-size: 40px;
    line-height: 1.3em;
  }
}

.wp-block-button__link {
  width: 100%;
  text-align: center;
}

.wp-block-columns {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (min-width: 767px) {
  #how-it-works .wp-block-columns {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  #how-it-works .wp-block-columns > .wp-block-column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}



/* Header and Footer Navigation Font */
.is_mobile .header-widget-area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.is_mobile #mnmwp-main-menu #mnm-menu-button {
  padding: 0 !important;
}

.is_mobile #mnmwp-main-menu #mnm-menu-button .btn.menu-btn span {
  width: 40px;
  height: 4px;
  margin: 7px auto;
}

#mnmwp-main-menu {
  background: transparent !important;
}

.mnmwp-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Aligns menu items in the center */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px; /* Spacing between menu items */
}

/* Make list items display inline */
.mnmwp-menu li {
  display: inline-block;
}

/* Style links */
#mnmwp-main-menu > ul > li > a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0px;
}

/* Highlight active menu item */
.mnmwp-menu .current-menu-item a,
.mnmwp-menu a:hover {
  color: var(--e-global-color-accent) !important;
}

/* Responsive: Stack items on mobile */
@media (max-width: 768px) {
  .mnmwp-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.menu-header-container,
.menu-home-header-container {
  text-align: center; /* Centers the menu */
}

/* Mobile Nav Menu */
.menu-header-container .menu,
.menu-home-header-container .menu {
  @media(max-width: 1299px){
    display: flex;
    flex-direction: column;
    background-color: var(--e-global-color-accent);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  @media(min-width:1300px){
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 1.5rem 0 0;
    gap: 15px;
  }
}

.menu-header-container .menu li,
.menu-home-header-container .menu li {
  display: inline-block;
  white-space: nowrap;

  @media(max-width:1299px){
    &.wp-block-button__link{
      background-color: white;
      border-color: white;


      a{
        color: var(--e-global-palette-3);
      }

      &:hover{
        background-color: var(--e-global-palette-3);
        border-color: var(--e-global-palette-3);

        a{
          color: white !important;
        }
      }
    }
  }

  &.wp-block-button__link{
    word-break: unset;
  }
}

.menu-header-container .menu a:not(.wp-block-button__link a),
.menu-home-header-container .menu a:not(.wp-block-button__link a) {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: var(--e-global-color-text);
  
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0px;

  @media(max-width:1300px) {
    color:white;
    justify-content: center;
    font-size: 20px;

    &:hover{
      color: #000;
    }
    
  }


}

.menu-header-container .menu .wp-block-button__link a{
  padding: unset !important;
}

.menu-header-container .menu .current-menu-item a,
.menu-home-header-container .menu  .current-menu-item a,
.menu-header-container .menu a:hover,
.menu-home-header-container .menu a:hover {
  
  @media(max-width:1299px) {
    color:white;
  }

  @media(min-width: 1300px){
    color: var(--e-global-color-accent) !important;
  }
}

@media(max-width: 1299px){
  .menu-header-container .menu .current-menu-item a,
  .menu-home-header-container .menu  .current-menu-item a{
    color: #000 !important;
    border-top: 2px solid;
    border-bottom: 2px solid;
  }
}

/* Responsive: Stack items on mobile */
@media (max-width: 768px) {
  .menu-header-container .menu
  .menu-home-header-container .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* Button Styles */
.wp-block-buttons.is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wp-block-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.lms-courses-category-list__link span {
  display: block;
}

.lms-courses-category-list__link button {
  display: block; /* Forces button to appear on a new line */
  margin-top: 10px; /* Adds spacing */
}

.lms-courses-category-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* Stack children (span & button) vertically */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Center children horizontally */
  justify-items: center; /* Center children vertically */
  gap: 10px; /* Space between span and button */
}

.lms-courses-category-list__item button {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.download-button {
  width:100%;
      word-break: normal;
}
.wp-block-button__link,
button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--button-text-color);
  background-color: var(--button-bg-color);
  border-width: var(--button-border-width);
  border-style: solid;
  border-color: var(--button-border-color);
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wp-block-button__link a {
	color: var(--button-text-color);
}
.menu-item-type-custom:hover a {
    color: var(--button-hover-text-color) !important;
}

/* Hide submenus by default */
.menu-item-has-children .sub-menu {
    display: none;
  position: absolute;
  background: white;
  z-index: 9999;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 180px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optional */
}

/* Show submenu on hover of the parent */
.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu-item-has-children .sub-menu {
  transition: opacity 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}

/* Submenu link style */
.menu-item-has-children .sub-menu a {
  display: block;
  padding: 10px 15px;
  color: #000000;
  text-decoration: none;
  background: white;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Hover state for submenu links */
.menu-item-has-children .sub-menu a:hover {
  color: #80D649;
}

/* Mobile submenu styles */
@media (max-width: 1299px) {
  .menu-item-has-children .sub-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .menu-item-has-children .sub-menu a {
    color: white !important;
    background: transparent !important;
    padding: 8px 15px;
    font-size: 0.9em;
    justify-content: center;
    border: none !important;
  }
  
  .menu-item-has-children .sub-menu a:hover {
    color: #000 !important;
  }
  
  /* Keep submenu items white even when parent is current page */
  .menu-header-container .menu .current-menu-item .sub-menu a,
  .menu-home-header-container .menu .current-menu-item .sub-menu a {
    color: white !important;
    border: none !important;
  }
}


.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-bg-color);
  border-color: var(--button-hover-border-color);
}

#home-page-hero {
  height: 102vh;
  width: 100%;
  max-width: 100vw;
  display: block;
  padding: 0px;
  margin: -100px 0 0 0;
  position: relative;
}
#home-page-hero .container_mouse {
  position: absolute;
  z-index: 10;
  bottom: 1rem;
}

.container_mouse{
  pointer-events: all;
  width: 100%;
  text-align: center;
}

#home-page-hero .home-page-top {
  height: 100vh;
  display: block;
}

#home-page-hero .hero-feature-image {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  background-size: contain;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  right: 0;
  opacity: 0.3;
  top: -60px;
}

@media (min-width: 768px) {
  #home-page-hero .hero-feature-image {
    display: block;
    height: 110vh;
    background-position: center;
    opacity: 0.3;
  }
}
@media (min-width: 1300px) {
  #home-page-hero .hero-feature-image {
    display: block;
    height: 120vh;
	right: 70px;
    background-position: center right;
    opacity: 1;
  }
}

.hero-feature-image {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top right;
  background-size: contain;
  z-index: 9999;
  position: relative;
  right: -1rem;
  width: 100vw;
  height: 100vh;
}
@media (min-width: 768px) {
  .hero-feature-image {
    display: block;
    height: 140vh;
    background-position: center right;
  }
}

@media (min-width: 768px) {
  #home-page-title {
    margin-left: 12vw;
    font-size: 24px;
    font-weight: bold;
    max-width: 45vw;
  }
  #home-page-title .wp-block-button {
    display: block !important;
    padding: 0px 20px !important;
  }
}
#home-page-hero #page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  margin-top: -60vh;

  @media(max-width: 767px){
    text-align: center;
  }
}
@media (min-width: 768px) {
  #home-page-hero #page-top {
    width: 100vw;
    margin: -90vh 0 0 0;
    height: calc(100vh - 123px);
  }
}
@media (min-width: 1300px) {
  #home-page-hero #page-top {
    width: 60vw;
    margin: -90vh 0 0 100px;
    height: calc(100vh - 123px);
  }
}
@media (min-width: 1919px) {
  #home-page-hero #page-top {
    width: 60vw;
    margin: -100vh 0 0 100px;
    height: calc(100vh - 123px);
  }
}

#page-top {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 10px;
}
@media (min-width: 768px) {
  #page-top {
	  position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    margin: 0 0 0 100px;
    height: calc(100vh - 183px);
  }
	#page-top .container_mouse {
	  position: absolute;
	  z-index: 10;
	  pointer-events: all;
	  bottom: 1rem;
	  width: 100%;
	  text-align: center;
		margin-left: -100px;
		left: 0;
	}

}
@media (min-width: 1919px) {
	#page-top {
	  width: 100vw;
	  margin: auto;
	  height: calc(100vh - 180px);
		position: relative;
	}

	#page-top .container_mouse {
	  position: absolute;
	  z-index: 10;
	  pointer-events: all;
	  bottom: 1rem;
	  width: 100%;
	  text-align: center;
	  left: 100px;
	}
}

#page-title {
  font-size: 24px;
  font-weight: bold;
  z-index: 9999;
}
@media (min-width: 768px) {
  #page-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 90vw !important;
	padding: 0 25px;
  }
}
@media (min-width: 1919px) {
  #page-title {
    margin: 0 0 0 100px;
  }
}

.page-thumbnail {
  height: 100%;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;

  img{
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .page-thumbnail {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    width: 40vw;
    z-index: 9999;
    border-radius: 20rem 0 0 20rem;
    border: none;
  }
}
@media (min-width: 1919px) {
  .page-thumbnail {
    border-radius: 30rem 0 0 30rem;
  }
}
.tb-container-inner {
  padding: 10px;
}

[class^=stmlms-],
[class*=" stmlms-"] {
  font-weight: 900;
}

@media (max-width: 1299px) {
#green-content {
max-width: 100%;
    width: 100%;
    margin: 0;
}
}

@media (min-width: 1300px) {
	#green-width { 
		width: 1200px!important;
		margin: 0 auto;
	}	
	
#green-content {
max-width: 500px;
    width: 500px;
    margin: 0;
}
}



.stm_searchbox {
  margin: 0px !important;
  background-color: #50991F !important;
  border: 1px solid #50991F !important;
  border-radius: 50px !important;
  padding: 10px 10px 10px 50px;
  max-width: 450px !important;
}

.stm_searchbox .stm_lms_courses_search {
  max-width: none !important;
  margin: 10px 10px 10px 50px;

  .autocomplete-list ul{
    box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
  }
}

.stm_searchbox .stm_lms_courses_search__button {
  right: unset;
  left: -45px !important;
  color: #FFFFFF !important;
  font-size: 30px !important;
  font-weight: 900 !important;
}

.stm_searchbox .stm_lms_courses_search .autocomplete-wrapper .autocomplete-input {
  padding: 10px !important;
  border: 1px solid #50991F !important;
  border-radius: 50px !important;
}

.bundle-selector{
  @media(max-width: 768px){
      display: none;
  }
}
/* Center the taxonomy filter */
.courses-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.courses-category-list.scrolled {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.courses-category-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.courses-category-list__item {
  padding: 20px 20px !important;
  background-color: #46861D !important;
  width: 100%;
  text-align: center;
}

.courses-category-list__item a {
  color: #fff !important;
}

.courses-category-list__item a:hover {
  color: #000000 !important;
}

.courses-category-list__item{
  height: 80px;
  flex: 1 1 auto;
  font-size: 2.5vw;
  line-height: 1.25rem;
  justify-content: center;
  align-items: center;
  display: flex;

  &:nth-child(1) {
    background-color: var(--e-global-palette-1) !important;
    padding-left: 20px !important;

    @media (min-width: 767px) {
      border-radius: 50px 0 0 50px !important;
      padding-left: 20px !important;
    }
  }

  &:nth-child(2) {
    background-color: var(--e-global-palette-2) !important;
  }

  &:nth-child(3) {
    background-color: var(--e-global-palette-3) !important;
  }

  &:nth-child(4) {
    background-color: var(--e-global-palette-4) !important;
  }

  &:nth-child(5) {
    background-color: var(--e-global-palette-5) !important;
  }

  &:nth-child(6) {
    background-color: var(--e-global-palette-7) !important;
  }

  /* Add a catch for the scenario where the last item is not the bundle_coroners-course */
  &:has(+ .bundle_coroners-course),
  &:last-of-type:not(.bundle_coroners-course){
    @media (min-width: 993px) {
      border-radius: 0 50px 50px 0 !important;
    }
  }

  /* If the last item is the bundle_coroners-course, apply the isolated styles to it */
  &.bundle_coroners-course{
    background-color: var(--e-global-palette-6) !important;
    
    @media (min-width: 767px) {
      margin-left: 1rem;
      border-radius: 0 50px 50px 0 !important;
      min-width: 10rem;
    }

    @media (min-width: 993px) {
      margin-left: 1rem;
      border-radius: 50px !important;
    }
  }
}

@media (min-width: 767px) {

  .courses-category-list{
    padding: 0 1rem;
  }

  .courses-category-list__item{
    border-radius: 50px;
    font-size: inherit;
    width: unset;
    border-radius: unset;
  }
}

@media (min-width: 993px) {
  .courses-category-list {
    gap: unset;

    .courses-category-list__item{
        flex: unset;
    }
  }
}

.gmp_map_opts{
  @media(max-width: 767px){
    overflow: hidden;
  }
}

#news {
  background-color: var(--e-global-palette-5);
  padding: 50px 0px;
}

#news p {
  color: #fff;
  padding: 20px 0 0 0;
  max-width: 50%;
}

#news_page a {
	color: var(--e-global-palette-5);
}

#news_page a:hover,
#news_page a:focus{
	color: #000;
}

.white-back {
  width: calc(100vw - em);
  left: 0;
  position: absolute;
  margin: 0;
  padding: 50px;
}

.white-back.content {
  max-width: 1200px;
  margin: 0 auto;
}

#testimonials {
  padding: 0rem 0;
}

#testimonials .image {
    align-items: center;
    display: flex;
}

#testimonials .wp-block-toolset-views-view-editor {
  max-width: 1200px;
  margin: 0 auto;
}

#testimonials .wpv-pagination-previous-next-buttons {
  margin: 0 -80px;
}

.section__testimonials{

}

@media (min-width: 768px) {
  .rad-tr img {
    border-radius: 0 50% 0 0;
  }
}

@media (min-width: 768px) {
  .rad-tl img {
    border-radius: 50% 0 0 0;
  }
}

@media (min-width: 768px) {
  .rad-br img {
    border-radius: 0 0 50% 0;
  }
}

@media (min-width: 768px) {
  .rad-bl img {
    border-radius: 0 0 0 50%;
  }
}



.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.p-6 {
  padding: 6rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.p-12 {
  padding: 12rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pt-12 {
  padding-top: 12rem !important;
}

.pt-15 {
  padding-top: 15rem !important;
}

.pt-20 {
  padding-top: 20rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pb-12 {
  padding-bottom: 12rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.pb-20 {
  padding-bottom: 20rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.pl-6 {
  padding-left: 6rem !important;
}

.pl-7 {
  padding-left: 7rem !important;
}

.pl-8 {
  padding-left: 8rem !important;
}

.pl-9 {
  padding-left: 9rem !important;
}

.pl-10 {
  padding-left: 10rem !important;
}

.pl-12 {
  padding-left: 12rem !important;
}

.pl-15 {
  padding-left: 15rem !important;
}

.pl-20 {
  padding-left: 20rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.pr-6 {
  padding-right: 6rem !important;
}

.pr-7 {
  padding-right: 7rem !important;
}

.pr-8 {
  padding-right: 8rem !important;
}

.pr-9 {
  padding-right: 9rem !important;
}

.pr-10 {
  padding-right: 10rem !important;
}

.pr-12 {
  padding-right: 12rem !important;
}

.pr-15 {
  padding-right: 15rem !important;
}

.pr-20 {
  padding-right: 20rem !important;
}

.py-0 {
  padding-top: 0rem !important;
}

.py-1 {
  padding-top: 1rem !important;
}

.py-2 {
  padding-top: 2rem !important;
}

.py-3 {
  padding-top: 3rem !important;
}

.py-4 {
  padding-top: 4rem !important;
}

.py-5 {
  padding-top: 5rem !important;
}

.py-6 {
  padding-top: 6rem !important;
}

.py-7 {
  padding-top: 7rem !important;
}

.py-8 {
  padding-top: 8rem !important;
}

.py-9 {
  padding-top: 9rem !important;
}

.py-10 {
  padding-top: 10rem !important;
}

.py-12 {
  padding-top: 12rem !important;
}

.py-15 {
  padding-top: 15rem !important;
}

.py-20 {
  padding-top: 20rem !important;
}

.py-0 {
  padding-bottom: 0rem !important;
}

.py-1 {
  padding-bottom: 1rem !important;
}

.py-2 {
  padding-bottom: 2rem !important;
}

.py-3 {
  padding-bottom: 3rem !important;
}

.py-4 {
  padding-bottom: 4rem !important;
}

.py-5 {
  padding-bottom: 5rem !important;
}

.py-6 {
  padding-bottom: 6rem !important;
}

.py-7 {
  padding-bottom: 7rem !important;
}

.py-8 {
  padding-bottom: 8rem !important;
}

.py-9 {
  padding-bottom: 9rem !important;
}

.py-10 {
  padding-bottom: 10rem !important;
}

.py-12 {
  padding-bottom: 12rem !important;
}

.py-15 {
  padding-bottom: 15rem !important;
}

.py-20 {
  padding-bottom: 20rem !important;
}

.px-0 {
  padding-left: 0rem !important;
}

.px-1 {
  padding-left: 1rem !important;
}

.px-2 {
  padding-left: 2rem !important;
}

.px-3 {
  padding-left: 3rem !important;
}

.px-4 {
  padding-left: 4rem !important;
}

.px-5 {
  padding-left: 5rem !important;
}

.px-6 {
  padding-left: 6rem !important;
}

.px-7 {
  padding-left: 7rem !important;
}

.px-8 {
  padding-left: 8rem !important;
}

.px-9 {
  padding-left: 9rem !important;
}

.px-10 {
  padding-left: 10rem !important;
}

.px-12 {
  padding-left: 12rem !important;
}

.px-15 {
  padding-left: 15rem !important;
}

.px-20 {
  padding-left: 20rem !important;
}

.px-0 {
  padding-right: 0rem !important;
}

.px-1 {
  padding-right: 1rem !important;
}

.px-2 {
  padding-right: 2rem !important;
}

.px-3 {
  padding-right: 3rem !important;
}

.px-4 {
  padding-right: 4rem !important;
}

.px-5 {
  padding-right: 5rem !important;
}

.px-6 {
  padding-right: 6rem !important;
}

.px-7 {
  padding-right: 7rem !important;
}

.px-8 {
  padding-right: 8rem !important;
}

.px-9 {
  padding-right: 9rem !important;
}

.px-10 {
  padding-right: 10rem !important;
}

.px-12 {
  padding-right: 12rem !important;
}

.px-15 {
  padding-right: 15rem !important;
}

.px-20 {
  padding-right: 20rem !important;
}

.m-0 {
  margin: 0rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.m-12 {
  margin: 12rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mt-12 {
  margin-top: 12rem !important;
}

.mt-15 {
  margin-top: 15rem !important;
}

.mt-20 {
  margin-top: 20rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mb-12 {
  margin-bottom: 12rem !important;
}

.mb-15 {
  margin-bottom: 15rem !important;
}

.mb-20 {
  margin-bottom: 20rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.ml-7 {
  margin-left: 7rem !important;
}

.ml-8 {
  margin-left: 8rem !important;
}

.ml-9 {
  margin-left: 9rem !important;
}

.ml-10 {
  margin-left: 10rem !important;
}

.ml-12 {
  margin-left: 12rem !important;
}

.ml-15 {
  margin-left: 15rem !important;
}

.ml-20 {
  margin-left: 20rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.mr-7 {
  margin-right: 7rem !important;
}

.mr-8 {
  margin-right: 8rem !important;
}

.mr-9 {
  margin-right: 9rem !important;
}

.mr-10 {
  margin-right: 10rem !important;
}

.mr-12 {
  margin-right: 12rem !important;
}

.mr-15 {
  margin-right: 15rem !important;
}

.mr-20 {
  margin-right: 20rem !important;
}

.my-0 {
  margin-top: 0rem !important;
}

.my-1 {
  margin-top: 1rem !important;
}

.my-2 {
  margin-top: 2rem !important;
}

.my-3 {
  margin-top: 3rem !important;
}

.my-4 {
  margin-top: 4rem !important;
}

.my-5 {
  margin-top: 5rem !important;
}

.my-6 {
  margin-top: 6rem !important;
}

.my-7 {
  margin-top: 7rem !important;
}

.my-8 {
  margin-top: 8rem !important;
}

.my-9 {
  margin-top: 9rem !important;
}

.my-10 {
  margin-top: 10rem !important;
}

.my-12 {
  margin-top: 12rem !important;
}

.my-15 {
  margin-top: 15rem !important;
}

.my-20 {
  margin-top: 20rem !important;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mx-0 {
  margin-left: 0rem !important;
}

.mx-1 {
  margin-left: 1rem !important;
}

.mx-2 {
  margin-left: 2rem !important;
}

.mx-3 {
  margin-left: 3rem !important;
}

.mx-4 {
  margin-left: 4rem !important;
}

.mx-5 {
  margin-left: 5rem !important;
}

.mx-6 {
  margin-left: 6rem !important;
}

.mx-7 {
  margin-left: 7rem !important;
}

.mx-8 {
  margin-left: 8rem !important;
}

.mx-9 {
  margin-left: 9rem !important;
}

.mx-10 {
  margin-left: 10rem !important;
}

.mx-12 {
  margin-left: 12rem !important;
}

.mx-15 {
  margin-left: 15rem !important;
}

.mx-20 {
  margin-left: 20rem !important;
}

.mx-0 {
  margin-right: 0rem !important;
}

.mx-1 {
  margin-right: 1rem !important;
}

.mx-2 {
  margin-right: 2rem !important;
}

.mx-3 {
  margin-right: 3rem !important;
}

.mx-4 {
  margin-right: 4rem !important;
}

.mx-5 {
  margin-right: 5rem !important;
}

.mx-6 {
  margin-right: 6rem !important;
}

.mx-7 {
  margin-right: 7rem !important;
}

.mx-8 {
  margin-right: 8rem !important;
}

.mx-9 {
  margin-right: 9rem !important;
}

.mx-10 {
  margin-right: 10rem !important;
}

.mx-12 {
  margin-right: 12rem !important;
}

.mx-15 {
  margin-right: 15rem !important;
}

.mx-20 {
  margin-right: 20rem !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.line-break {
  display: block !important;
}

.hidden {
  display: none !important;
}

.mh-42 {
  min-height: 42rem;
}

.mh-65 {
  min-height: 65rem;
}

.mh-89 {
  min-height: 89rem;
}

.mh-90 {
  min-height: 90rem;
}

.mh-100 {
  min-height: 100rem;
}

.mh-105 {
  min-height: 105rem;
}

.mh-114 {
  min-height: 114rem;
}

.mh-134 {
  min-height: 134rem;
}

.mh-140 {
  min-height: 140rem;
}

.mh-170 {
  min-height: 170rem;
}

.mh-190 {
  min-height: 190rem;
}

.mw-348 {
  max-width: 348rem;
}

.mw-361 {
  max-width: 361rem;
}

.text-bold {
  font-weight: bold;
}

.text-small {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-left, .text--align-left {
  text-align: left;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-basis-100 {
  -ms-flex-preferred-size: 100% !important;
  flex-basis: 100% !important;
}

.flex-center-all {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-order1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.flex-order2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

/* -- Uncomment as required --
.sm {
    @include breakpoint($md-down) {
        @include _all-paddings('-');
        @include _all-margins('-');

        @include _display-helpers('-');
        @include _flex-helpers('-');
        @include _content-helper-classes('-');
    }

    @include custom-offsets('sm');
}
*/
/* -- Uncomment as required --
.md {
    @include breakpoint($md) {
        @include _all-paddings('-');
        @include _all-margins('-');

        @include _display-helpers('-');
        @include _flex-helpers('-');
    }

    @include custom-offsets('md');
}
*/
/* -- Uncomment as required --
.lg {
    @include breakpoint($lg) {
        @include _all-paddings('-');
        @include _all-margins('-');

        @include _display-helpers('-');
        @include _flex-helpers('-');
    }
}
*/
/* -- Uncomment as required --
.xxl {
    @include custom-offsets('xxl');
}
*/
ul {
  margin: unset;
  padding: unset;
  list-style: none;
}

.no-scroll {
  overflow: hidden;
}

.content-section .content-block {
  padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
}
.content-section .content-block .wp-block-heading {
  margin-top: unset;
}
.content-section .content-block .wp-block-heading * {
  padding: unset;
}

@media (min-width: 768px) {
  .section__socials {
    padding: 100px 0;

    a{

      &:hover{
        svg{
          path{
            fill: var(--e-global-color-accent);
          }
        }
      }
    }
  }
}

section.bg-accent{
  .wp-block-button__link{
    background-color: var(--e-global-color-primary);
    color: #fff;

    &:hover{
      background-color: white;
      color: var(--e-global-color-primary)
    }
  }

  .secondary-header{
    color: var(--e-global-color-primary);
  }
}

/* MasterStudy LMS Plugin stuff -- */
.bundle.tb-container .tb-image img{
  contain-intrinsic-size: unset;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Hide instuctor from course page */
.masterstudy-single-course-modern__info-block:nth-child(1), /* Hide instructor */
.masterstudy-single-course-modern__info-block:nth-child(3){ /* Hide enrolled */
  display: none !important;
}

/* Cool Timeline custom css */
.section__the-procedure{

  & >.wp-block-group__inner-container:first-of-type{
    padding: 0 2rem;
  }

  .wp-block-columns{
    flex-direction: column;
    flex-wrap: unset !important;
  }

  .ctl-title{
    display: none;
  }

  .ctl-horizontal-timeline{
    width: 100% !important;
    margin: unset;
  }
}

.pw--level-block{
  --pw-pill-width: 11rem;

  @media(min-width: 1380px) {
    --pw-pill-width: 13rem;
  }

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  justify-content: flex-end;

  .pw--level-item{
    background-color: #27500C;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    border-radius: 5rem;
    align-items: center;
    text-align: center;
    width: 100%;

    &:nth-child(1){
      background-color: var(--e-global-palette-1);
      background-image: linear-gradient(0deg, var(--e-global-palette-2) 40%, var(--e-global-palette-1) 60%);
      max-height: 30rem;
    }
    &:nth-child(2){
      background-color: var(--e-global-palette-2);
      background-image: linear-gradient(0deg, var(--e-global-palette-3) 40%, var(--e-global-palette-2) 70%);
    }
    &:nth-child(3){
      background-color: var(--e-global-palette-3);
    }
    &:nth-child(4){
      background-color: var(--e-global-palette-4);
    }
    &:last-of-type{
      background-color: var(--e-global-palette-6);
      background-image: linear-gradient(0deg, var(--e-global-palette-6) 50%, var(--e-global-palette-4) 50%);
    }

    .wp-block-heading{
      font-size: 1.25rem;
      text-transform: uppercase;
      background-color: rgba(0,0,0,0.35);
      padding: 0.5rem 1rem;
      border-radius: 1rem;
      display: inline-block;
    }

    .inner{
      width: 100%;
    }
  }
}

@media (min-width: 1300px) {
  .section__the-procedure{
  }

  .pw--level-block{
    flex-direction: row;

    .pw--level-item{
      width: 50%;
    }
  }
}

@media (min-width: 1280px) {
  .section__the-procedure{
    .wp-block-columns{
      flex-direction: column !important;
      flex-wrap: unset !important;
    }

    .pw--level-block{
      flex-direction: row;
  
      .pw--level-item{
        flex-direction: column;
        flex: 0 0 auto;
        border-radius: var(--pw-pill-width);
        width: 11rem;
        padding: 8rem 2rem;
  
        &:nth-child(1){
          margin: 6rem 0;
          padding: 3rem 1.5rem;
          max-height: 32rem;
        }
        &:nth-child(2){
          margin: 2rem 0;
          padding: 1.5rem;
          max-height: 38rem;
        }
        &:nth-child(3){
          margin: 0rem 0;
          padding: 9rem 1.5rem;
          max-height: 43rem;
        }
        &:last-of-type{
          padding: 6rem 1.5rem;
          margin: 4rem 0px;
          max-height: 35rem;
        }
  
        .inner{
          height: 100%;
          width: 100%;
  
          .wp-block-group__inner-container:first-of-type{
            display: flex;
            flex-direction: column;
            height: 100%;
          }
        }
  
        .wp-block-heading{
          padding: 0.5rem;
          width: 100%;
          display: block;
			font-size: 1.1rem;
        }
		  p {
			  font-size: 16px;
        line-height: normal;
		  }
      }
    }
  }
}

@media (max-width: 1280px) {
  .section__the-procedure{

    .pw--level-block{
      flex-basis: 100%;
      width: 100%;
    }

    .brochure-block{
      display: none;
    }
  }
}

/* Un-stacking point for the procedure section */
@media (min-width: 1280px) {
  .section__the-procedure{
    .wp-block-columns{
      flex-direction: row !important;
    }
  }

  .pw--content-block{
    height: 100%;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;

    .wp-block-group__inner-container:first-of-type{
      justify-content: center;
    }
  }
}


.tb-grid{
  display: flex;
}


body:not(.page.home){
  @media (max-width: 767px) {
    .container_mouse{
      display: none;
    }

    #page-top{
      width: 100%;
      padding: unset;
      margin-bottom: 1rem;

      #page-thumbnail{
        overflow: hidden;

        .page-thumbnail{
          max-width: 100%;
        }
      }
    }

    #page-title{
      background-color: #ddd;
      padding: 2rem 2rem;
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;

      h1{
        margin: unset;
      }
    }
  }
}


.stm-lms-wrapper{
  @media(max-width: 767px){
    .container{
      margin: unset;
    }

    .course-button{
      .tb-button,
      .tb-button__link{
        width: 100%
      }
    }
  }
}



.all-courses{
  @media(min-width: 768px){

  }
}

.bundle--item{
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  
  @media(min-width: 768px){

    &:nth-child(even){
      > .tb-container{
        flex-direction: row-reverse;
      }
    }
  }
}

.bundle-table{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;

  @media(max-width: 768px){
    margin-top: 1rem;
  }

  .bundle--item{
    .bundle{
      display: flex;

      @media(max-width: 768px){
        flex-direction: column;
      }
    }

    .tb-image{
      display: flex;
      flex-direction: column;
      width: 100%
    }

    }
  

  .bundle-table__item-wrapper{
    display: flex;
    flex-direction: column;
    height: 100;
  }
}

.pum-container{
  min-height: 322px !important;
}
.pum-content {
	padding-top: 25px;
}
div.masterstudy-authorization__switch {
	padding: 0px 35px 20px;
    border-top: 1px solid #dbe0e9;
    background: #eef1f7;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 2;
	border-radius: 0 0 10px 10px;
}

.pum-content{
	
  .recruitment-form{
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    padding: 2rem 1rem;

    @media(max-width: 768px){
      gap: 1.5rem;
      padding-bottom: unset;
    }

    .row{
      @media(max-width: 767px){
        gap: unset;
      }
		@media(min-width: 768px){
			display: flex;
			gap: 10px;
		}

      label{
        display: flex;

        @media(max-width: 768px){
          padding: unset;
          line-height: 1rem !important;
          padding-left: 2px;
          margin: 0 0 0.5rem;
        }

        @media(min-width: 768px){
          flex: 0 1 40%;
        }
      }

		textarea{ 
			width: 100%!important;
		}
		
      input[type=text],
      input[type=email],
      input[type=number],
      textarea{
        border-color: transparent;
        max-width: 100%;

        &.wpcf7-not-valid{
          border: 1px solid #cc0000;
        }
      }

      .wpcf7-not-valid-tip{
        padding: 0.25rem;
      }
    }

    .wp-block-button{
      display: flex;
      justify-content: end;

      input[type=submit]{
        background-color: var(--e-global-color-accent);
        color: white;
        border: 2px solid var(--e-global-color-accent);
        border-radius: 10rem;
        padding: 0.75rem 1rem !important;
        min-width: 2rem;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        
        &:hover{
          background-color: white;
          color: var(--e-global-color-accent);
        }
      }
    }
  }
}


.stm-lms-wrapper{
  &.user-account-page{
    .container{
      background-color: white;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .stm-lms-user-avatar-edit .stm-lms-user_avatar {
      box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.055);
      border-radius: 0.5rem;
    }

    .stm-lms-user_create_announcement_btn a, 
    .stm-lms-user_edit_profile_btn a{
      display: flex;
    }
  }
}

.stm-course-bundles{
  .stm-lms-wrapper{
    background-color: var(--e-body-bg-color);
    padding-top: unset;
  }

  .stm_lms_course__title{
    color: var(--e-global-palette-5);
  }

  .stm_lms_teachers{
    display: none;
  }

  .stm_lms_single_bundle__courses_wrapper{
    background-color: #eee;

    .stm_lms_single_bundle__courses_course__title{
      color: var(--e-global-color-accent);
    }

    .stm_lms_single_bundle__courses_course__price{
      display: none;
    }

    .stm_lms_single_bundle__courses_course__image{
      background-color: #ddd;
    }
  }
}


.stm-lms-wrapper{
  --stm-lms-border-color: #dbe0e9;
  --stm-lms-content-box-border-radius: 8px;

  .masterstudy-single-course-modern__sidebar{
    .masterstudy-popular-courses__instructor,
    .masterstudy-popular-courses__price,
    .masterstudy-single-course-modern__buttons {
      display: none;
    }

    .masterstudy-popular-courses__item-title{
      color: var(--e-global-color-primary);
    }
  }

  .stm_lms--green-slab{
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;

    &::before{
      display: flex;
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: -2000px;
      right: -2000px;
      background: var(--e-global-palette-5);
      z-index: -1;
    }

    .stm_lms_course__title{
      color: white;
      margin-top: 4rem;
      margin-bottom: 4rem;
    }
  }

  .stm_lms_bundle_content{
    .stm_lms_bundle_content__box{
      background-color: #fff;
      border: 1px solid var(--stm-lms-border-color);
      padding: 1rem;
      border-radius: var(--stm-lms-content-box-border-radius);
    

      &.stm_lms_single_bundle__courses_wrapper{
        h3{
          margin: unset;
          color: var(--e-global-color-primary);
          border-bottom: 1px solid var(--stm-lms-border-color);
          padding-bottom: 0.5rem;
          margin-bottom: 1.5rem;
        }
      }
    }
  }

  .sidebar{
    .stm-lms-course__sidebar{
      position: relative;
      z-index: 1;
      background: white;
      padding: 1rem;
      border-radius: 5px;
      border: 1px solid #eee;

      @media(min-width: 768px){
        margin-top: 3rem;
      }

      .stm_lms_course__image{
        margin: unset;
        margin-bottom: 2rem;

        img{
          max-width: 100%;
          height: auto;
          border-radius: 5px;
        }
      }
    }

    .stm-lms-wishlist{
      margin: unset;
      margin-bottom: 2rem;
      border-top: 1px solid;
      border-bottom: 1px solid;
      border-color: #ccc;
      padding: 0.5rem;
    }
  }
}


.stm-courses{
  .masterstudy-single-course-modern__sidebar{
    padding: 20px;

    .masterstudy-single-course-details.masterstudy-single-course-details_default,
    .masterstudy-single-course-info,
    .masterstudy-popular-courses{
      display: none;
    }

    .masterstudy-single-course-modern__cta{
      margin: unset;
    }
  }
}


.stm_searchbox{
  .autocomplete-wrapper{
  }

  .autocomplete-list{
    ul{
      position: absolute;
      left: 0;
      padding: unset;
      margin: 10px 0 0 0;

      li{
        border-bottom: 1px solid #ddd;

        a{
          padding: 0.5rem 1rem;
          font-size: 1rem;
          line-height: 1.5rem;
          text-align: left;
          border-left: 5px solid transparent;

          &:last-of-type{
            border-bottom: unset;
          }

          &:hover{
            border-color: var(--e-global-palette-5);
            background-color: #f8f8f8;
            text-decoration: underline;
          }
        }
      }
    }
  }
}


.page.checkout{
  #page-top{
    display: none;
  }

  .masterstudy-checkout-container{
    .masterstudy-checkout-table__header,
    .masterstudy-checkout-table__footer{
      background-color: #fff;
    }
  }
}


.section_meet-the-team{
  .wp-block-toolset-views-view-template-block{
    &:last-of-type{
      margin-top: 2rem;
    }
  }

  .col-wrapper{
    @media(max-width: 768px){
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  }

  .team-member-list{
    @media(max-width: 768px){
      width: 100%;
      padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
    }
  }

  .team-image-grid-panel{
    @media(max-width: 768px){
      display: none;
    }
  }
}

.mtt--row{
  display: inline-flex;
  gap: 0.25rem;
}



.user-item-list{
  .user-item{
    margin-bottom: 1.75rem;

    .user-title{
      font-weight: bold;
      line-height: 1.15rem;
      text-transform: uppercase;
      color: var(--e-global-palette-4);
    }

    .user-position{
      font-size: 1.15rem;
    }

    .user-email{
      display: flex;

      a{
        margin-top: 0.25rem;
        color: var(--e-global-color-text);
        text-decoration: underline !important;
        font-size: 0.95rem;
        line-height: 1rem;
      }
    }
  }
}


.section_map-block{
  .col{

    &.map-content-section{
      @media(max-width: 768px){
        padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
      }
    }
  }
}


.section_how-it-works{
  display: flex;
  @media(max-width: 768px){
    flex-direction: column;
  }

  .features-block{
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;

    @media(max-width: 768px){
      flex-direction: column;
    }
    
    .stack-block{
      @media(max-width: 768px){
        &:first-of-type{
          margin-bottom: 2.5rem;
        }
      }
      
    }
  }
}


.section_content{
  @media(max-width: 768px){
    padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
  }

  .col{
    @media(max-width: 768px){
      display: block;
    }
  }
}


.qodef-block-502e2a3f{
  @media(min-width: 480px) and (max-width: 768px){
    padding: unset !important;
  }
}

.qi-block-timeline,
.qi-block-timeline.qodef-block-d4bf7721{
  @media(min-width: 480px) and (max-width: 768px){
    
  }


  .qodef-e-line-holder{
    @media(max-width: 1024px){
      height: 100% !important;
    }
    
    .qodef-e-line{

    }
  }

  .qodef-e-item{ 

    .qodef-e-item-inner{
      width: 100%;
    }

    &:not(:last-child){
      @media(max-width: 480px){
        padding-bottom: 2.5rem !important;
        margin-bottom: 2.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.25);
      }
    }
    
    .qodef-e-content-holder{
      @media(min-width: 480px) and (max-width: 1024px){
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        flex: 0 0 auto;
        max-width: 50%;
        overflow: hidden;
        padding: unset !important;
      }

      
      

      .qodef-e-title{
        @media(min-width: 480px) and (max-width: 1024px){
          margin: unset;
        }
      }
    }

    /* Obverse (mobile) */
    &.qodef-obverse{
      @media(min-width: 480px) and (max-width: 1024px){
        .qodef-e-side-holder{
          display: flex;
          justify-content: flex-end;

          .qodef-e-image{
            margin-right: 2rem;
          }
        }

        .qodef-e-content-holder{
          display: flex;
          justify-content: flex-start;
          padding: 0 0 0 2rem !important;
        }
      }
    }

    /* Reverse (mobile) */
    &.qodef-reverse{
      @media(min-width: 480px) and (max-width: 1024px){
        .qodef-e-side-holder{
          display: flex;
          justify-content: flex-start;

          .qodef-e-image{
            margin-left: 2rem;
          }
        }

        .qodef-e-content-holder{
          display: flex;
          justify-content: flex-end;
          padding: 0 2rem 0 0 !important;
        }
      }
    }
  }

  .qodef-e-side-holder{
    text-align: center !important;

    @media(min-width: 480px) and (max-width: 1024px){
      padding: unset !important;
      text-align: center;
    }
  }
}

.section_latest-news{
  @media(max-width: 768px){
    padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
  }
  .tb-grid{
    @media(max-width: 768px){
      display: flex;
      flex-direction: column;
    }
  }
}

.section_socials-block{
  @media(max-width: 768px){
    padding: 0 var(--e-global-sm-viewport_gutter-v) var(--e-global-sm-viewport_gutter-h);
  }
}



section.bg-pallette-5{
  .wp-block-button__link{
    background-color: var(--e-global-palette-3);
    border-color: var(--e-global-palette-3);

    &:hover{
      background-color: var(--e-global-color-white);
      border-color: var(--e-global-color-white);
    }
  }
}



@media (max-width: 1280px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100% !important;
    }
	.wp-block-columns {
        flex-wrap: wrap !important;
    }
}

@media (min-width: 1280px) {
  .section__the-procedure .wp-block-column:first-child {
    flex: 0 0 40% !important;
  }

  .section__the-procedure .wp-block-column:last-child {
    flex: 0 0 60% !important;
  }
}

@media (max-width: 1024px) {
	figure.wp-block-image.size-full.procedure {
		display: none;
	}
}

@media (max-height: 620px) {
  #home-page-hero {
    height: auto;
    min-height: 100vh;
  }

  #home-page-hero h1,
  #page-title h1 {
    font-size: 30px !important;
    line-height: 1.4 !important;
    margin-top: 20px !important;
  }

  #home-page-hero .hero-feature-image {
    background-size: contain !important;
    height: 120vh !important;
    top: 0 !important;
    opacity: 1;
  }

  #page-title .wp-block-button__link {
	font-size: 30px !important;
  }

	#page-title img {
		height: 150px;
		margin: 100px 0 10px 300px !important;
	}
	
	
  .primary-header {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .header-widget img {
    width: 60px !important;
  }
}

.stm-lms-user_edit_profile_btn {
  display: none !important;
}

.masterstudy__login-page-form {
  max-width: 1200px !important;
  width: 100% !important;
}

.masterstudy-authorization__social,
#masterstudy-authorization-form-login .masterstudy-authorization__form-wrapper {
  flex-direction: row !important;
  gap: 20px!important;
}

@media (max-height: 620px) {
  .masterstudy__login-page-form {
    width: 95vw!important;
  }
}

.col-left {
  width: 1200px;
}

.pum-container.pum-responsive {
  top: 5%!important;
  height: 90vh!important;
  overflow: scroll!important;
}

.stm-lms-payment-methods .stm-lms-payment-method__name {
  margin: 10px 0 !important;
}

a.masterstudy-button.masterstudy-button_style-secondary .masterstudy-button__title {
  color: #fff!important;
}

a.masterstudy-button.masterstudy-button_style-secondary:hover .masterstudy-button__title {
  color: #386C17!important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .upcoming-courses-container,
    .past-courses-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (min-width: 1200px) {
    .upcoming-courses-container,
    .past-courses-container {
		    display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.stm-lms-user-courses .stm_lms_instructor_courses__single--title h5 {
  min-height: 60px!important;
}

.masterstudy-course-player-quiz__result-container,
.masterstudy-course-player-content__header-lesson-type,
.masterstudy-course-player-quiz__content-meta {
	display: none!important;
}

.masterstudy-attachment-media__actions a.masterstudy-button.masterstudy-button_style-tertiary .masterstudy-button__title,
.masterstudy-course-player-navigation__send-assignment a.masterstudy-button.masterstudy-button_style-tertiary .masterstudy-button__title {
	color: #fff!important;
}

a.masterstudy-button.masterstudy-button_style-tertiary:hover::before {
	color: var(--accent-100)!important;
}

.stm_lms_instructor_courses__single--term {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 5px;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-weight: var(--e-global-typography-primary-font-weight);
}


.masterstudy-dark-mode-button {
	visibility: hidden!important;
	display:none!important;
}

.masterstudy-student-progress-assignment__attempt-content {
    width: 100%!important;
}

ul.tasks-list {
    list-style-type: disc!important;
    padding-left: 20px!important;
}

.masterstudy-course-player-curriculum__content {
  overflow: scroll!important;
}

.masterstudy-course-player-content__header h1 span {
 font-weight: 300!important;
}

.masterstudy-curriculum-accordion__title span {
  font-weight: 300!important;
  font-size: 14px!important;
}

.account-type ul {
    display: flex;
    gap: 10px;
}


@media (max-width: 768px) {
  .account-type ul {
    flex-direction: column;
}
  .account-type ul li{ 
    width: 100%!important;
  }
}

.nf-next-item .nf-next, .nf-previous-item .nf-previous, .register-account input {
    background-color: #50991f;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0;
}
button.login-button {
    margin: auto;
    display: flex;
}

@media only screen and (max-width: 599px) { 
  #green-width .tb-container-inner {
    max-width: unset;
  }
 
}

@media only screen and (max-width: 1450px) { 
 .policy-documents, .offer-section {
    padding: 25px;
  
}
}

@media only screen and (max-width: 1024px) {
  .course-details-content .course-left {
    width: 100%;
    padding: 15px;
  }
}


@media (max-width: 768px) {
    .course-dates-table tr:not(.month-header):not(.spacer-row) {
        margin: 20px;
    }
    .month-header td strong {
      display: flex;
        justify-content: center;
    }
    
}

/* WooCommerce Cart Block Styling */
.wc-block-components-product-name,
.wc-block-cart-item__quantity,
.wc-block-components-product-price {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-h1-font-weight);
  font-size: 20px!important;
  color: var(--e-global-color-accent);
}

/* Hide the default product description */
.wc-block-components-product-metadata__description {
  display: none !important;
}

.wc-block-components-quantity-selector::before,
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  font-size: 18px!important;
  border: none!important;
}

.wc-block-components-quantity-selector::before {
  font-weight: 800!important;
}

/* Style the schedule information */
.wc-block-components-product-metadata,
.wc-block-components-product-metadata .wc-block-components-product-metadata__description:not(:last-child),
.wc-block-components-product-metadata dl {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  font-size: 18px!important;
  color: #333;
  margin: 8px 0;
}

.wc-block-components-product-metadata dt {
  font-weight: 600;
  display: inline;
  margin-right: 5px;
}

.wc-block-components-product-metadata dd {
  display: inline;
  margin: 0;
}

.wc-block-cart-item__remove-link {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  font-size: 18px;
}