@charset "UTF-8";
img {
  border-radius: 4px;
}

.img-caption {
  color: var(--grey);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

#payment-card {
  width: 350px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

#payway-card {
  width: 350px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.inline-video {
  display: flex;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  margin-top: 2rem;
  overflow: auto;
}
.inline-video iframe {
  width: 100%;
  max-height: 200px;
}

.flex-col-2 .inline-video {
  margin-top: 0;
}
.flex-col-2 .inline-video:last-child {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 590px) {
  .inline-video iframe {
    width: 100%;
    max-height: 300px;
  }
}
@media only screen and (min-width: 840px) {
  .inline-video iframe {
    width: 100%;
    max-height: 450px;
  }
}
#action-box-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card.action-box {
  display: none;
}
.card.action-box-combo {
  display: block;
}

.action-box {
  width: 100%;
  margin-bottom: 20px;
  padding: 1.25rem !important;
  border-top: 4px solid hsl(210, 95%, 33%);
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.action-box:first-child {
  margin-left: 0;
}
.action-box:last-child {
  margin-bottom: 0;
}
.action-box h3 {
  color: hsl(210, 95%, 33%);
  margin-bottom: 1rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
}
.action-box .button {
  margin-top: auto;
  margin-bottom: 0;
}
.action-box-combo-selector {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
}
.action-box-combo select {
  outline: unset;
  border: unset;
  background-color: var(--white-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  height: 45px;
  flex-grow: 2;
}
.action-box-combo .button {
  margin-top: 0;
}

#scroll-hint-mobile {
  position: relative;
  display: flex;
  justify-content: center;
  height: 32px;
  margin-bottom: 2rem;
  color: white;
  font-size: 2rem;
  text-decoration: none;
}
#scroll-hint-mobile:active {
  text-decoration: none;
}

@media only screen and (min-width: 550px) {
  .card.action-box {
    display: flex;
  }
  .card.action-box-combo {
    display: none;
  }
  #scroll-hint-mobile {
    display: none;
  }
}
@media only screen and (min-width: 830px) {
  #action-box-wrapper {
    flex-direction: row;
  }
  .action-box {
    margin-left: 40px;
    margin-bottom: 0px;
  }
  .action-box-container {
    margin-bottom: -40px;
    position: relative;
    top: -40px;
  }
}
@media (prefers-color-scheme: dark) {
  .action-box {
    background-color: var(--grey-verydark);
    color: hsl(0, 0%, 100%);
  }
  .action-box h3 {
    color: hsl(206, 80%, 53%);
  }
}
.additional-articles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  flex-direction: row;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid grey;
}
.additional-articles a {
  color: black;
  text-decoration: none;
}
.additional-articles a:hover {
  text-decoration: none;
  color: inherit;
}

.additional-article {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  transition: ease 0.4s all;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}
.additional-article-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: ease 0.4s all;
  background-color: hsl(0, 0%, 0%);
}
.additional-article-img-container {
  flex: 3;
  min-height: 180px;
  overflow: hidden;
  background-color: hsl(0, 0%, 0%);
}
.additional-article-text {
  flex: 2;
  padding: 20px;
}
.additional-article-text h3 {
  margin-bottom: 1.5rem;
}
.additional-article:hover {
  background-color: hsl(0, 0%, 88%);
}
.additional-article:hover .additional-article-img {
  transform: scale(1.05);
  opacity: 0.9;
}

@media only screen and (min-width: 950px) {
  .additional-articles {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "latest-news-heading latest-news-heading latest-news-heading" "latest-article-1 latest-article-2 latest-article-3";
  }
  .additional-article:first-child {
    grid-area: latest-news-heading;
  }
  .additional-article:nth-of-type(1) {
    grid-area: latest-article-1;
  }
  .additional-article:nth-of-type(2) {
    grid-area: latest-article-2;
  }
  .additional-article:nth-of-type(3) {
    grid-area: latest-article-3;
  }
  .additional-article-img-container {
    flex: 2;
  }
  .additional-article-text {
    flex: 5;
  }
}
@media (prefers-color-scheme: dark) {
  .additional-articles a {
    color: white;
  }
  .additional-article {
    background-color: hsl(214, 7%, 19%);
  }
  .additional-article:hover {
    background-color: hsl(206, 9%, 10%);
  }
}
.alert-banner {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 30px;
  width: 90%;
  max-width: 900px;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(92, 107, 149, 0.15);
  left: 50%;
  transform: translate(-50%, 0);
  animation: BannerfadeIn 0.85s cubic-bezier(0.19, 1, 0.22, 1) both alternate;
  animation-delay: 0.85s;
  background-color: hsl(0, 0%, 100%);
  z-index: 90;
}
.alert-banner .button {
  margin-bottom: 0;
  height: 36px;
  justify-self: center;
}

@keyframes BannerfadeIn {
  0% {
    transform: translate(-50%, 50%);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
    visibility: visible;
  }
}
.alert-content {
  display: grid;
  grid-template-columns: 2rem auto;
  grid-template-areas: "alert-icon alert-heading" "alert-paragraph alert-paragraph" "alert-close alert-close";
  gap: 1.25rem;
  align-items: center;
}
.alert-content-container {
  display: flex;
  align-items: center;
}
.alert-content > i {
  grid-area: alert-icon;
  font-size: 24pt;
}
.alert-content > h4 {
  grid-area: alert-heading;
  margin-bottom: 0rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3rem;
  font-weight: var(--font-weight-bold);
}
.alert-content > p {
  grid-area: alert-paragraph;
}
.alert-content > .button {
  grid-area: alert-close;
}
.alert-content img {
  margin-right: 15px;
}
.alert-content p:last-of-type {
  margin-bottom: 0;
}

#public-holiday {
  z-index: 91;
}

.fa-duotone.fa-party-horn::before {
  color: rgb(255, 217, 0);
}
.fa-duotone.fa-party-horn::after {
  color: red;
}

.fa-duotone.fa-earth-oceania::before {
  color: var(--alert-success);
}
.fa-duotone.fa-earth-oceania::after {
  color: var(--alert-information);
}

.fa-duotone.fa-flag {
  color: var(--alert-information);
}

.fa-duotone.fa-egg {
  color: #ffd2a7;
}

.fa-duotone.fa-wreath-laurel {
  color: var(--alert-success);
}

.fa-duotone.fa-crown::before {
  color: gold;
}
.fa-duotone.fa-crown::after {
  color: magenta;
}

.fa-duotone.fa-building-columns {
  color: rgb(163, 151, 130);
}

.fa-duotone.fa-hand-fist {
  color: rgb(255, 217, 0);
}
.fa-duotone.fa-hand-fist::after {
  opacity: 0.8;
}

.fa-duotone.fa-tree-christmas::before {
  color: var(--alert-warning);
}
.fa-duotone.fa-tree-christmas::after {
  color: var(--alert-success);
  opacity: 0.8;
}

@media only screen and (min-width: 830px) {
  .alert-banner {
    padding: 10px 30px;
    border-radius: 24px;
  }
  .alert-banner .button {
    justify-self: unset;
  }
  .alert-banner h4 {
    margin-bottom: -0.75rem;
  }
  .alert-content {
    grid-template-columns: 2rem auto 93px;
    grid-template-areas: "alert-icon alert-heading alert-close" "alert-icon alert-paragraph alert-close" "alert-icon alert-paragraph alert-close";
  }
}
@media (prefers-color-scheme: dark) {
  .alert-banner {
    background-color: hsl(206, 9%, 10%);
    box-shadow: 0 20px 60px rgba(92, 107, 149, 0.3);
  }
}
#img-i-scream-for-ice-cream-1 {
  background-image: url(/newsroom/img/2022/04/ice-cream/group1.jpg);
}

#img-i-scream-for-ice-cream-2 {
  background-image: url(/newsroom/img/2022/04/ice-cream/mrwhippy.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-1 {
  background-image: url(/newsroom/img/2022/09/balmoral.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-2 {
  background-image: url(/newsroom/img/2022/09/buckingham.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-3 {
  background-image: url(/newsroom/img/2022/09/windsor.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-4 {
  background-image: url(/newsroom/img/2022/09/funeral.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-5 {
  background-image: url(/newsroom/img/2022/09/holyrood.jpg);
}

#img-the-favourite-homes-of-queen-elizabeth-ii-6 {
  background-image: url(/newsroom/img/2022/09/sandringham.jpg);
}

#img-cyber-security-9-simple-things-seniors-can-do-to-protect-themselves-online-1 {
  background-image: url(/newsroom/img/2022/10/ipad-woman.jpg);
}

#img-cyber-security-9-simple-things-seniors-can-do-to-protect-themselves-online-2 {
  background-image: url(/newsroom/img/2022/10/padlock-laptop.jpg);
}

#img-cyber-security-9-simple-things-seniors-can-do-to-protect-themselves-online-3 {
  background-image: url(/newsroom/img/2022/10/coffee-women.jpg);
}

#img-why-home-maintenance-should-be-a-top-priority-in-and-around-your-home-1 {
  background-image: url(/newsroom/img/2022/11/handyman.jpg);
}

#img-is-downsizing-right-for-you-1 {
  background-image: url(/newsroom/img/2022/11/unpacking.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-1 {
  background-image: url(/newsroom/img/2022/11/beach.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-2 {
  background-image: url(/newsroom/img/2022/11/byronlighthouse.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-3 {
  background-image: url(/newsroom/img/2022/11/portstephens.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-4 {
  background-image: url(/newsroom/img/2022/11/threesisters.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-5 {
  background-image: url(/newsroom/img/2022/11/kangaroovalley.jpg);
}

#img-its-almost-summer-5-of-the-best-getaways-in-nsw-6 {
  background-image: url(/newsroom/img/2022/11/sydney.jpg);
}

#img-5-reasons-why-a-land-lease-community-could-be-for-you-1 {
  background-image: url(/newsroom/img/2022/12/smiling.jpg);
}

#img-how-to-prepare-your-home-for-storm-season-and-severe-weather-1 {
  background-image: url(/newsroom/img/2022/11/handyman.jpg);
}

#img-making-a-claim-the-mhia-claims-process-1 {
  background-image: url(/newsroom/img/2023/04/reading-couple.jpg);
}

#img-dont-get-stuck-in-holiday-hell-use-our-11-point-check-list-before-you-go-1 {
  background-image: url(/newsroom/img/2023/06/wings.jpg);
}

#img-6-ways-to-prepare-your-home-against-fires-1 {
  background-image: url(/newsroom/img/2023/06/firefighters.jpg);
}

#img-6-ways-to-prepare-your-home-against-fires-2 {
  background-image: url(/newsroom/img/2023/06/afdrs.jpg);
}

#img-how-to-choose-the-right-home-insurance-for-your-home-cabin-or-on-site-caravan-1 {
  background-image: url(/newsroom/img/2023/06/insurance-form.jpg);
}

#img-4-reasons-why-you-should-insure-your-cabin-with-a-specialist-insurer-1 {
  background-image: url(/newsroom/img/2023/07/tablet-browser.jpg);
}

#img-affordable-manufactured-home-insurance-how-to-get-the-best-price-1 {
  background-image: url(/newsroom/img/2023/08/couple-smiling.jpg);
}

#img-the-mhia-guide-to-land-lease-communities-in-new-south-wales-1 {
  background-image: url(/newsroom/img/2023/09/two-people.jpg);
}

#img-our-top-faqs-as-a-land-lease-insurance-specialist-1 {
  background-image: url(/newsroom/img/2023/10/paper-questions.jpg);
}

#img-understanding-your-mhia-pds-what-it-all-means-and-how-to-get-the-most-out-of-it-1 {
  background-image: url(/newsroom/img/2023/11/blonde-old-woman-reading-book-on-tablet.jpg);
}

#img-mastering-home-and-contents-insurance-a-proven-approach-for-mhia-customers-1 {
  background-image: url(/newsroom/img/2023/12/green-frog.jpg);
}

#img-discover-the-difference-over-55s-lifestyle-communities-vs-retirement-villages-1 {
  background-image: url(/newsroom/img/2024/01/woman-brown-shirt.jpg);
}

#img-unlocking-peace-of-mind-mhias-comprehensive-coverage-for-holiday-cabins-on-site-caravans-and-regular-cabins-1 {
  background-image: url(/newsroom/img/2024/02/caravan.jpeg);
}

#img-event-planning-in-land-lease-communities-a-beginners-guide-1 {
  background-image: url(/newsroom/img/2024/04/cheers.jpg);
}

#img-not-ready-for-a-retirement-village-have-you-heard-of-land-lease-estates-1 {
  background-image: url(/newsroom/img/2024/05/happy-couple.jpg);
}

#img-the-2024-budget-and-you-how-the-budget-impacts-land-lease-home-owners-1 {
  background-image: url(/newsroom/img/2024/06/club-house.jpg);
}

#img-ingenia-bethania-event-1 {
  background-image: url(/newsroom/img/2024/08/group-a.jpeg);
}

#img-ingenia-bethania-event-2 {
  background-image: url(/newsroom/img/2024/08/group-b.jpeg);
}

#img-sustainable-living-ecofriendly-maintenance-for-your-land-lease-home-1 {
  background-image: url(/newsroom/img/2024/09/cleaning.png);
}

#img-discovering-laurieton-1 {
  background-image: url(/newsroom/img/2024/09/kew.jpg);
}

#img-top-10-beaches-in-new-south-wales-a-mustvisit-guide-for-over-50s-1 {
  background-image: url(/newsroom/img/2024/09/beach.jpg);
}

#img-on-the-road-mhia-and-queensland-land-lease-villages-1 {
  background-image: url(/newsroom/img/2024/10/palmstreet.jpeg);
}

#img-top-mystery-picnic-spots-in-victoria-for-land-lease-home-owners-1 {
  background-image: url(/newsroom/img/2024/10/picnic.jpg);
}

#img-on-the-road-mhia-in-new-south-wales-and-queensland-1 {
  background-image: url(/newsroom/img/2024/10/hall.jpeg);
}

#img-on-the-road-with-mhia-hello-lower-north-coast-1 {
  background-image: url(/newsroom/img/2024/11/coast.jpg);
}

#img-on-the-road-with-mhia-the-coast-with-the-most-lower-north-coast-1 {
  background-image: url(/newsroom/img/2024/12/road-at-night.jpg);
}

#img-top-10-bucket-list-travel-destinations-for-over-50s-1 {
  background-image: url(/newsroom/img/2025/01/travel.jpg);
}

#img-how-land-lease-living-is-shaping-modern-retirement-1 {
  background-image: url(/newsroom/img/2025/02/house.jpg);
}

#img-redefining-retirement-embracing-land-lease-living-mhia-1 {
  background-image: url(/newsroom/img/2025/02/woman.jpg);
}

#img-rba-rate-cut-explained-what-it-means-for-land-lease-homeowners-in-australia-1 {
  background-image: url(/newsroom/img/2025/02/sunny_home.jpg);
}

#img-mhia-supports-australia-day-celebrations-at-ingenia-lifestyle-hervey-bay-1 {
  background-image: url(/newsroom/img/2025/02/classic_car.jpg);
}

#img-mhia-faq-coverage-for-lightning-storm-and-impact-1 {
  background-image: url(/newsroom/img/2025/03/cyclone.jpg);
}

#img-making-the-move-essential-insurance-tips-for-land-lease-living-1 {
  background-image: url(/newsroom/img/2025/03/quiet_home.jpeg);
}

#img-how-the-2025-federal-budget-might-affect-land-lease-homeowners-1 {
  background-image: url(/newsroom/img/2025/03/graph.jpg);
}

#img-move-more-live-well-stay-strong-steady-and-social-1 {
  background-image: url(/newsroom/img/2025/04/woman_swimming.jpg);
}

#img-from-working-life-to-retirement-adjusting-to-a-fixed-income-with-confidence-1 {
  background-image: url(/newsroom/img/2025/04/budget_retirement.jpg);
}

#img-supporting-good-times-and-great-wine-with-probus-tomaree-1 {
  background-image: url(/newsroom/img/2025/05/wine_tasting.jpg);
}

#img-glenn-mcgrath-joins-mhia-as-brand-ambassador-a-partnership-built-on-trust-1 {
  background-image: url(/newsroom/img/2025/05/mcgrath_woman.jpg);
}

#img-real-conversations-with-real-homeowners-glenn-mcgrath-meets-shirley-and-peter-1 {
  background-image: url(/newsroom/img/2025/06/mcgrath_man.jpg);
}

#img-winter-ready-essential-home-checks-for-cooler-months-1 {
  background-image: url(/newsroom/img/2025/06/winter_bench.jpg);
}

#img-everything-you-need-to-know-about-disaster-chasers-1 {
  background-image: url(/newsroom/img/2025/06/park_drone.jpg);
}

