body {
  margin: 0;
}

h1 {
  font-size: 38px;
  color: #222;
  font-family: "Zilla Slab", sans-serif;
  font-weight: 600;
  line-height: 1.5em;
}

h2 {
  font-size: 32px;
  margin-bottom: 0;
  font-family: "Zilla Slab", Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.5em;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 20px;
  font-family: "Zilla Slab", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
}

p {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 2em;
  text-align: justify;
}

pre {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 2.5em;
  text-align: justify;
}

a {
  text-decoration: none;
  color: #0065b2;
}

a:hover {
  color: rgba(25,77,198,0.7);
}

header {
  border-bottom: 1px solid #dcdcdc;
  background-color: #fff;
  position: sticky;
  top: 0;
}

header a {
  color: unset;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 30%;
  align-items: center;
  display: flex;
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.logo a {
  max-width: 17%;
}

.logo img {
  max-width: 100%;
}

ul {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0 !important;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  font-size: 16px;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  padding-right: 10px;
}

.navigation {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (min-width: 1024px){
  .navigation{
    height: 100%;
  }
}

.navigation li, .navigation li a{
  height: 100%;
  display: flex;
  align-items: center;
}

.navigation li a {
  border-bottom: 0 solid transparent;
  transition: all 0.1s ease;
  padding-left: 14px;
  padding-right: 14px;
}

.navigation li a:hover {
  background-color: #d5ddf0;
  color: unset;
}

.navigation li a.active {
  background-color: #d5ddf0;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #555;
  font-size: 18px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    height: 50px;
    max-width: none;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #fff;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
  }

  li:has(.active) {
    background-color: #f3f3f3;
  }

  .navigation li a:hover {
    border: unset;
  }

  .hamburger-icon {
    display: block;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 300px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }
}

#top-banner {
  background-image: url(/assets/images/meditation-on-twin-hearts-mcks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-shadow: #000 0 0 5px;
  padding-left: 30px;
  max-width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top-banner {
    height: 50vh;
  }
}

@media screen and (max-width: 600px) {
  #top-banner {
    height: 60vh;

  }
}

.content-parts {
  max-width: 1200px;
  margin: 50px auto;
  color: #333;
  text-align: left;
  padding: 0 5%;
}

.content-parts ul li, .content-parts ol li {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 2em;
}

.two-columns {
  display: flex;
}

.two-columns .col-1, .two-columns .col-2 {
  width: 50%;
}

.col-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-images img {
  border-radius: 5px;
  max-width: 100%;
}

.center-image{
  display: flex;
  justify-content: center;
}

strong {
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }

  .two-columns .col-1, .two-columns .col-2 {
    width: 100% !important;
  }
}

.two-columns .w-60 {
  width: 60%;
}

.two-columns .w-40 {
  width: 40%;
}

.three-columns{
  display: flex;
}

.three-columns .col-1, .three-columns .col-2, .three-columns .col-3 {
  width: 33%;
}

@media screen and (max-width: 1024px) {
  .three-columns {
    flex-direction: column;
    justify-content: center;
  }

  .three-columns .col-1, .three-columns .col-2, .three-columns .col-3 {
    width: 100% !important;
  }
}

.col-image-text{
  flex-direction: column;
}

blockquote {
  margin: 0 auto;
  border-left: 4px solid rgba(25,77,198,0.6);
  max-width: 70%;
  font-family: "Archivo", sans-serif;
  font-style: italic;
  padding: 10px 20px;
  background-color: #f9f9f9;
  line-height: 2em;
}

blockquote span {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  font-style: normal;
}

blockquote.prayer{
  margin: 30px auto;
  max-width: 85%;
}

.col-quote {
  display: flex;
  align-items: center;
}

blockquote ol {
  margin-top: 30px;
  margin-left: 20px;
  padding-inline-start: 0;
}

.two-columns .shadow-box {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
  margin: 20px;
  border-radius: 6px;
  padding: 0 30px 50px 30px;
}

@media screen and (max-width: 1024px) {
  .two-columns .shadow-box {
    max-width: 70%;
    margin: 20px auto;
  }
}

