.background_light {
 background-color: #fff; 
  height: fit-content;
}

.background_dark {
  background-color: #f9f9fb;
  height: fit-content;
}

.section_image {
 width: 100%;
  max-width: 800px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.section_cards {
 display: flex;
  flex-direction: row;
}

.section_card1 {
 background-color: #f6f6f9;
  height: fit-content;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  max-width: 350px;
  width: 40vw;
}

.section_card2 {
 background-color: #f6f6f9;
  margin-left: 20px;
  height: fit-content;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  max-width: 350px;
  width: 40vw;
}

.card_low {
   margin-top: -10vh; 
}

.card_high {
    margin-top: -15vh;
}

.spa-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 0 2em;
}

/* JTC: Default header styles */
.header-default--bg-wrapper__styles {
  padding-bottom: 64px;
  padding-top: 112px;
}

.header-default--content-wrapper__styles {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-default--content-wrapper__styles p {
  align-items: center;
  text-align: center;
  max-width: 72ch;
}

.header-default--subheading-paragraph--wrapper p {
  color: #76788A;
}

.bg-wrapper__indigo_blue .header-default--content-wrapper__styles p,
.bg-wrapper__indigo_blue .header-default--content-wrapper__styles *,
.bg-wrapper__ocean_blue .header-default--content-wrapper__styles p,
.bg-wrapper__ocean_blue .header-default--content-wrapper__styles * .bg-wrapper__coral_red .header-default--content-wrapper__styles p,
.bg-wrapper__coral_red .header-default--content-wrapper__styles * {
  color: #F5F6FD;
  color: #ffffff;

}

.header-default--cta-wrapper__styles {
  display: flex;
}

.header-default--cta-wrapper__styles p::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 16px;
  vertical-align: middle;
  padding: 0px;
  margin-left: 16px;
  background-image: url(https://www.medianet.com.au/hubfs/MDN_HD_Website_2021/nav-button-arrow.svg);
  background-repeat: no-repeat
}

.default-cta-arrow p {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  align-items: center;
}

.header-default--content-wrapper__styles>*+* {
  margin-top: 16px;
}

/* WIP REFACTOR */

.anchor-links--content-wrapper__layout {
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  margin: 0 auto;
  scroll-behavior: smooth;
}

.anchor-links--content-wrapper__layout {
  margin-top: 32px;
  margin-bottom: 0px;
}

.anchor-links--content-wrapper__layout>*+* {
  margin-left: 48px;
}

.anchor-links--item-wrapper__layout img {
  margin-right: 16px;
}

.anchor-links--item-wrapper__layout {
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  width: fit-content;
  white-space: nowrap;
  flex-wrap: nowrap;
  align-items: center;
}

a.anchor-links--item-wrapper__layout {
  scroll-behavior: smooth;
}

a.anchor-links--item-wrapper__layout:hover {
  font-weight: 600;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media screen and (min-width: 1160px) {
  .header-default--content-wrapper__styles h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
  }
}

@media screen and (max-width: 1160px) {
  .header-default--bg-wrapper__styles {
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .header-default--content-wrapper__styles>*+* {
    margin-top: 16px;
  }

  .header-default--content-wrapper__styles h1 {
    text-align: center;
  }

  .anchor-links--content-wrapper__layout {
    flex-direction: column;
    align-items: center;
  }

  .anchor-links--content-wrapper__layout>*+* {
    margin-left: 0px;
    margin-top: 24px;
  }
  
  
  
}

@media screen and (max-width: 600px) {
  .section_cards {
 display: flex;
    height: fit-content;
    flex-direction: column;
}
  .section_card1 {
    margin-left:auto;
    width:100%;
  }
  
  .section_card2 {
   margin-left:auto;
    width:100%
  }
  .card_low {
   margin-top:5vh; 
  }
  .card_high {
   margin-top:5vh; 
  }
}

/*/ animations /*/
.reveal{
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1s all ease-out;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}