#img-talking-land-lease-with-glenn-mcgrath-a-q-and-a-1 {
  background-image: url(/newsroom/img/2025/07/glenn_questions.jpg);
}

#img-a-friendly-rivalry-hometown-australia-state-of-origin-bowling-grand-final-2025-1 {
  background-image: url(/newsroom/img/2025/07/bowls_mhia.jpg);
}

#img-glenn-mcgrath-and-mhia-a-partnership-built-on-precision-trust-and-genuine-care-1 {
  background-image: url(/newsroom/img/2025/07/home_mcgrath.jpg);
}

#img-why-choose-mhia-understanding-the-value-of-specialised-cover-1 {
  background-image: url(/newsroom/img/2025/09/home_community.JPG);
}

button {
  padding: unset;
  border: unset;
  background-color: unset;
  display: block;
  font-size: inherit;
  cursor: pointer;
  transition: ease all 0.15s;
  text-decoration: none;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  width: -moz-fit-content;
  max-width: 375px;
  min-width: 45px;
  height: 45px;
  padding: 0.6rem 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid hsl(210, 95%, 33%);
  border-radius: 25px;
  color: hsl(0, 0%, 100%);
  background-color: hsl(210, 95%, 33%);
  cursor: pointer;
  transition: ease all 0.15s;
  text-decoration: none;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.button:visited, .button:hover, .button:focus-visible {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.button:hover, .button:focus-visible {
  color: hsl(210, 95%, 33%);
  background-color: white;
  border-color: hsl(210, 95%, 33%);
}
.button:focus-visible {
  outline: 1px solid white !important;
  border: 2px solid black !important;
}
.button-secondary {
  color: hsl(210, 95%, 33%);
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(210, 95%, 33%);
}
.button-secondary:hover, .button-secondary:focus-visible {
  background-color: hsl(210, 95%, 23%);
  border: 2px solid hsl(210, 95%, 23%);
  color: hsl(0, 0%, 100%);
}
.button-secondary:visited {
  color: hsl(210, 95%, 33%);
}
.button-secondary:visited:hover, .button-secondary:visited:focus-visible {
  color: hsl(0, 0%, 100%);
}
.button-tertiary {
  color: hsl(210, 95%, 33%);
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(0, 0%, 100%);
}
.button-tertiary:hover, .button-tertiary:focus-visible {
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 90%);
  border-color: hsl(0, 0%, 90%);
}
.button-tertiary:visited {
  color: hsl(0, 0%, 0%);
}
.button-quarternary {
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 88%);
  border: 2px solid hsl(0, 0%, 88%);
}
.button-quarternary:hover, .button-quarternary:focus-visible {
  color: hsl(0, 0%, 0%);
  background-color: hsl(0, 0%, 78%);
  border-color: hsl(0, 0%, 78%);
}
.button-quarternary:visited {
  color: hsl(0, 0%, 0%);
}
.button-emergency {
  color: hsl(4, 90%, 58%);
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(4, 90%, 58%);
}
.button-emergency:hover, .button-emergency:focus-visible {
  color: hsl(0, 0%, 100%);
  background-color: hsl(4, 90%, 58%);
  border-color: hsl(4, 90%, 58%);
}
.button-emergency:hover:visited, .button-emergency:focus-visible:visited {
  color: hsl(0, 0%, 100%);
}
.button-emergency:visited {
  color: hsl(4, 90%, 58%);
}
.button-hero-secondary {
  background-color: transparent;
  border: 2px solid hsl(0, 0%, 100%);
  text-shadow: 0 4px 4px hsla(0, 0%, 0%, 0.35);
}
.button-hero-secondary:hover, .button-hero-secondary:focus-visible {
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(0, 0%, 98%);
  color: hsl(0, 0%, 0%);
  text-shadow: none;
}
.button[disabled] {
  color: #a4a4a4;
  background-color: #e4e4e4;
  border-color: #e4e4e4;
  cursor: not-allowed;
}
.button[disabled]:hover, .button[disabled]:focus-visible {
  color: #a4a4a4;
  background-color: #e4e4e4;
  border-color: #e4e4e4;
}
.button i {
  margin-right: 0.5rem;
}
.button .fa-external-link {
  margin-left: 0.5rem;
  margin-right: 0;
}
.button-navbar-phone {
  font-weight: var(--font-weight-bold);
  margin: 0;
  padding: 0.5rem;
  margin-left: 1rem;
}
.button-navbar-phone i {
  margin-right: 0;
}

.main-nav-transparent .button-navbar-phone-minimal {
  background: transparent;
  border-color: var(--white);
}
.main-nav-transparent .button-navbar-phone-minimal:hover, .main-nav-transparent .button-navbar-phone-minimalfocus-visible {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
}

.button-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.button-container .button {
  margin-bottom: 0;
}

.button-logo {
  object-fit: contain;
  max-height: 25px;
}

.button-payto {
  background-color: #000;
  border-color: #000;
}
.button-payto:hover {
  background-color: rgb(25.5, 25.5, 25.5);
  border-color: rgb(25.5, 25.5, 25.5);
}

.button-bpay {
  background-color: #183168;
  border-color: #183168;
}
.button-bpay:hover {
  background-color: rgb(14.4375, 29.4765625, 62.5625);
  border-color: rgb(14.4375, 29.4765625, 62.5625);
}

.button-phone {
  background-color: hsl(158, 95%, 34%);
  border-color: hsl(158, 95%, 34%);
}
.button-phone:hover {
  background-color: hsl(158, 95%, 24%);
  border-color: hsl(158, 95%, 24%);
}

@media (prefers-color-scheme: dark) {
  .button-emergency {
    background-color: hsl(214, 7%, 19%);
    color: hsl(0, 0%, 98%);
  }
  .button-emergency:hover, .button-emergency:focus-visible {
    color: hsl(0, 0%, 98%);
  }
  .button-emergency:hover:visited, .button-emergency:focus-visible:visited {
    color: hsl(0, 0%, 98%);
  }
  .button-emergency:visited {
    color: hsl(0, 0%, 98%);
  }
}
@media only screen and (max-width: 450px) {
  .button-container .button {
    width: 100%;
  }
}
@media only screen and (min-width: 990px) {
  .button-navbar-phone {
    padding: 0.35rem 0.75rem;
    min-width: 160px;
  }
  .button-navbar-phone i {
    margin-right: 0.5rem;
  }
}
.card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}

.card-pop {
  transition: all 0.3s ease;
}
.card-pop:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}

a.card:hover {
  text-decoration: none;
  color: inherit;
}

.card-no-shadow {
  box-shadow: unset;
}

.card-secondary {
  background-color: var(--white-dark);
}

.card-tertiary {
  background-color: var(--grey);
}

.card-column {
  flex-direction: column;
}

.card-content {
  padding: 2rem;
  flex: 1;
}
.card-content > *:last-child {
  margin-bottom: 0;
}

.card-aside {
  padding: 0;
}

.card-image {
  min-height: 180px;
  padding: 0;
  object-fit: cover;
  overflow: hidden;
  flex: 0.6;
  background-position: center;
  background-size: cover;
}
.card-image img {
  width: 100%;
  max-height: 180px;
  border-radius: 0;
}

.trust-badge i {
  font-size: 2rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.trust-badge img {
  height: 2rem;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 1rem;
  border-radius: 0;
}

@media only screen and (min-width: 550px) {
  .card {
    flex-direction: row;
  }
  .card-column {
    flex-direction: column;
  }
}
@media (prefers-color-scheme: dark) {
  .card {
    background-color: var(--grey-verydark);
    color: var(--white);
  }
}
#confetti {
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100dvw - 8px);
  height: 100dvh;
  pointer-events: none;
  z-index: 9;
}

.details-wrapper {
  margin-bottom: 2rem;
  overflow: hidden;
}
.details-wrapper ~ .button {
  margin-bottom: 0;
}

details {
  border-bottom: 2px solid hsl(0, 0%, 88%);
  border-top: 0;
  border-radius: unset;
}
details > *:last-child {
  margin-bottom: 1.5rem;
}
details:first-of-type {
  border-top: 2px solid hsl(0, 0%, 88%);
}
details p a i {
  font-size: 16pt;
  margin-right: 10px;
}
details[open] summary .fa-plus {
  display: none;
}
details[open] summary .fa-minus {
  display: inline-block;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
}
summary::marker {
  content: "";
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}
summary span i {
  margin-right: 1.5rem;
  font-size: 1.8rem;
}
summary .fa-minus {
  display: none;
}
summary:focus {
  outline: none;
  border: none;
}
summary:focus-visible span:first-child {
  outline: 2px solid var(--alert-information);
}

dialog {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border: none;
  border-radius: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}
dialog::backdrop {
  backdrop-filter: blur(15px);
}
dialog:has(> iframe) {
  height: calc(100% - 5px);
}
dialog iframe {
  border: 0;
  width: 100%;
  height: calc(100% - 4rem);
}
dialog h2:has(~ iframe) {
  margin-bottom: 1rem;
}
dialog button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  height: 45px;
  width: 45px;
  border-radius: 30px;
  background-color: hsl(0, 0%, 88%);
  color: hsl(214, 7%, 19%);
  display: flex;
  justify-content: center;
  align-items: center;
}
dialog button i {
  font-size: 1.5rem;
}
dialog button:hover {
  cursor: pointer;
}
dialog button:hover, dialog button:focus {
  color: hsl(0, 0%, 0%);
}
dialog::backdrop {
  background-color: hsla(0, 0%, 0%, 0.5);
}

@media only screen and (min-width: 830px) {
  dialog {
    padding: 4rem 5rem 4rem 4rem;
  }
}
@media (prefers-color-scheme: dark) {
  dialog {
    color: hsl(0, 0%, 100%);
    background-color: hsl(206, 9%, 10%);
  }
}
a[download]::after {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f019";
  margin-left: 0.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-container > .button {
  margin: 0 0 0 auto;
}
.faq-container ol {
  margin-top: 2rem;
}

.faq-terms ol {
  font-size: 0.75rem;
}
.faq-terms li {
  margin-left: 0.75rem;
  margin-bottom: 0.75rem;
}
.faq-terms p {
  margin-bottom: 0.25rem;
}

.faq-tag {
  font-size: 0.7rem;
  font-weight: bold;
  vertical-align: text-top;
}

#feedback-fin {
  height: 25px;
  width: 25px;
  position: fixed;
  top: calc(50vh + 65px);
  right: 2px;
  transform: rotate(-90deg);
  z-index: 2;
}
#feedback-fin button {
  width: fit-content;
  padding: 0.3rem 1rem;
  border-radius: 12px 12px 0 0;
  background-color: var(--blue);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  text-wrap-mode: nowrap;
  -webkit-text-wrap-mode: nowrap;
}
#feedback-fin i {
  margin-left: 0.5rem;
}

@media only screen and (min-width: 1240px) {
  #feedback-fin {
    right: 8px;
  }
  #feedback-fin button {
    padding: 0.5rem 1rem calc(0.5rem + 8px) 1rem;
    font-size: 1.125rem;
  }
}
.flex {
  display: flex;
  gap: 2rem;
}
.flex > * {
  flex: 1;
}

.flex-col {
  flex-direction: column;
  width: 100%;
}

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

@media only screen and (min-width: 830px) {
  .flex-col-2 {
    flex-direction: row;
  }
}
@media only screen and (min-width: 950px) {
  .flex-col-3 {
    flex-direction: row;
    justify-content: center;
  }
}
.fa-duotone.fa-file-pdf:before {
  color: hsl(0, 100%, 50%);
}
.fa-duotone.fa-file-pdf:after {
  color: hsl(0, 0%, 73%);
}

.fa-duotone.fa-sync-alt,
.fa-duotone.fa-file-certificate,
.fa-duotone.fa-home-heart,
.fa-duotone.fa-siren-on,
.fas.fa-question,
.fa-duotone.fa-paper-plane,
.fas.fa-cloud-hail,
.fa-duotone.fa-car-crash,
.fa-duotone.fa-caravan,
.fa-duotone.fa-car,
.fa-duotone.fa-calculator,
.fa-duotone.fa-clock,
.fas.fa-sack-dollar,
.fa-duotone.fa-address-book,
.fa-duotone.fa-universal-access,
.fa-duotone.fa-building,
.fa-duotone.fa-directions,
.fa-duotone.fa-assistive-listening-systems,
.fa-duotone.fa-language,
.fa-duotone.fa-comment-alt-exclamation,
.fa-duotone.fa-comment-alt-slash,
.fa-duotone.fa-university,
.fa-duotone.fa-edit,
.fa-duotone.fa-credit-card-front,
.fa-duotone.fa-file-invoice,
.fa-duotone.fa-phone,
.fa-duotone.fa-store {
  color: hsl(210, 95%, 33%);
}
.fa-duotone.fa-sync-alt:after,
.fa-duotone.fa-file-certificate:after,
.fa-duotone.fa-home-heart:after,
.fa-duotone.fa-siren-on:after,
.fas.fa-question:after,
.fa-duotone.fa-paper-plane:after,
.fas.fa-cloud-hail:after,
.fa-duotone.fa-car-crash:after,
.fa-duotone.fa-caravan:after,
.fa-duotone.fa-car:after,
.fa-duotone.fa-calculator:after,
.fa-duotone.fa-clock:after,
.fas.fa-sack-dollar:after,
.fa-duotone.fa-address-book:after,
.fa-duotone.fa-universal-access:after,
.fa-duotone.fa-building:after,
.fa-duotone.fa-directions:after,
.fa-duotone.fa-assistive-listening-systems:after,
.fa-duotone.fa-language:after,
.fa-duotone.fa-comment-alt-exclamation:after,
.fa-duotone.fa-comment-alt-slash:after,
.fa-duotone.fa-university:after,
.fa-duotone.fa-edit:after,
.fa-duotone.fa-credit-card-front:after,
.fa-duotone.fa-file-invoice:after,
.fa-duotone.fa-phone:after,
.fa-duotone.fa-store:after {
  color: hsl(0, 0%, 88%);
  opacity: 1;
}

@media (prefers-color-scheme: dark) {
  .fa-duotone.fa-sync-alt:before,
  .fa-duotone.fa-file-certificate:before,
  .fa-duotone.fa-home-heart:before,
  .fa-duotone.fa-siren-on:before,
  .fas.fa-question:before,
  .fa-duotone.fa-paper-plane:before,
  .fas.fa-cloud-hail:before,
  .fa-duotone.fa-car-crash:before,
  .fa-duotone.fa-caravan:before,
  .fa-duotone.fa-car:before,
  .fa-duotone.fa-calculator:before,
  .fa-duotone.fa-clock:before,
  .fas.fa-sack-dollar:before,
  .fa-duotone.fa-address-book:before,
  .fa-duotone.fa-universal-access:before,
  .fa-duotone.fa-building:before,
  .fa-duotone.fa-directions:before,
  .fa-duotone.fa-assistive-listening-systems:before,
  .fa-duotone.fa-language:before,
  .fa-duotone.fa-comment-alt-exclamation:before,
  .fa-duotone.fa-comment-alt-slash:before,
  .fa-duotone.fa-university:before,
  .fa-duotone.fa-edit:before,
  .fa-duotone.fa-credit-card-front:before,
  .fa-duotone.fa-file-invoice:before,
  .fa-duotone.fa-phone:before,
  .fa-duotone.fa-store:before {
    color: hsl(206, 80%, 53%);
  }
  .fa-duotone.fa-sync-alt:after,
  .fa-duotone.fa-file-certificate:after,
  .fa-duotone.fa-home-heart:after,
  .fa-duotone.fa-siren-on:after,
  .fas.fa-question:after,
  .fa-duotone.fa-paper-plane:after,
  .fa-duotone.fa-car-crash:after,
  .fa-duotone.fa-caravan:after,
  .fa-duotone.fa-car:after,
  .fa-duotone.fa-calculator:after,
  .fa-duotone.fa-clock:after,
  .fas.fa-sack-dollar:after,
  .fa-duotone.fa-address-book:after,
  .fa-duotone.fa-universal-access:after,
  .fa-duotone.fa-building:after,
  .fa-duotone.fa-directions:after,
  .fa-duotone.fa-assistive-listening-systems:after,
  .fa-duotone.fa-language:after,
  .fa-duotone.fa-comment-alt-exclamation:after,
  .fa-duotone.fa-comment-alt-slash:after,
  .fa-duotone.fa-university:after,
  .fa-duotone.fa-edit:after,
  .fa-duotone.fa-credit-card-front:after,
  .fa-duotone.fa-file-invoice:after,
  .fa-duotone.fa-phone:after,
  .fa-duotone.fa-store:after {
    color: hsl(0, 0%, 100%);
    opacity: 0.8;
  }
  .fa-duotone.fa-file-pdf:after {
    color: hsl(0, 0%, 100%);
    opacity: 0.8;
  }
}
.fa-kit::before {
  margin-left: -2px;
}