.green-text {
  color: #008000;
  font-style: italic;
}

@media screen and (min-width: 1024px) {
  figure.small-image {
    max-width: 50%;
  }
}

footer {
  width: 100%;
  background-color: #212934;
  border-top: 12px solid #e2e1e0;
}

.footer-container {
  padding: 25px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-container h3 {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.footer-container a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-container a:hover {
  color: #fff;
}

.social-media-section {
  display: flex;
  gap: 10px;
  font-size: 22px;
}

.social-media-section i {
  font-size: 22px;
  color: #212934;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}

.social-box:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.foundations-section {
  margin-top: 40px;
  display: flex;
  gap: 10px;
}

.copyright {
  margin: 0 auto;
  background-color: #1d242e;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 5%;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px !important;
  margin: 0 auto;
  max-width: 1200px;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
}

.copyright a:hover {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column p, .copyright p {
    text-align: center;
  }

  .social-media-section, .foundations-section {
    justify-content: center;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding-left: 5%;
    row-gap: 50px;
  }

  .footer-column {
    width: 50%;
  }

  .copyright {
    padding-left: 5%;
  }
}

.has-sub-menu {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  list-style: none;
  width: max-content;
  font-size: 14px;
}

.sub-menu li a {
  display: block;
  max-width: 100%;
  padding: 12px;
  line-height: 1.7em;
}

.sub-menu li:hover {
  background-color: #d5ddf0;
}

.navigation .sub-menu li {
  padding: 0;
  max-width: 330px;
}

.has-sub-menu a i{
  margin-left: 5px;
}

@media screen and (min-width: 1024px) {
  .has-sub-menu:hover .sub-menu {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .js-mobile-dropdown-button {
    appearance: none;
    background: #fff0;
    border: none;
  }
}

@media screen and (max-width: 1024px) {
  .mobile-sub-menu, .mobile-sub-menu-courses, .mobile-sub-menu-healing, .mobile-sub-menu-prosperity, .mobile-sub-menu-spirituality {
    background-color: #f8f8f8;
    border: none;
    width: 100%;
    font-size: 13px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
  }
}

@media screen and (max-width: 1024px) {
  .has-sub-menu .desktop-icon {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .js-mobile-dropdown-button i {
    font-size: 18px;
  }
}

.dropdown-box {
  display: none;
}

@media screen and (max-width: 1024px) {
  .dropdown-box {
    display: block;
    width: 10%;
    transition: all ease-in 1s;
  }
}

@media screen and (max-width: 1024px) {
  .sub-menu {
    width: 100%;
    display: none;
  }
}

.is-open {
  max-height: 1000px !important;
}

.mobile-only{
  display: none;
}

@media screen and (max-width: 1024px) {
  .mobile-only{
    display: block;
  }
  .desktop-only{
    display: none;
  }
}

.cta-box {
  display: flex;
  margin-bottom: 40px;
  margin-top: 40px;
}

.cta {
  padding: 8px 30px;
  color: rgba(25,77,198,0.88);
  background-color: #fff;
  border: 3px solid rgba(25,77,198,0.88);
  border-radius: 5px;
  font-size: 18px;
  font-family: "Archivo", sans-serif;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.cta:hover {
  color: #fff;
  background-color: rgba(25,77,198,0.88);
}

.course-category-box{
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 7px;
  margin: 0 auto;
  gap: 50px;
  margin-top: 40px;
}

.course-box {
  display: flex;
  gap: 50px;
  max-width: 95%;
}

.course-image {
  align-content: center;
}

.course-image img {
  border-radius: 7px;
  max-width: 200px;
}

.course-info {
  width: 100%;
}

.course-list{
  max-width: 95%;
  margin: 0 auto;
}

.course-info h2 {
  font-family: "Vollkorn", sans-serif;
  font-size: 20px;
}

.course-info .course-cta {
  float: right;
}


@media screen and (max-width: 600px) {
  .course-box {
    flex-direction: column;
    gap: 20px;
  }

  .course-image {
    display: flex;
    justify-content: center;
  }
}