input, select, textarea {
  font-size: inherit;
}

.form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

label {
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 0.125rem;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 1px solid white !important;
  border: 2px solid black !important;
}

input[type=text], input[type=email] {
  height: 50px;
  max-width: 100%;
  font-size: 1.2rem;
  padding: 0 0.5rem;
  border: 1px solid hsl(0, 0%, 73%);
  border-radius: 12px;
}

input[type=text] {
  width: 200px;
}

input[type=email] {
  width: 300px;
}

.error {
  color: var(--alert-critical);
}

.warning {
  color: var(--alert-warning);
}

.success {
  color: var(--alert-success);
}

.information {
  color: var(--alert-information);
}

@media only screen and (max-width: 550px) {
  .form-item {
    margin-right: 0;
  }
  input[type=text], input[type=email] {
    width: 100%;
    max-width: 100%;
  }
}
@media (prefers-color-scheme: dark) {
  input[type=text], input[type=email] {
    background-color: hsl(206, 9%, 10%);
    color: white;
  }
}
.grid {
  display: grid;
  gap: 2rem;
}

.product-grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  grid-template-areas: "feature-1" "feature-2" "feature-3" "feature-4" "feature-5";
}
.product-grid ul {
  margin: 1.5rem 0 2rem 0;
}
.product-grid ul li {
  margin: 0.5rem 0;
}
.product-grid ul i {
  font-size: 2rem;
  margin-right: 0.75rem;
}
.product-grid ul i::before {
  color: hsl(158, 95%, 34%);
}
.product-grid ul i::after {
  color: hsl(0, 0%, 100%);
  opacity: 1;
}
.product-grid-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 6rem;
}
.product-grid-hero h2 {
  font-size: 2.3rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.product-grid-hero p {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.product-grid-hero .button-container {
  justify-content: center;
  margin: 0;
}
.product-grid-hero .button {
  margin: 0;
}
.product-grid-heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  line-height: 3.2rem;
}

.card-feature {
  position: relative;
  font-size: 1.2rem;
  min-height: 250px;
  border-radius: 16px;
}
.card-feature .card-content {
  display: flex;
  flex-direction: column;
}
.card-feature ul {
  margin: 1rem 0 2rem 0;
  flex-grow: 1;
}
.card-feature ul li {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  margin: 0.5rem 0;
}
.card-feature ul i {
  font-size: 2rem;
  margin-right: 0.75rem;
}
.card-feature ul .fa-duotone.fa-check-circle::before {
  color: hsl(158, 95%, 34%);
}
.card-feature ul .fa-duotone.fa-check-circle::after {
  color: hsl(0, 0%, 100%);
  opacity: 1;
}
.card-feature ul .fa-duotone.fa-circle-plus::before {
  color: hsl(0, 0%, 100%);
}
.card-feature ul .fa-duotone.fa-circle-plus::after {
  color: hsl(210, 95%, 33%);
  opacity: 1;
}
.card-feature ul .fa-duotone.fa-circle-x::before {
  color: hsl(4, 90%, 58%);
}
.card-feature ul .fa-duotone.fa-circle-x::after {
  color: hsl(0, 0%, 100%);
  opacity: 1;
}
.card-feature .button {
  margin: 0 auto;
}

.card-feature-icon {
  position: absolute;
  bottom: -4rem;
  right: -2.5rem;
  font-size: 12rem;
  opacity: 0.4;
}

.card-feature-essentials {
  background-color: hsl(210, 95%, 33%);
  color: hsl(0, 0%, 100%);
}

.card-feature-optionalcover {
  background-color: hsl(0, 0%, 100%);
  border: 3px solid var(--blue);
  color: hsl(0, 0%, 0%);
}

.card-feature-exclusions {
  background-color: hsl(206, 9%, 15%);
  color: hsl(0, 0%, 100%);
}

.card-feature-1 {
  grid-area: feature-1;
}
.card-feature-2 {
  grid-area: feature-2;
}
.card-feature-3 {
  grid-area: feature-3;
}
.card-feature-4 {
  grid-area: feature-4;
}
.card-feature-5 {
  grid-area: feature-5;
}

.card-feature-accidentaldamage {
  background-image: url(/img/page/insurance/on-site-van/broken-window-caravan.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.card-feature-mechanical {
  background-color: hsl(210, 95%, 33%);
  color: hsl(0, 0%, 100%);
}

.card-feature-fire {
  background-image: linear-gradient(122deg, #671542, #C53017 51%, #FFAF2D);
  color: hsl(0, 0%, 100%);
}

.card-feature-burglar {
  background-image: url(/img/page/insurance/burglar.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

.card-feature-storm {
  background-image: linear-gradient(235deg, #002156, #091C3B 18%, #300942);
  color: hsl(0, 0%, 100%);
}

.card-feature-burstpipe {
  background-image: url(/img/page/insurance/on-site-van/burst-pipe.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: hsl(0, 0%, 100%);
}

.card-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
  color: var(--black);
}
.card-grid-col-2 {
  grid-template-columns: repeat(1, 1fr);
}
.card-grid-col-3 {
  grid-template-columns: repeat(1, 1fr);
}
.card-grid .button {
  margin-bottom: 0;
}
.card-grid .button i {
  margin-right: 0.5rem;
}
.card-grid .card {
  margin-bottom: 0;
}

@media only screen and (min-width: 750px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.25rem;
    grid-template-areas: "feature-1 feature-2" "feature-3 feature-4" "feature-5 feature-5";
  }
  .product-grid-hero h2 {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }
  .card-grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "feature-1 feature-1 feature-1 feature-2 feature-2 feature-2" "feature-3 feature-3 feature-4 feature-4 feature-5 feature-5";
  }
  .card-feature-essentials {
    max-width: 380px;
  }
  .card-feature-optionalcover {
    max-width: 380px;
  }
  .card-feature-exclusions {
    max-width: 380px;
  }
}
@media (prefers-color-scheme: dark) {
  .card-feature-exclusions {
    background-color: var(--grey-verydark);
  }
  .card-feature-optionalcover {
    background-color: transparent;
    color: #fff;
  }
}
#hero-container {
  margin-bottom: -30px;
}

.hero-scroll-indicator {
  display: none;
  position: absolute;
  bottom: 120px;
  left: calc(50% - 13px);
  width: 26px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 20px;
  pointer-events: none;
}
.hero-scroll-indicator::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  left: 8px;
  top: 6px;
  animation: scroll-indicator 1.5s ease-in-out infinite;
}

@keyframes scroll-indicator {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
#hero-image {
  background-image: url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.jpg);
  background-image: url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.webp);
  background-image: linear-gradient(to left, hsla(0, 21%, 7%, 0.3) 0%, hsla(0, 21%, 7%, 0.7)), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.jpg);
  background-image: linear-gradient(to left, hsla(0, 21%, 7%, 0.3) 0%, hsla(0, 21%, 7%, 0.7)), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.webp);
  background-size: cover;
  background-position: top;
  height: 100%;
  min-height: 450px;
  margin: 0px -20px 0px -20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
#hero-image video {
  position: relative;
  top: 0;
  height: 100%;
}
#hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 25%, rgb(4, 84, 164) 85%, rgb(4, 84, 164) 100%);
}

#hero-block {
  position: absolute;
  top: 0;
  height: 100%;
  min-height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: -20px;
  padding: 0 20px;
  width: calc(100vw - (100vw - 100%));
}

#hero-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: auto 0 60px 0;
  gap: 3rem;
  z-index: 2;
  padding: 0 20px;
}
#hero-text-container > * {
  flex: 1;
}

#gm-bubble-tag {
  display: inline-block;
}

#hero-title-long, #hero-text-long, .button-hero-secondary {
  display: none;
}

#hero-text-wrapper {
  flex-grow: 2.35;
  color: hsl(0, 0%, 100%);
}
#hero-text-wrapper p {
  font-size: 1rem;
}
#hero-text-wrapper h1 {
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
#hero-text-wrapper .button {
  margin-bottom: 0;
}

#hero-awards {
  flex: 1;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}
#hero-awards .fa-star, #hero-awards .fa-star-half {
  color: hsl(43, 98%, 53%);
}
#hero-awards > * {
  pointer-events: none;
}

.hero-award {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 150px;
}
.hero-award img {
  width: 100%;
}
.hero-award p {
  font-size: 0.6rem;
  line-height: 0.6rem;
  color: var(--grey-medium);
  margin: 0;
  text-align: center;
}

.hero-award.card {
  padding: 0.5rem;
  border-radius: 4px;
  margin-bottom: 0;
}

.hero-google-rating {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-areas: "google-rating-g google-rating-stars" "google-rating-g google-rating-text";
  gap: 0.25rem;
}
.hero-google-rating img {
  grid-area: google-rating-g;
  width: 30px;
}
.hero-google-rating .google-rating-stars {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  grid-area: google-rating-stars;
  font-size: 0.9rem;
  text-align: center;
}
.hero-google-rating p {
  grid-area: google-rating-text;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
    -webkit-transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
    -webkit-transform: translate3d(0, 0px, 0);
  }
}
@media only screen and (min-width: 550px) {
  #hero-container {
    margin-bottom: 0px;
  }
  #hero-block {
    top: -50px;
  }
  #hero-image video {
    top: -20%;
    height: 140%;
  }
  #hero-image::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.2) 75%, rgb(4, 84, 164) 100%);
  }
  #hero-text-container {
    margin: auto auto 2rem auto;
  }
  #hero-text-wrapper h1 {
    font-size: 4rem;
    line-height: 3.5rem;
  }
  #gm-bubble-tag {
    display: none;
  }
  #hero-title-long, #hero-text-long, .button-hero-secondary {
    display: inline-block;
  }
  #hero-awards {
    display: flex;
  }
}
@media only screen and (min-width: 830px) {
  #hero-container {
    margin-bottom: -60px;
  }
  .hero-scroll-indicator {
    display: block;
  }
  #hero-block {
    /*position: absolute;
     top: 75px;
     right: 0px;*/
    width: 100%;
    top: 0;
  }
  #hero-image {
    background-image: linear-gradient(to left, hsla(0, 21%, 7%, 0.3) 30%, hsla(0, 21%, 7%, 0.7)), linear-gradient(to top, hsla(0, 0%, 0%, 0) 30%, hsla(0, 21%, 7%, 0.5)), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.jpg);
    background-image: linear-gradient(to left, hsla(0, 21%, 7%, 0.3) 30%, hsla(0, 21%, 7%, 0.7)), linear-gradient(to top, hsla(0, 0%, 0%, 0) 30%, hsla(0, 21%, 7%, 0.5)), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.webp);
  }
  #hero-text-container {
    flex-direction: row;
    margin: auto auto 20dvh auto;
  }
  #hero-text-wrapper p {
    font-size: 1.2rem;
  }
  #hero-text-wrapper h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  #hero-awards {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .button-hero-cta {
    display: block;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.4rem;
    color: black;
  }
  .button-hero-cta-absolute {
    position: absolute;
    bottom: 7.5rem;
    left: 0;
    right: 0;
  }
  .button-hero-cta:visited {
    color: black;
  }
}
@media only screen and (min-width: 1217px) {
  #hero-text-wrapper {
    border-radius: 4px;
  }
}
@media only screen and (max-height: 700px) {
  #gm-bubble-tag {
    display: inline-block;
  }
  #hero-title-long, #hero-text-long, .button-hero-secondary {
    display: none;
  }
  #hero-awards {
    display: none;
  }
}
@media only screen and (max-height: 550px) {
  #hero-container {
    min-height: 550px;
  }
  #hero-text-wrapper {
    margin-top: 0px;
  }
  #hero-text-wrapper h1 {
    font-size: 3rem;
    line-height: 2.8rem;
  }
  #hero-text-overflow {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .hero-button-primary, .hero-button-primary:visited {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
  }
  .hero-button-primary:hover, .hero-button-primary:active, .hero-button-primary:focus, .hero-button-primary:visited:hover, .hero-button-primary:visited:active, .hero-button-primary:visited:focus {
    background-color: var(--grey-light);
    color: var(--black);
  }
}
@media screen and (prefers-reduced-motion) {
  #hero-image video {
    display: none;
  }
}
.home-example {
  flex: 1;
  min-width: 200px;
  max-width: 325px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.home-example:last-of-type {
  margin-right: 0px;
}
.home-example-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.home-example-image {
  background-size: cover;
  background-position: center;
  height: 150px;
}
.home-example p {
  padding: 0px 20px;
  font-size: 20pt;
  font-weight: var(--font-weight-bold);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  text-align: center;
  margin-bottom: 0;
  background-color: hsl(0, 0%, 98%);
}

#home-example-nsw {
  background-image: url(/img/page/insurance/nsw.jpg);
}

#home-example-qld {
  background-image: url(/img/page/insurance/qld.jpg);
}

#home-example-vic {
  background-image: url(/img/page/insurance/vic.jpg);
}

#home-example-wa {
  background-image: url(/img/page/insurance/wa.jpg);
}

@media screen and (min-width: 930px) {
  .home-example-container {
    margin-bottom: 80px;
  }
}
h1:target, h2:target, h3:target, h4:target, h5:target, p:target, span:target, details:target, summary:target {
  animation: target-fade 2s;
}

@keyframes target-fade {
  0% {
    background-color: transparent;
  }
  25% {
    background-color: var(--alert-infor);
  }
  75% {
    background-color: var(--alert-warning);
  }
  100% {
    background-color: transparent;
  }
}
.industry-grid {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin: 4rem 0;
}
.industry-grid-item {
  transition: all ease 0.3s;
}
.industry-grid-item img {
  width: 100%;
  filter: grayscale(1);
  transition: all ease 0.3s;
}
.industry-grid-item:hover, .industry-grid-item:focus-visible {
  scale: 1.05;
}
.industry-grid-item:hover img, .industry-grid-item:focus-visible img {
  filter: grayscale(0);
}

@media only screen and (min-width: 350px) {
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 530px) {
  .industry-grid {
    grid-gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 780px) {
  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (hover: none) {
  .industry-grid-item {
    filter: grayscale(0);
  }
}
@media (prefers-color-scheme: dark) {
  .industry-grid-item {
    background-color: hsl(206, 9%, 10%);
  }
  .industry-grid-item img {
    filter: grayscale(1) contrast(0.5) brightness(2);
  }
  .industry-grid-item:hover, .industry-grid-item:focus-visible {
    background-color: hsl(0, 0%, 98%);
  }
  .industry-grid-item:hover img, .industry-grid-item:focus-visible img {
    filter: grayscale(0);
  }
}
.insurance-box {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}
.insurance-box-main {
  flex: 1;
}
.insurance-box-main-picture {
  background-image: url(/img/page/insurance/home-contents.jpg);
  background-size: cover;
  background-position: center;
  height: 250px;
}
.insurance-box-main-text {
  padding: 20px;
  background-color: hsl(0, 0%, 100%);
}
.insurance-box-main-text .button, .insurance-box-main-text .button-secondary {
  margin-bottom: 0;
  margin-top: 0;
}
.insurance-box-details {
  flex: 1;
  background-color: hsl(0, 0%, 100%);
}
.insurance-box-details-cover {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.insurance-box-details-cover-heading {
  padding: 10px 20px;
  margin-bottom: 10px;
  border-top: 4px solid hsl(210, 95%, 33%);
}
.insurance-box-details-cover-heading p {
  margin-bottom: 0px;
}
.insurance-box-details-cover-item {
  display: flex;
  flex-direction: row;
  padding: 10px 20px;
}
.insurance-box-details-cover-item-text {
  flex: 5;
  display: flex;
  align-items: center;
}
.insurance-box-details-cover-item-text p {
  font-size: 1.2rem;
  margin: 0;
}
.insurance-box-details-cover-item-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.insurance-box-details-cover-item-icon i {
  color: hsl(0, 0%, 100%);
}
.insurance-box-details-cover-item-icon i:after {
  color: hsl(210, 95%, 33%);
  opacity: 1;
}

#picture-cabin {
  background-image: url(/img/page/insurance/cabin.jpg);
}

#picture-van {
  background-image: url(/img/page/insurance/on-site-van.jpg);
}

.insurance-calculator {
  margin-bottom: 40px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
  border-top: 4px solid hsl(210, 95%, 33%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  padding: 20px;
}
.insurance-calculator p {
  margin-bottom: 0.5rem;
}
.insurance-calculator-disclaimer {
  font-size: 10pt;
}
.insurance-calculator-disclaimer p {
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 930px) {
  .insurance-box {
    flex-direction: row;
    margin-bottom: 80px;
  }
  .insurance-box-main-text {
    border-right: 1px solid hsl(0, 0%, 88%);
  }
  .insurance-calculator {
    margin-bottom: 80px;
  }
}
@media (prefers-color-scheme: dark) {
  .insurance-box-main-text {
    background-color: hsl(206, 9%, 10%);
    border-right: none;
  }
  .insurance-box-details {
    background-color: hsl(214, 7%, 19%);
  }
  .insurance-box-details-cover-item-icon i:after {
    color: hsl(206, 80%, 53%);
  }
  .insurance-calculator {
    background-color: hsl(214, 7%, 19%);
  }
  .insurance-calculator-disclaimer {
    color: hsl(0, 0%, 73%);
  }
}
.job-container {
  display: flex;
  flex-direction: column;
}
.job-main {
  flex-grow: 1;
  padding-top: 2rem;
}
.job-main-title {
  display: none;
  margin-bottom: 3rem;
}
.job-main-apply {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.02);
}
.job-main-apply h2 {
  flex-grow: 1;
  margin: 0;
  font-size: 1rem;
}
.job-main-apply .button {
  text-align: right;
  margin: 0;
  margin-left: 1rem;
  min-width: 127px;
}
.job-sidebar {
  flex-basis: 300px;
  flex-grow: 0;
  flex-shrink: 0;
}
.job-sidebar-wrapper > a {
  display: flex;
  align-items: center;
  padding: 1.125rem 0;
  margin: 2.125rem 0 1.125rem 0;
  border-bottom: 2px solid hsl(0, 0%, 88%);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.job-sidebar-wrapper > a:hover, .job-sidebar-wrapper > a:focus {
  text-decoration: underline;
  text-decoration-color: hsl(210, 95%, 43%);
}
.job-sidebar-wrapper > a:hover::before, .job-sidebar-wrapper > a:focus::before {
  transform: translateX(-10px);
  text-decoration: none;
}
.job-sidebar-wrapper > a::before {
  content: "\f060";
  font-family: "Font Awesome 7 Pro";
  color: hsl(210, 95%, 33%);
  margin-left: 0.6rem;
  margin-right: 1rem;
  transition: ease all 0.5s;
}
.job-sidebar-wrapper .button {
  display: none;
  margin: 0;
  margin-top: 2rem;
}
.job-sidebar-info {
  display: flex;
  padding-bottom: 1.125rem;
  margin-bottom: 1.125rem;
  border-bottom: 2px solid hsl(0, 0%, 88%);
}
.job-sidebar-info i {
  margin-right: 1rem;
  color: hsl(210, 95%, 33%);
}
.job-sidebar-info p {
  margin: 0;
}

@media screen and (min-width: 830px) {
  .job-container {
    flex-direction: row;
  }
  .job-main {
    padding-top: 0;
    padding-left: 2rem;
  }
  .job-main-title {
    display: block;
  }
  .job-main-apply h2 {
    font-size: 1.5rem;
  }
  .job-sidebar-wrapper {
    position: sticky;
    top: 130px;
  }
  .job-sidebar-wrapper .button {
    display: block;
  }
  .job-mobile-title {
    display: none;
  }
}
@media (prefers-color-scheme: dark) {
  .job-main-apply {
    background-color: hsl(206, 9%, 10%);
  }
  .job-sidebar-wrapper > a {
    margin: 1.125rem 0;
  }
  .job-sidebar-wrapper > a ::before {
    color: hsl(206, 80%, 53%);
  }
  .job-sidebar-info i {
    color: hsl(206, 80%, 53%);
  }
  .job-sidebar-info i::after {
    color: hsl(0, 0%, 100%);
    opacity: 0.8;
  }
}
.job-list {
  border-radius: 4px;
  overflow: hidden;
}
.job-list-container {
  margin: 1rem 0 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 2px solid hsl(0, 0%, 88%);
}
.job-list li {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 2rem 1.5rem 2rem;
}
.job-list li:nth-child(2n+1) {
  background-color: hsl(0, 0%, 100%);
}
.job-list li:nth-child(2n) {
  background-color: #f6fbff;
}
.job-list-title {
  flex: auto;
  font-size: 1.125rem;
  line-height: 2rem;
}
.job-list-details {
  display: flex;
  flex-direction: row;
}
.job-list-details-department {
  flex: 1;
}
.job-list-details-location {
  flex: 1;
  text-align: right;
}

.jobs-none {
  display: block;
  padding: 2rem;
  font-size: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.02);
}

@media screen and (min-width: 730px) {
  .job-list li {
    align-items: center;
    flex-direction: row;
    padding: 1.5rem 2rem;
  }
  .job-list-details {
    flex: 5;
  }
  .job-list-title {
    flex: 6;
  }
}
@media (prefers-color-scheme: dark) {
  .job-list-container {
    border-bottom: 2px solid hsl(206, 9%, 10%);
  }
  .job-list li:nth-child(2n+1) {
    background-color: hsl(206, 9%, 10%);
  }
  .job-list li:nth-child(2n) {
    background-color: hsl(0, 0%, 0%);
  }
  .jobs-none {
    background-color: hsl(206, 9%, 10%);
  }
}
.park-marquee {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
  pointer-events: none;
}
.park-marquee-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.park-marquee-logo img {
  max-height: 60px;
  max-width: 120px;
}
.park-marquee-label {
  justify-content: center;
  margin-bottom: 3rem;
  display: flex;
  text-align: center;
}
.park-marquee-label h2 {
  display: flex;
  flex-direction: column;
}

.h2-emphasised {
  display: block;
  position: relative;
  color: hsl(210, 95%, 33%);
  font-size: 3rem;
  height: 3.5rem;
  margin: 1rem 0 0.5rem 0;
}
.h2-emphasised::after {
  content: "";
  width: 200px;
  height: 80px;
  background-image: url("/img/page/home/swoosh.png");
  position: absolute;
  top: 8px;
  left: 40px;
  object-fit: cover;
  scale: 0.7;
}

@media only screen and (min-width: 375px) {
  .park-marquee {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 500px) {
  .park-marquee {
    padding: 0 20px;
  }
  .park-marquee-label h2 {
    flex-direction: row;
  }
  .park-marquee-logo img {
    max-height: 90px;
    max-width: 180px;
  }
  .h2-emphasised {
    font-size: 4rem;
    font-weight: 800;
    height: 5rem;
    margin: -0.4rem 0.75rem -1.5rem 0.75rem;
  }
  .h2-emphasised::after {
    top: 32px;
    left: 10px;
    scale: 1.2;
  }
}
@media only screen and (min-width: 700px) {
  .park-marquee {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .park-marquee {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1400px) {
  .park-marquee {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (prefers-color-scheme: dark) {
  .h2-emphasised {
    color: hsl(206, 80%, 53%);
  }
  .h2-emphasised::after {
    filter: brightness(1.5);
  }
  .park-chains-wrapper {
    filter: grayscale(1) contrast(0.5) brightness(2);
  }
}
.newsroom-post {
  margin-top: 40px;
}
.newsroom-post-container {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
}
.newsroom-post-container h1 {
  margin: 2rem 0;
}
.newsroom-post-container .newsroom-post-subtitle {
  color: var(--grey-medium);
  font-size: 0.9rem;
  line-height: 1.3rem;
}
.newsroom-post-container h2 {
  font-size: 2rem;
  line-height: 2.3rem;
  margin-top: 3rem;
}
.newsroom-post-container h3 {
  margin-top: 2rem;
}
.newsroom-post-container p {
  word-wrap: break-word;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
.newsroom-post-container ul {
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 1rem;
  word-wrap: break-word;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
.newsroom-post-container .newsroom-post-category {
  position: unset;
  left: unset;
  top: unset;
  width: fit-content;
  background-color: var(--grey-verylight);
  color: black;
}
.newsroom-post-container .newsroom-post-metadata {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "post-author" "post-readtime" "post-share";
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.newsroom-post-container .newsroom-post-readtime {
  grid-area: post-readtime;
  height: 30px;
}
.newsroom-post-container .newsroom-post-author {
  grid-area: post-author;
  height: 30px;
}
.newsroom-post-container .newsroom-post-share {
  grid-area: post-share;
  margin-left: auto;
}
.newsroom-post-container .inline-video {
  margin-bottom: 2rem;
}
.newsroom-post-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsroom-post-readtime {
  display: flex;
  align-items: center;
  color: var(--grey-medium);
  font-size: 0.9rem;
}
.newsroom-post-readtime i {
  margin-right: 0.5rem;
  font-size: 30px;
  width: 30px;
}
.newsroom-post-category {
  font-size: 0.8rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
  text-transform: capitalize;
  background-color: hsla(0, 0%, 20%, 0.5);
  backdrop-filter: blur(10px);
  color: var(--white);
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 12px;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.035rem;
}
.newsroom-post-publish-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--grey-medium);
  font-size: 0.9rem;
}
.newsroom-post-author {
  display: flex;
  align-items: center;
}
.newsroom-post-author span {
  background-image: url("/img/brand/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--grey-verylight);
  background-color: var(--white-dark);
  border-radius: 50%;
  margin-right: 0.5rem;
}
.newsroom-post-author::after {
  content: "•";
  margin: 0 0.5rem;
}
.newsroom-post-share .button {
  height: 36px;
  margin-bottom: 0;
}
.newsroom-post iframe {
  border: none;
  outline: none;
  border-radius: 24px;
}

.newsroom-img {
  margin: 3rem 0;
  height: 250px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}

.post-sponsored::before {
  content: "SPONSORED";
}

.blog-tip {
  border-left: 6px solid #2b53a1;
  border-radius: 4px;
  padding: 0.25rem 0 0.25rem 1rem;
  -webkit-backdrop-filter: contrast(0.925);
  backdrop-filter: contrast(0.925);
}
.blog-tip-warning, .blog-tip-critical {
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}
.blog-tip-information {
  border-color: var(--alert-information);
  background-color: hsla(206, 80%, 53%, 0.05);
}
.blog-tip-success {
  border-color: var(--alert-success);
  background-color: hsla(158, 95%, 34%, 0.05);
}
.blog-tip-warning {
  border-color: var(--alert-warning);
  background-color: hsla(36, 100%, 50%, 0.05);
}
.blog-tip-critical {
  border-color: var(--alert-critical);
  background-color: hsla(4, 90%, 58%, 0.05);
}

.blog-callout {
  padding: 2rem;
  background-color: hsla(210, 95%, 33%, 0.1);
  border-radius: 24px;
  margin: 2rem 0;
}
.blog-callout > *:first-child {
  margin-top: 0;
}
.blog-callout > *:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 420px) {
  .newsroom-post-container .newsroom-post-metadata {
    grid-template-columns: 1fr 135px;
    grid-template-areas: "post-author post-share" "post-readtime post-share";
  }
}
@media only screen and (min-width: 550px) {
  .newsroom-img {
    border-radius: 24px;
  }
}
@media only screen and (min-width: 680px) {
  .newsroom-post-container {
    max-width: 560px;
  }
  .newsroom-img {
    width: calc(100% + 4.8rem);
    height: 300px;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
  }
}
@media only screen and (min-width: 830px) {
  .newsroom-post-container {
    max-width: 650px;
  }
  .newsroom-img {
    width: calc(100% + 8rem);
    height: 350px;
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
@media only screen and (min-width: 950px) {
  .newsroom-post-container {
    max-width: 750px;
  }
  .newsroom-img {
    width: calc(100% + 10rem);
    height: 400px;
    margin-left: -5rem;
    margin-right: -5rem;
  }
}
@media (prefers-color-scheme: dark) {
  .newsroom-post-publish-data {
    color: hsl(0, 0%, 73%);
  }
}
#no-script {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-weight: var(--font-weight-bold);
  background-color: hsl(0, 0%, 98%);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}

noscript {
  padding: 5px;
}
noscript p {
  margin-bottom: 0;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: calc(60px + 2rem);
}

@media only screen and (min-width: 550px) {
  .sticky {
    top: calc(90px + 2rem);
  }
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.product-cards ul {
  margin: 2rem 0;
}
.product-cards ul li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.product-cards ul li i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}
.product-cards ul li i:before {
  color: hsl(210, 95%, 33%);
}
.product-cards ul li i:after {
  color: hsl(0, 0%, 0%);
  opacity: 0.1;
}
.product-cards .card-image {
  min-height: 180px;
  max-height: 180px;
}
.product-cards .card-content > a {
  text-align: center;
}
.product-cards .button {
  width: 100%;
  text-align: center;
}
.product-cards .button a {
  width: 100%;
}

.product-card-link {
  display: flex;
  justify-content: center;
  width: 100%;
}

#product-box-image-ha {
  background-image: url(/img/page/home/home-contents.jpg);
}

#product-box-image-hd {
  background-image: url(/img/page/home/cabin-van.jpg);
}

#product-box-image-van {
  background-image: url(/img/page/home/van.jpg);
}

#product-box-image-call-centre {
  background-image: url(/img/page/home/call-centre.jpg);
}

@media only screen and (min-width: 600px) {
  .product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (prefers-color-scheme: dark) {
  .product-cards ul li i:before {
    color: hsl(206, 80%, 53%);
  }
  .product-cards ul li i:after {
    color: hsl(0, 0%, 100%);
  }
}
.social-review-container {
  overflow: hidden;
}

.social-review-wrapper {
  width: calc(100% + 2rem);
  position: relative;
  left: -1rem;
}

.slick-list.draggable:focus {
  outline: 2px solid;
}

.slick-slide {
  margin: 0 1rem;
}
.slick-slide img {
  max-width: 100%;
}

.park-chains-wrapper {
  pointer-events: none;
}

.park-slider-logo.slick-slide {
  margin: 0 2rem;
}

.slick-dots, .slick-arrows {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.slick-dots button, .slick-arrows button {
  height: 36px;
  width: 36px;
  min-height: 36px;
  min-width: 36px;
  max-height: 36px;
  max-width: 36px;
  margin: 0 0.25rem;
  padding: 1rem;
  cursor: pointer;
}
.slick-dots button i, .slick-arrows button i {
  margin-right: 0;
}

.social-review {
  border-radius: 8px;
  background-color: var(--white);
  padding: 1rem;
}
.social-review-container {
  max-width: 1200px;
  margin: 0 auto;
}
.social-review-wrapper {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  flex-direction: column;
  flex-wrap: wrap;
  color: hsl(0, 0%, 0%);
}
.social-review:last-of-type {
  margin-bottom: 0rem;
}
.social-review-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.social-review-header p {
  margin-bottom: 0;
}
.social-review-userpicture {
  height: 50px;
  width: 50px;
  margin-right: 1rem;
}
.social-review-userpicture img {
  height: 100%;
  width: 100%;
  border-radius: 25px;
}
.social-review-name {
  font-weight: bold;
}
.social-review-timestamp {
  font-size: 0.8rem;
}
.social-review-rating .fa-star, .social-review-rating .fa-star-half {
  color: hsl(43, 98%, 53%);
}
.social-review-text {
  display: -webkit-box;
  font-size: 0.9rem;
  line-clamp: 10;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.social-review-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  left: unset;
}
.social-review-grid .social-review {
  height: fit-content;
  background-color: var(--white-dark);
}

@media only screen and (min-width: 560px) {
  .social-review-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 830px) {
  .social-review-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1100px) {
  .social-review-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .social-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-color-scheme: dark) {
  .social-review {
    background-color: var(--grey);
    color: hsl(0, 0%, 100%);
  }
  .social-review-grid .social-review {
    background-color: var(--grey);
  }
  .slick-arrows button {
    background-color: var(--grey-dark);
    border-color: var(--grey-dark);
    color: var(--blue-light);
  }
}
::-webkit-scrollbar {
  width: 8px;
  background: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background: #1887dc;
  width: 8px;
  border-radius: 4px;
}

.section {
  padding: 3rem 0;
}
.section-container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0px 20px;
}
.section-container > *:last-child {
  margin-bottom: 0;
}
.section-container-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-container-fullwidth {
  max-width: 100%;
  height: 100%;
}
.section-nopadding {
  padding: 0 !important;
}
.section-nopadding .section-container-fullwidth {
  padding: 0 !important;
}
.section-nopadding video {
  position: relative;
  top: 0;
  height: 140%;
  margin: 0 auto;
}
.section-full-height {
  height: 100svh;
  margin-top: -90px;
  padding-top: calc(90px + 3rem);
  overflow: hidden;
}
.section-primary {
  background-color: hsl(210, 95%, 33%);
  color: hsl(0, 0%, 100%);
}
.section-secondary {
  background-color: hsl(0, 0%, 100%);
}
.section-tertiary {
  background-color: hsl(206, 9%, 15%);
  color: hsl(0, 0%, 100%);
}
.section-reset {
  background-color: hsl(0, 0%, 98%);
}
.section-merged {
  padding-top: 0 !important;
}
.section-payonline-indicator {
  padding: 1rem 0 0 0;
  margin-bottom: -1rem;
}
.section-body {
  display: flex;
  flex-direction: column-reverse;
}
.section-body-main, .section-body-aside {
  flex: 1;
}
.section-body-main img, .section-body-aside img {
  max-height: 350px;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  margin-bottom: -5px;
}
.section-body-main {
  padding: 0;
}
.section-body-main-wrapper {
  max-width: 100%;
  padding: 4rem 20px;
}
.section-body-aside {
  margin-bottom: 0;
}
.section-body-aside-video {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-body-aside-video video {
  height: 100%;
  max-height: 350px;
}
.section-insurance-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
}
.section-insurance-hero::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-submssion-received-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}

#insurance-hero-home-building-contents::after {
  background-image: url(/img/page/insurance/interior.jpg);
  background-position: 50% 35%;
}
#insurance-hero-manufactured-home::after {
  background-image: url(/img/page/insurance/manufactured-home.jpeg);
  background-position: 50% 40%;
}
#insurance-hero-on-site-caravan::after {
  background-image: url(/img/page/insurance/on-site-caravan.jpeg);
  background-position: 50% 10%;
}
#insurance-hero-cabin::after {
  background-image: url(/img/page/insurance/cabin1.jpg);
  background-position: 50% 40%;
}
#insurance-hero-car::after {
  background-image: url(/img/page/insurance/car/car.jpg);
  background-position: bottom;
}

.insurance-product-title h1 {
  color: white;
  text-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.65);
  font-size: 3.5rem;
  line-height: 3.7rem;
  text-align: center;
}
.insurance-product-title p {
  color: hsl(0, 0%, 98%);
  text-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.65);
  text-align: center;
}

.submission-received-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
.submission-received-title h1 {
  color: white;
  font-size: 2.8rem;
  line-height: 3rem;
  text-align: center;
}
.submission-received-title p {
  color: hsl(0, 0%, 98%);
  text-align: center;
}

.section-footer-primary {
  background-color: hsl(210, 95%, 33%);
  color: hsl(0, 0%, 100%);
}
.section-footer-primary .section-container {
  display: flex;
}
.section-footer-secondary {
  background-color: hsl(206, 9%, 15%);
  color: hsl(0, 0%, 100%);
  padding: 2rem 0 !important;
}
.section-footer-tertiary {
  background-color: hsl(206, 9%, 10%);
  color: hsl(0, 0%, 100%);
  padding: 2rem 0 !important;
}

.section-heading {
  margin-bottom: 3rem;
}

.action-box-section {
  padding: 0 0 4rem 0 !important;
  color: hsl(0, 0%, 0%);
}

.section-hail {
  margin: 4rem 0;
}

@media only screen and (min-width: 550px) {
  .section {
    padding: 6rem 0;
  }
  .section-full-height {
    padding-top: calc(90px + 6rem);
  }
  .section-body-aside-video video {
    height: unset;
    max-height: unset;
    width: 100%;
  }
}
@media only screen and (min-width: 750px) {
  .section-body {
    flex-direction: row;
  }
  .section-body-main img, .section-body-aside img {
    min-height: 100%;
  }
  .section-body-main {
    padding: 0;
  }
  .section-body-main-wrapper {
    max-width: 620px;
    padding: 4rem;
  }
  .section-body-aside-video video {
    height: 100%;
    width: unset;
  }
  .insurance-product-title h1, .submission-received-title h1 {
    font-size: 5.5rem;
    line-height: 5.7rem;
  }
  .insurance-product-title p, .submission-received-title p {
    font-size: 1.25rem;
  }
  .section-payonline-indicator {
    padding: 2rem 0 0 0;
    margin-bottom: -2rem;
  }
  .section-submssion-received-hero {
    min-height: 320px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-body-main-wrapper-right {
    padding: 4rem 20px 4rem 4rem;
    margin: 0 auto 0 0;
  }
  .section-body-main-wrapper-left {
    padding: 6rem 4rem 6rem 20px;
    margin: 0 0 0 auto;
  }
  .insurance-product-title h1 {
    font-size: 7rem;
    line-height: 7.2rem;
  }
  .insurance-product-title p {
    font-size: 1.5rem;
  }
  .section-body-aside-video video {
    height: 100%;
    max-height: 600px;
  }
}
@media only screen and (min-width: 2000px) {
  .section-body-aside-video {
    max-height: 600px;
  }
  .section-body-aside-video video {
    height: unset;
    max-height: unset;
    width: 100%;
  }
}
@media (prefers-color-scheme: dark) {
  .section-secondary {
    background-color: hsl(206, 9%, 10%);
  }
  .section-tertiary {
    background-color: hsl(206, 9%, 10%);
  }
  .section-reset {
    background-color: hsl(206, 9%, 15%);
  }
}
.stars {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stars-container {
  width: 100%;
  justify-content: center;
  margin-top: 40px;
  padding: 20px;
  background: hsl(0, 0%, 100%);
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  border-top: 4px solid hsl(210, 95%, 33%);
}
.stars-intro {
  font-size: 1.9rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
}
.stars-outro {
  text-align: left;
  font-size: 1.25rem;
}
.stars-outro span {
  font-size: 1.9rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
  margin-right: 10px;
}
.stars > span {
  display: inline-block;
  color: hsl(43, 98%, 53%);
  font-size: 1.9rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
  margin: 0px 10px;
}
.stars .fa-duotone.fa-star-half::before {
  color: hsl(43, 98%, 53%);
}
.stars p {
  margin-bottom: 0;
}

@media only screen and (min-width: 830px) {
  .stars-container {
    margin-top: 80px;
  }
  .stars-intro {
    font-size: 2.25rem;
  }
  .stars span {
    font-size: 2.25rem;
  }
  .stars > span {
    font-size: 2.25rem;
  }
}
@media (prefers-color-scheme: dark) {
  .stars-container {
    background-color: hsl(214, 7%, 19%);
  }
}
.section:has(.tab-bar-compact) {
  padding-bottom: 0;
}
.section:has(.tab-bar-compact) .tab-bar-wrapper {
  margin-bottom: 0;
}

.tab-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 0.25rem;
  border-radius: 50px;
}
.tab-bar-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.tab-bar-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: var(--grey-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-right: 0;
}
.tab-bar-item:last-of-type {
  margin-right: 0;
}
.tab-bar-item.active {
  background-color: var(--grey-verylight);
  transition: ease-in-out 0.5s;
}
.tab-bar-item i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.tab-bar-item p {
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .tab-bar {
    background-color: var(--grey-verydark);
  }
  .tab-bar-item {
    color: var(--grey-verylight);
  }
  .tab-bar-item.active {
    background-color: var(--grey);
  }
}
.tag {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.5rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.035rem;
  font-weight: var(--font-weight-bold);
  text-transform: capitalize;
  color: var(--black);
  background-color: var(--grey-verylight);
  backdrop-filter: blur(10px);
  border-radius: 25px;
}

.usp-intro {
  display: flex;
  flex-direction: column;
  padding-bottom: 6rem;
}
.usp-intro img, .usp-intro video {
  flex: 1;
  min-height: 200px;
  max-height: 300px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.usp-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  min-width: 50%;
}
.usp-body h2 {
  margin-bottom: 2rem;
}
.usp-body .button {
  margin-bottom: 0;
}

.usp-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.usp-box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.usp-box i {
  font-size: 2rem;
}
.usp-box .fa-house-chimney-crack {
  color: hsl(210, 95%, 33%);
}
.usp-box .fa-calendar-check {
  color: hsl(210, 95%, 33%);
}
.usp-box .fa-earth-oceania {
  color: hsl(210, 95%, 33%);
}
.usp-box .fa-shield-check {
  color: hsl(210, 95%, 33%);
}
.usp-box .fa-heart {
  color: hsl(210, 95%, 33%);
}
.usp-box .fa-star {
  color: hsl(210, 95%, 33%);
}
.usp-box *:last-child {
  margin-bottom: 0;
}

.usp-benefit {
  display: grid;
  grid-template: "benefit-icon benefit-heading" "benefit-description benefit-description";
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  border-radius: 8px;
  padding: 2rem;
}
.usp-benefit i {
  grid-area: benefit-icon;
  display: flex;
  align-items: center;
}
.usp-benefit h2 {
  grid-area: benefit-heading;
  display: flex;
  align-items: center;
}
.usp-benefit p {
  grid-area: benefit-description;
}

@media only screen and (min-width: 501px) {
  .usp-intro {
    flex-direction: row;
  }
  .usp-intro img, .usp-intro video {
    max-width: calc(50% - 2rem);
  }
  .usp-body {
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .usp-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 750px) {
  .usp-intro img, .usp-intro video {
    max-width: calc(50% - 6rem);
  }
  .usp-body {
    margin-right: 6rem;
  }
  .usp-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.visually-hidden {
  position: absolute;
  z-index: 9;
  top: -50px;
  visibility: hidden;
  opacity: 0;
}

.skip-to-content {
  visibility: visible;
  opacity: 1;
}
.skip-to-content-link:focus {
  position: absolute;
  top: 130px;
  left: 20px;
  width: 175px;
  padding: 10px;
  background: hsl(0, 0%, 100%);
  border: 2px solid hsl(210, 95%, 33%);
  border-radius: 6px;
}

.mobile-hidden {
  display: revert;
}

.mobile-visible {
  display: none;
}

@media screen and (max-width: 550px) {
  .mobile-hidden {
    display: none;
  }
  .mobile-visible {
    display: inherit;
  }
}
header {
  display: block;
}

#footer-main-container {
  background-color: hsl(210, 95%, 33%);
  color: hsl(0, 0%, 100%);
  margin-left: -20px;
  margin-right: -20px;
}

#footer-main {
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
#footer-main-info h1 {
  margin: 10px 0px;
  font-size: 2.5rem;
}
#footer-main-info p {
  margin-bottom: 10px;
}
#footer-main-info p a {
  color: hsl(0, 0%, 100%);
  font-size: 14pt;
}
#footer-main-info p a i {
  margin-right: 10px;
}

#footer-operating-hours {
  margin-top: 2rem;
  margin-bottom: 20px;
}
#footer-operating-hours h3 {
  margin-bottom: 0.5rem;
}
#footer-operating-hours p {
  margin: 0;
}

.footer-main-column {
  padding: 10px 0px;
  border-top: 1px solid hsl(0, 0%, 100%);
}
.footer-main-column h3 a {
  color: inherit;
  text-decoration: none;
}
.footer-main-column h3 a:hover {
  color: inherit;
  text-decoration: underline;
}
.footer-main-column p {
  margin: 5px 0px;
}
.footer-main-column p a {
  color: hsl(0, 0%, 100%);
}

#footer-acknowledgement {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#footer-acknowledgement img {
  max-height: 40px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
#footer-acknowledgement > div {
  flex: 1;
}

#footer-disclaimer {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}
#footer-disclaimer img {
  flex: 1;
  margin: 0 0 1rem 0;
  max-width: 175px;
  border-radius: 0;
}
#footer-disclaimer p {
  flex: 8;
}

.footer-social {
  margin-bottom: 2rem;
}
.footer-social-links {
  display: flex;
  flex-direction: row;
}
.footer-social-links a {
  margin-right: 1rem;
  transition: ease all 0.3s;
}
.footer-social-links a:hover {
  transform: scale(1.2);
}
.footer-social-links a img {
  width: 25px;
  max-height: 25px;
}
.footer-social-links i {
  font-size: 2rem;
  color: white;
}

.footer-newsletter {
  margin-bottom: 2rem;
}

#dialog-newsletter {
  max-height: 760px;
}

#footer-lloyds {
  flex: 1;
}
#footer-lloyds a {
  display: flex;
  margin-bottom: 2rem;
}
#footer-lloyds img {
  width: 100px;
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
}
#footer-disclaimer {
  flex: 8;
}
#footer-disclaimer p:first-child {
  margin-top: 0;
}
#footer-disclaimer a {
  color: hsl(0, 0%, 100%);
  text-decoration: underline;
}

@media only screen and (min-width: 500px) {
  #footer-disclaimer {
    flex-direction: row;
  }
  #footer-lloyds {
    margin: 0 45px 0 0;
  }
  #footer-lloyds img {
    width: 100%;
    min-width: 100px;
  }
}
@media only screen and (min-width: 830px) {
  #footer-main {
    flex-direction: row;
  }
  #footer-main-info {
    flex: 3;
    min-width: 225px;
  }
  .footer-main-column {
    flex: 3;
    margin-top: 0;
    margin-left: 20px;
    border: none;
  }
  .footer-main-column h2 {
    margin-bottom: 10px;
  }
  .footer-newsletter {
    margin-bottom: 0;
  }
  #narrow-footer-main-column {
    flex: 2;
  }
  #footer-acknowledgement {
    flex-direction: row;
    gap: 4rem;
  }
  #dialog-newsletter {
    max-height: 635px;
  }
}
.navigation {
  position: sticky;
  top: 0;
  z-index: 3;
}
.navigation a {
  text-decoration: none;
}

.navbar-fixed {
  opacity: 1;
  height: 60px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  background-color: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  -moz-backdrop-filter: saturate(180%) blur(20px);
  color: hsl(210, 95%, 33%);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  transition: ease all 0.3s;
}
.navbar-fixed-container {
  display: flex;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px 0px 20px;
  align-items: center;
  height: 100%;
}

.navbar-logo {
  height: 50px;
  flex-shrink: 1;
  margin-right: 0.5rem;
}
.navbar-logo img {
  height: 50px;
  width: 89px;
}
.navbar-logo a {
  display: flex;
}

.main-nav-transparent {
  background-color: transparent;
  box-shadow: unset;
  background-color: transparent;
  backdrop-filter: unset;
  -webkit-backdrop-filter: unset;
  -moz-backdrop-filter: unset;
}
.main-nav-transparent .nav-desktop-item > a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.main-nav-transparent .nav-desktop-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main-nav-transparent.show-status #navbar-phone-status-container {
  opacity: 1;
}

#nav-desktop {
  display: none;
  flex: 5;
}
#nav-desktop > ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}
#nav-desktop > ul > li:first-child {
  margin-left: 0;
}
#nav-desktop > ul > li:has(.nav-desktop-dropdown) > a:after {
  content: "";
}
#nav-desktop > ul > li:has(.nav-desktop-dropdown):hover > a i, #nav-desktop > ul > li:has(.nav-desktop-dropdown):focus-within > a i {
  transform: rotatez(180deg);
}
#nav-desktop > ul > li:has(.nav-desktop-dropdown) > a > i {
  margin-left: 0.5rem;
  margin-right: -0.125rem;
  transition: ease all 0.3s;
  transform-origin: center;
}

.nav-desktop-item {
  position: relative;
  padding: 0.65rem 1rem;
  border-radius: 12px;
}
.nav-desktop-item > a {
  padding: 35px 0px;
  text-decoration: none;
  height: 100%;
  cursor: pointer;
}
.nav-desktop-item > a:hover {
  text-decoration: none;
}
.nav-desktop-item > a[href^="/"] {
  cursor: pointer;
}
.nav-desktop-item:hover {
  background-color: hsla(210, 95%, 33%, 0.1);
}
.nav-desktop-item:hover .nav-desktop-dropdown, .nav-desktop-item:focus .nav-desktop-dropdown, .nav-desktop-item:focus-within .nav-desktop-dropdown {
  visibility: visible;
  opacity: 1;
}

#navbar-phone-status-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transition: ease all 0.2s;
}

.navbar-phone-status {
  position: absolute;
  top: 30px;
  right: 53px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  min-width: 160px;
  pointer-events: none;
  font-weight: bold;
  margin-left: 1rem;
}
.navbar-phone-status-hint {
  background-color: var(--white);
  height: 25px;
  width: 25px;
  border-radius: 25px;
  margin-left: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
}
.navbar-phone-status-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  padding: 0 0.75rem;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 0.5rem;
  color: var(--black);
  background-color: var(--white);
}
.navbar-phone-status-indicator-dot {
  width: 10px;
  height: 10px;
  margin-right: 0.5rem;
  background-color: var(--alert-success);
  border-radius: 15px;
  animation: dot-pulse 1.5s infinite;
  box-shadow: 0 0 0 hsla(158, 95%, 34%, 0.6);
}
.navbar-phone-status-indicator p {
  margin-bottom: 0;
}

.navbar-phone-status-offline {
  display: none !important;
}

.navbar-phone-status-mobilemenuvisible {
  display: none !important;
}

.nav-desktop-dropdown {
  position: absolute;
  top: 67px;
  left: -1rem;
  display: flex;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: ease-in-out 0.2s;
  z-index: 3;
}
.nav-desktop-dropdown li {
  padding: 0 0.35rem;
}
.nav-desktop-dropdown li:first-of-type {
  padding-top: 0.35rem;
}
.nav-desktop-dropdown li:last-of-type {
  padding-bottom: 0.35rem;
}
.nav-desktop-dropdown a {
  display: flex;
  align-items: center;
  justify-content: left;
  text-wrap: nowrap;
  color: var(--black);
  padding: 0.65rem 0.88rem;
  border-radius: 8px;
  transition: ease-in-out 0.2s;
}
.nav-desktop-dropdown a:hover, .nav-desktop-dropdown a:focus {
  background-color: var(--white-dark);
  color: var(--black);
  text-decoration: none;
}
.nav-desktop-dropdown a:hover i, .nav-desktop-dropdown a:focus i {
  background-color: hsla(210, 95%, 33%, 0.1);
  color: var(--blue);
}
.nav-desktop-dropdown i {
  margin-right: 0.75rem;
  padding: 0.5rem;
  width: 37px;
  background-color: var(--white-dark);
  border-radius: 8px;
  font-size: 1.25rem;
  transition: ease-in-out 0.2s;
}
.nav-desktop-dropdown hr {
  border: 1px solid var(--white-dark);
  margin: 0.35rem;
}

.nav-label p {
  margin-bottom: 0;
  line-height: 1rem;
}
.nav-label p:nth-of-type(1) {
  font-weight: bold;
  min-width: 50px;
  margin-bottom: 0.1rem !important;
}
.nav-label p:nth-of-type(2) {
  color: var(--grey-medium);
  font-size: 0.8rem;
  margin-top: 0.125rem;
}

.nav-lvl0 {
  opacity: 1;
  animation: flyout-in-lvl2 0.5s forwards;
}

.nav-lvl1 {
  opacity: 1;
  animation: flyout-in-lvl2 0.5s forwards;
}

.nav-lvl0 > i, .nav-lvl1 > i, .nav-lvl2 li a > i {
  margin-right: 0.75rem;
  background-color: var(--grey-verylight);
  padding: 0.5rem;
  border-radius: 8px;
  width: 37px;
}
.nav-lvl0:hover > i, .nav-lvl1:hover > i, .nav-lvl2 li a:hover > i {
  color: var(--blue);
  background-color: hsla(210, 95%, 33%, 0.1);
}

.nav-lvl2 {
  width: 100%;
  opacity: 0;
  animation: flyout-out-lvl2 0.5s forwards;
  visibility: hidden;
  position: absolute;
  top: 1.5rem;
}
.nav-lvl2 a i {
  margin-right: 1rem;
}
.nav-lvl2 li a::after {
  content: "" !important;
}
.nav-lvl2 li:first-child a::before {
  content: "\f053";
  font-family: "Font Awesome 7 Pro";
  font-weight: var(--font-weight-bold);
  color: hsl(210, 95%, 33%);
  margin-right: 1.5rem;
  width: 1.25em;
  text-align: center;
}
.nav-lvl2 hr {
  border: 1px solid var(--grey-verylight);
  margin: 0.35rem 20px;
}

.nav-lvl-show {
  animation: flyout-in-lvl1 0.5s forwards;
}

.nav-lvl-hide {
  animation: flyout-out-lvl1 0.5s forwards;
}

.nav-lvl-back {
  height: 58.67px;
}

.navbar-login {
  color: hsl(210, 95%, 33%);
  background-color: hsl(0, 0%, 100%);
  border: 2px solid hsl(210, 95%, 33%);
  line-height: 35px;
  width: 39px;
  text-align: center;
  border-radius: 31px;
  transition: all 0.15s ease;
}
.navbar-login:hover {
  border-color: hsl(210, 95%, 43%);
}
.navbar-login a {
  font-size: 15px;
  padding: 8px;
}
.navbar-login a:hover {
  text-decoration: none;
}

#navbar-mobile-toggle {
  display: none;
}

#nav-mobile-toggle-list-container.menu-active {
  opacity: 1 !important;
  visibility: unset !important;
  height: calc(100vh - 60px);
  background-color: hsla(0, 0%, 100%, 0.93);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  -moz-backdrop-filter: saturate(180%) blur(20px);
}

.menu-active-container {
  overflow: hidden;
  max-height: 100%;
  margin: 0;
}

.menu-active-navbar {
  background-color: hsla(0, 0%, 100%, 0.93);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  -moz-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: none;
}

#nav-mobile-wrapper {
  position: absolute;
  top: 0;
}

#nav-mobile-navbar {
  display: block;
  flex: 3;
}
#nav-mobile-navbar ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}
#nav-mobile-navbar li {
  margin-left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#nav-mobile-navbar li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}
#nav-mobile-navbar li label i {
  font-size: 30pt;
  height: 39px;
  width: 39px;
  padding: 0px 0px 0px 5px;
  position: relative;
  top: 2px;
  text-align: center;
}
#nav-mobile-navbar li:first-child {
  margin-left: 0;
}

#nav-mobile-toggle-list-container {
  opacity: 0;
  visibility: hidden;
  transition: ease all 0.3s;
  position: absolute;
  overflow: hidden;
  overflow-y: scroll;
  top: 60px;
  background-color: hsla(0, 0%, 100%, 0.93);
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.2);
}

#nav-mobile-toggle-list {
  max-width: 1240px;
  padding-top: 1.5rem;
}
#nav-mobile-toggle-list > ul {
  display: block;
}
#nav-mobile-toggle-list > ul:last-child {
  margin-bottom: 5rem;
}
#nav-mobile-toggle-list li {
  margin-left: 0;
  font-weight: var(--font-weight-bold);
  font-size: 14pt;
}
#nav-mobile-toggle-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: hsl(0, 0%, 0%);
}
#nav-mobile-toggle-list a::after {
  content: "\f054";
  font-family: "Font Awesome 7 Pro";
  font-weight: var(--font-weight-bold);
  color: transparent;
  margin-left: auto;
  margin-right: 0;
  transition: ease all 0.5s;
}
#nav-mobile-toggle-list a:hover::after {
  color: var(--blue);
}
#nav-mobile-toggle-list p {
  margin: 0;
}

#mobile-menu-call-to-action {
  padding-left: 15px;
  margin-top: 2rem;
}
#mobile-menu-call-to-action a {
  color: white;
  font-weight: var(--font-weight-semi-bold);
  width: fit-content;
  width: -moz-fit-content;
}
#mobile-menu-call-to-action a:hover, #mobile-menu-call-to-action a:focus {
  text-decoration: none;
  color: var(--blue);
}
#mobile-menu-call-to-action a::after {
  content: "";
  margin: 0;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 70px;
  margin: 0 -20px;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: hsl(210, 95%, 33%);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

@media only screen and (min-width: 550px) {
  #nav-mobile-toggle-list-container {
    top: 90px;
    height: 0;
  }
  #nav-mobile-toggle-list-container.menu-active {
    height: calc(100vh - 90px);
  }
  .navbar-logo {
    height: 70px;
  }
  .navbar-logo img {
    height: 70px;
    width: 124px;
  }
  .navbar-fixed {
    height: 90px;
  }
}
@media only screen and (min-width: 990px) {
  #nav-desktop {
    display: block;
  }
  #nav-mobile-navbar {
    display: none;
  }
  #nav-mobile-navbar i {
    margin-right: 0;
  }
  #navbar-mobile-toggle a {
    font-size: 35pt;
  }
  #navbar-mobile-toggle a i {
    top: 5px;
  }
  #nav-mobile-toggle-list-container {
    display: none;
  }
  .navbar-phone-status {
    right: 0;
    flex-direction: row;
  }
  .navbar-phone-status-hint {
    margin-left: 0;
    margin-right: 0.3rem;
  }
}
@media (prefers-color-scheme: dark) {
  .navbar-fixed {
    background-color: hsla(0, 0%, 0%, 0.8);
  }
  .main-nav-transparent {
    background-color: transparent;
  }
  #nav-desktop a {
    color: var(--white-dark);
  }
  #nav-desktop a.button-navbar-phone:hover, #nav-desktop a.button-navbar-phone:focus-visible {
    color: var(--blue);
  }
  #nav-desktop .nav-desktop-dropdown {
    background-color: hsl(206, 9%, 10%);
  }
  #nav-desktop .nav-desktop-dropdown a {
    color: var(--white-dark);
  }
  #nav-desktop .nav-desktop-dropdown a:hover, #nav-desktop .nav-desktop-dropdown a:focus {
    background-color: hsl(206, 9%, 15%);
  }
  #nav-desktop .nav-desktop-dropdown a:hover i, #nav-desktop .nav-desktop-dropdown a:focus i {
    color: var(--blue-light);
    background-color: hsla(206, 80%, 53%, 0.1);
  }
  #nav-desktop .nav-desktop-dropdown i {
    background-color: var(--grey-dark);
  }
  #nav-desktop .nav-desktop-dropdown hr {
    border-color: var(--grey-dark);
  }
  .nav-lvl0 > i, .nav-lvl1 > i, .nav-lvl2 li a > i {
    color: var(--white-dark);
    background-color: var(--grey-verydark);
  }
  .nav-lvl0:hover > i, .nav-lvl1:hover > i, .nav-lvl2 li a:hover > i {
    color: var(--blue-light);
    background-color: hsla(206, 80%, 53%, 0.1);
  }
  .nav-lvl2 li:first-child a::before {
    color: var(--blue-light);
  }
  .nav-lvl2 hr {
    border-color: var(--grey-dark);
  }
  #navbar-mobile-toggle-label i {
    color: hsl(206, 80%, 53%);
  }
  #nav-mobile-toggle-list a {
    color: hsl(0, 0%, 100%);
  }
  #nav-mobile-toggle-list a:hover::after {
    color: var(--blue-light);
  }
  #nav-mobile-toggle-list-container {
    background-color: hsla(0, 0%, 0%, 0.9);
  }
  #nav-mobile-toggle-list-container.menu-active {
    background-color: hsla(0, 0%, 0%, 0.9);
  }
  .menu-active-navbar {
    background-color: hsla(0, 0%, 0%, 0.9);
  }
  .navbar-login {
    background-color: hsl(206, 80%, 53%);
    border-color: hsl(206, 80%, 53%);
  }
  .navbar-login:hover {
    background-color: hsl(210, 95%, 43%);
  }
  .navbar-login a {
    color: hsl(0, 0%, 100%);
  }
  .navbar-login i {
    color: hsl(0, 0%, 100%);
  }
}
@keyframes flyout-in-lvl1 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(8px);
  }
  33% {
    opacity: 0;
    visibility: hidden;
    transform: translate(8px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
}
@keyframes flyout-out-lvl1 {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  33% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-8px);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-8px);
  }
}
@keyframes flyout-in-lvl2 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-8px);
  }
  33% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-8px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
}
@keyframes flyout-out-lvl2 {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  50% {
    opacity: 0;
    visibility: hidden;
    transform: translate(8px);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(8px);
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 0 hsla(158, 95%, 34%, 0.8);
  }
  90% {
    box-shadow: 0 0 0 10px hsla(158, 95%, 34%, 0);
  }
  100% {
    box-shadow: 0 0 0 0 hsla(158, 95%, 34%, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  @keyframes flyout-in {
    0% {
      opacity: 1;
      visibility: visible;
      transform: translate(0);
    }
    100% {
      opacity: 1;
      visibility: visible;
      transform: translate(0);
    }
  }
  @keyframes flyout-out {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translate(8px);
    }
    100% {
      opacity: 0;
      visibility: hidden;
      transform: translate(8px);
    }
  }
  @keyframes dot-pulse {
    0% {
      box-shadow: 0 0 0 0 hsla(158, 95%, 34%, 0);
    }
    100% {
      box-shadow: 0 0 0 0 hsla(158, 95%, 34%, 0);
    }
  }
}
.about-us-team-image {
  margin-bottom: 2rem;
  background-image: url(/img/page/about/mhia_team.png);
  background-size: cover;
  background-position: center;
  height: 250px;
  max-width: 100%;
}

@media only screen and (min-width: 530px) {
  .about-us-team-image {
    height: 350px;
  }
}
@media only screen and (min-width: 830px) {
  .about-us-team-image {
    height: 550px;
  }
}
.community-box {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 40px;
}
.community-box:first-child {
  margin-top: 0;
}
.community-box-container {
  display: flex;
  flex-direction: column;
}
.community-box-text {
  flex: 3;
}
.community-box-text p {
  margin-bottom: 0;
}
.community-box-image {
  flex: 1;
  display: flex;
  align-items: center;
}
.community-box-image img {
  max-width: 200px;
}

#img-claims-home {
  background-image: url(/img/page/hail-claims/couple.jpg);
}

#img-claims-car {
  background-image: url(/img/page/insurance/car/car.jpg);
}

.community-box {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 40px;
}
.community-box:first-child {
  margin-top: 0;
}
.community-box-container {
  display: flex;
  flex-direction: column;
}
.community-box-text {
  flex: 3;
}
.community-box-text p {
  margin-bottom: 0;
}
.community-box-image {
  flex: 1;
  display: flex;
  align-items: center;
}
.community-box-image img {
  max-width: 200px;
}

.small-a {
  font-size: smaller;
}

.large-a {
  font-size: larger;
}

@media only screen and (min-width: 830px) {
  .community-box {
    flex-direction: row;
  }
  .community-box-text {
    margin-right: 40px;
  }
}
.contact-container {
  display: flex;
  flex-direction: column;
}
.contact-container-left {
  flex: 1;
  margin-bottom: 1rem;
}
.contact-container-right {
  flex: 1;
}

.contact-centre-details {
  position: sticky;
  top: calc(90px + 2rem);
}

.contact-locations {
  display: flex;
  flex-direction: column;
}

.contact-location-card {
  display: flex;
  flex-direction: column;
}
.contact-location-card > * {
  flex: 1;
}

.location-map {
  border: 0;
  min-height: 400px;
}

.location-disclaimer {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.contact-details {
  margin-bottom: 3rem;
}
.contact-details:last-of-type {
  margin-bottom: 0;
}
.contact-details-hours {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.contact-details-hours p {
  flex: 1;
  margin-bottom: 0.75rem;
}
.contact-details-hours p:first-of-type {
  font-weight: var(--font-weight-bold);
  margin-right: 20px;
}
.contact-details-hours-special {
  padding: 2rem;
  color: var(--white);
  background-color: var(--blue);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}
.contact-details-hours-special p {
  margin-bottom: 0;
}
.contact-details .button-container:last-of-type .button, .contact-details .button-container:last-of-type .button-secondary {
  margin-bottom: 0;
}
.contact-details-afterhours {
  display: flex;
}
.contact-details-afterhours p {
  flex: 1;
  margin-bottom: 0;
}
.contact-details-afterhours p:first-of-type {
  font-weight: var(--font-weight-bold);
  margin-right: 20px;
}
.contact-details-afterhours a {
  color: var(--white);
}

@media only screen and (min-width: 830px) {
  .contact-container {
    flex-direction: row;
  }
  .contact-container-left {
    margin-right: 40px;
    margin-bottom: 0rem;
  }
  .contact-location-card {
    flex-direction: row;
  }
  .location-map {
    height: auto;
  }
}
.fa-duotone.fa-comment-alt-slash, .fa-duotone.fa-comment-alt-exclamation, .fa-duotone.fa-file-certificate {
  margin-right: 20px;
}

.glenn-sticky-cta {
  position: fixed;
  bottom: 0rem;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.glenn-sticky-cta-container {
  width: 100%;
  max-width: 550px;
  padding: 1rem 2rem;
  color: var(--white);
  border-radius: 16px 16px 0 0;
  transition: ease;
  background-color: var(--blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: ease-in-out 0.3s;
}
.glenn-sticky-cta-container-hidden {
  visibility: hidden;
  opacity: 0;
}
.glenn-sticky-cta-container .button-container {
  justify-content: center;
}
.glenn-sticky-cta-container .button-container .button-primary {
  border-color: var(--white);
}
.glenn-sticky-cta-container .button-container .button-secondary {
  border-color: var(--white);
}

#glenn-landing-hero-cold {
  display: flex;
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.jpg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.webp);
  background-position: top;
  background-size: cover;
}
#glenn-landing-hero-cold .button-container {
  justify-content: center;
}
#glenn-landing-hero-cold .button-container .button-primary {
  border-color: var(--white);
}
#glenn-landing-hero-cold .button-container .button-secondary {
  border-color: var(--white);
}
#glenn-landing-hero-cold .glenn-landing-hero-text {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}
#glenn-landing-hero-cold .glenn-landing-hero-text h1 {
  text-align: center;
  text-wrap: balance;
  max-width: 1200px;
}
#glenn-landing-hero-cold .glenn-landing-hero-text p {
  text-align: center;
}
#glenn-landing-hero-cold .glenn-landing-video iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
#glenn-landing-hero-cold .glenn-landing-video ::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}
#glenn-landing-hero-cold::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 25%, rgb(4, 84, 164) 85%, rgb(4, 84, 164) 100%);
}

#glenn-landing-warm-img {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.jpg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%), url(/img/page/glenn-mcgrath/glenn-mcgrath-hero.webp);
  background-position: top;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.glenn-landing-hero-warm-text {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}
.glenn-landing-hero-warm-text h1 {
  text-align: center;
  text-wrap: balance;
  max-width: 1200px;
  font-size: 2.4rem;
  line-height: 2.6rem;
}
.glenn-landing-hero-warm-text cite {
  font-size: 2rem;
}
.glenn-landing-hero-warm-text blockquote {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  border: 4px solid var(--white);
  border-radius: 24px;
  position: relative;
  bottom: 2rem;
}
.glenn-landing-hero-warm-text blockquote::before, .glenn-landing-hero-warm-text blockquote::after {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  font-size: 4rem;
  color: var(--white-dark);
  position: absolute;
}
.glenn-landing-hero-warm-text blockquote::before {
  top: 2rem;
  left: 4rem;
}
.glenn-landing-hero-warm-text blockquote::after {
  bottom: 2rem;
  right: 4rem;
}

#glenn-quiz {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  gap: 2rem;
}
#glenn-quiz select {
  outline: unset;
  border: 2px solid var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  background-color: var(--white-dark);
  height: 45px;
}
#glenn-quiz-results {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#glenn-quiz-results h2 {
  font-size: 1.5rem !important;
}
#glenn-quiz-results h3 {
  font-size: 5rem;
  line-height: 5rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  margin-bottom: 1rem;
}
#glenn-quiz .button {
  grid-column: 1/-1;
  margin-bottom: 0;
}

#glenn-quiz-results .button {
  margin-bottom: 0;
}

@media only screen and (max-width: 550px) {
  .glenn-landing-hero-warm-text blockquote {
    padding: 1.25rem;
  }
  .glenn-landing-hero-warm-text blockquote::before, .glenn-landing-hero-warm-text blockquote::after {
    font-size: 2rem;
  }
  .glenn-landing-hero-warm-text blockquote::before {
    top: 1rem;
    left: 1.5rem;
  }
  .glenn-landing-hero-warm-text blockquote::after {
    bottom: 1rem;
    right: 1.5rem;
  }
  .glenn-landing-hero-warm-text cite {
    font-size: 1rem;
  }
  .glenn-landing-hero-warm-text h1 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media only screen and (min-width: 550px) {
  .glenn-sticky-cta {
    padding-bottom: 1rem;
  }
  .glenn-sticky-cta-container {
    border-radius: 16px;
  }
  #glenn-landing-hero-cold .glenn-landing-hero-text {
    bottom: 6rem;
  }
  #glenn-landing-hero-cold::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.2) 75%, rgb(4, 84, 164) 100%);
  }
}
@media only screen and (min-width: 650px) {
  #glenn-quiz {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-height: 700px) {
  .glenn-landing-hero-warm-text {
    bottom: 0rem;
  }
  .glenn-landing-hero-warm-text h1 {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }
  .glenn-landing-hero-warm-text blockquote {
    padding: 1.25rem;
  }
  .glenn-landing-hero-warm-text blockquote::before {
    top: 0rem;
    left: 1rem;
  }
  .glenn-landing-hero-warm-text blockquote::after {
    bottom: 0rem;
    right: 1rem;
  }
  .glenn-landing-hero-warm-text cite {
    font-size: inherit;
  }
}
@media screen and (prefers-reduced-motion) {
  .glenn-landing-video iframe {
    display: none;
  }
}
.hail-claims-container .fa-check {
  color: hsl(158, 95%, 34%);
}
.hail-claims-container .fa-xmark {
  color: hsl(4, 90%, 58%);
}

.hail-claims-image {
  min-height: 250px;
  max-height: 250px;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
}
.hail-claims-image-examples {
  display: flex;
  flex-direction: column;
}
.hail-claims-image-container {
  margin-bottom: 1rem;
  flex: 1;
}
.hail-claims-image-container:last-of-type {
  margin-bottom: 0;
}
.hail-claims-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

#img-hail-claim-1 {
  background-image: url(/img/page/hail-claims/damaged-awning.jpg);
}

#img-hail-claim-2 {
  background-image: url(/img/page/hail-claims/damaged-roof-sheets.jpg);
}

#img-hail-claim-3 {
  background-image: url(/img/page/hail-claims/missing-roof-sheets.jpg);
}

#img-hail-claim-4 {
  background-image: url(/img/page/hail-claims/roof-spotting.jpg);
}

#img-hail-claim-5 {
  background-image: url(/img/page/hail-claims/small-impressions-ridge.jpg);
}

#img-hail-claim-6 {
  background-image: url(/img/page/hail-claims/small-impressions-hip.jpg);
}

#img-lodge-a-claim {
  background-image: url(/img/page/hail-claims/couple.jpg);
}

#img-faqs {
  background-image: url(/img/page/hail-claims/ipad-woman.jpg);
}

@media screen and (min-width: 730px) {
  .hail-claims-image-examples {
    flex-direction: row;
  }
  .hail-claims-image-container {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .hail-claims-image-container:last-of-type {
    margin-right: 0;
  }
}
#home-final-cta {
  position: relative;
}
#home-final-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(/img/page/home/streetfront.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: opacity(0.3) blur(5px);
}
#home-final-cta .section-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
#home-final-cta .section-container > .button {
  margin: 0 0 0 auto;
}

.legal {
  color: inherit;
  margin-left: 0.25rem;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 0.25px;
}
.legal:hover, .legal :focus-visible {
  color: inherit;
}

.legal:after, .legal:before {
  font-size: 0.7rem;
  position: relative;
  bottom: 0.35rem;
}

#legal-lloyds-long:before {
  content: "*";
  margin-right: 0.25rem;
}

#legal-lloyds::after {
  content: "(*)";
}
#legal-1:after {
  content: "(1)";
}
#legal-2:after {
  content: "(2)";
}
#legal-3:after {
  content: "(3)";
}
#legal-4:after {
  content: "(4)";
}
#legal-5:after {
  content: "(5)";
}

#legal-link {
  position: relative;
  top: -100px;
}

.fa-duotone.fa-calculator {
  margin-right: 20px;
}

#product-image-building-contents {
  background-image: url(/img/page/insurance/interior.jpg);
}

#product-image-manufactured-home {
  background-image: url(/img/page/insurance/manufactured-home.jpeg);
}

#product-image-cabin {
  background-image: url(/img/page/insurance/cabin.jpg);
}

#product-image-on-site-caravan {
  background-image: url(/img/page/insurance/on-site-caravan.jpeg);
}

.insurance-product-hero-container {
  display: flex;
  flex-direction: column-reverse;
}
.insurance-product-hero-image {
  position: relative;
  top: -40px;
  flex: 1;
  height: 180px;
  width: calc(100vw - (100vw - 100%) + 40px);
  left: -20px;
  margin-bottom: -20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 2;
}
.insurance-product-hero-title {
  margin-right: 2rem;
  flex: 1;
  height: 300px;
  z-index: 2;
}

#home-contents-hero-bg {
  background-image: url("/img/page/insurance/home-contents.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: inherit;
}

.insurance-product-hero-ribbon {
  display: none;
  position: absolute;
  top: 395px;
  left: 0;
  width: calc(100vw - (100vw - 100%));
  height: 25px;
  background-color: hsl(210, 95%, 33%);
}

.inclusion {
  display: grid;
  margin-bottom: -1rem;
}
.inclusion::before {
  grid-row-start: 1;
  grid-row-end: 2;
  font-family: "Font Awesome 7 Pro";
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.inclusion p {
  grid-column-start: 2;
  grid-column-end: 2;
}
.inclusion-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.inclusion-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
  max-width: 750px;
}
.inclusion-category {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  border-top: 2px solid hsl(0, 0%, 73%);
}
.inclusion-category-title {
  margin: 0 2rem 1rem 0;
}
.inclusion-category:first-of-type {
  margin-top: 1rem;
}
.inclusion-category:last-of-type {
  border-bottom: 2px solid hsl(0, 0%, 73%);
}
.inclusion-title {
  font-weight: bold;
}

.standard-inclusion::before {
  content: "\f00c";
  color: hsl(158, 95%, 34%);
}

.premium-inclusion::before {
  content: "\f2f7";
  color: hsl(158, 95%, 34%);
}

.optional-inclusion::before {
  content: "+";
  color: hsl(206, 80%, 53%);
}

.excluded-inclusion::before {
  content: "\f00d";
  color: hsl(4, 90%, 58%);
}

.insurance-product-crosssell-container {
  width: 100%;
}

.crosssell-card {
  flex: 1;
  margin-bottom: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 6px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.crosssell-card:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
.crosssell-card-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.crosssell-card-image {
  display: none;
  background-size: cover;
  background-position: center;
  height: 250px;
  width: 100%;
}
.crosssell-card-text {
  padding: 1.5rem;
}
.crosssell-card .button, .crosssell-card .button-secondary {
  margin-bottom: 0;
}

.insurance-product-terms-container {
  margin: 3rem 0;
}

#crossell-card-image-calculator {
  background-image: url("/img/page/insurance/home-calculator.jpg");
}

#crossell-card-image-quote {
  background-image: url("/img/page/insurance/home-contents1.jpg");
}

#crossell-card-image-claim {
  background-image: url("/img/page/insurance/ses-claim.jpg");
}

@media only screen and (min-width: 750px) {
  .inclusion-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .inclusion-category:first-of-type {
    border-top: none;
    padding-top: 0.5rem;
  }
  .inclusion-category:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .insurance-product-hero-container {
    flex-direction: row;
  }
  .insurance-product-hero-image {
    height: 380px;
    border-radius: 0 0 12px 12px;
    margin-bottom: 0;
  }
  .insurance-product-hero-ribbon {
    display: block;
  }
  .crosssell-card {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .crosssell-card-container {
    flex-direction: row;
  }
  .crosssell-card-image {
    display: block;
  }
}
@media only screen and (min-width: 1050px) {
  .inclusion-category {
    flex-direction: row;
  }
  .inclusion-list {
    margin: 0 0 0 auto;
  }
}
@media (prefers-color-scheme: dark) {
  .crosssell-card {
    background-color: var(--grey-verydark);
  }
}
#mk-hero-bg {
  background-image: url("/img/page/media-kit/hero1.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: inherit;
}

.mk-hidden {
  display: none;
}

#mk-content {
  margin: 2rem 0 6rem 0;
}

#mk-agreement-check {
  display: flex;
}
#mk-agreement-check > .section-container > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mk-agreement-check .fa-ban {
  font-size: 6rem;
  margin-bottom: 1rem;
  color: var(--alert-critical);
}

#mk-container {
  display: none;
  flex-direction: column;
}

.mk-category {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  border-top: 2px solid hsl(0, 0%, 73%);
}
.mk-category:first-of-type {
  padding-top: 0;
}
.mk-category:last-of-type {
  padding-bottom: 0;
}

.mk-title {
  flex: 1;
}
.mk-title p:last-of-type {
  margin-bottom: 0;
}

.mk-list {
  flex: 2;
}
.mk-list h3 {
  margin: 2rem 0;
}
.mk-list a {
  display: block;
  margin-bottom: 0.125rem;
}

.mk-downloadable {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mk-downloadable-img-container {
  display: flex;
  justify-content: center;
  min-width: 160px;
  max-width: 160px;
  min-height: 120px;
  max-height: 120px;
  margin-right: 2rem;
}
.mk-downloadable img {
  width: auto;
  max-width: 160px;
  max-height: 120px;
  border-radius: 0;
}

@media only screen and (min-width: 750px) {
  .mk-category:first-of-type {
    border-top: none;
  }
}
@media only screen and (min-width: 1050px) {
  .mk-category {
    flex-direction: row;
  }
  .mk-list {
    margin-left: 4rem;
  }
  .mk-list h3 {
    margin: 0 0 2rem 0;
  }
}
.fa-duotone.fa-university,
.fa-duotone.fa-credit-card-front,
.fa-duotone.fa-edit,
.fa-duotone.fa-file-invoice,
.fa-duotone.fa-phone,
.fa-duotone.fa-store {
  margin-right: 20px;
}

.payment-processor-container {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}
.payment-processor-image {
  margin-right: 20px;
  height: 2.5rem;
}

#payment-processor-image-visa {
  height: 2rem;
}

#payments-annual {
  display: block;
}

#payments-monthly, #payments-bpay {
  display: none;
}

.section-container > .payment-method:first-child {
  margin-bottom: 3rem;
  margin-top: 0;
  padding-bottom: 3rem;
  border-bottom: 2px solid hsl(0, 0%, 88%);
}

.payment-method {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 3rem 0;
}
.payment-method > *:first-child {
  flex: 1;
}
.payment-method > *:last-child, .payment-method > .button {
  width: 220px;
  height: 50px;
  margin-bottom: 0;
}

.bpay-howto-img {
  display: flex;
  justify-content: center;
}
.bpay-howto-img img {
  display: block;
  max-width: 100%;
}

@media only screen and (min-width: 630px) {
  .payment-method {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.pay-online-legal {
  width: 100%;
  color: hsl(0, 0%, 50%);
  font-size: 0.8rem;
}
.pay-online-legal span {
  padding-right: 2rem;
  border-right: 1px solid hsl(0, 0%, 50%);
  margin-right: 2rem;
}
.pay-online-legal a {
  color: inherit;
}
.pay-online-legal a:first-of-type {
  margin-right: 1rem;
}

.card-divider {
  position: relative;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 280px;
}
.card-divider hr {
  margin: 0;
  opacity: 0.4;
}
.card-divider p {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  text-align: center;
  background-color: hsl(0, 0%, 98%);
  color: hsl(0, 0%, 50%);
  padding: 0 10px;
}
.card-divider > div {
  padding-top: 1.5rem;
  text-align: center;
}
.card-divider > div img {
  height: 25px;
  margin-right: 0.5rem;
}
.card-divider > div img:last-of-type {
  margin-right: 0;
}

#DigitalWalletForm {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
#DigitalWalletForm .apple-pay-button-with-text, #DigitalWalletForm .gpay-button, #DigitalWalletForm .gpay-button.short, #DigitalWalletForm .g-pay-button.plain {
  width: 100%;
}

#payway-payment-request-button {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

.payment-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 278px;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  border: none;
  border-radius: 25px;
  transition: ease all 0.15s;
}

#cmdPay:disabled, #ApplePay:disabled, #GooglePay:disabled {
  background-color: hsl(0, 0%, 88%);
  cursor: not-allowed;
}
#cmdPay:not([disabled]), #ApplePay:not([disabled]), #GooglePay:not([disabled]) {
  cursor: pointer;
}

#ApplePay, #GooglePay {
  background-color: #000000;
  height: 47px;
}
#ApplePay:not([disabled]):hover, #ApplePay :focus, #GooglePay:not([disabled]):hover, #GooglePay :focus {
  background-color: rgb(38.25, 38.25, 38.25);
}
#ApplePay img, #GooglePay img {
  height: 24px;
}
#ApplePay:last-of-type, #GooglePay:last-of-type {
  margin-bottom: 2.5rem;
}

#policy-reference {
  font-size: 1.25rem;
  color: hsl(0, 0%, 50%);
}
#policy-reference::before {
  display: none;
  content: "Policy Number: ";
  margin-right: 0.5rem;
}

#amount-due {
  font-size: 3.3rem;
}
#amount-due::before {
  font-size: 2rem;
  position: relative;
  bottom: 12px;
  content: "$";
}
#amount-due::after {
  font-size: 1rem;
  color: hsl(0, 0%, 50%);
  position: relative;
  bottom: 0;
  right: 0;
  content: "inc. GST";
  margin-left: 0.5rem;
}

#payway-credit-card {
  margin-bottom: 1rem;
  min-height: 280px;
}

#payway-credit-card-iframe0 {
  width: 278px;
  height: 306px;
}

.payment-status-icon-failed {
  color: hsl(4, 90%, 58%);
}

#payment-status-success, #payment-status-failed {
  display: none;
  background-color: white;
  padding: 2rem;
  border-radius: 6px;
  border-top: 5px solid hsl(210, 95%, 33%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}
#payment-status-success input[type=text], #payment-status-success button, #payment-status-failed input[type=text], #payment-status-failed button {
  display: inline-block;
}
#payment-status-success input[type=text] i, #payment-status-success button i, #payment-status-failed input[type=text] i, #payment-status-failed button i {
  margin-right: 0.5rem;
}
#payment-status-success input[type=text], #payment-status-failed input[type=text] {
  height: 47px;
  min-width: 165px;
  width: 100%;
  max-width: 200px;
  font-size: 1.2rem;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid hsl(0, 0%, 73%);
  border-radius: 6px;
}
#payment-status-success button, #payment-status-failed button {
  height: 47px;
  color: hsl(0, 0%, 100%);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 25px;
  margin: 0;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  transition: ease all 0.15s;
}
#payment-status-success button:hover, #payment-status-failed button:hover {
  cursor: pointer;
}

.receipt-container {
  padding: 1.25rem;
  background-color: hsl(0, 0%, 98%);
  border-radius: 6px;
  max-width: fit-content;
  margin-bottom: 2rem;
}

#lblResponseText {
  margin-bottom: 2rem;
}
#lblResponseText > * {
  margin-right: 0.5rem;
}

#lblPolicyLookupResponseSearch, #payment-receipt-send-sending {
  display: none;
  color: hsl(210, 95%, 33%);
  margin-top: 1rem;
}
#lblPolicyLookupResponseSearch i, #payment-receipt-send-sending i {
  margin: 0;
  margin-right: 0.5rem;
  color: hsl(210, 95%, 33%);
  font-size: 1.5rem;
  height: 1.5rem;
}

#lblPolicyLookupResponseError {
  display: none;
  color: hsl(4, 90%, 58%);
  margin-top: 1rem;
}

#input-policy-reference, #policyreference {
  text-transform: uppercase;
}

@media screen and (min-width: 430px) {
  #payway-credit-card {
    min-height: 230px;
  }
  #payway-credit-card-iframe0 {
    width: 370px;
    height: 226px;
  }
  .payment-status-container {
    max-width: 370px;
    padding: 2.5rem;
  }
  #payment-status-success input[type=text] {
    margin-right: 1rem;
    margin-bottom: 0rem;
  }
}
@media screen and (min-width: 830px) {
  .pay-online-flex {
    flex-direction: row;
    text-align: left;
  }
  .pay-online-flex-cardinfo {
    text-align: right;
  }
  .payment-status-container {
    max-width: 550px;
  }
}
#card-testing-details {
  display: none;
}
#card-testing-details p {
  margin-bottom: 0;
}

.payment-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.payment-progress-container {
  max-width: 890px;
  margin: 0 auto;
}
.payment-progress-container progress {
  background: none;
  border: none;
  outline: none;
  height: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  top: 25px;
  left: 3rem;
  width: calc(100% - 6rem);
  background-color: hsl(0, 0%, 88%);
}
.payment-progress-container progress::-webkit-progress-bar {
  background-color: hsl(0, 0%, 88%);
}
.payment-progress-container progress::-webkit-progress-value {
  background-color: hsl(210, 95%, 33%);
}

.payment-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.payment-step-indicator-complete .step-circle {
  background-color: hsl(210, 95%, 23%);
}

.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  color: white;
  background-color: hsl(0, 0%, 73%);
  border: 3px solid hsl(0, 0%, 98%);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}
.step-circle i {
  font-size: 1rem;
  color: inherit;
}

.step-label {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-top: 0.125rem;
  margin-bottom: 0;
}

.payment-step {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}
.payment-step p:has(a) {
  margin-bottom: 0;
}
.payment-step button {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  opacity: 0.7;
}

.skeleton-text {
  max-width: 400px;
  height: 1.25rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.skeleton-text-short {
  max-width: 140px;
  margin-top: 2.75rem;
}
.skeleton-text:last-of-type {
  height: 0.9rem;
  max-width: 230px;
  margin-bottom: 0;
}

.skeleton-block {
  max-width: 350px;
  height: 2.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.skeleton-heading {
  max-width: 450px;
  height: 2.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

@keyframes skeleton-loading {
  from {
    background-color: var(--skeleton-dark);
  }
  to {
    background-color: var(--skeleton-light);
  }
}
.pay-online-controls {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 2rem;
}
.pay-online-controls-container {
  flex: 3;
  padding: 1.5rem;
  margin-bottom: 3rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
}

.card-divider {
  width: 100%;
}

#cmdPay {
  width: calc(100% - 2rem);
  margin-bottom: 1rem;
}

#dialog-policylookup img {
  width: 370px;
  max-width: 100%;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

#pay-online {
  display: grid;
  gap: 2rem 6rem;
  grid-template-columns: 1fr;
  grid-template: "policy-details" "card-details" "payment-terms";
}

.pay-online-custinfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: policy-details;
}

.pay-online-cardinfo {
  grid-area: card-details;
  max-width: 370px;
  margin: 0 auto;
}

.pay-online-legal {
  grid-area: payment-terms;
}
.pay-online-legal a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.card-content:has(#payway-credit-card) {
  padding: 0;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#payway-credit-card {
  display: flex;
  justify-content: center;
  min-height: 226px;
  margin-bottom: 0;
}

#confirmation-grid {
  display: grid;
  justify-items: center;
  gap: 2rem 6rem;
  grid-template-columns: 1fr;
  grid-template: "confirmation-details" "receipt-details" "receipt-form";
}

.confirmation-details {
  grid-area: confirmation-details;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template: "status-icon" "status-title" "status-message" "status-errormessage";
}

.payment-status-indicator {
  grid-area: status-icon;
  background-color: hsl(from var(--blue) h s l/10%);
  padding: 0.75rem;
  border-radius: 3rem;
  width: fit-content;
}

.payment-status-indicator-success {
  background-color: hsl(from var(--alert-success) h s l/10%);
}

.payment-status-indicator-failed {
  background-color: hsl(from var(--alert-critical) h s l/10%);
}

#payment-status-icon {
  font-size: 2.5rem;
}

.payment-status-icon-success {
  color: var(--alert-success);
}

.payment-status-icon-failed {
  color: var(--alert-critical);
}

#payment-status-title {
  grid-area: status-title;
  margin-bottom: 0;
}

#payment-status-message {
  grid-area: status-message;
}

#payment-status-errormessage {
  grid-area: status-errormessage;
  margin-bottom: 0;
}

#receipt-form {
  grid-area: receipt-form;
}

.receipt-details {
  grid-area: receipt-details;
  width: 100%;
}

#receipt-visualiser {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#receipt-visualiser .card-content {
  width: 100%;
}
#receipt-visualiser hr {
  width: 100%;
  margin: 1.5rem 0;
}
#receipt-visualiser h3 {
  margin-bottom: 1rem;
}
#receipt-visualiser .receipt-gst {
  text-align: right;
  color: hsl(0, 0%, 50%);
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
  font-size: 0.9rem;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}
.receipt-line p {
  margin: 0;
}
.receipt-line p:nth-child(1) {
  color: hsl(0, 0%, 50%);
}
.receipt-line p:nth-child(2) {
  font-weight: bold;
}
.receipt-line-large p:nth-child(2) {
  font-size: 1.25rem;
}
.receipt-line:nth-of-type(5) p {
  margin-bottom: 0;
}
.receipt-line-pill .pill {
  padding: 0.25rem 0.85rem;
  border-radius: 1rem;
}
.receipt-line-pill .pill-paid {
  background-color: hsl(from var(--alert-success) h s l/10%);
  color: var(--alert-success);
}
.receipt-line-pill .pill-declined {
  background-color: hsl(from var(--alert-critical) h s l/10%);
  color: var(--alert-critical);
}

.receipt-border {
  height: 0;
  width: 100%;
  border-bottom: 2px dashed hsl(0, 0%, 88%);
  margin: 1rem 0;
}

#payment-receipt-send {
  position: relative;
}

#payment-receipt-send-success {
  display: none;
  margin-top: 0.5rem;
}
#payment-receipt-send-success p {
  margin: 0;
}

#payment-receipt-send-failed, #payment-receipt-invalidemail {
  display: none;
  margin-top: 0.5rem;
  color: hsl(4, 90%, 58%);
}
#payment-receipt-send-failed p, #payment-receipt-invalidemail p {
  margin: 0;
}

#payment-step-loading {
  display: block;
}

#payment-step-loading, #payment-step-1 {
  max-width: 800px;
}

#payment-step-processing {
  display: block;
}

#payment-step-processing {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  -moz-backdrop-filter: saturate(180%) blur(20px);
  opacity: 0;
  transition: ease all 0.2s;
}

.payment-processing-container {
  width: 100%;
  max-width: 550px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.payment-processing-container i {
  font-size: 2.5rem;
  color: hsl(210, 95%, 33%);
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 550px) {
  .pay-online-controls {
    flex-direction: row;
  }
  .pay-online-controls button {
    margin-top: calc(1.125rem + 2px);
    margin-bottom: 0;
  }
  #cmdPay, #ApplePay, #GooglePay {
    width: calc(370px - 2rem);
  }
  .receipt-details {
    width: 370px;
  }
}
@media screen and (min-width: 830px) {
  .payment-progress-container progress {
    height: 0.75rem;
    top: 35px;
  }
  .step-circle {
    width: 3.5rem;
    height: 3.5rem;
  }
  .step-circle i {
    font-size: 1.5rem;
    color: inherit;
  }
  .step-label {
    font-size: 1.125rem;
  }
  #pay-online {
    grid-template-columns: 3fr 2fr;
    grid-template: "policy-details card-details" "payment-terms card-details";
  }
  .pay-online-custinfo {
    align-items: flex-start;
  }
  #lblCustomerBalance {
    margin-bottom: 2.5rem;
  }
  #confirmation-grid {
    gap: 1rem 6rem;
    justify-items: left;
    grid-template: "confirmation-details receipt-details" "receipt-form receipt-details";
    grid-template-columns: 2fr 1fr;
    grid-template-rows: min-content 1fr;
  }
  .confirmation-details {
    gap: 1rem;
    justify-items: left;
    align-items: center;
    grid-template: "status-icon status-title" "status-message status-message" "status-errormessage status-errormessage";
    grid-template-columns: 65px 1fr;
    grid-template-rows: min-content auto;
  }
}
@media (prefers-color-scheme: dark) {
  .step-circle {
    border-color: hsl(206, 9%, 15%);
  }
  #lblPolicyLookupResponseSearch, #payment-receipt-send-sending {
    color: hsl(206, 80%, 53%);
  }
  .card-divider p {
    background-color: hsl(206, 9%, 15%);
  }
  .payment-button:disabled {
    background-color: hsl(206, 9%, 10%);
  }
  #cmdPay:disabled, #ApplePay:disabled, #GooglePay:disabled {
    color: hsl(0, 0%, 50%);
    background-color: hsl(0, 0%, 0%);
    cursor: not-allowed;
  }
  #cmdPay:not([disabled]), #ApplePay:not([disabled]), #GooglePay:not([disabled]) {
    cursor: pointer;
  }
  #payment-step-processing {
    background-color: hsl(from var(--black) h s l/25%);
  }
  #policy-loading-skeleton {
    background-color: hsl(206, 9%, 10%);
  }
  @keyframes skeleton-loading {
    from {
      background-color: hsl(0, 0%, 0%);
    }
    to {
      background-color: hsl(206, 9%, 10%);
    }
  }
}
.fa-duotone.fa-home-heart {
  margin-right: 20px;
}

.fa-duotone.fa-caravan {
  margin-right: 20px;
}

.fa-duotone.fa-car {
  margin-right: 20px;
}

.pds-disclaimer {
  font-size: 10pt;
  color: hsl(214, 7%, 19%);
}

#sponsorship-form-section .section-container {
  max-width: 780px;
}
#sponsorship-form-section iframe {
  border: 0;
  width: 100%;
  height: calc(100% - 4rem);
  min-height: 1750px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 16px;
}

#glenn-mcgrath-form-section .section-container {
  max-width: 780px;
}
#glenn-mcgrath-form-section iframe {
  border: 0;
  width: 100%;
  height: calc(100% - 4rem);
  min-height: 713px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 16px;
}

#sponsorship-terms-section p, #sponsorship-terms-section li {
  font-size: 0.8rem;
}

@media only screen and (min-width: 630px) {
  #sponsorship-form-section iframe {
    min-height: 1240px;
    padding: 3rem;
  }
  #glenn-mcgrath-form-section iframe {
    min-height: 691px;
    padding: 3rem;
  }
}
@media (prefers-color-scheme: dark) {
  #sponsorship-form-section iframe, #glenn-mcgrath-form-section iframe {
    background-color: #000;
    color: #fff;
  }
}
@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: 0.2s;
}

:root {
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  --white-dark: hsl(0, 0%, 96%);
  --grey-verylight: hsl(0, 0%, 88%);
  --grey-light: hsl(0, 0%, 73%);
  --grey-medium: hsl(0, 0%, 45%);
  --grey: hsl(214, 7%, 19%);
  --grey-dark: hsl(206, 9%, 15%);
  --grey-verydark: hsl(206, 9%, 10%);
  --blue: hsl(210, 95%, 33%);
  --blue-light: hsl(206, 80%, 53%);
  --pdf: hsl(0, 100%, 50%);
  --star: hsl(43, 98%, 53%);
  --alert-critical: hsl(4, 90%, 58%);
  --alert-warning: hsl(36, 100%, 50%);
  --alert-information: hsl(206, 80%, 53%);
  --alert-success: hsl(158, 95%, 34%);
  --skeleton-light: hsl(0, 0%, 93%);
  --skeleton-dark: hsl(0, 0%, 76%);
  --font-weight-bold: 800;
  --font-weight-semi-bold: 700;
}

:root.has-modal {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  position: relative;
  scroll-padding-top: 108px;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: hsl(0, 0%, 98%);
}

[hidden] {
  display: none !important;
}

h1 {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.7rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0;
  margin-bottom: 0.5rem;
  line-height: 1.3rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.subtitle {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: hsl(214, 7%, 19%);
}

p {
  margin: 0;
  margin-bottom: 1rem;
  line-height: 1.3rem;
}

blockquote {
  margin: 0;
  margin-left: 2rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.5em;
}
blockquote::before, blockquote::after {
  font-size: 2em;
  font-weight: bold;
  color: var(--blue);
  position: relative;
}
blockquote::before {
  content: "“";
  margin-right: 0.5em;
  top: 0.2em;
}
blockquote::after {
  content: "”";
  margin-left: 0.5em;
  top: 0.7em;
}

a {
  color: hsl(210, 95%, 33%);
}
a:hover {
  color: hsl(210, 95%, 43%);
  text-decoration: underline;
}

ul {
  list-style: none;
}

ol {
  margin-left: 1.125rem;
}
ol li {
  margin-bottom: 0.5rem;
}

.dot-point {
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 1rem;
}
.dot-point li {
  line-height: 1.5rem;
}

.check-list {
  padding-left: 40px;
  margin: 2rem 0;
  position: relative;
}
.check-list li::before {
  position: absolute;
  left: 0.25rem;
  content: "\f00c";
  font-family: "Font Awesome 7 Pro";
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue);
}

.caption, .newsroom-post-container p.caption {
  color: var(--grey-medium);
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.content-pre {
  margin: 1rem 0rem;
}

#four-zero-four {
  padding: 80px 0px;
  text-align: center;
}
#four-zero-four h1 {
  font-size: 60pt;
  margin: 2rem 0rem 1.5rem 0rem;
}

.subheading {
  font-size: 20pt;
  font-weight: var(--font-weight-bold);
  margin-bottom: 2rem;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.content-block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
  margin-left: unset;
  margin-right: unset;
}

.bubble-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--white);
  border-radius: 1rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

@media only screen and (min-width: 550px) {
  html {
    scroll-padding-top: 154px;
  }
}
@media only screen and (min-width: 830px) {
  .hr-desktop-hidden {
    display: none;
  }
  h1 {
    font-size: 3.5rem;
    line-height: 3.6rem;
  }
  h2 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
  h3 {
    font-size: 1.5rem;
    line-height: 1.6rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --skeleton-light: hsl(0, 0%, 40%);
    --skeleton-dark: hsl(206, 9, 25);
  }
  body {
    color: hsl(0, 0%, 100%);
    background-color: hsl(206, 9%, 15%);
  }
  a {
    color: hsl(206, 80%, 53%);
  }
  .subtitle {
    color: hsl(0, 0%, 73%);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: unset !important;
  }
  ::view-transition-group(root) {
    animation-duration: 0s;
  }
}/*# sourceMappingURL=main.css.map */