/**
* Theme/Project Name
* ==================
* Design: PROJECT NAME
* Author: True Market
* Version 1.0
*
* Table of Contents
* =================
Custom Properties
Mixins
Fonts
Reset
Pages
Typography
Layouts
Components

*/
:root {
  --white: #fff;
  --black: #000;
  --blue-darkest: #18215e;
  --blue-dark: #0069a9;
  --blue: #01aaf6;
  --blue-light: #e5f6fe;
  --orange: #e98000;
  --gray-light: rgba(0, 0, 0, 0.527);
  --white-rgb: 255,255,255;
  --black-rgb: 0,0,0;
  --blue-darkest-rgb: 24,33,94;
  --blue-dark-rgb: 0,105,169;
  --blue-rgb: 1 ,170,246;
  --blue-light-rgb: 229,246,254;
  --orange-rgb: 233,128,0;
  --text-size-xs: 2rem;
  --text-size-sm: 2.4rem;
  --text-size-md: 3rem;
  --text-size-lg: 3.5rem;
  --text-size-xl: 4.2rem;
  --text-size-xxl: 7rem;
  --text-size-xxxl: 9rem;
  --font-family: "proxima-nova", "Arial", sans-serif;
  --font-weight-light: 300;
  --font-weight-bold: 700;
  --box-shadow: 5px 5px 20px 0px rgba(24,33,94,0.15);
  --border-radius-large: 45px;
  --border-radius-small: 20px;
  --max-width: 1500px;
  --blue-gradient: linear-gradient(0deg, rgba(0, 105, 169, 1) 0%, rgba(24, 33, 94, 1) 100%);
}

/* 
==========
Custom Font Families 
==========

Follow these steps to generate @font-face fonts
1. Go to assets/src/fonts and delete everything in there. Do the same in the dist folder
2. Go to https://www.fontsquirrel.com/tools/webfont-generator and upload the fonts that were provided to you
3. Download the kit
4. Extract the zip and copy the files in assets/src/fonts
5. Delete specimen_files folder, the generator_config.txt and all html files
6. Now simply change the urls and font names (font-family) in this file to match your new fonts. Remove unnecessary ones
7. Update main.scss with the new fonts
*/
/* ==========
FONTS ARE EMBEDDED VIA ADOBE IN header.php
==========

@font-face {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

 @font-face {
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*/
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-width: 300px;
}

body {
  font-size: var(--text-size-xs);
}

/*
* + h2,
* + h3,
* + h4,
* + h5 {
  margin-top: 4rem;
}
*/
h1,
h2,
.custom-search-form label,
#acf-form .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label,
h3,
h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 4rem;
}

p {
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 4rem;
}

a {
  text-decoration: none;
  color: var(--blue-dark);
}
a:hover, a:visited {
  cursor: pointer;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
button:hover, button:active, button:focus {
  cursor: pointer;
}

figure,
video,
iframe,
img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

.typography {
  font-family: var(--font-family);
  font-weight: var(--font-weight-light);
  color: var(--black);
}

h1,
h2,
.custom-search-form label,
#acf-form .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--blue-darkest);
  line-height: 1;
}

h1 {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  font-size: var(--text-size-xxxl);
}
@media screen and (max-width: 960px) {
  h1 {
    padding-bottom: 2rem;
    font-size: var(--text-size-xxl);
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 5rem;
  }
}
h1::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 12.5rem;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}

h2, .custom-search-form label, #acf-form .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label {
  font-size: var(--text-size-xl);
}

h3 {
  font-size: var(--text-size-lg);
}

h4 {
  font-size: var(--text-size-md);
}

.landing-home {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 13rem 17rem 8rem 17rem;
}
@media screen and (max-width: 1700px) {
  .landing-home {
    padding-top: 8rem;
    padding-left: 9rem;
    padding-right: 20rem;
  }
}
@media screen and (max-width: 1300px) {
  .landing-home {
    flex-direction: column;
    padding-top: 4rem;
    padding-right: 25rem;
  }
}
@media screen and (max-width: 1100px) {
  .landing-home {
    padding-bottom: 17rem;
  }
}
@media screen and (max-width: 800px) {
  .landing-home {
    padding-top: 2rem;
    padding-right: 9rem;
    padding-bottom: 20rem;
  }
}
@media screen and (max-width: 680px) {
  .landing-home {
    padding-top: 4rem;
    padding-bottom: 17rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .landing-home {
    padding-bottom: 14rem;
  }
}
.landing-home .landing-home__title {
  width: 56%;
}
@media screen and (max-width: 1700px) {
  .landing-home .landing-home__title {
    width: 52%;
  }
}
@media screen and (max-width: 1300px) {
  .landing-home .landing-home__title {
    width: 100%;
  }
}
.landing-home .landing-home__title h1 {
  font-size: var(--text-size-xxl);
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .landing-home .landing-home__title h1 {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .landing-home .landing-home__title h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 360px) {
  .landing-home .landing-home__title h1 {
    font-size: var(--text-size-xl);
  }
}
@media screen and (max-width: 1300px) {
  .landing-home .landing-home__title h1 br {
    display: none;
  }
}
.landing-home .landing-home__title h1:after {
  display: none;
}
@keyframes animatedCircleH1 {
  0% {
    transform: rotate(20deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes animatedCircleH1-1300 {
  0% {
    transform: rotate(-65deg);
    opacity: 0;
  }
  100% {
    transform: rotate(-45deg);
    opacity: 1;
  }
}
.landing-home .landing-home__title h1:before {
  content: url("../../dist/images/icon-circle-main.svg");
  display: block;
  position: absolute;
  z-index: 1;
  top: -62%;
  right: 0;
  width: 78%;
  height: auto;
  animation-name: animatedCircleH1;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}
@media screen and (max-width: 1700px) {
  .landing-home .landing-home__title h1:before {
    top: -50%;
    width: 65%;
  }
}
@media screen and (max-width: 1300px) {
  .landing-home .landing-home__title h1:before {
    top: -13rem;
    right: -11rem;
    width: 39%;
    transform: rotate(-45deg);
    animation-name: animatedCircleH1-1300;
  }
}
@media screen and (max-width: 800px) {
  .landing-home .landing-home__title h1:before {
    display: none;
  }
}
.landing-home .landing-home__text {
  width: 40%;
  padding-left: 10rem;
}
@media screen and (max-width: 1700px) {
  .landing-home .landing-home__text {
    width: 43%;
  }
}
@media screen and (max-width: 1300px) {
  .landing-home .landing-home__text {
    width: 100%;
    padding-left: 0;
    padding-right: 15rem;
  }
}
@media screen and (max-width: 800px) {
  .landing-home .landing-home__text {
    padding-right: 0;
  }
}
.landing-home .landing-home__text p {
  font-size: var(--text-size-sm);
  margin-bottom: 0;
}
.landing-home .landing-home__scroll {
  position: absolute;
  z-index: 2;
  top: 17rem;
  right: 0;
  width: 3.3rem;
}
@media screen and (max-width: 1700px) {
  .landing-home .landing-home__scroll {
    top: 12rem;
    right: 9rem;
  }
}
@media screen and (max-width: 1300px) {
  .landing-home .landing-home__scroll {
    display: none;
  }
}
@keyframes animatedScrollLine {
  0% {
    height: 34.5rem;
  }
  50% {
    height: 29.5rem;
  }
  100% {
    height: 34.5rem;
  }
}
.landing-home .landing-home__scroll::before {
  content: "";
  display: block;
  width: 3px;
  height: 34.5rem;
  background: var(--blue);
  margin: 0 auto 2rem auto;
  animation-name: animatedScrollLine;
  animation-delay: 4s;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}
.landing-home .landing-home__scroll svg {
  width: 100%;
  height: auto;
  transition: all 0.25s ease-out;
}
@keyframes animatedScrollNub {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1.5rem);
    opacity: 0;
  }
}
.landing-home .landing-home__scroll svg circle {
  animation-name: animatedScrollNub;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.landing-home .landing-home__scroll:hover svg {
  transform: translateY(5px);
}

.landing-banner {
  position: relative;
  background: url("../../dist/images/bg-network@2x.jpg") no-repeat top center;
  background-size: cover;
  height: 580px;
  margin-top: -2rem;
}
@media screen and (max-width: 1700px) {
  .landing-banner {
    height: 480px;
  }
}
@media screen and (max-width: 1300px) {
  .landing-banner {
    height: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .landing-banner {
    height: 200px;
  }
}
@media screen and (max-width: 800px) {
  .landing-banner {
    height: 44vw;
  }
}
.landing-banner::before {
  content: url("../../dist/images/curve-1.svg");
  display: block;
  position: absolute;
  width: 102%;
  height: auto;
  top: 0;
  right: 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 500px) {
  .landing-banner::before {
    top: -2px;
  }
}
.landing-banner::after {
  content: url("../../dist/images/curve-2.svg");
  display: block;
  position: absolute;
  width: 102%;
  height: auto;
  bottom: -10px;
  right: 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 1100px) {
  .landing-banner::after {
    bottom: -7px;
  }
}

.home-section-1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: -29rem auto 0 auto;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1700px) {
  .home-section-1 {
    padding-left: 9rem;
    padding-right: 9rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1300px) {
  .home-section-1 {
    margin-top: -32rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-1 {
    flex-direction: column;
    margin-top: -32rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-1 {
    flex-direction: column;
    margin-top: -55vw;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 680px) {
  .home-section-1 {
    padding-bottom: 4rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.home-section-1 .home-section-1__image {
  width: 45%;
}
@media screen and (max-width: 1300px) {
  .home-section-1 .home-section-1__image {
    order: 2;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-1 .home-section-1__image {
    order: 1;
  }
}
@media screen and (max-width: 960px) {
  .home-section-1 .home-section-1__image {
    width: 55%;
  }
}
@media screen and (max-width: 800px) {
  .home-section-1 .home-section-1__image {
    width: 85%;
  }
}
@media screen and (max-width: 800px) {
  .home-section-1 .home-section-1__image {
    width: 85%;
  }
}
@media screen and (max-width: 500px) {
  .home-section-1 .home-section-1__image {
    width: 100%;
  }
}
.home-section-1 .home-section-1__image .circleImage {
  padding: 0;
}
.home-section-1 .home-section-1__image .circleImage:after {
  display: none;
}
.home-section-1 .home-section-1__image .circleImage .circleImage-container {
  width: 100%;
}
.home-section-1 .home-section-1__image .circleImage .circleImage-container .icons {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 65%;
  height: auto;
}
.home-section-1 .home-section-1__text {
  width: 55%;
  padding-left: 15rem;
}
@media screen and (max-width: 1300px) {
  .home-section-1 .home-section-1__text {
    order: 1;
    padding-top: 10rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-1 .home-section-1__text {
    order: 2;
    width: 100%;
    padding-top: 6rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-1 .home-section-1__text {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .home-section-1 .home-section-1__text {
    padding-top: 0;
  }
}
.home-section-1 .home-section-1__text h2, .home-section-1 .home-section-1__text .custom-search-form label, .custom-search-form .home-section-1 .home-section-1__text label, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label,
.home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label,
.home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label,
.home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label,
.home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label,
.home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label {
  position: relative;
  margin-bottom: 20rem;
  font-size: var(--text-size-xxl);
  color: var(--white);
  padding-top: 4.7rem;
}
@media screen and (max-width: 1700px) {
  .home-section-1 .home-section-1__text h2, .home-section-1 .home-section-1__text .custom-search-form label, .custom-search-form .home-section-1 .home-section-1__text label, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label {
    padding-top: 5rem;
    font-size: 6rem;
  }
}
@media screen and (max-width: 1300px) {
  .home-section-1 .home-section-1__text h2, .home-section-1 .home-section-1__text .custom-search-form label, .custom-search-form .home-section-1 .home-section-1__text label, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label {
    margin-bottom: 18rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-section-1 .home-section-1__text h2, .home-section-1 .home-section-1__text .custom-search-form label, .custom-search-form .home-section-1 .home-section-1__text label, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label,
  .home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label {
    margin-bottom: 5rem;
    color: var(--blue-darkest);
  }
}
.home-section-1 .home-section-1__text h2::before, .home-section-1 .home-section-1__text .custom-search-form label::before, .custom-search-form .home-section-1 .home-section-1__text label::before, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label::before, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label::before,
.home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label::before,
.home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label::before,
#acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label::before,
.home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label::before,
#acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label::before,
.home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label::before,
.home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label::before,
#acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label::before {
  content: url("../../dist/images/icon-circle-home-first-title.svg");
  display: block;
  position: absolute;
  top: 0;
  left: -6.75rem;
  width: 13.5rem;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .home-section-1 .home-section-1__text h2::before, .home-section-1 .home-section-1__text .custom-search-form label::before, .custom-search-form .home-section-1 .home-section-1__text label::before, .home-section-1 .home-section-1__text #acf-form .acf-field-group > .acf-label > label::before, #acf-form .home-section-1 .home-section-1__text .acf-field-group > .acf-label > label::before,
  .home-section-1 .home-section-1__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .home-section-1 .home-section-1__text label::before,
  .home-section-1 .home-section-1__text #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .home-section-1 .home-section-1__text .acf-field-repeater > .acf-label > label::before,
  .home-section-1 .home-section-1__text #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .home-section-1 .home-section-1__text .acf-field-flexible-content > .acf-label > label::before,
  .home-section-1 .home-section-1__text #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .home-section-1 .home-section-1__text .acf-field-wysiwyg > .acf-label > label::before,
  .home-section-1 .home-section-1__text #acf-form div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .home-section-1 .home-section-1__text div[data-name=_post_title] > .acf-label > label::before {
    content: url("../../dist/images/icon-circle-home-first-title-small.svg");
    top: 1.6rem;
    left: -3.65rem;
    width: 4.5rem;
    transform: rotate(15deg);
  }
}
.home-section-1 .home-section-1__text h3 {
  font-size: var(--text-size-xl);
}

.home-section-2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 20rem;
}
@media screen and (max-width: 1700px) {
  .home-section-2 {
    padding-bottom: 10rem;
    padding-left: 9rem;
    padding-right: 9rem;
  }
}
@media screen and (max-width: 1300px) {
  .home-section-2 {
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .home-section-2 {
    padding-bottom: 17rem;
  }
}
@media screen and (max-width: 800px) {
  .home-section-2 {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .home-section-2 {
    padding-bottom: 12rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.home-section-2 .home-section-2__text {
  width: 27%;
  padding-top: 10rem;
  transform: translateX(10rem);
}
@media screen and (max-width: 1700px) {
  .home-section-2 .home-section-2__text {
    transform: translateX(5rem);
  }
}
@media screen and (max-width: 1300px) {
  .home-section-2 .home-section-2__text {
    width: 40%;
    padding-top: 4rem;
    transform: translateX(0);
  }
}
@media screen and (max-width: 800px) {
  .home-section-2 .home-section-2__text {
    width: 100%;
    padding-top: 0;
    order: 2;
  }
}
.home-section-2 .home-section-2__text .icon {
  position: relative;
  display: block;
  width: 9rem;
  height: auto;
  padding-top: 9rem;
  margin-bottom: 4rem;
}
.home-section-2 .home-section-2__text .icon img {
  width: 100%;
  height: auto;
}
.home-section-2 .home-section-2__text .icon::before {
  content: url("../../dist/images/icon-circle-home-second-title.svg");
  position: absolute;
  top: 0;
  left: -10.5rem;
  width: 29rem;
  height: auto;
}
@media screen and (max-width: 1700px) {
  .home-section-2 .home-section-2__text .icon::before {
    top: 2rem;
    left: -8.5rem;
    width: 24rem;
  }
}
@media screen and (max-width: 1300px) {
  .home-section-2 .home-section-2__text .icon::before {
    top: 3rem;
    left: 5.5rem;
    width: 10rem;
    transform: scale(-1, 1) rotate(-20deg);
  }
}
.home-section-2 .home-section-2__text h3 {
  font-size: var(--text-size-xl);
}
.home-section-2 .home-section-2__image {
  width: 73%;
}
@media screen and (max-width: 1700px) {
  .home-section-2 .home-section-2__image {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .home-section-2 .home-section-2__image {
    width: 100%;
    order: 1;
  }
}
.home-section-2 .home-section-2__image img {
  width: 100%;
  height: auto;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
  margin-top: 2rem;
}
.post-list.--team-members {
  grid-gap: 8rem 4rem;
}

@media screen and (max-width: 1400px) {
  .post-list.--team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .post-list.--team-members {
    grid-template-columns: 1fr;
  }
}
.page-404 {
  padding-bottom: 20rem;
}
@media screen and (max-width: 680px) {
  .page-404 {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .page-404 {
    padding-bottom: 0;
  }
}
.page-404 .landing .title h1 {
  max-width: 100%;
}

.single-article-forms .landing .title h1 {
  margin-bottom: 2rem;
}
.single-article-forms .landing .title p {
  left: 0;
  position: initial;
}
.single-article-forms .landing .title .text-block, .single-article-forms .landing .title #acf-form .acf-field-group > .acf-label > label, #acf-form .single-article-forms .landing .title .acf-field-group > .acf-label > label,
.single-article-forms .landing .title #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .single-article-forms .landing .title label,
.single-article-forms .landing .title #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .single-article-forms .landing .title .acf-field-repeater > .acf-label > label,
.single-article-forms .landing .title #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .single-article-forms .landing .title .acf-field-flexible-content > .acf-label > label,
.single-article-forms .landing .title #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .single-article-forms .landing .title .acf-field-wysiwyg > .acf-label > label,
.single-article-forms .landing .title #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .single-article-forms .landing .title div[data-name=_post_title] > .acf-label > label {
  margin-bottom: 4rem;
  max-width: 600px;
}

#acf-form {
  margin: 10rem 0 0;
  grid-column: span 2;
}
#acf-form .acf-field .acf-label {
  margin-bottom: 2rem;
}
#acf-form * {
  border: none;
}
#acf-form .mce-panel {
  border: 1px solid lightgray;
}
#acf-form .acf-checkbox-list > li > label,
#acf-form .acf-radio-list > li > label {
  cursor: pointer;
}
#acf-form .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label {
  margin-bottom: 4rem;
}
#acf-form .acf-field-group > .acf-label > label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
#acf-form .acf-field-repeater > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label::before {
  content: url("../../dist/images/icon-circle-h2.svg");
  display: block;
  position: absolute;
  top: -4rem;
  left: -5.75rem;
  width: 10rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  #acf-form .acf-field-group > .acf-label > label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label::before {
    content: url("../../dist/images/icon-circle-h2-small.svg");
    top: -2.6rem;
    left: -2.6rem;
    width: 4rem;
  }
}
#acf-form .acf-fields {
  border: none;
}
#acf-form .acf-field {
  border: none;
  padding: 0;
}
#acf-form .acf-input-wrap > input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input-wrap > input[type=email],
#acf-form .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input > textarea,
#acf-form .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] {
  padding: 1.5rem;
  font-size: var(--text-size-sm);
}
#acf-form .acf-input-wrap {
  overflow: visible;
}
#acf-form div[data-name=intellectual_property_rights] ul {
  margin: 0;
}
#acf-form .acf-field-text .acf-label,
#acf-form .acf-field-radio .acf-label,
#acf-form .acf-field-email .acf-label,
#acf-form .acf-field-textarea .acf-label,
#acf-form .acf-field-wysiwyg .acf-label {
  display: none;
}
#acf-form .acf-field-group,
#acf-form .acf-field-flexible-content,
#acf-form .acf-field-repeater,
#acf-form .acf-field--post-title,
#acf-form .acf-field-wysiwyg {
  margin-bottom: 6rem;
}
#acf-form input[type=submit], #acf-form .acf-input-wrap > input[type=submit][type=text],
#acf-form .acf-input-wrap > input[type=submit][type=email],
#acf-form .acf-input > textarea[type=submit],
#acf-form .acf-radio-list input[type=submit][type=text] {
  all: unset;
}
#acf-form th label {
  color: var(--blue-darkest);
  font-size: var(--text-size-sm);
}
#acf-form .acf-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#acf-form .acf-checkbox-list li label {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
#acf-form .acf-checkbox-list li label input, #acf-form .acf-checkbox-list li label .acf-input-wrap > input[type=text],
#acf-form .acf-checkbox-list li label .acf-input-wrap > input[type=email],
#acf-form .acf-checkbox-list li label .acf-input > textarea,
#acf-form .acf-checkbox-list li label .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-checkbox-list li label input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  height: 15px;
  width: 15px;
  background: white;
  border-radius: 0;
}
#acf-form .acf-checkbox-list li label input::before, #acf-form .acf-checkbox-list li label .acf-input-wrap > input[type=text]::before,
#acf-form .acf-checkbox-list li label .acf-input-wrap > input[type=email]::before,
#acf-form .acf-checkbox-list li label .acf-input > textarea::before,
#acf-form .acf-checkbox-list li label .acf-radio-list input[type=text]::before,
#acf-form .acf-radio-list .acf-checkbox-list li label input[type=text]::before {
  line-height: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  content: url("../../dist/images/form-checkbox-inactive.svg");
  display: block;
  background-color: none;
  position: relative;
}
#acf-form .acf-checkbox-list li label input:checked::before,
#acf-form .acf-checkbox-list li label .acf-input > textarea:checked::before {
  content: url("../../dist/images/form-checkbox-active.svg");
}
#acf-form .categorychecklist-holder {
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
  max-height: none;
}
#acf-form .acf-fc-layout-handle {
  font-size: var(--text-size-sm);
}
#acf-form .acf-radio-list {
  display: flex;
  flex-direction: column;
}
#acf-form .acf-radio-list li {
  margin-bottom: 1.2rem;
}
#acf-form .acf-radio-list li label {
  display: flex;
  font-size: var(--text-size-xs);
}
#acf-form .acf-radio-list li label > input,
#acf-form .acf-radio-list li label.acf-input-wrap > input[type=email],
#acf-form .acf-radio-list li label.acf-input > textarea,
#acf-form .acf-radio-list li label > input[type=text] {
  all: unset;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 6px;
}
#acf-form div[data-name=clinical_case] > .acf-label,
#acf-form div[data-name=teaching_resource] > .acf-label {
  display: none;
}
#acf-form div[data-name=additional_details] > .acf-label > label {
  display: none;
}
#acf-form div[data-name=additional_details] > .acf-input .acf-label {
  display: block;
}
#acf-form div[data-name=additional_details] > .acf-input > .acf-fields > div {
  margin-bottom: 6rem;
}
#acf-form .acf-field-radio input[value=other],
#acf-form .acf-field-radio .acf-input > textarea[value=other] {
  position: relative;
  margin-bottom: 10px !important;
}
#acf-form .acf-field-radio input[value=other]::before,
#acf-form .acf-field-radio .acf-input > textarea[value=other]::before {
  content: "Other";
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: absolute;
  top: -5px;
  left: 20px;
}
#acf-form input[disabled], #acf-form .acf-input-wrap > input[disabled][type=text],
#acf-form .acf-input-wrap > input[disabled][type=email],
#acf-form .acf-input > textarea[disabled],
#acf-form .acf-radio-list input[disabled][type=text] {
  display: none;
}
#acf-form div[data-name=article_type] {
  display: none;
}
#acf-form div[data-name=_post_title] > .acf-label {
  display: block;
}
#acf-form div[data-name=tags] .acf-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#acf-form div[data-name=tags] .acf-fields .acf-label label {
  font-weight: var(--font-weight-bold);
  font-size: var(--text-size-sm);
  color: var(--blue-darkest);
}
#acf-form .acf-notice.-error p {
  font-size: var(--text-size-sm);
}
#acf-form .acf-notice.-error.-dismiss {
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#acf-form .acf-notice-dismiss {
  position: relative;
  top: 0;
  right: 0;
  height: var(--text-size-sm);
  width: var(--text-size-sm);
}
#acf-form .acf-notice-dismiss::before {
  font-size: var(--text-size-sm);
}
#acf-form .acf-flexible-content.-empty .no-value-message {
  border: #ccc dashed 2px;
}
#acf-form .acf-basic-uploader > input, #acf-form .acf-input-wrap.acf-basic-uploader > input[type=text],
#acf-form .acf-input-wrap.acf-basic-uploader > input[type=email],
#acf-form .acf-input.acf-basic-uploader > textarea,
#acf-form .acf-radio-list .acf-basic-uploader > input[type=text] {
  all: unset;
  font-weight: var(--font-weight-light);
  font-size: var(--text-size-sm);
}
#acf-form div[data-name=post_resource] .layout {
  padding: 2rem;
  border: none;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-large);
}
#acf-form div[data-name=post_resource] .acf-fc-layout-controls {
  top: 2rem;
  right: 2rem;
}
#acf-form div[data-name=post_resource] .button, #acf-form div[data-name=post_resource] input[type=submit],
#acf-form div[data-name=post_resource] .acf-input > textarea[type=submit] {
  z-index: 0;
}
#acf-form div[data-name=post_resource] input[type=file],
#acf-form div[data-name=post_resource] .acf-input > textarea[type=file] {
  width: 100%;
}
#acf-form div[data-name=post_resource] .acf-icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
}
#acf-form div[data-name=post_resource] .acf-icon::before {
  font-size: var(--text-size-xs);
}
#acf-form #draft {
  position: fixed;
  bottom: 10rem;
  left: calc(50% + 410px);
  z-index: 10;
  padding: 2rem 4rem;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-large);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  overflow: hidden;
}
#acf-form #draft::before {
  display: none;
}
#acf-form #draft::after {
  position: relative;
  top: 0;
}
@media screen and (max-width: 1700px) {
  #acf-form #draft {
    right: 8rem;
    left: unset;
  }
}
@media screen and (max-width: 1100px) {
  #acf-form div[data-name=tags] .acf-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 680px) {
  #acf-form div[data-name=tags] .acf-fields {
    grid-template-columns: repeat(1, 1fr);
  }
}

#wp-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
#wp-link > * {
  width: 100%;
}
#wp-link-wrap {
  border-radius: var(--border-radius-small);
  height: -moz-fit-content;
  height: fit-content;
}
#wp-link #link-modal-title {
  font-size: var(--text-size-sm);
}
#wp-link #wp-link-close {
  top: 2rem;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wp-link #wp-link-close .screen-reader-text {
  visibility: hidden;
  width: 0;
  height: 0;
}
#wp-link > h1 {
  padding: 2rem;
}
#wp-link > div#link-selector {
  position: relative;
  top: 0;
  padding: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
#wp-link #link-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
#wp-link #link-options > * {
  margin: 0;
  width: 100%;
}
#wp-link #link-options > div > label > span {
  max-width: none;
  width: 100%;
  text-align: left;
}
#wp-link #link-options > div > label > input,
#wp-link #acf-form #link-options > div > label.acf-input > textarea,
#acf-form #wp-link #link-options > div > label.acf-input > textarea {
  width: 100%;
  margin: 0;
}
#wp-link label span,
#wp-link .link-target > label > span {
  color: var(--blue-darkest);
  font-size: var(--text-size-xs);
}
#wp-link #link-options > .link-target > label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: var(--text-size-xs);
  color: var(--blue-darkest);
  max-width: none;
}
#wp-link #link-options > .link-target > label > span:first-child {
  display: none;
}
#wp-link #link-options > .link-target > label > input,
#wp-link #acf-form #link-options > .link-target > label.acf-input > textarea,
#acf-form #wp-link #link-options > .link-target > label.acf-input > textarea {
  box-shadow: none;
  width: 2rem;
  height: 2rem;
  margin: 0 1rem 0 0;
}
#wp-link * {
  max-width: none;
}
#wp-link #wplink-link-existing-content {
  display: none;
}
#wp-link #search-panel {
  display: none;
}
#wp-link #most-recent-results {
  display: none;
}
#wp-link > div.submitbox {
  position: relative;
}

.amendment-form {
  grid-column: 1/span 2;
}

.acf-media-modal .screen-reader-text {
  opacity: 0;
  pointer-events: none;
}
.acf-media-modal h1::after {
  display: none;
}
.acf-media-modal button::before, .acf-media-modal button::after {
  display: none;
}

.acf-file-uploader .hide-if-value p {
  display: flex;
  flex-direction: column;
}
.acf-file-uploader .hide-if-value p a {
  width: -moz-fit-content;
  width: fit-content;
}

.container {
  max-width: var(--max-width);
  padding: 4rem 2rem;
  min-height: 400px;
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 2rem;
  }
}

.container--center {
  margin: 0 auto;
}

.flexible-content {
  padding: 12rem 0 20rem 0;
  max-width: var(--max-width);
  min-height: 400px;
  margin: 0 auto;
}
.flexible-content.--with-searchbar {
  padding-top: 2rem;
}
@media screen and (max-width: 1700px) {
  .flexible-content {
    padding-left: 9rem;
    padding-right: 9rem;
  }
}
@media screen and (max-width: 1300px) {
  .flexible-content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 960px) {
  .flexible-content {
    padding-bottom: 18rem;
  }
}
@media screen and (max-width: 800px) {
  .flexible-content {
    padding-top: 12rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 680px) {
  .flexible-content {
    padding-bottom: 10rem;
  }
}
.flexible-content a.button {
  margin-bottom: 4rem;
}
.flexible-content--sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10rem;
}
@media screen and (max-width: 1300px) {
  .flexible-content--sidebar {
    grid-gap: 6rem;
  }
}
.flexible-content--sidebar .flexible-content__container {
  grid-column: span 2;
}
.flexible-content--sidebar .flexible-content__container > .is-search-form {
  margin-bottom: 12rem;
}
@media screen and (max-width: 960px) {
  .flexible-content--sidebar .flexible-content__container {
    grid-column: initial;
  }
}
.flexible-content--sidebar .post-list {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 680px) {
  .flexible-content--sidebar .post-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .flexible-content--sidebar {
    grid-template-columns: 1fr;
  }
}

@media print {
  .flexible-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.landing .title {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 9rem;
}
.landing .title.--article-forms {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width);
}
@media screen and (max-width: 1700px) {
  .landing .title.--article-forms {
    padding-right: 9rem;
  }
}
@media screen and (max-width: 1300px) {
  .landing .title.--article-forms {
    flex-direction: column;
  }
}
.landing .title.--article-forms > h1:after {
  display: none;
}
.landing .title.--article-forms > p {
  top: 0;
  left: 0;
  max-width: 600px;
}
@media screen and (max-width: 1300px) {
  .landing .title.--article-forms > p {
    max-width: none;
  }
}
@media screen and (max-width: 1700px) {
  .landing .title {
    padding-top: 9rem;
    padding-left: 9rem;
  }
}
@media screen and (max-width: 1300px) {
  .landing .title {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .landing .title {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .landing .title {
    padding-bottom: 8rem;
    padding-right: 9rem;
  }
}
@media screen and (max-width: 680px) {
  .landing .title {
    padding-left: 5rem;
    padding-right: 5rem;
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 500px) {
  .landing .title {
    padding-top: 4rem;
    padding-bottom: 14rem;
  }
}
.landing .title h1 {
  max-width: 50%;
}
@media screen and (max-width: 800px) {
  .landing .title h1 {
    max-width: 100%;
  }
}
.landing .title p {
  position: relative;
  top: -3.4rem;
  left: 17rem;
  max-width: 400px;
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .landing .title p {
    max-width: 300px;
  }
}
@media screen and (max-width: 960px) {
  .landing .title p {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .landing .title p {
    max-width: 50%;
  }
}
@media screen and (max-width: 680px) {
  .landing .title p {
    max-width: 100%;
  }
}
.landing .banner {
  position: relative;
  background: url("../../dist/images/bg-network@2x.jpg") no-repeat top center;
  background-size: cover;
  height: 240px;
  margin-top: -2rem;
}
.landing .banner.--no-img {
  background: none;
  height: 20px;
  transform: translateY(-120px);
}
.landing .banner.--no-img::before, .landing .banner.--no-img::after {
  display: none;
}
@media screen and (max-width: 1700px) {
  .landing .banner {
    height: 200px;
  }
}
@media screen and (max-width: 1300px) {
  .landing .banner {
    height: 175px;
  }
}
@media screen and (max-width: 1100px) {
  .landing .banner {
    height: 130px;
  }
}
@media screen and (max-width: 960px) {
  .landing .banner {
    height: 110px;
  }
}
.landing .banner::before {
  content: url("../../dist/images/curve-1.svg");
  display: block;
  position: absolute;
  width: 101%;
  height: auto;
  top: 0;
  right: 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 500px) {
  .landing .banner::before {
    top: -2px;
  }
}
.landing .banner::after {
  content: url("../../dist/images/curve-2.svg");
  display: block;
  position: absolute;
  width: 101%;
  height: auto;
  bottom: -10px;
  right: 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 1100px) {
  .landing .banner::after {
    bottom: -7px;
  }
}
.landing .banner .banner__container {
  display: flex;
  justify-content: flex-end;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (max-width: 1700px) {
  .landing .banner .banner__container {
    padding-right: 9rem;
  }
}
@media screen and (max-width: 500px) {
  .landing .banner .banner__container {
    padding-right: 0;
  }
}
.landing .banner .banner__container .banner__image {
  position: relative;
  z-index: 2;
  width: 40%;
  margin-top: -20rem;
}
.landing .banner .banner__container .banner__image.--with-searchbar {
  width: 25%;
}
@media screen and (max-width: 800px) {
  .landing .banner .banner__container .banner__image {
    margin-top: -8rem;
  }
}
@media screen and (max-width: 680px) {
  .landing .banner .banner__container .banner__image {
    width: 220px;
    margin-top: -6rem;
  }
}
@media screen and (max-width: 500px) {
  .landing .banner .banner__container .banner__image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media print {
  .banner {
    display: none;
  }
  #query-monitor-main {
    display: none;
  }
  .landing .title {
    padding-top: 0;
  }
}
.card {
  background-color: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--box-shadow);
  width: 100%;
  transition: all 0.25s ease-out;
}
.card--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__image {
  position: relative;
  width: 100%;
  padding-bottom: 85%;
  background-color: var(--blue-light);
}
.card__image img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  width: 100%;
}

.card__body {
  padding: 4rem;
}
.card__body *:last-child {
  margin-bottom: 0;
}
.card__body h3 {
  margin-bottom: 1.5rem;
  transition: all 0.25s ease-out;
}
.card__body h4 {
  font-size: var(--text-size-sm);
  font-weight: var(--font-weight-light);
  color: var(--orange);
}

.card__category {
  margin: 0 0 1rem;
  display: inline-block;
}

.card__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin: 0 0 1rem;
}

.card__button {
  display: inline-block;
}

.card--rounded {
  border-radius: 5px;
  box-shadow: 0 2px 5px var(--color-black);
}

.card2 {
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-large);
}
.card2 > * {
  padding: 45px 55px;
}
.card2 .card2-header {
  background: var(--blue-gradient);
  border-top-left-radius: var(--border-radius-large);
  border-top-right-radius: var(--border-radius-large);
}
.card2 .card2-header > h3 {
  font-size: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.card2 .card2-header > h3:after {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--orange);
}
.card2 .card2-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer {
  text-align: center;
}

.footer__cta__container {
  position: relative;
  z-index: 0;
  background: var(--blue-light);
}
.footer__cta__container::before {
  content: url("../../dist/images/curve-1.svg");
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  right: 0;
  transition: all 0.25s ease-out;
}

.footer__cta {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 14rem 0 14rem 0;
}
@media screen and (max-width: 1300px) {
  .footer__cta {
    padding-left: 10rem;
    padding-right: 10rem;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1100px) {
  .footer__cta {
    padding-top: 14rem;
  }
}
@media screen and (max-width: 960px) {
  .footer__cta {
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__cta {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.footer__cta .footer__image {
  width: 50%;
  margin-top: -20rem;
}
@media screen and (max-width: 1700px) {
  .footer__cta .footer__image {
    width: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .footer__cta .footer__image {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer__cta .footer__image {
    width: 35%;
  }
}
@media screen and (max-width: 960px) {
  .footer__cta .footer__image {
    width: 60%;
    margin-top: -25rem;
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 680px) {
  .footer__cta .footer__image {
    margin-top: -20rem;
    margin-bottom: 5rem;
  }
}
.footer__cta .footer__text {
  width: 50%;
  text-align: center;
  padding-left: 13rem;
}
@media screen and (max-width: 1700px) {
  .footer__cta .footer__text {
    width: 60%;
    padding-right: 7rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer__cta .footer__text {
    width: 65%;
  }
}
@media screen and (max-width: 1300px) {
  .footer__cta .footer__text {
    padding-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .footer__cta .footer__text {
    width: 100%;
    padding-left: 0;
  }
}
.footer__cta .footer__text h2, .footer__cta .footer__text .custom-search-form label, .custom-search-form .footer__cta .footer__text label, .footer__cta .footer__text #acf-form .acf-field-group > .acf-label > label, #acf-form .footer__cta .footer__text .acf-field-group > .acf-label > label,
.footer__cta .footer__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__cta .footer__text label,
.footer__cta .footer__text #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .footer__cta .footer__text .acf-field-repeater > .acf-label > label,
.footer__cta .footer__text #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .footer__cta .footer__text .acf-field-flexible-content > .acf-label > label,
.footer__cta .footer__text #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .footer__cta .footer__text .acf-field-wysiwyg > .acf-label > label,
.footer__cta .footer__text #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .footer__cta .footer__text div[data-name=_post_title] > .acf-label > label {
  position: relative;
  padding-bottom: 4rem;
  font-size: var(--text-size-xxl);
}
@media screen and (max-width: 680px) {
  .footer__cta .footer__text h2, .footer__cta .footer__text .custom-search-form label, .custom-search-form .footer__cta .footer__text label, .footer__cta .footer__text #acf-form .acf-field-group > .acf-label > label, #acf-form .footer__cta .footer__text .acf-field-group > .acf-label > label,
  .footer__cta .footer__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__cta .footer__text label,
  .footer__cta .footer__text #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .footer__cta .footer__text .acf-field-repeater > .acf-label > label,
  .footer__cta .footer__text #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .footer__cta .footer__text .acf-field-flexible-content > .acf-label > label,
  .footer__cta .footer__text #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .footer__cta .footer__text .acf-field-wysiwyg > .acf-label > label,
  .footer__cta .footer__text #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .footer__cta .footer__text div[data-name=_post_title] > .acf-label > label {
    margin-top: 3rem;
    font-size: var(--text-size-xl);
  }
}
.footer__cta .footer__text h2::after, .footer__cta .footer__text .custom-search-form label::after, .custom-search-form .footer__cta .footer__text label::after, .footer__cta .footer__text #acf-form .acf-field-group > .acf-label > label::after, #acf-form .footer__cta .footer__text .acf-field-group > .acf-label > label::after,
.footer__cta .footer__text #acf-form div[data-name=additional_details] > .acf-input .acf-label label::after,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__cta .footer__text label::after,
.footer__cta .footer__text #acf-form .acf-field-repeater > .acf-label > label::after,
#acf-form .footer__cta .footer__text .acf-field-repeater > .acf-label > label::after,
.footer__cta .footer__text #acf-form .acf-field-flexible-content > .acf-label > label::after,
#acf-form .footer__cta .footer__text .acf-field-flexible-content > .acf-label > label::after,
.footer__cta .footer__text #acf-form .acf-field-wysiwyg > .acf-label > label::after,
#acf-form .footer__cta .footer__text .acf-field-wysiwyg > .acf-label > label::after,
.footer__cta .footer__text #acf-form div[data-name=_post_title] > .acf-label > label::after,
#acf-form .footer__cta .footer__text div[data-name=_post_title] > .acf-label > label::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50%;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}

.footer__associations__container {
  position: relative;
  z-index: 0;
  background: var(--blue-darkest-rgb);
  background: linear-gradient(30deg, rgba(var(--blue-darkest-rgb), 1) 0%, rgba(var(--blue-dark-rgb), 1) 100%);
}

.footer__associations {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 9rem 0 4rem 0;
}
.footer__associations img {
  width: 20rem;
  height: auto;
  margin: 0 5rem 5rem 5rem;
  transition: all 0.25s ease-out;
}
.footer__associations img:hover {
  transform: scale(1.05);
}

.footer__info {
  width: 100%;
  max-width: 950px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 9rem 0;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--blue-darkest);
}
@media screen and (max-width: 1100px) {
  .footer__info {
    max-width: 750px;
  }
}
@media screen and (max-width: 960px) {
  .footer__info {
    max-width: 650px;
  }
}
@media screen and (max-width: 800px) {
  .footer__info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__info h2, .footer__info .custom-search-form label, .custom-search-form .footer__info label, .footer__info #acf-form .acf-field-group > .acf-label > label, #acf-form .footer__info .acf-field-group > .acf-label > label,
.footer__info #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__info label,
.footer__info #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .footer__info .acf-field-repeater > .acf-label > label,
.footer__info #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .footer__info .acf-field-flexible-content > .acf-label > label,
.footer__info #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .footer__info .acf-field-wysiwyg > .acf-label > label,
.footer__info #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .footer__info div[data-name=_post_title] > .acf-label > label {
  position: relative;
  margin-top: 0;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
}
.footer__info h2::after, .footer__info .custom-search-form label::after, .custom-search-form .footer__info label::after, .footer__info #acf-form .acf-field-group > .acf-label > label::after, #acf-form .footer__info .acf-field-group > .acf-label > label::after,
.footer__info #acf-form div[data-name=additional_details] > .acf-input .acf-label label::after,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__info label::after,
.footer__info #acf-form .acf-field-repeater > .acf-label > label::after,
#acf-form .footer__info .acf-field-repeater > .acf-label > label::after,
.footer__info #acf-form .acf-field-flexible-content > .acf-label > label::after,
#acf-form .footer__info .acf-field-flexible-content > .acf-label > label::after,
.footer__info #acf-form .acf-field-wysiwyg > .acf-label > label::after,
#acf-form .footer__info .acf-field-wysiwyg > .acf-label > label::after,
.footer__info #acf-form div[data-name=_post_title] > .acf-label > label::after,
#acf-form .footer__info div[data-name=_post_title] > .acf-label > label::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
@media screen and (max-width: 800px) {
  .footer__info h2::after, .footer__info .custom-search-form label::after, .custom-search-form .footer__info label::after, .footer__info #acf-form .acf-field-group > .acf-label > label::after, #acf-form .footer__info .acf-field-group > .acf-label > label::after,
  .footer__info #acf-form div[data-name=additional_details] > .acf-input .acf-label label::after,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__info label::after,
  .footer__info #acf-form .acf-field-repeater > .acf-label > label::after,
  #acf-form .footer__info .acf-field-repeater > .acf-label > label::after,
  .footer__info #acf-form .acf-field-flexible-content > .acf-label > label::after,
  #acf-form .footer__info .acf-field-flexible-content > .acf-label > label::after,
  .footer__info #acf-form .acf-field-wysiwyg > .acf-label > label::after,
  #acf-form .footer__info .acf-field-wysiwyg > .acf-label > label::after,
  .footer__info #acf-form div[data-name=_post_title] > .acf-label > label::after,
  #acf-form .footer__info div[data-name=_post_title] > .acf-label > label::after {
    right: 0;
    width: 100px;
    margin: 0 auto;
  }
}
.footer__info a:hover {
  color: var(--blue-dark);
}
.footer__info .footer__info__contact {
  width: 28%;
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__contact {
    width: 100%;
    padding-bottom: 4rem;
  }
}
.footer__info .footer__info__email {
  margin-bottom: 1rem;
  display: block;
}
.footer__info .footer__info__connect {
  width: 28%;
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__connect {
    width: 100%;
    padding-bottom: 7rem;
  }
}
.footer__info .footer__info__connect h2, .footer__info .footer__info__connect .custom-search-form label, .custom-search-form .footer__info .footer__info__connect label, .footer__info .footer__info__connect #acf-form .acf-field-group > .acf-label > label, #acf-form .footer__info .footer__info__connect .acf-field-group > .acf-label > label,
.footer__info .footer__info__connect #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .footer__info .footer__info__connect label,
.footer__info .footer__info__connect #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .footer__info .footer__info__connect .acf-field-repeater > .acf-label > label,
.footer__info .footer__info__connect #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .footer__info .footer__info__connect .acf-field-flexible-content > .acf-label > label,
.footer__info .footer__info__connect #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .footer__info .footer__info__connect .acf-field-wysiwyg > .acf-label > label,
.footer__info .footer__info__connect #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .footer__info .footer__info__connect div[data-name=_post_title] > .acf-label > label {
  margin-bottom: 3rem;
}
.footer__info .footer__info__connect .socials {
  display: flex;
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__connect .socials {
    justify-content: center;
  }
}
.footer__info .footer__info__connect .socials img {
  width: auto;
  height: 3rem;
  margin-right: 2rem;
  transition: all 0.25s ease-out;
}
.footer__info .footer__info__connect .socials img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__connect .socials img {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.footer__info .footer__info__icon {
  width: 12%;
}
@media screen and (max-width: 1100px) {
  .footer__info .footer__info__icon {
    width: 10%;
  }
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__icon {
    width: 100%;
    padding-bottom: 4rem;
  }
}
.footer__info .footer__info__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__icon img {
    max-width: 15rem;
    margin: 0 auto;
  }
}
.footer__info .footer__info__misc {
  width: 32%;
  padding-left: 4rem;
}
@media screen and (max-width: 800px) {
  .footer__info .footer__info__misc {
    width: 100%;
    padding-left: 0;
  }
}
.footer__info .footer__info__misc .title {
  margin-bottom: 3rem;
  font-size: var(--text-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}
.footer__info .footer__info__misc a:not(.tm-link) {
  display: block;
}

@media print {
  .footer {
    display: none;
  }
}
.sidebar__content {
  padding-top: 25rem;
}
@media screen and (max-width: 1300px) {
  .sidebar__content {
    padding-top: 13rem;
  }
}
@media screen and (max-width: 960px) {
  .sidebar__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 680px) {
  .sidebar__content {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
}

.sidebar__content--resources {
  padding-top: 15rem;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .sidebar__content--resources {
    position: relative;
  }
}

.sidebar-item {
  display: block;
  position: relative;
  margin: 0 0 15rem 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 1300px) {
  .sidebar-item {
    margin-bottom: 8rem;
  }
}
.sidebar-item .sidebar-item-container {
  position: relative;
  z-index: 2;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-large);
  background: var(--white);
}
.sidebar-item:not(.--post-resources):hover {
  transform: scale(1.03);
}
.sidebar-item:not(.--post-resources):hover h3 {
  color: var(--blue-dark);
}
.sidebar-item:not(.--post-resources):hover .arrow {
  transform: scale(1.2);
}

.sidebar__image {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
}
.sidebar__image img {
  border-radius: var(--border-radius-large);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: center 40%;
     object-position: center 40%;
}

.sidebar__heading {
  padding: 5.5rem;
  background: var(--blue-gradient);
  border-top-left-radius: var(--border-radius-large);
  border-top-right-radius: var(--border-radius-large);
}
@media screen and (max-width: 1300px) {
  .sidebar__heading {
    padding: 4rem;
  }
}
.sidebar__heading h3 {
  color: white;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__heading h3:hover {
  color: white !important;
}
.sidebar__heading h3::after {
  display: block;
  content: "";
  width: 120px;
  height: 3px;
  background: var(--orange);
}

.sidebar__body {
  position: relative;
  padding: 5.5rem;
}
@media screen and (max-width: 1300px) {
  .sidebar__body {
    padding: 4rem;
  }
}
.sidebar__body .arrow {
  display: block;
  margin-left: auto;
  margin-bottom: 3rem;
  width: 5.5rem;
  height: auto;
  transition: all 0.25s ease-out;
}
.sidebar__body .arrow.bottom {
  margin-top: 3rem;
  margin-bottom: 0;
}
.sidebar__body h3 {
  margin-bottom: 2.5rem;
  transition: all 0.25s ease-out;
}
.sidebar__body p {
  margin-bottom: 2rem;
  color: var(--black);
}
.sidebar__body *:last-child {
  margin-bottom: 0;
}

.sidebar__text {
  margin: 0 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}
.sidebar__text--no-limit {
  overflow: initial;
  text-overflow: initial;
  display: initial;
}

.sidebar__circle {
  display: block;
  position: absolute;
  z-index: 1;
  top: -8rem;
  right: -8rem;
  width: 29rem;
  height: 29rem;
  border-radius: 50%;
  background: var(--blue-light);
}
@media screen and (max-width: 1300px) {
  .sidebar__circle {
    top: -4rem;
    right: -4rem;
    width: 15rem;
    height: 15rem;
  }
}

.sidebar__resources {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.sidebar__resources .resources-item {
  display: flex;
  align-items: flex-start;
  height: auto;
  gap: 20px;
}
.sidebar__resources .resources-item > img {
  width: 30px;
  height: auto;
}
.sidebar__resources .resources-item > a {
  text-decoration: underline;
  line-height: 1em;
}

@media print {
  .flexible-content--sidebar {
    gap: 1rem;
  }
  .sidebar {
    display: grid;
    grid-column: span 3;
  }
  .sidebar__content {
    padding: 0;
  }
  .sidebar-item-container {
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .sidebar-item-container > * {
    padding: 0;
  }
  .sidebar-item {
    margin: 0;
  }
  .sidebar__heading {
    background: none;
  }
  .sidebar__heading h3 {
    font-size: 14px;
    color: var(--blue-darkest);
  }
  .sidebar__heading h3::after {
    display: none;
  }
  .sidebar__heading h3:hover {
    color: var(--blue-darkest) !important;
  }
  .sidebar__resources li.resources-item {
    font-size: 10px;
  }
  .sidebar__resources li.resources-item img {
    display: none;
  }
}
.desktop-navigation {
  display: flex;
  align-items: center;
}
.desktop-navigation .navigation-buttons {
  display: flex;
  align-items: center;
}
.desktop-navigation .navigation {
  list-style: none;
  display: flex;
  margin-right: 5rem;
}
@media screen and (max-width: 1700px) {
  .desktop-navigation .navigation {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1300px) {
  .desktop-navigation .navigation {
    display: none;
  }
}
.desktop-navigation .menu-item {
  position: relative;
  display: flex;
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: center;
}
.desktop-navigation .menu-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 3px;
  border-radius: 5px;
  background: var(--blue);
  transition: all 0.25s ease-out;
}
.desktop-navigation .menu-item:hover::after {
  width: 50%;
}
.desktop-navigation .menu-item:last-child {
  margin-right: 0;
}
.desktop-navigation .menu-item a {
  color: var(--blue-darkest);
}
.desktop-navigation .menu-item.current-menu-item::after {
  width: 50%;
  background: var(--orange);
}
.desktop-navigation .menu-item.no-action {
  cursor: default;
}
.desktop-navigation .menu-item.no-action.no-action > a {
  cursor: default;
}
.desktop-navigation .menu-item.--yellow-nav {
  background-color: var(--orange);
  color: var(--blue-darkest);
  border-radius: 30px;
  margin: 0 20px;
  padding: 1rem 3rem;
  transition: background-color 0.2s;
}
.desktop-navigation .menu-item.--yellow-nav > a {
  transition: color 0.2s;
  color: var(--blue-darkest);
}
.desktop-navigation .menu-item.--yellow-nav::after {
  display: none;
}
.desktop-navigation .menu-item.--yellow-nav:hover {
  background-color: var(--blue-dark);
}
.desktop-navigation .menu-item.--yellow-nav:hover > a {
  color: white;
}
.desktop-navigation .menu-item-has-children > a {
  z-index: 111;
}
.desktop-navigation .menu-item-has-children > a:hover + .sub-menu, .desktop-navigation .menu-item-has-children > a:focus + .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1) translate3d(0, 0, 0);
}
.desktop-navigation .menu-item-has-children .sub-menu:focus-within,
.desktop-navigation .menu-item-has-children .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1) translate3d(0, 0, 0);
}
.desktop-navigation .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 3.3rem;
  left: -50%;
  padding: 4rem 2rem;
  border-radius: var(--border-radius-small);
  pointer-events: none;
  width: 200%;
  text-align: center;
  transition: all 0.25s ease;
  background: var(--blue-darkest);
  transform-origin: center top;
  transform: scaleY(0.9) translate3d(0, -5%, 0);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.desktop-navigation .sub-menu .menu-item {
  margin-left: 0;
  margin-right: 0;
  text-transform: none;
  font-weight: var(--font-weight-bold);
}
.desktop-navigation .sub-menu .menu-item a {
  color: var(--white);
  transition: all 0.25s ease-out;
}
.desktop-navigation .sub-menu .menu-item a:hover {
  color: var(--blue-dark);
}
.desktop-navigation .sub-menu .menu-item::after {
  display: none;
}

@media screen and (max-width: 960px) {
  .navigation-buttons {
    width: 200px;
    margin: 0 auto;
    text-align: center;
  }
}
.navigation-buttons a.button-pill {
  margin-right: 5rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 960px) {
  .navigation-buttons a.button-pill {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
  }
}
.navigation-buttons a.button,
.navigation-buttons button.button {
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  padding-right: 7rem;
  padding-top: 2.3rem;
  padding-bottom: 2rem;
  margin-left: 0;
}
@media screen and (max-width: 960px) {
  .navigation-buttons a.button,
  .navigation-buttons button.button {
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
  }
}
.navigation-buttons a.button::before,
.navigation-buttons button.button::before {
  width: 4.3rem;
  height: 4.3rem;
  top: 1rem;
  left: -1.75rem;
}
.navigation-buttons a.button::after,
.navigation-buttons button.button::after {
  top: 0.1rem;
}

/*
.menu-item-has-children {

  a:not(.sub-menu a) {
    position: relative;

    &::after {
      content: 
        url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26.37 16.1"><g data-name="Layer 2"><path style="fill:%23666" d="M23.23 0 12.98 9.77 3.19.12 0 3.36 12.93 16.1 26.37 3.29 23.23 0z" data-name="Layer 1"/></g></svg>');
      width: 15px;
      transition: transform 0.3s ease;
      position: absolute;
      right: -1.5rem;
      pointer-events: none;
    }
  }
}
*/
.mobile-navigation {
  display: none;
}
@media screen and (max-width: 1300px) {
  .mobile-navigation {
    position: fixed;
    background: var(--white);
    background: linear-gradient(0deg, rgba(var(--white-rgb), 1) 50%, rgba(var(--blue-light-rgb), 1) 100%);
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateX(100%);
    opacity: 0;
    padding: 20rem 0 10rem 0;
    overflow: scroll;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
}
@media screen and (max-width: 500px) {
  .mobile-navigation {
    padding-top: 15rem;
  }
}
.mobile-navigation .navigation {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-navigation .menu-item {
  flex-direction: column;
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--text-size-xl);
  font-weight: var(--font-weight-bold);
  position: relative;
}
.mobile-navigation .menu-item a {
  position: relative;
  color: var(--blue-darkest);
}
@media screen and (max-width: 960px) {
  .mobile-navigation .menu-item a {
    font-size: var(--text-size-lg);
  }
}
.mobile-navigation .menu-item.menu-item-has-children a::after {
  content: "";
  background: url("../../dist/images/icon-plus.svg") no-repeat top left;
  display: block;
  position: absolute;
  z-index: 1;
  top: 2.7rem;
  right: -3rem;
  width: 15px;
  height: 15px;
  transition: all 0.25s ease-out;
  transform-origin: center;
}
@media screen and (max-width: 1100px) {
  .mobile-navigation .menu-item.menu-item-has-children a::after {
    top: 2.5rem;
    right: -3.5rem;
  }
}
.mobile-navigation .menu-item.is-submenu-open a::after {
  transform: rotate(45deg);
}
.mobile-navigation .menu-item.--yellow-nav > a {
  border-radius: 30px;
  background-color: var(--orange);
  color: white;
  padding: 5px 40px;
}
.mobile-navigation .menu-item.--yellow-nav::after {
  display: none;
}
.mobile-navigation .sub-menu {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-navigation .sub-menu .menu-item {
  margin-bottom: 2rem;
  font-size: var(--text-size-md);
  font-weight: var(--font-weight-light);
}
.mobile-navigation .sub-menu .menu-item a {
  color: var(--blue-dark);
}
.mobile-navigation .sub-menu .menu-item a::after {
  display: none;
}
.mobile-navigation.is-menu-open {
  opacity: 1;
  transform: translateX(0%);
}
.mobile-navigation.is-menu-open .menu-item:not(.sub-menu .menu-item) {
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  .mobile-navigation {
    display: block;
  }
}

.is-submenu-open .sub-menu {
  margin-top: 1.5rem;
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
}
.is-submenu-open .sub-menu li:last-child {
  margin-bottom: 0;
}

.hamburger {
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 999;
}
@media screen and (max-width: 1300px) {
  .hamburger {
    display: block;
    margin-right: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .hamburger {
    margin-right: 0;
  }
}

.hamburger__line {
  width: 32px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--blue-darkest);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger__line--shorter {
  width: 22px;
}

.is-hamburger-toggled .hamburger__line:nth-of-type(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.is-hamburger-toggled .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.is-hamburger-toggled .hamburger__line:nth-of-type(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.button, #acf-form input[type=submit], #acf-form .acf-input-wrap > input[type=submit][type=text],
#acf-form .acf-input-wrap > input[type=submit][type=email],
#acf-form .acf-input > textarea[type=submit],
#acf-form .acf-radio-list input[type=submit][type=text] {
  display: inline-block;
  position: relative;
  padding: 4rem 9rem 3.5rem 0;
  margin-left: 4rem;
  color: var(--blue-darkest);
  font-weight: var(--font-weight-bold);
  font-size: 2.8rem;
  line-height: 1;
  text-align: left;
  transition: all 0.25s ease-out;
  text-decoration: none !important;
}
.button::before, #acf-form input[type=submit]::before, #acf-form .acf-input-wrap > input[type=submit][type=text]::before,
#acf-form .acf-input-wrap > input[type=submit][type=email]::before,
#acf-form .acf-input > textarea[type=submit]::before,
#acf-form .acf-radio-list input[type=submit][type=text]::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 10rem;
  height: 10rem;
  top: 0.5rem;
  left: -4rem;
  background: var(--blue-light);
  border-radius: 50%;
  transition: all 0.25s ease-out;
}
.button::after, #acf-form input[type=submit]::after, #acf-form .acf-input-wrap > input[type=submit][type=text]::after,
#acf-form .acf-input-wrap > input[type=submit][type=email]::after,
#acf-form .acf-input > textarea[type=submit]::after,
#acf-form .acf-radio-list input[type=submit][type=text]::after {
  content: url("../../dist/images/icon-arrow-circle.svg");
  display: block;
  position: absolute;
  z-index: -1;
  width: 5.5rem;
  height: auto;
  top: 2.8rem;
  right: 0;
  transition: all 0.25s ease-out;
}
.button:hover, #acf-form input[type=submit]:hover,
#acf-form .acf-input > textarea[type=submit]:hover {
  color: var(--blue-dark);
}
.button:hover::before, #acf-form input[type=submit]:hover::before,
#acf-form .acf-input > textarea[type=submit]:hover::before {
  transform: scale(1.1);
}
.button:hover::after, #acf-form input[type=submit]:hover::after,
#acf-form .acf-input > textarea[type=submit]:hover::after {
  right: -1rem;
}

.light-bg .button::before, .light-bg #acf-form input[type=submit]::before, #acf-form .light-bg input[type=submit]::before,
.light-bg #acf-form .acf-input > textarea[type=submit]::before,
#acf-form .light-bg .acf-input > textarea[type=submit]::before {
  background: var(--white);
}

.button-pill {
  position: relative;
  display: inline-block;
  border-radius: var(--border-radius-large);
  padding: 1rem 3rem;
  color: var(--white);
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  text-transform: uppercase;
  transition: all 0.25s ease-out;
  overflow: hidden;
  color: var(--blue-darkest);
}
.button-pill::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  color: var(--blue-darkest);
  transition: all 0.25s ease-out;
}
.button-pill::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transition: all 0.25s ease-out;
}
.button-pill:hover::before {
  top: -100%;
}
.button-pill:hover::after {
  top: 0;
}

.dropdown-group {
  margin: 0 0 4rem;
  clear: both;
}

.dropdown {
  width: 100%;
  margin: 0 0 1rem;
  position: relative;
}

.dropdown-label__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.dropdown__label {
  position: relative;
  padding: 2rem 6rem 2rem 3rem;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-small);
  font-family: var(--font-body);
  font-size: var(--text-size-sm);
  color: var(--blue-dark);
  cursor: pointer;
  background-color: var(--white);
  margin: 0;
  text-align: left;
  width: 100%;
}
.dropdown__label::after {
  content: url("../../dist/images/icon-plus.svg");
  position: absolute;
  top: 2rem;
  right: 3rem;
  width: 20px;
  height: auto;
  transition: all 0.3s ease;
}
.dropdown__label:hover {
  color: var(--blue-dark);
}

.dropdown__box {
  transition: max-height 0.7s ease-out;
  overflow: hidden;
  max-height: 0;
}

.dropdown__content {
  padding: 3rem 3rem;
}
.dropdown__content p:last-child {
  margin-bottom: 0;
}

.is-dropdown-active::after,
.is-dropdown-active .dropdown__label::after {
  transform: rotate(45deg);
}

.block_info {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding: 60px 0;
}
.block_info > article {
  display: flex;
  gap: 20px;
  max-width: 650px;
}
.block_info > article > section {
  width: 80%;
}
.block_info > article > section > h2, .custom-search-form .block_info > article > section > label, #acf-form .block_info > article.acf-field-group > section.acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .block_info > article > section > label,
#acf-form .block_info > article.acf-field-repeater > section.acf-label > label,
#acf-form .block_info > article.acf-field-flexible-content > section.acf-label > label,
#acf-form .block_info > article.acf-field-wysiwyg > section.acf-label > label {
  position: relative;
}
.block_info > article > section > h2::before, .custom-search-form .block_info > article > section > label::before, #acf-form .block_info > article.acf-field-group > section.acf-label > label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .block_info > article > section > label::before,
#acf-form .block_info > article.acf-field-repeater > section.acf-label > label::before,
#acf-form .block_info > article.acf-field-flexible-content > section.acf-label > label::before,
#acf-form .block_info > article.acf-field-wysiwyg > section.acf-label > label::before {
  position: absolute;
  height: 105px;
  width: 105px;
  content: url("../../dist/images/icon-circle-home-first-title.svg");
  top: 0;
  left: 0;
  transform: translate(-55px, -50px);
}
.block_info > article::after {
  content: url("../../dist/images/icon-support.svg");
  display: block;
  width: 20%;
}
@media screen and (max-width: 960px) {
  .block_info {
    flex-direction: column;
  }
  .block_info > article {
    width: 100%;
    max-width: none;
    gap: 40px;
  }
  .block_info > article::after {
    min-width: 120px;
  }
}
@media screen and (max-width: 680px) {
  .block_info > article {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .block_info > article > * {
    width: 100%;
  }
}

.quote {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 7rem;
  margin: 6rem 0 8rem 0;
  font-size: var(--text-size-sm);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-large);
  background: var(--white);
  clear: both;
}
@media screen and (max-width: 1100px) {
  .quote {
    padding: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .quote {
    padding: 4rem;
    flex-direction: column;
  }
}
.quote::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -6rem;
  right: -12rem;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: var(--blue-light);
}
@media screen and (max-width: 1100px) {
  .quote::after {
    top: -4rem;
    right: -7rem;
    width: 20rem;
    height: 20rem;
  }
}
@media screen and (max-width: 960px) {
  .quote::after {
    right: -4rem;
  }
}
.quote .quote__content {
  flex: 1;
  padding-right: 7rem;
}
@media screen and (max-width: 1100px) {
  .quote .quote__content {
    padding-right: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .quote .quote__content {
    order: 2;
    padding-right: 0;
  }
}
.quote .quote__icon {
  flex: 0 0 8rem;
}
@media screen and (max-width: 500px) {
  .quote .quote__icon {
    order: 1;
  }
}
.quote .quote__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 500px) {
  .quote .quote__icon img {
    max-width: 75px;
    margin-bottom: 3rem;
  }
}

.text-block, #acf-form .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label {
  margin: 0;
  clear: both;
}
.text-block h2, .text-block .custom-search-form label, .custom-search-form .text-block label, #acf-form .acf-field-group > .acf-label > label h2, #acf-form .acf-field-group > .acf-label > label .custom-search-form label, .custom-search-form #acf-form .acf-field-group > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label h2,
#acf-form .acf-field-repeater > .acf-label > label h2,
#acf-form .acf-field-repeater > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .acf-field-repeater > .acf-label > label label,
#acf-form .acf-field-flexible-content > .acf-label > label h2,
#acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label,
#acf-form .acf-field-wysiwyg > .acf-label > label h2,
#acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label,
#acf-form div[data-name=_post_title] > .acf-label > label h2,
#acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label, .text-block #acf-form .acf-field-group > .acf-label > label, #acf-form .text-block .acf-field-group > .acf-label > label, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label,
.text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label label,
.text-block #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .text-block .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label,
.text-block #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .text-block .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.text-block #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .text-block .acf-field-wysiwyg > .acf-label > label,
#acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.text-block #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .text-block div[data-name=_post_title] > .acf-label > label,
#acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label {
  position: relative;
  padding-top: 5rem;
}
@media screen and (max-width: 960px) {
  .text-block h2, .text-block .custom-search-form label, .custom-search-form .text-block label, #acf-form .acf-field-group > .acf-label > label h2, #acf-form .acf-field-group > .acf-label > label .custom-search-form label, .custom-search-form #acf-form .acf-field-group > .acf-label > label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h2,
  #acf-form .acf-field-repeater > .acf-label > label h2,
  #acf-form .acf-field-repeater > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-repeater > .acf-label > label label,
  #acf-form .acf-field-flexible-content > .acf-label > label h2,
  #acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label,
  #acf-form .acf-field-wysiwyg > .acf-label > label h2,
  #acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label,
  #acf-form div[data-name=_post_title] > .acf-label > label h2,
  #acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label, .text-block #acf-form .acf-field-group > .acf-label > label, #acf-form .text-block .acf-field-group > .acf-label > label, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label,
  .text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label label,
  .text-block #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .text-block .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label,
  .text-block #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .text-block .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  .text-block #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .text-block .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  .text-block #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .text-block div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label {
    padding-top: 2.5rem;
  }
}
.text-block h2::before, .text-block .custom-search-form label::before, .custom-search-form .text-block label::before, #acf-form .acf-field-group > .acf-label > label h2::before, #acf-form .acf-field-group > .acf-label > label .custom-search-form label::before, .custom-search-form #acf-form .acf-field-group > .acf-label > label label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label h2::before,
#acf-form .acf-field-repeater > .acf-label > label h2::before,
#acf-form .acf-field-repeater > .acf-label > label .custom-search-form label::before,
.custom-search-form #acf-form .acf-field-repeater > .acf-label > label label::before,
#acf-form .acf-field-flexible-content > .acf-label > label h2::before,
#acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label::before,
.custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label h2::before,
#acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label::before,
.custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label::before,
#acf-form div[data-name=_post_title] > .acf-label > label h2::before,
#acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label::before,
.custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label::before, .text-block #acf-form .acf-field-group > .acf-label > label::before, #acf-form .text-block .acf-field-group > .acf-label > label::before, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label::before,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label::before,
.text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label label::before,
.text-block #acf-form .acf-field-repeater > .acf-label > label::before,
#acf-form .text-block .acf-field-repeater > .acf-label > label::before,
#acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label::before,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label::before,
.text-block #acf-form .acf-field-flexible-content > .acf-label > label::before,
#acf-form .text-block .acf-field-flexible-content > .acf-label > label::before,
#acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
.text-block #acf-form .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .text-block .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
.text-block #acf-form div[data-name=_post_title] > .acf-label > label::before,
#acf-form .text-block div[data-name=_post_title] > .acf-label > label::before,
#acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
#acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
#acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
#acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
#acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label::before {
  content: url("../../dist/images/icon-circle-h2.svg");
  display: block;
  position: absolute;
  top: 0.5rem;
  left: -5.75rem;
  width: 10rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  .text-block h2::before, .text-block .custom-search-form label::before, .custom-search-form .text-block label::before, #acf-form .acf-field-group > .acf-label > label h2::before, #acf-form .acf-field-group > .acf-label > label .custom-search-form label::before, .custom-search-form #acf-form .acf-field-group > .acf-label > label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h2::before,
  #acf-form .acf-field-repeater > .acf-label > label h2::before,
  #acf-form .acf-field-repeater > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-repeater > .acf-label > label label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label h2::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label h2::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label h2::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label::before, .text-block #acf-form .acf-field-group > .acf-label > label::before, #acf-form .text-block .acf-field-group > .acf-label > label::before, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label::before,
  .text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label label::before,
  .text-block #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .text-block .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  .text-block #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .text-block .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  .text-block #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .text-block .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  .text-block #acf-form div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .text-block div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label::before {
    content: url("../../dist/images/icon-circle-h2-small.svg");
    top: 0;
    left: -2.7rem;
    width: 4rem;
  }
}
.text-block h3, #acf-form .acf-field-group > .acf-label > label h3,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label h3,
#acf-form .acf-field-repeater > .acf-label > label h3,
#acf-form .acf-field-flexible-content > .acf-label > label h3,
#acf-form .acf-field-wysiwyg > .acf-label > label h3,
#acf-form div[data-name=_post_title] > .acf-label > label h3 {
  position: relative;
  padding-bottom: 2rem;
}
.text-block h3::after, #acf-form .acf-field-group > .acf-label > label h3::after,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label h3::after,
#acf-form .acf-field-repeater > .acf-label > label h3::after,
#acf-form .acf-field-flexible-content > .acf-label > label h3::after,
#acf-form .acf-field-wysiwyg > .acf-label > label h3::after,
#acf-form div[data-name=_post_title] > .acf-label > label h3::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 12.5rem;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}
.text-block p, #acf-form .acf-field-group > .acf-label > label p,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label p,
#acf-form .acf-field-repeater > .acf-label > label p,
#acf-form .acf-field-flexible-content > .acf-label > label p,
#acf-form .acf-field-wysiwyg > .acf-label > label p,
#acf-form div[data-name=_post_title] > .acf-label > label p {
  display: inline-block;
}
.text-block a, #acf-form .acf-field-group > .acf-label > label a,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label a,
#acf-form .acf-field-repeater > .acf-label > label a,
#acf-form .acf-field-flexible-content > .acf-label > label a,
#acf-form .acf-field-wysiwyg > .acf-label > label a,
#acf-form div[data-name=_post_title] > .acf-label > label a {
  text-decoration: underline;
}
.text-block ul, #acf-form .acf-field-group > .acf-label > label ul,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ul,
#acf-form .acf-field-repeater > .acf-label > label ul,
#acf-form .acf-field-flexible-content > .acf-label > label ul,
#acf-form .acf-field-wysiwyg > .acf-label > label ul,
#acf-form div[data-name=_post_title] > .acf-label > label ul,
.text-block ol,
#acf-form .acf-field-group > .acf-label > label ol,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol,
#acf-form .acf-field-repeater > .acf-label > label ol,
#acf-form .acf-field-flexible-content > .acf-label > label ol,
#acf-form .acf-field-wysiwyg > .acf-label > label ol,
#acf-form div[data-name=_post_title] > .acf-label > label ol {
  list-style: none;
  padding: 0;
  margin: 0 0 6rem 0;
}
.text-block ul > li, #acf-form .acf-field-group > .acf-label > label ul > li,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ul > li,
#acf-form .acf-field-repeater > .acf-label > label ul > li,
#acf-form .acf-field-flexible-content > .acf-label > label ul > li,
#acf-form .acf-field-wysiwyg > .acf-label > label ul > li,
#acf-form div[data-name=_post_title] > .acf-label > label ul > li,
.text-block ol > li,
#acf-form .acf-field-group > .acf-label > label ol > li,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol > li,
#acf-form .acf-field-repeater > .acf-label > label ol > li,
#acf-form .acf-field-flexible-content > .acf-label > label ol > li,
#acf-form .acf-field-wysiwyg > .acf-label > label ol > li,
#acf-form div[data-name=_post_title] > .acf-label > label ol > li {
  position: relative;
  padding-left: 3rem;
  margin: 0 0 1rem 0;
}
.text-block ul ul, #acf-form .acf-field-group > .acf-label > label ul ul,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ul ul,
#acf-form .acf-field-repeater > .acf-label > label ul ul,
#acf-form .acf-field-flexible-content > .acf-label > label ul ul,
#acf-form .acf-field-wysiwyg > .acf-label > label ul ul,
#acf-form div[data-name=_post_title] > .acf-label > label ul ul,
.text-block ul ol,
#acf-form .acf-field-group > .acf-label > label ul ol,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ul ol,
#acf-form .acf-field-repeater > .acf-label > label ul ol,
#acf-form .acf-field-flexible-content > .acf-label > label ul ol,
#acf-form .acf-field-wysiwyg > .acf-label > label ul ol,
#acf-form div[data-name=_post_title] > .acf-label > label ul ol,
.text-block ol ul,
#acf-form .acf-field-group > .acf-label > label ol ul,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol ul,
#acf-form .acf-field-repeater > .acf-label > label ol ul,
#acf-form .acf-field-flexible-content > .acf-label > label ol ul,
#acf-form .acf-field-wysiwyg > .acf-label > label ol ul,
#acf-form div[data-name=_post_title] > .acf-label > label ol ul,
.text-block ol ol,
#acf-form .acf-field-group > .acf-label > label ol ol,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol ol,
#acf-form .acf-field-repeater > .acf-label > label ol ol,
#acf-form .acf-field-flexible-content > .acf-label > label ol ol,
#acf-form .acf-field-wysiwyg > .acf-label > label ol ol,
#acf-form div[data-name=_post_title] > .acf-label > label ol ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.text-block ul > li::before, #acf-form .acf-field-group > .acf-label > label ul > li::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ul > li::before,
#acf-form .acf-field-repeater > .acf-label > label ul > li::before,
#acf-form .acf-field-flexible-content > .acf-label > label ul > li::before,
#acf-form .acf-field-wysiwyg > .acf-label > label ul > li::before,
#acf-form div[data-name=_post_title] > .acf-label > label ul > li::before {
  content: url("../../dist/images/icon-bullet.svg");
  display: block;
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 10px;
}
.text-block ol, #acf-form .acf-field-group > .acf-label > label ol,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol,
#acf-form .acf-field-repeater > .acf-label > label ol,
#acf-form .acf-field-flexible-content > .acf-label > label ol,
#acf-form .acf-field-wysiwyg > .acf-label > label ol,
#acf-form div[data-name=_post_title] > .acf-label > label ol {
  counter-reset: item;
}
.text-block ol > li, #acf-form .acf-field-group > .acf-label > label ol > li,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol > li,
#acf-form .acf-field-repeater > .acf-label > label ol > li,
#acf-form .acf-field-flexible-content > .acf-label > label ol > li,
#acf-form .acf-field-wysiwyg > .acf-label > label ol > li,
#acf-form div[data-name=_post_title] > .acf-label > label ol > li {
  counter-increment: item;
  padding-top: 1rem;
  padding-left: 7rem;
  margin: 0 0 3rem 0;
}
.text-block ol > li::before, #acf-form .acf-field-group > .acf-label > label ol > li::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label ol > li::before,
#acf-form .acf-field-repeater > .acf-label > label ol > li::before,
#acf-form .acf-field-flexible-content > .acf-label > label ol > li::before,
#acf-form .acf-field-wysiwyg > .acf-label > label ol > li::before,
#acf-form div[data-name=_post_title] > .acf-label > label ol > li::before {
  content: counter(item);
  display: block;
  position: absolute;
  left: 0;
  top: -1rem;
  padding: 1.75rem 1.6rem 1.5rem 1.4rem;
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-size-sm);
  color: var(--blue-darkest);
  background: url(../../dist/images/icon-circle-ordered-list.svg) no-repeat center center;
  background-size: contain;
}
.text-block .alignleft, #acf-form .acf-field-group > .acf-label > label .alignleft,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label .alignleft,
#acf-form .acf-field-repeater > .acf-label > label .alignleft,
#acf-form .acf-field-flexible-content > .acf-label > label .alignleft,
#acf-form .acf-field-wysiwyg > .acf-label > label .alignleft,
#acf-form div[data-name=_post_title] > .acf-label > label .alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}
.text-block .alignright, #acf-form .acf-field-group > .acf-label > label .alignright,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label .alignright,
#acf-form .acf-field-repeater > .acf-label > label .alignright,
#acf-form .acf-field-flexible-content > .acf-label > label .alignright,
#acf-form .acf-field-wysiwyg > .acf-label > label .alignright,
#acf-form div[data-name=_post_title] > .acf-label > label .alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}
.text-block .aligncenter, #acf-form .acf-field-group > .acf-label > label .aligncenter,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label .aligncenter,
#acf-form .acf-field-repeater > .acf-label > label .aligncenter,
#acf-form .acf-field-flexible-content > .acf-label > label .aligncenter,
#acf-form .acf-field-wysiwyg > .acf-label > label .aligncenter,
#acf-form div[data-name=_post_title] > .acf-label > label .aligncenter {
  margin: 3rem auto;
}
.text-block table, #acf-form .acf-field-group > .acf-label > label table,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label table,
#acf-form .acf-field-repeater > .acf-label > label table,
#acf-form .acf-field-flexible-content > .acf-label > label table,
#acf-form .acf-field-wysiwyg > .acf-label > label table,
#acf-form div[data-name=_post_title] > .acf-label > label table, .text-block th, #acf-form .acf-field-group > .acf-label > label th,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label th,
#acf-form .acf-field-repeater > .acf-label > label th,
#acf-form .acf-field-flexible-content > .acf-label > label th,
#acf-form .acf-field-wysiwyg > .acf-label > label th,
#acf-form div[data-name=_post_title] > .acf-label > label th, .text-block td, #acf-form .acf-field-group > .acf-label > label td,
#acf-form div[data-name=additional_details] > .acf-input .acf-label label td,
#acf-form .acf-field-repeater > .acf-label > label td,
#acf-form .acf-field-flexible-content > .acf-label > label td,
#acf-form .acf-field-wysiwyg > .acf-label > label td,
#acf-form div[data-name=_post_title] > .acf-label > label td {
  border: 1px solid black;
}

@media print {
  .text-block h2::before, .text-block .custom-search-form label::before, .custom-search-form .text-block label::before, #acf-form .acf-field-group > .acf-label > label h2::before, #acf-form .acf-field-group > .acf-label > label .custom-search-form label::before, .custom-search-form #acf-form .acf-field-group > .acf-label > label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h2::before,
  #acf-form .acf-field-repeater > .acf-label > label h2::before,
  #acf-form .acf-field-repeater > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-repeater > .acf-label > label label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label h2::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label h2::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label h2::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label::before,
  .custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label::before, .text-block #acf-form .acf-field-group > .acf-label > label::before, #acf-form .text-block .acf-field-group > .acf-label > label::before, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label::before,
  .text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label label::before,
  .text-block #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .text-block .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label::before,
  .text-block #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .text-block .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label::before,
  .text-block #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .text-block .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label::before,
  .text-block #acf-form div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .text-block div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label::before,
  #acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label::before {
    display: none;
  }
  .text-block h3::after, #acf-form .acf-field-group > .acf-label > label h3::after,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h3::after,
  #acf-form .acf-field-repeater > .acf-label > label h3::after,
  #acf-form .acf-field-flexible-content > .acf-label > label h3::after,
  #acf-form .acf-field-wysiwyg > .acf-label > label h3::after,
  #acf-form div[data-name=_post_title] > .acf-label > label h3::after {
    display: none;
  }
  .text-block h3, #acf-form .acf-field-group > .acf-label > label h3,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h3,
  #acf-form .acf-field-repeater > .acf-label > label h3,
  #acf-form .acf-field-flexible-content > .acf-label > label h3,
  #acf-form .acf-field-wysiwyg > .acf-label > label h3,
  #acf-form div[data-name=_post_title] > .acf-label > label h3 {
    padding: 0;
  }
}
.embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}

.team-members-wrapper {
  display: flex;
}

.team-member {
  margin: 0 1rem;
}
.team-member > .card__body {
  padding-top: 0;
}
.team-member__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.team-member__details::after {
  content: "";
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--orange);
  margin: 3rem 0;
}
.team-member__details > h3 {
  margin: 0;
}
.team-member__details > h4 {
  color: var(--blue-dark);
  margin: 0;
  font-weight: 700;
}

.team-member__image {
  height: 200px;
  width: auto;
  max-width: 100%;
  border-radius: var(--border-radius-small);
  padding: 0;
  transform: translateY(-20%);
}

.header {
  position: relative;
  width: 100%;
  height: 255px;
}
@media screen and (max-width: 1100px) {
  .header {
    height: 220px;
  }
}
@media screen and (max-width: 680px) {
  .header {
    height: 175px;
  }
}
@media screen and (max-width: 500px) {
  .header {
    background: var(--blue-light);
    height: 150px;
  }
}
@media screen and (max-width: 360px) {
  .header {
    height: 130px;
  }
}
.header::before {
  content: url("../../dist/images/curve-head-full.svg");
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 62%;
  width: 825px;
  height: auto;
}
@media screen and (max-width: 1700px) {
  .header::before {
    right: 62%;
    width: 750px;
  }
}
@media screen and (max-width: 1300px) {
  .header::before {
    right: auto;
    left: -150px;
    width: 650px;
  }
}
@media screen and (max-width: 1100px) {
  .header::before {
    left: -100px;
    width: 550px;
  }
}
@media screen and (max-width: 680px) {
  .header::before {
    left: -150px;
    width: 475px;
  }
}
@media screen and (max-width: 500px) {
  .header::before {
    content: url("../../dist/images/curve-head-mobile-white.svg");
    top: auto;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
  }
}

.header__background {
  position: fixed;
  z-index: 9;
  width: 100%;
  background: none;
  box-shadow: none;
  transition: all 0.25s ease-out;
}

.header__container {
  width: 100%;
  max-width: var(--max-width);
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 1700px) {
  .header__container {
    padding-left: 9rem;
    padding-right: 9rem;
  }
}
@media screen and (max-width: 680px) {
  .header__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .header__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .header__container {
    padding-top: 3rem;
  }
}

.header__logo {
  position: relative;
  z-index: 999;
  width: 275px;
  height: auto;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 1700px) {
  .header__logo {
    width: 225px;
  }
}
@media screen and (max-width: 680px) {
  .header__logo {
    width: 175px;
  }
}
@media screen and (max-width: 360px) {
  .header__logo {
    width: 150px;
  }
}
.header__logo a {
  color: var(--black);
}
.header__logo img {
  width: 100%;
  height: auto;
}

.scrolled .header__background {
  background: var(--white);
  box-shadow: var(--box-shadow);
}

.scrolled .header__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1100px) {
  .scrolled .header__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.scrolled .header__container .header__logo {
  width: 220px;
}
@media screen and (max-width: 1700px) {
  .scrolled .header__container .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .scrolled .header__container .header__logo {
    width: 150px;
  }
}

.header__navigation {
  display: flex;
  align-items: center;
}

@media print {
  .header {
    display: none;
  }
}
.pagination {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem 4rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--box-shadow);
}

.pagination-text {
  font-size: var(--text-size-xs);
  font-weight: 600;
  color: var(--blue-darkest);
}
.pagination-text span {
  color: var(--orange);
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pagination-pages * {
  margin: 0;
}

.pagination-arrow {
  width: 20px;
  fill: var(--black);
  margin-left: 5px;
}
.pagination-arrow * {
  stroke: black;
}
.pagination-arrow.--prev {
  margin-right: 5px;
  margin-left: 0;
  transform: rotate(180deg);
}

.page-numbers {
  font-size: var(--text-size-xs);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: var(--blue-dark);
}

.page-numbers.current {
  background: var(--orange);
  border-radius: 50%;
  height: 3.5rem;
  width: 3.5rem;
  color: var(--white);
}

@media screen and (max-width: 800px) {
  .pagination {
    flex-direction: column;
    gap: 10px;
  }
}
form, #acf-form .acf-input-wrap > input[type=text],
#acf-form .acf-input-wrap > input[type=email],
#acf-form .acf-input > textarea,
#acf-form .acf-radio-list input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-radio-list .acf-input > textarea[type=text] {
  margin: 0 0 2rem;
}
form input, #acf-form .acf-input-wrap > input[type=text] input,
#acf-form .acf-input-wrap > input[type=email] input,
#acf-form .acf-input > textarea input,
#acf-form .acf-radio-list input[type=text] input,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] input,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] input,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input,
#acf-form .acf-radio-list .acf-input > textarea[type=text] input, form #acf-form .acf-input-wrap > input[type=text], #acf-form form .acf-input-wrap > input[type=text], #acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=text],
#acf-form .acf-input > textarea .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=text],
form #acf-form .acf-input-wrap > input[type=email],
#acf-form form .acf-input-wrap > input[type=email],
#acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email],
#acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=email],
#acf-form .acf-input > textarea .acf-input-wrap > input[type=email],
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=email],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=email],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=email],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=email],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=email],
form #acf-form .acf-input > textarea,
#acf-form form .acf-input > textarea,
#acf-form .acf-input-wrap > input[type=text] .acf-input > textarea,
#acf-form .acf-input-wrap > input[type=email] .acf-input > textarea,
#acf-form .acf-input > textarea .acf-input > textarea,
#acf-form .acf-radio-list input[type=text] .acf-input > textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea,
form #acf-form .acf-radio-list input[type=text],
#acf-form .acf-radio-list form input[type=text],
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] input[type=text],
#acf-form .acf-input > textarea .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input > textarea input[type=text],
#acf-form .acf-radio-list input[type=text] input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] input[type=text],
form #acf-form .acf-input.acf-input-wrap > textarea[type=text],
#acf-form form .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text],
form #acf-form .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list form .acf-input-wrap > input[type=text],
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=text],
#acf-form .acf-input > textarea .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input > textarea .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=text],
form #acf-form .acf-input.acf-input-wrap > textarea[type=email],
#acf-form form .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=email],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email],
form #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list form .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-input > textarea .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input > textarea .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=email][type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=email][type=text],
form #acf-form .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list form .acf-input > textarea[type=text],
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text],
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] .acf-input > textarea[type=text],
#acf-form .acf-input > textarea .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input > textarea .acf-input > textarea[type=text],
#acf-form .acf-radio-list input[type=text] .acf-input > textarea[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text],
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea[type=text],
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea[type=text],
form textarea,
#acf-form .acf-input-wrap > input[type=text] textarea,
#acf-form .acf-input-wrap > input[type=email] textarea,
#acf-form .acf-input > textarea textarea,
#acf-form .acf-radio-list input[type=text] textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] textarea,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] textarea,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] textarea,
#acf-form .acf-radio-list .acf-input > textarea[type=text] textarea {
  display: block;
  margin-bottom: 1.5rem;
  outline: thin;
  padding: 1.5rem;
  border-radius: 2rem;
  border: none;
  width: 100%;
  font-size: var(--text-size-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  background: transparent;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}
form input::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] input::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] input::-moz-placeholder, #acf-form .acf-input > textarea input::-moz-placeholder, #acf-form .acf-radio-list input[type=text] input::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] input::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] input::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] input::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] input::-moz-placeholder, form #acf-form .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form form .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-input > textarea .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=text]::-moz-placeholder, form #acf-form .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form form .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-input > textarea .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=email]::-moz-placeholder, form #acf-form .acf-input > textarea::-moz-placeholder, #acf-form form .acf-input > textarea::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input > textarea::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-input > textarea::-moz-placeholder, #acf-form .acf-input > textarea .acf-input > textarea::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input > textarea::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea::-moz-placeholder, form #acf-form .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list form input[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email] input[type=text]::-moz-placeholder, #acf-form .acf-input > textarea .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea input[type=text]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] input[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] input[type=text]::-moz-placeholder, form #acf-form .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form form .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text]::-moz-placeholder, form #acf-form .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form form .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email]::-moz-placeholder, form #acf-form .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list form .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-input > textarea .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list input[type=text] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea[type=text]::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea[type=text]::-moz-placeholder, form textarea::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] textarea::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] textarea::-moz-placeholder, #acf-form .acf-input > textarea textarea::-moz-placeholder, #acf-form .acf-radio-list input[type=text] textarea::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=text] textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=text] textarea::-moz-placeholder, #acf-form .acf-input.acf-input-wrap > textarea[type=email] textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] textarea::-moz-placeholder, #acf-form .acf-radio-list .acf-input > textarea[type=text] textarea::-moz-placeholder {
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input::placeholder, #acf-form .acf-input-wrap > input[type=text] input::placeholder,
#acf-form .acf-input-wrap > input[type=email] input::placeholder,
#acf-form .acf-input > textarea input::placeholder,
#acf-form .acf-radio-list input[type=text] input::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] input::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] input::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] input::placeholder, form #acf-form .acf-input-wrap > input[type=text]::placeholder, #acf-form form .acf-input-wrap > input[type=text]::placeholder, #acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-input > textarea .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=text]::placeholder,
form #acf-form .acf-input-wrap > input[type=email]::placeholder,
#acf-form form .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-input > textarea .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input-wrap > input[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input-wrap > input[type=email]::placeholder,
form #acf-form .acf-input > textarea::placeholder,
#acf-form form .acf-input > textarea::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-input > textarea::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-input > textarea::placeholder,
#acf-form .acf-input > textarea .acf-input > textarea::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input > textarea::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea::placeholder,
form #acf-form .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list form input[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] input[type=text]::placeholder,
#acf-form .acf-input > textarea .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea input[type=text]::placeholder,
#acf-form .acf-radio-list input[type=text] input[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] input[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] input[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] input[type=text]::placeholder,
form #acf-form .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form form .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=text]::placeholder,
form #acf-form .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form form .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-input > textarea .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input.acf-input-wrap > textarea[type=email]::placeholder,
form #acf-form .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list form .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=text] .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-input-wrap > input[type=email] .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-input > textarea .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list input[type=text] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=text] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] .acf-radio-list .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input.acf-input-wrap > textarea[type=email] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] .acf-input > textarea[type=text]::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] .acf-input > textarea[type=text]::placeholder,
form textarea::placeholder,
#acf-form .acf-input-wrap > input[type=text] textarea::placeholder,
#acf-form .acf-input-wrap > input[type=email] textarea::placeholder,
#acf-form .acf-input > textarea textarea::placeholder,
#acf-form .acf-radio-list input[type=text] textarea::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] textarea::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=text] textarea::placeholder,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] textarea::placeholder,
#acf-form .acf-radio-list .acf-input-wrap > input[type=email][type=text] textarea::placeholder,
#acf-form .acf-radio-list .acf-input > textarea[type=text] textarea::placeholder {
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
form input:focus::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] input:focus::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] input:focus::-moz-placeholder, #acf-form .acf-input > textarea input:focus::-moz-placeholder, #acf-form .acf-radio-list input[type=text] input:focus::-moz-placeholder, form #acf-form .acf-input-wrap > input[type=text]:focus::-moz-placeholder, #acf-form form .acf-input-wrap > input[type=text]:focus::-moz-placeholder, form #acf-form .acf-input-wrap > input[type=email]:focus::-moz-placeholder, #acf-form form .acf-input-wrap > input[type=email]:focus::-moz-placeholder, form #acf-form .acf-input > textarea:focus::-moz-placeholder, #acf-form form .acf-input > textarea:focus::-moz-placeholder, form #acf-form .acf-radio-list input[type=text]:focus::-moz-placeholder, #acf-form .acf-radio-list form input[type=text]:focus::-moz-placeholder, form textarea:focus::-moz-placeholder, #acf-form .acf-input-wrap > input[type=text] textarea:focus::-moz-placeholder, #acf-form .acf-input-wrap > input[type=email] textarea:focus::-moz-placeholder, #acf-form .acf-input > textarea textarea:focus::-moz-placeholder, #acf-form .acf-radio-list input[type=text] textarea:focus::-moz-placeholder {
  opacity: 0;
}
form input:focus::placeholder, #acf-form .acf-input-wrap > input[type=text] input:focus::placeholder,
#acf-form .acf-input-wrap > input[type=email] input:focus::placeholder,
#acf-form .acf-input > textarea input:focus::placeholder,
#acf-form .acf-radio-list input[type=text] input:focus::placeholder, form #acf-form .acf-input-wrap > input[type=text]:focus::placeholder, #acf-form form .acf-input-wrap > input[type=text]:focus::placeholder,
form #acf-form .acf-input-wrap > input[type=email]:focus::placeholder,
#acf-form form .acf-input-wrap > input[type=email]:focus::placeholder,
form #acf-form .acf-input > textarea:focus::placeholder,
#acf-form form .acf-input > textarea:focus::placeholder,
form #acf-form .acf-radio-list input[type=text]:focus::placeholder,
#acf-form .acf-radio-list form input[type=text]:focus::placeholder,
form textarea:focus::placeholder,
#acf-form .acf-input-wrap > input[type=text] textarea:focus::placeholder,
#acf-form .acf-input-wrap > input[type=email] textarea:focus::placeholder,
#acf-form .acf-input > textarea textarea:focus::placeholder,
#acf-form .acf-radio-list input[type=text] textarea:focus::placeholder {
  opacity: 0;
}
form textarea, #acf-form .acf-input-wrap > input[type=text] textarea,
#acf-form .acf-input-wrap > input[type=email] textarea,
#acf-form .acf-input > textarea textarea,
#acf-form .acf-radio-list input[type=text] textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] textarea,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] textarea,
#acf-form .acf-radio-list .acf-input > textarea[type=text] textarea {
  resize: none;
}
form label, #acf-form .acf-input-wrap > input[type=text] label,
#acf-form .acf-input-wrap > input[type=email] label,
#acf-form .acf-input > textarea label,
#acf-form .acf-radio-list input[type=text] label,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] label,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] label,
#acf-form .acf-radio-list .acf-input > textarea[type=text] label {
  color: var(--white);
  font-size: var(--text-size-md);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
}
form input[type=checkbox], #acf-form .acf-input-wrap > input[type=text] input[type=checkbox],
#acf-form .acf-input-wrap > input[type=email] input[type=checkbox],
#acf-form .acf-input > textarea input[type=checkbox],
#acf-form .acf-radio-list input[type=text] input[type=checkbox], form #acf-form .acf-input-wrap > input[type=checkbox][type=text], #acf-form form .acf-input-wrap > input[type=checkbox][type=text],
form #acf-form .acf-input-wrap > input[type=checkbox][type=email],
#acf-form form .acf-input-wrap > input[type=checkbox][type=email],
form #acf-form .acf-input > textarea[type=checkbox],
#acf-form form .acf-input > textarea[type=checkbox],
#acf-form .acf-input-wrap > input[type=text] .acf-input > textarea[type=checkbox],
#acf-form .acf-input-wrap > input[type=email] .acf-input > textarea[type=checkbox],
#acf-form .acf-input > textarea .acf-input > textarea[type=checkbox],
#acf-form .acf-radio-list input[type=text] .acf-input > textarea[type=checkbox],
form #acf-form .acf-radio-list input[type=checkbox][type=text],
#acf-form .acf-radio-list form input[type=checkbox][type=text] {
  display: inline;
  width: auto;
}
form button, #acf-form .acf-input-wrap > input[type=text] button,
#acf-form .acf-input-wrap > input[type=email] button,
#acf-form .acf-input > textarea button,
#acf-form .acf-radio-list input[type=text] button,
#acf-form .acf-input.acf-input-wrap > textarea[type=text] button,
#acf-form .acf-input.acf-input-wrap > textarea[type=email] button,
#acf-form .acf-radio-list .acf-input > textarea[type=text] button {
  color: var(--black);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-size-md);
  padding: 1rem 2rem;
}

.asterisk {
  color: red;
}

.form-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  .form-2-col {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.circleImage {
  position: relative;
  width: 100%;
  padding: 7%;
}
@keyframes animatedCircle {
  0% {
    transform: rotate(20deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
.circleImage:after {
  content: url("../../dist/images/icon-circle-main.svg");
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -9%;
  right: -4.75%;
  width: 100%;
  height: auto;
  animation-name: animatedCircleH1;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: backwards;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}
.circleImage .circleImage-container {
  position: relative;
  width: 97%;
  -webkit-clip-path: circle(50% at center);
          clip-path: circle(50% at center);
}
.circleImage .circleImage-container:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.circleImage .circleImage-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.xoo-el-inmodal {
  height: -moz-fit-content !important;
  height: fit-content !important;
  height: fit-content;
  border-radius: 20px;
}

.xoo-el-header {
  padding: 0;
}

.xoo-el-form-container .xoo-el-tabs .xoo-el-login-tgr {
  font-size: 30px;
  font-weight: 600;
  background: transparent;
  color: var(--blue-darkest);
  cursor: default;
  padding: 0;
}

.xoo-el-form-txt {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--gray-light);
}

.xoo-el-form-container {
  padding: 0;
}

.xoo-el-action-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xoo-el-action-form > * {
  margin: 0 !important;
}
.xoo-el-action-form button[type=submit] {
  color: var(--blue-darkest) !important;
  background-color: transparent !important;
  font-size: 2rem !important;
}
.xoo-el-action-form button[type=submit]:hover {
  color: var(--blue-dark) !important;
}
.xoo-el-action-form *[name=xoo-el-rememberme] {
  display: none;
}
.xoo-el-action-form .xoo-el-lostpw-tgr {
  font-size: 20px;
}
.xoo-el-action-form .xoo-aff-input-group > span {
  display: none;
}
.xoo-el-action-form .xoo-aff-input-group > input, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text], #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text],
.xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email],
#acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email],
.xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea,
#acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea,
.xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text],
#acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text] {
  all: unset;
  display: block;
  margin-bottom: 0;
  outline: thin;
  padding: 1.5rem;
  border-radius: 2rem;
  border: none;
  width: 100%;
  font-size: var(--text-size-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  background: transparent;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}
.xoo-el-action-form .xoo-aff-input-group > input::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text]::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text]::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email]::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email]::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea::-moz-placeholder, .xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text]::-moz-placeholder, #acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text]::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
.xoo-el-action-form .xoo-aff-input-group > input::placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text]::placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text]::placeholder,
.xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email]::placeholder,
#acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email]::placeholder,
.xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea::placeholder,
#acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea::placeholder,
.xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text]::placeholder,
#acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text]::placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
  font-size: var(--text-size-xs);
}
.xoo-el-action-form .xoo-aff-input-group > input:focus, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus,
.xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus,
#acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus,
.xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea:focus,
#acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea:focus,
.xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text]:focus,
#acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text]:focus {
  background-color: transparent;
}
.xoo-el-action-form .xoo-aff-input-group > input:focus::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus::-moz-placeholder, .xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea:focus::-moz-placeholder, #acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea:focus::-moz-placeholder, .xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text]:focus::-moz-placeholder, #acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text]:focus::-moz-placeholder {
  opacity: 0;
}
.xoo-el-action-form .xoo-aff-input-group > input:focus::placeholder, .xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus::placeholder, #acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=text]:focus::placeholder,
.xoo-el-action-form #acf-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus::placeholder,
#acf-form .xoo-el-action-form .acf-input-wrap.xoo-aff-input-group > input[type=email]:focus::placeholder,
.xoo-el-action-form #acf-form .acf-input.xoo-aff-input-group > textarea:focus::placeholder,
#acf-form .xoo-el-action-form .acf-input.xoo-aff-input-group > textarea:focus::placeholder,
.xoo-el-action-form #acf-form .acf-radio-list .xoo-aff-input-group > input[type=text]:focus::placeholder,
#acf-form .acf-radio-list .xoo-el-action-form .xoo-aff-input-group > input[type=text]:focus::placeholder {
  opacity: 0;
}

.banner__searchbar-container {
  display: flex;
  align-items: center;
  gap: 6%;
  max-width: var(--max-width);
  margin: 0 auto -10rem;
}
.banner__searchbar-container .searchbar__circleImage {
  width: 25%;
  padding: 2%;
  transform: translateY(-40%);
}

.banner__searchbar {
  width: 68%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

form.is-search-form, #acf-form .acf-input-wrap > input.is-search-form[type=text],
#acf-form .acf-input-wrap > input.is-search-form[type=email],
#acf-form .acf-input > textarea.is-search-form,
#acf-form .acf-radio-list input.is-search-form[type=text] {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
}
form.is-search-form > label::before, #acf-form .acf-input-wrap > input.is-search-form[type=text] > label::before,
#acf-form .acf-input-wrap > input.is-search-form[type=email] > label::before,
#acf-form .acf-input > textarea.is-search-form > label::before,
#acf-form .acf-radio-list input.is-search-form[type=text] > label::before {
  content: url("../../dist/images/icon-search.svg");
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}
form.is-search-form input.is-search-input, #acf-form .acf-input-wrap > input.is-search-form[type=text] input.is-search-input,
#acf-form .acf-input-wrap > input.is-search-form[type=email] input.is-search-input,
#acf-form .acf-input > textarea.is-search-form input.is-search-input,
#acf-form .acf-radio-list input.is-search-form[type=text] input.is-search-input, form.is-search-form #acf-form .acf-input-wrap > input.is-search-input[type=text], #acf-form form.is-search-form .acf-input-wrap > input.is-search-input[type=text],
form.is-search-form #acf-form .acf-input-wrap > input.is-search-input[type=email],
#acf-form form.is-search-form .acf-input-wrap > input.is-search-input[type=email],
form.is-search-form #acf-form .acf-input > textarea.is-search-input,
#acf-form form.is-search-form .acf-input > textarea.is-search-input,
#acf-form .acf-input-wrap > input.is-search-form[type=text] .acf-input > textarea.is-search-input,
#acf-form .acf-input-wrap > input.is-search-form[type=email] .acf-input > textarea.is-search-input,
#acf-form .acf-input > textarea.is-search-form .acf-input > textarea.is-search-input,
#acf-form .acf-radio-list input.is-search-form[type=text] .acf-input > textarea.is-search-input,
form.is-search-form #acf-form .acf-radio-list input.is-search-input[type=text],
#acf-form .acf-radio-list form.is-search-form input.is-search-input[type=text] {
  box-sizing: border-box;
  border: none !important;
  background: none;
  font-size: 20px !important;
  outline: thin;
  border-radius: 4rem;
  padding: 2.5rem 2.5rem 2.5rem 8rem;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  width: 100%;
  font-size: var(--text-size-sm);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  background: transparent;
  color: var(--black);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  position: relative;
}
form.is-search-form .is-search-submit, #acf-form .acf-input-wrap > input.is-search-form[type=text] .is-search-submit,
#acf-form .acf-input-wrap > input.is-search-form[type=email] .is-search-submit,
#acf-form .acf-input > textarea.is-search-form .is-search-submit,
#acf-form .acf-radio-list input.is-search-form[type=text] .is-search-submit {
  height: 80px;
  width: 80px;
  transition: 0.2s transform ease-in;
}
form.is-search-form .is-search-submit:hover, #acf-form .acf-input-wrap > input.is-search-form[type=text] .is-search-submit:hover,
#acf-form .acf-input-wrap > input.is-search-form[type=email] .is-search-submit:hover,
#acf-form .acf-input > textarea.is-search-form .is-search-submit:hover,
#acf-form .acf-radio-list input.is-search-form[type=text] .is-search-submit:hover {
  transform: scale(1.2);
}
form.is-search-form .is-search-submit:focus, #acf-form .acf-input-wrap > input.is-search-form[type=text] .is-search-submit:focus,
#acf-form .acf-input-wrap > input.is-search-form[type=email] .is-search-submit:focus,
#acf-form .acf-input > textarea.is-search-form .is-search-submit:focus,
#acf-form .acf-radio-list input.is-search-form[type=text] .is-search-submit:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
form.is-search-form span.is-search-icon, #acf-form .acf-input-wrap > input.is-search-form[type=text] span.is-search-icon,
#acf-form .acf-input-wrap > input.is-search-form[type=email] span.is-search-icon,
#acf-form .acf-input > textarea.is-search-form span.is-search-icon,
#acf-form .acf-radio-list input.is-search-form[type=text] span.is-search-icon {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 20px;
}
form.is-search-form span.is-search-icon:after, #acf-form .acf-input-wrap > input.is-search-form[type=text] span.is-search-icon:after,
#acf-form .acf-input-wrap > input.is-search-form[type=email] span.is-search-icon:after,
#acf-form .acf-input > textarea.is-search-form span.is-search-icon:after,
#acf-form .acf-radio-list input.is-search-form[type=text] span.is-search-icon:after {
  content: url("../../dist/images/icon-arrow-circle-orange.svg");
  display: block;
  height: 100%;
  width: 100%;
}
form.is-search-form span.is-search-icon > svg, #acf-form .acf-input-wrap > input.is-search-form[type=text] span.is-search-icon > svg,
#acf-form .acf-input-wrap > input.is-search-form[type=email] span.is-search-icon > svg,
#acf-form .acf-input > textarea.is-search-form span.is-search-icon > svg,
#acf-form .acf-radio-list input.is-search-form[type=text] span.is-search-icon > svg {
  display: none;
}

section.banner__or-categories {
  display: flex;
  align-items: center;
  gap: 20px;
}
section.banner__or-categories > span:first-child {
  color: var(--blue-darkest);
  position: relative;
  font-weight: 600;
  height: 75px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.banner__or-categories > span:first-child::before {
  content: "";
  display: block;
  background-image: url("../../dist/images/icon-circle-home-first-title.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: rotate(180deg);
}
section.banner__or-categories > span:nth-child(2) {
  position: static;
  top: 0;
  left: 0;
  color: var(--blue-darkest);
}

@media screen and (max-width: 1700px) {
  .banner__searchbar-container {
    padding: 0 9rem;
  }
  .banner__searchbar-container .searchbar__circleImage {
    transform: none;
  }
}
@media screen and (max-width: 1100px) {
  .banner__searchbar {
    width: 100%;
  }
  .banner__searchbar-container {
    padding: 0 5rem;
    flex-direction: column;
    align-items: flex-end;
  }
  .banner__searchbar-container .searchbar__circleImage {
    width: 100%;
    max-width: 250px;
  }
}
@media screen and (max-width: 800px) {
  .banner__searchbar form.is-search-form .is-search-submit, .banner__searchbar #acf-form .acf-input-wrap > input.is-search-form[type=text] .is-search-submit, #acf-form .banner__searchbar .acf-input-wrap > input.is-search-form[type=text] .is-search-submit,
  .banner__searchbar #acf-form .acf-input-wrap > input.is-search-form[type=email] .is-search-submit,
  #acf-form .banner__searchbar .acf-input-wrap > input.is-search-form[type=email] .is-search-submit,
  .banner__searchbar #acf-form .acf-input > textarea.is-search-form .is-search-submit,
  #acf-form .banner__searchbar .acf-input > textarea.is-search-form .is-search-submit,
  .banner__searchbar #acf-form .acf-radio-list input.is-search-form[type=text] .is-search-submit,
  #acf-form .acf-radio-list .banner__searchbar input.is-search-form[type=text] .is-search-submit {
    width: 50px;
    height: 50px;
  }
  .banner__searchbar {
    margin-bottom: 20px;
  }
  .banner__searchbar-container .searchbar__circleImage {
    max-width: 200px;
  }
}
.categories-list {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.categories-list .category-children {
  gap: 10px;
}
@media screen and (max-width: 1300px) {
  .categories-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .categories-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.category, #acf-form .acf-checkbox-list li label {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background: rgb(var(--blue-light-rgb));
  color: var(--blue-dark);
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.category::before, #acf-form .acf-checkbox-list li label::before {
  display: none !important;
}

.category a, #acf-form .acf-checkbox-list li label a {
  text-decoration: none;
}

.support-block {
  max-width: 600px;
  margin: 150px 0 40px;
  display: flex;
  gap: 60px;
}
.support-block::after {
  content: url("../../dist/images/icon-support.svg");
  display: block;
  width: 20%;
}

.support-text {
  width: 70%;
  gap: 65px;
  display: flex;
  flex-direction: column;
}
.support-text > * {
  margin: 0;
}
.support-text > h2, .custom-search-form .support-text > label, #acf-form .acf-field-group > .acf-label.support-text > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .support-text > label,
#acf-form .acf-field-repeater > .acf-label.support-text > label,
#acf-form .acf-field-flexible-content > .acf-label.support-text > label,
#acf-form .acf-field-wysiwyg > .acf-label.support-text > label,
#acf-form div[data-name=_post_title] > .acf-label.support-text > label {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.support-text > h2::before, .custom-search-form .support-text > label::before, #acf-form .acf-field-group > .acf-label.support-text > label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .support-text > label::before,
#acf-form .acf-field-repeater > .acf-label.support-text > label::before,
#acf-form .acf-field-flexible-content > .acf-label.support-text > label::before,
#acf-form .acf-field-wysiwyg > .acf-label.support-text > label::before,
#acf-form div[data-name=_post_title] > .acf-label.support-text > label::before {
  position: absolute;
  height: 105px;
  width: 105px;
  content: url("../../dist/images/icon-circle-home-first-title.svg");
  top: 0;
  left: 0;
  transform: translate(-55px, -50px);
}

@media screen and (max-width: 680px) {
  .support-block {
    flex-direction: column;
  }
  .support-block > * {
    width: 100%;
  }
  .support-text h2::before, .support-text .custom-search-form label::before, .custom-search-form .support-text label::before, .support-text #acf-form .acf-field-group > .acf-label > label::before, #acf-form .support-text .acf-field-group > .acf-label > label::before,
  .support-text #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .support-text label::before,
  .support-text #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .support-text .acf-field-repeater > .acf-label > label::before,
  .support-text #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .support-text .acf-field-flexible-content > .acf-label > label::before,
  .support-text #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .support-text .acf-field-wysiwyg > .acf-label > label::before,
  .support-text #acf-form div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .support-text div[data-name=_post_title] > .acf-label > label::before {
    height: 90px;
    width: 90px;
    transform: translate(-35px, -40px);
  }
}
.block_article_forms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 120px 0;
}
.block_article_forms .card2 {
  display: flex;
  flex-direction: column;
}
.block_article_forms .card2-content {
  flex-grow: 1;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .block_article_forms {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .block_article_forms {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search-sidebar .category, .search-sidebar #acf-form .acf-checkbox-list li label, #acf-form .acf-checkbox-list li .search-sidebar label {
  gap: 10px;
}
.search-sidebar .category input, .search-sidebar #acf-form .acf-checkbox-list li label input, #acf-form .acf-checkbox-list li .search-sidebar label input, .search-sidebar .category #acf-form .acf-input-wrap > input[type=text], #acf-form .search-sidebar .category .acf-input-wrap > input[type=text],
.search-sidebar .category #acf-form .acf-input-wrap > input[type=email],
#acf-form .search-sidebar .category .acf-input-wrap > input[type=email],
.search-sidebar .category #acf-form .acf-input > textarea,
#acf-form .search-sidebar .category .acf-input > textarea,
.search-sidebar #acf-form .acf-checkbox-list li label .acf-input > textarea,
#acf-form .acf-checkbox-list li .search-sidebar label .acf-input > textarea,
.search-sidebar .category #acf-form .acf-radio-list input[type=text],
#acf-form .acf-radio-list .search-sidebar .category input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
}
.search-sidebar .category input::before, .search-sidebar #acf-form .acf-checkbox-list li label input::before, #acf-form .acf-checkbox-list li .search-sidebar label input::before, .search-sidebar .category #acf-form .acf-input-wrap > input[type=text]::before, #acf-form .search-sidebar .category .acf-input-wrap > input[type=text]::before,
.search-sidebar .category #acf-form .acf-input-wrap > input[type=email]::before,
#acf-form .search-sidebar .category .acf-input-wrap > input[type=email]::before,
.search-sidebar .category #acf-form .acf-input > textarea::before,
#acf-form .search-sidebar .category .acf-input > textarea::before,
.search-sidebar #acf-form .acf-checkbox-list li label .acf-input > textarea::before,
#acf-form .acf-checkbox-list li .search-sidebar label .acf-input > textarea::before,
.search-sidebar .category #acf-form .acf-radio-list input[type=text]::before,
#acf-form .acf-radio-list .search-sidebar .category input[type=text]::before {
  cursor: pointer;
  height: 15px;
  width: 15px;
  content: url("../../dist/images/form-checkbox-inactive.svg");
  display: block;
  background-color: white;
}
.search-sidebar .category input:checked::before, .search-sidebar #acf-form .acf-checkbox-list li label input:checked::before, #acf-form .acf-checkbox-list li .search-sidebar label input:checked::before, .search-sidebar .category #acf-form .acf-input-wrap > input[type=text]:checked::before, #acf-form .search-sidebar .category .acf-input-wrap > input[type=text]:checked::before,
.search-sidebar .category #acf-form .acf-input-wrap > input[type=email]:checked::before,
#acf-form .search-sidebar .category .acf-input-wrap > input[type=email]:checked::before,
.search-sidebar .category #acf-form .acf-input > textarea:checked::before,
#acf-form .search-sidebar .category .acf-input > textarea:checked::before,
.search-sidebar #acf-form .acf-checkbox-list li label .acf-input > textarea:checked::before,
#acf-form .acf-checkbox-list li .search-sidebar label .acf-input > textarea:checked::before,
.search-sidebar .category #acf-form .acf-radio-list input[type=text]:checked::before,
#acf-form .acf-radio-list .search-sidebar .category input[type=text]:checked::before {
  content: url("../../dist/images/form-checkbox-active.svg");
}
.search-sidebar .dropdown__label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-size: var(--text-size-xs);
  color: var(--blue-darkest);
  font-size: 18px;
}
.search-sidebar .dropdown__label::after {
  position: relative;
  top: 0;
  min-width: 20px;
  min-height: 20px;
}
.search-sidebar__top {
  background: var(--blue-gradient);
  border-top-left-radius: var(--border-radius-large);
  border-top-right-radius: var(--border-radius-large);
}
.search-sidebar__top > div {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.search-sidebar__top > div > h3 {
  color: white;
  margin: 0;
  font-size: var(--text-size-sm);
}
.search-sidebar__top > div > img {
  height: 25px;
  width: 25px;
}
.search-sidebar__bottom {
  position: relative;
  border-bottom-left-radius: var(--border-radius-large);
  border-bottom-right-radius: var(--border-radius-large);
  box-shadow: var(--box-shadow);
}
.search-sidebar__bottom .dropdown {
  border-bottom: 2px solid var(--blue-light);
}
.search-sidebar__bottom .dropdown__label {
  box-shadow: none;
  border-radius: 0;
  padding: 2rem 0;
}
.search-sidebar__bottom .dropdown__label::after {
  right: 0;
}
.search-sidebar__bottom .dropdown__content {
  padding: 0 0 2.5rem;
}
.search-sidebar__bottom .dropdown__content > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.search-sidebar__filter-container {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  transform: translateY(-50%);
}
.search-sidebar > section {
  padding: 60px 40px;
}

#search-sidebar__filter-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
#search-sidebar__filter-btn > img {
  height: 20px;
  width: auto;
}

@media screen and (max-width: 800px) {
  .search-sidebar > section {
    padding: 60px 20px;
  }
}
.article {
  padding: 40px 0;
}
.article:not(:last-child) {
  border-bottom: 2px solid var(--blue-light);
}
.article-resources {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
}
.article-title {
  color: var(--blue-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-title::after {
  content: "";
  width: 160px;
  border-bottom: 3px solid var(--blue);
}
.article-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-excerpt {
  color: var(--blue-darkest);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 2rem;
}
.article-excerpt * {
  margin: 0;
}
.article-resources-date {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.article-resources-date > * {
  margin: 0;
}
.article-resources-date > h4 {
  font-size: 22px;
  flex-grow: 1;
}
.article-resources {
  width: -moz-fit-content;
  width: fit-content;
}
.article-categories {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.article-categories > a:first-child {
  display: none;
}

@media screen and (max-width: 960px) {
  .article-resources-date {
    flex-direction: column;
    gap: 10px;
  }
}
@media print {
  .article-single-title {
    width: 100%;
    max-width: 100% !important;
  }
  .article-resources-date {
    flex-direction: column;
    gap: 10px;
  }
}
@media print {
  .article-single.flexible-content__container {
    grid-column: span 3;
  }
}
.resources-item {
  height: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
.resources-item > img {
  display: block;
  height: 100%;
  width: auto;
}
.resources-item.--link > img {
  content: url("../../dist/images/icon-link.svg");
}
.resources-item.--image > img {
  content: url("../../dist/images/icon-image.svg");
}
.resources-item.--pdf > img {
  content: url("../../dist/images/icon-pdf.svg");
}
.resources-item.--video_link > img {
  content: url("../../dist/images/icon-video.svg");
}

#wpdcom {
  margin: 0;
  max-width: none;
}
#wpdcom *:not(.far):not(.fas) {
  font-family: var(--font-family);
}

#wpd-post-rating {
  justify-content: flex-start;
}

@media print {
  #comments_wrapper {
    display: none;
  }
  #wpdcom {
    display: none;
  }
  .comments-wrapper {
    display: none;
  }
}
#acf-form label {
  color: var(--blue-dark);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#acf-form input[type=radio], #acf-form .acf-input-wrap > input[type=radio][type=text],
#acf-form .acf-input-wrap > input[type=radio][type=email],
#acf-form .acf-input > textarea[type=radio],
#acf-form .acf-radio-list input[type=radio][type=text],
#acf-form input[type=checkbox],
#acf-form .acf-input-wrap > input[type=checkbox][type=text],
#acf-form .acf-input-wrap > input[type=checkbox][type=email],
#acf-form .acf-input > textarea[type=checkbox],
#acf-form .acf-radio-list input[type=checkbox][type=text] {
  min-width: 15px;
  min-height: 15px;
}
#acf-form input[type=radio]:focus::after,
#acf-form .acf-input > textarea[type=radio]:focus::after,
#acf-form input[type=checkbox]:focus::after,
#acf-form .acf-input > textarea[type=checkbox]:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: -webkit-focus-ring-color auto 1px;
}
#acf-form div[data-name=tags] > .acf-label .description {
  white-space: pre;
}
#acf-form div[data-name=tags] > .acf-label label::after {
  position: absolute;
  content: "*";
  color: #f00;
  margin-left: 1rem;
}
#acf-form .acf-form-submit input, #acf-form .acf-form-submit .acf-input-wrap > input[type=text],
#acf-form .acf-form-submit .acf-input-wrap > input[type=email],
#acf-form .acf-form-submit .acf-input > textarea,
#acf-form .acf-form-submit .acf-radio-list input[type=text],
#acf-form .acf-radio-list .acf-form-submit input[type=text] {
  cursor: pointer;
  margin: 0;
  padding: 4rem;
}
#acf-form .acf-required {
  position: absolute;
  margin-left: 1rem;
}
#acf-form .article-single-permission ul {
  margin: 0;
}
#acf-form .wp-editor-tabs button:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

#custom-search-form input:focus, #custom-search-form #acf-form .acf-input-wrap > input[type=text]:focus, #acf-form #custom-search-form .acf-input-wrap > input[type=text]:focus,
#custom-search-form #acf-form .acf-input-wrap > input[type=email]:focus,
#acf-form #custom-search-form .acf-input-wrap > input[type=email]:focus,
#custom-search-form #acf-form .acf-input > textarea:focus,
#acf-form #custom-search-form .acf-input > textarea:focus,
#custom-search-form #acf-form .acf-radio-list input[type=text]:focus,
#acf-form .acf-radio-list #custom-search-form input[type=text]:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

.modal-mask {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: visibility 0.4s, opacity 0.4s ease-in-out;
  padding: 4rem;
}
.modal-mask.--open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.modal {
  padding: 8rem 4rem 4rem;
  border-radius: var(--border-radius-large);
  background: white;
  max-width: 600px;
  min-width: 300px;
  min-height: 300px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.modal-content > * {
  text-align: center;
  margin: 0;
}
.modal-content p {
  font-size: var(--text-size-sm);
}
.modal-btns {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.modal-btns #yes-btn {
  z-index: 0;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 1rem;
  font-size: var(--text-size-md);
}

.article-single .text-block ul, .article-single #acf-form .acf-field-group > .acf-label > label ul, #acf-form .article-single .acf-field-group > .acf-label > label ul,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label ul,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label ul,
.article-single #acf-form .acf-field-repeater > .acf-label > label ul,
#acf-form .article-single .acf-field-repeater > .acf-label > label ul,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label ul,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label ul,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label ul,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label ul,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label ul,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label ul,
.article-single .text-block ol,
.article-single #acf-form .acf-field-group > .acf-label > label ol,
#acf-form .article-single .acf-field-group > .acf-label > label ol,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label ol,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label ol,
.article-single #acf-form .acf-field-repeater > .acf-label > label ol,
#acf-form .article-single .acf-field-repeater > .acf-label > label ol,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label ol,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label ol,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label ol,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label ol,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label ol,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label ol {
  margin-bottom: 0;
}
.article-single .text-block h2, .article-single .text-block .custom-search-form label, .custom-search-form .article-single .text-block label, .article-single #acf-form .acf-field-group > .acf-label > label h2, .article-single #acf-form .acf-field-group > .acf-label > label .custom-search-form label, .custom-search-form .article-single #acf-form .acf-field-group > .acf-label > label label, #acf-form .article-single .acf-field-group > .acf-label > label h2, #acf-form .article-single .acf-field-group > .acf-label > label .custom-search-form label, .custom-search-form #acf-form .article-single .acf-field-group > .acf-label > label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label h2,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label .custom-search-form label,
.custom-search-form .article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label h2,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label .custom-search-form label,
.custom-search-form #acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label label,
.article-single #acf-form .acf-field-repeater > .acf-label > label h2,
.article-single #acf-form .acf-field-repeater > .acf-label > label .custom-search-form label,
.custom-search-form .article-single #acf-form .acf-field-repeater > .acf-label > label label,
#acf-form .article-single .acf-field-repeater > .acf-label > label h2,
#acf-form .article-single .acf-field-repeater > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .article-single .acf-field-repeater > .acf-label > label label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label h2,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label,
.custom-search-form .article-single #acf-form .acf-field-flexible-content > .acf-label > label label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label h2,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .article-single .acf-field-flexible-content > .acf-label > label label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label h2,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label,
.custom-search-form .article-single #acf-form .acf-field-wysiwyg > .acf-label > label label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label h2,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .article-single .acf-field-wysiwyg > .acf-label > label label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label h2,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label,
.custom-search-form .article-single #acf-form div[data-name=_post_title] > .acf-label > label label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label h2,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label .custom-search-form label,
.custom-search-form #acf-form .article-single div[data-name=_post_title] > .acf-label > label label, .article-single .text-block #acf-form .acf-field-group > .acf-label > label, #acf-form .article-single .text-block .acf-field-group > .acf-label > label, .article-single #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label, #acf-form .article-single .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label .acf-field-group > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label .acf-field-group > .acf-label > label,
.article-single #acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .article-single .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label,
.article-single .text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single .text-block label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-field-group > .acf-label > label label,
#acf-form .article-single div[data-name=additional_details] > .acf-input .acf-field-group > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .article-single .acf-field-group > .acf-label > label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-field-repeater > .acf-label > label label,
#acf-form .article-single div[data-name=additional_details] > .acf-input .acf-field-repeater > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .article-single .acf-field-repeater > .acf-label > label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-field-flexible-content > .acf-label > label label,
#acf-form .article-single div[data-name=additional_details] > .acf-input .acf-field-flexible-content > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .article-single .acf-field-flexible-content > .acf-label > label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-field-wysiwyg > .acf-label > label label,
#acf-form .article-single div[data-name=additional_details] > .acf-input .acf-field-wysiwyg > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .article-single .acf-field-wysiwyg > .acf-label > label label,
.article-single #acf-form div[data-name=additional_details] > .acf-input div[data-name=_post_title] > .acf-label > label label,
#acf-form .article-single div[data-name=additional_details] > .acf-input div[data-name=_post_title] > .acf-label > label label,
#acf-form div[data-name=additional_details] > .acf-input .article-single div[data-name=_post_title] > .acf-label > label label,
.article-single .text-block #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .article-single .text-block .acf-field-repeater > .acf-label > label,
.article-single #acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .article-single .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label .acf-field-repeater > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label .acf-field-repeater > .acf-label > label,
.article-single #acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .article-single .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label,
.article-single .text-block #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single .text-block .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label .acf-field-flexible-content > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label,
.article-single .text-block #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single .text-block .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label .acf-field-wysiwyg > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
.article-single .text-block #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single .text-block div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label div[data-name=_post_title] > .acf-label > label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label,
.article-single .text-block h3,
.article-single #acf-form .acf-field-group > .acf-label > label h3,
#acf-form .article-single .acf-field-group > .acf-label > label h3,
.article-single #acf-form div[data-name=additional_details] > .acf-input .acf-label label h3,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single label h3,
.article-single #acf-form .acf-field-repeater > .acf-label > label h3,
#acf-form .article-single .acf-field-repeater > .acf-label > label h3,
.article-single #acf-form .acf-field-flexible-content > .acf-label > label h3,
#acf-form .article-single .acf-field-flexible-content > .acf-label > label h3,
.article-single #acf-form .acf-field-wysiwyg > .acf-label > label h3,
#acf-form .article-single .acf-field-wysiwyg > .acf-label > label h3,
.article-single #acf-form div[data-name=_post_title] > .acf-label > label h3,
#acf-form .article-single div[data-name=_post_title] > .acf-label > label h3 {
  margin-bottom: 2rem;
}
.article-single-title {
  font-size: var(--text-size-xxl);
}
.article-single-wrapper {
  padding: 10rem 0;
}
.article-single-wrapper h2, .article-single-wrapper .custom-search-form label, .custom-search-form .article-single-wrapper label, .article-single-wrapper #acf-form .acf-field-group > .acf-label > label, #acf-form .article-single-wrapper .acf-field-group > .acf-label > label,
.article-single-wrapper #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single-wrapper label,
.article-single-wrapper #acf-form .acf-field-repeater > .acf-label > label,
#acf-form .article-single-wrapper .acf-field-repeater > .acf-label > label,
.article-single-wrapper #acf-form .acf-field-flexible-content > .acf-label > label,
#acf-form .article-single-wrapper .acf-field-flexible-content > .acf-label > label,
.article-single-wrapper #acf-form .acf-field-wysiwyg > .acf-label > label,
#acf-form .article-single-wrapper .acf-field-wysiwyg > .acf-label > label,
.article-single-wrapper #acf-form div[data-name=_post_title] > .acf-label > label,
#acf-form .article-single-wrapper div[data-name=_post_title] > .acf-label > label {
  padding: 0;
  text-transform: capitalize;
}
.article-single-wrapper h2::before, .article-single-wrapper .custom-search-form label::before, .custom-search-form .article-single-wrapper label::before, .article-single-wrapper #acf-form .acf-field-group > .acf-label > label::before, #acf-form .article-single-wrapper .acf-field-group > .acf-label > label::before,
.article-single-wrapper #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
#acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single-wrapper label::before,
.article-single-wrapper #acf-form .acf-field-repeater > .acf-label > label::before,
#acf-form .article-single-wrapper .acf-field-repeater > .acf-label > label::before,
.article-single-wrapper #acf-form .acf-field-flexible-content > .acf-label > label::before,
#acf-form .article-single-wrapper .acf-field-flexible-content > .acf-label > label::before,
.article-single-wrapper #acf-form .acf-field-wysiwyg > .acf-label > label::before,
#acf-form .article-single-wrapper .acf-field-wysiwyg > .acf-label > label::before,
.article-single-wrapper #acf-form div[data-name=_post_title] > .acf-label > label::before,
#acf-form .article-single-wrapper div[data-name=_post_title] > .acf-label > label::before {
  top: -4.5rem;
}
@media screen and (max-width: 960px) {
  .article-single-wrapper h2::before, .article-single-wrapper .custom-search-form label::before, .custom-search-form .article-single-wrapper label::before, .article-single-wrapper #acf-form .acf-field-group > .acf-label > label::before, #acf-form .article-single-wrapper .acf-field-group > .acf-label > label::before,
  .article-single-wrapper #acf-form div[data-name=additional_details] > .acf-input .acf-label label::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single-wrapper label::before,
  .article-single-wrapper #acf-form .acf-field-repeater > .acf-label > label::before,
  #acf-form .article-single-wrapper .acf-field-repeater > .acf-label > label::before,
  .article-single-wrapper #acf-form .acf-field-flexible-content > .acf-label > label::before,
  #acf-form .article-single-wrapper .acf-field-flexible-content > .acf-label > label::before,
  .article-single-wrapper #acf-form .acf-field-wysiwyg > .acf-label > label::before,
  #acf-form .article-single-wrapper .acf-field-wysiwyg > .acf-label > label::before,
  .article-single-wrapper #acf-form div[data-name=_post_title] > .acf-label > label::before,
  #acf-form .article-single-wrapper div[data-name=_post_title] > .acf-label > label::before {
    top: -2.5rem;
  }
}
.article-single-wrapper.--border-bottom {
  border-bottom: 1px solid lightgray;
}
.article-single-wrapper ul {
  margin: 0;
}
.article-single-brief-description {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.article-single-license {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-single-contributors {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.article-single-contributors * {
  margin: 0;
}
.article-single-contributors h4 {
  color: black;
  font-weight: 200;
}
.article-single-contributors > section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-single-case-overview {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.article-single-case-overview *,
.article-single-case-overview .article-categories {
  margin: 0;
}
.article-single-additional {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.article-single-additional span {
  text-transform: capitalize;
}
.article-single-tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-single-tags-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-single .article-categories .category, .article-single .article-categories #acf-form .acf-checkbox-list li label, #acf-form .acf-checkbox-list li .article-single .article-categories label {
  padding-left: 15px;
  cursor: default;
}
.article-single-additional-notes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-single-additional-notes * {
  margin: 0;
}
.article-single-main-content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.article-single-main-content * {
  margin: 0;
}
.article-single-main-content > * {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section .article-single-additional-authors {
  gap: 3rem;
}

@media print {
  body {
    overflow: hidden;
  }
  .article-single-title {
    font-size: var(--text-size-sm);
    margin: 0;
    padding: 0;
  }
  .article-single-title::after {
    display: none;
  }
  .article-single-wrapper {
    padding: 4rem 0;
    font-size: 14px;
  }
  .text-block h2, .text-block .custom-search-form label, .custom-search-form .text-block label, #acf-form .acf-field-group > .acf-label > label h2, #acf-form .acf-field-group > .acf-label > label .custom-search-form label, .custom-search-form #acf-form .acf-field-group > .acf-label > label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h2,
  #acf-form .acf-field-repeater > .acf-label > label h2,
  #acf-form .acf-field-repeater > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-repeater > .acf-label > label label,
  #acf-form .acf-field-flexible-content > .acf-label > label h2,
  #acf-form .acf-field-flexible-content > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-flexible-content > .acf-label > label label,
  #acf-form .acf-field-wysiwyg > .acf-label > label h2,
  #acf-form .acf-field-wysiwyg > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form .acf-field-wysiwyg > .acf-label > label label,
  #acf-form div[data-name=_post_title] > .acf-label > label h2,
  #acf-form div[data-name=_post_title] > .acf-label > label .custom-search-form label,
  .custom-search-form #acf-form div[data-name=_post_title] > .acf-label > label label, .text-block #acf-form .acf-field-group > .acf-label > label, #acf-form .text-block .acf-field-group > .acf-label > label, #acf-form .acf-field-group > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-group > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-group > .acf-label > label,
  .text-block #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .text-block label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label label,
  .text-block #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .text-block .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-repeater > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-repeater > .acf-label > label,
  .text-block #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .text-block .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-flexible-content > .acf-label > label,
  .text-block #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .text-block .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label .acf-field-wysiwyg > .acf-label > label,
  .text-block #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .text-block div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-group > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-repeater > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label div[data-name=_post_title] > .acf-label > label,
  .text-block h3,
  #acf-form .acf-field-group > .acf-label > label h3,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label h3,
  #acf-form .acf-field-repeater > .acf-label > label h3,
  #acf-form .acf-field-flexible-content > .acf-label > label h3,
  #acf-form .acf-field-wysiwyg > .acf-label > label h3,
  #acf-form div[data-name=_post_title] > .acf-label > label h3 {
    margin-bottom: 0 !important;
  }
  .article-single-additional-notes,
  .article-single-additional-authors,
  .article-single-additional {
    gap: 1rem !important;
  }
  .article-single-contributors {
    padding-bottom: 0 !important;
  }
  .article-single-case-overview,
  .article-single-contributors {
    gap: 1rem !important;
  }
  .article-single-wrapper ul li {
    margin: 0;
  }
  .article-single-wrapper h2, .article-single-wrapper .custom-search-form label, .custom-search-form .article-single-wrapper label, .article-single-wrapper #acf-form .acf-field-group > .acf-label > label, #acf-form .article-single-wrapper .acf-field-group > .acf-label > label,
  .article-single-wrapper #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label .article-single-wrapper label,
  .article-single-wrapper #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .article-single-wrapper .acf-field-repeater > .acf-label > label,
  .article-single-wrapper #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .article-single-wrapper .acf-field-flexible-content > .acf-label > label,
  .article-single-wrapper #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form .article-single-wrapper .acf-field-wysiwyg > .acf-label > label,
  .article-single-wrapper #acf-form div[data-name=_post_title] > .acf-label > label,
  #acf-form .article-single-wrapper div[data-name=_post_title] > .acf-label > label,
  .article-single-wrapper h3,
  .article-single-wrapper h4 {
    font-size: 14px;
  }
  .article-single-wrapper p,
  .article-single-wrapper li,
  .article-single-brief-description {
    font-size: 10px;
  }
  .text-block, #acf-form .acf-field-group > .acf-label > label,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label,
  #acf-form .acf-field-repeater > .acf-label > label,
  #acf-form .acf-field-flexible-content > .acf-label > label,
  #acf-form .acf-field-wysiwyg > .acf-label > label,
  #acf-form div[data-name=_post_title] > .acf-label > label {
    padding: 2rem 0;
    border-bottom: none !important;
  }
  .text-block ol, #acf-form .acf-field-group > .acf-label > label ol,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ol,
  #acf-form .acf-field-repeater > .acf-label > label ol,
  #acf-form .acf-field-flexible-content > .acf-label > label ol,
  #acf-form .acf-field-wysiwyg > .acf-label > label ol,
  #acf-form div[data-name=_post_title] > .acf-label > label ol,
  .text-block ul,
  #acf-form .acf-field-group > .acf-label > label ul,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ul,
  #acf-form .acf-field-repeater > .acf-label > label ul,
  #acf-form .acf-field-flexible-content > .acf-label > label ul,
  #acf-form .acf-field-wysiwyg > .acf-label > label ul,
  #acf-form div[data-name=_post_title] > .acf-label > label ul {
    margin: 0;
  }
  .text-block ul li, #acf-form .acf-field-group > .acf-label > label ul li,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ul li,
  #acf-form .acf-field-repeater > .acf-label > label ul li,
  #acf-form .acf-field-flexible-content > .acf-label > label ul li,
  #acf-form .acf-field-wysiwyg > .acf-label > label ul li,
  #acf-form div[data-name=_post_title] > .acf-label > label ul li {
    padding-left: 20px;
  }
  .text-block ol li, #acf-form .acf-field-group > .acf-label > label ol li,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ol li,
  #acf-form .acf-field-repeater > .acf-label > label ol li,
  #acf-form .acf-field-flexible-content > .acf-label > label ol li,
  #acf-form .acf-field-wysiwyg > .acf-label > label ol li,
  #acf-form div[data-name=_post_title] > .acf-label > label ol li {
    padding-top: 0;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .text-block ul li::before, #acf-form .acf-field-group > .acf-label > label ul li::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ul li::before,
  #acf-form .acf-field-repeater > .acf-label > label ul li::before,
  #acf-form .acf-field-flexible-content > .acf-label > label ul li::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label ul li::before,
  #acf-form div[data-name=_post_title] > .acf-label > label ul li::before,
  .text-block ol li::before,
  #acf-form .acf-field-group > .acf-label > label ol li::before,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label ol li::before,
  #acf-form .acf-field-repeater > .acf-label > label ol li::before,
  #acf-form .acf-field-flexible-content > .acf-label > label ol li::before,
  #acf-form .acf-field-wysiwyg > .acf-label > label ol li::before,
  #acf-form div[data-name=_post_title] > .acf-label > label ol li::before {
    top: 0;
    background: none;
    font-size: 10px;
    padding: 0;
    padding-top: 0;
    padding-right: 0;
    margin: 0;
    width: 5px;
    height: 5px;
  }
  .article-categories {
    gap: 5px;
  }
  .text-block p, #acf-form .acf-field-group > .acf-label > label p,
  #acf-form div[data-name=additional_details] > .acf-input .acf-label label p,
  #acf-form .acf-field-repeater > .acf-label > label p,
  #acf-form .acf-field-flexible-content > .acf-label > label p,
  #acf-form .acf-field-wysiwyg > .acf-label > label p,
  #acf-form div[data-name=_post_title] > .acf-label > label p {
    margin-bottom: 1rem;
  }
  .article-single-main-content > *,
  .article-single-additional,
  .article-single-additional-notes {
    gap: 2rem;
  }
  .article-single-main-content {
    padding: 0;
  }
  .article-single-main-content {
    gap: 2rem;
  }
  .article-single-main-content > section {
    gap: 1rem;
  }
  .sidebar__resources {
    gap: 0.1rem;
  }
}
.custom-search-form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.custom-search-form label {
  position: relative;
}
.custom-search-form label::before {
  content: url("../../dist/images/icon-circle-h2.svg");
  display: block;
  position: absolute;
  top: -4rem;
  left: -5.75rem;
  width: 10rem;
  height: auto;
}
@media screen and (max-width: 960px) {
  .custom-search-form label::before {
    content: url("../../dist/images/icon-circle-h2-small.svg");
    top: -2.6rem;
    left: -2.6rem;
    width: 4rem;
  }
}
.custom-search-form > input, #acf-form .acf-input-wrap.custom-search-form > input[type=text],
#acf-form .acf-input-wrap.custom-search-form > input[type=email],
#acf-form .acf-input.custom-search-form > textarea,
#acf-form .acf-radio-list .custom-search-form > input[type=text] {
  margin: 0;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  list-style: none;
  padding: 2rem 0;
  box-shadow: var(--box-shadow);
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius-small);
  max-height: none;
  color: var(--blue-darkest);
  background-color: white;
  z-index: 10;
  width: 100%;
  display: none;
}
.search-results.--visible {
  display: block;
}
.search-results li {
  padding: 1rem 2rem;
  list-style: none;
}
.search-results li > button {
  height: 100%;
  width: 100%;
  text-align: left;
  font-size: var(--text-size-sm);
}
.search-results li > button:hover {
  background-color: var(--blue-darkest);
  color: white;
}

aside#moove_gdpr_cookie_info_bar {
  border-top: 1px solid var(--blue-darkest) !important;
  background-color: var(--blue-darkest) !important;
}

aside#moove_gdpr_cookie_info_bar button.mgbutton {
  background-color: var(--orange) !important;
  color: var(--blue-darkest) !important;
}
aside#moove_gdpr_cookie_info_bar button.mgbutton:hover {
  background-color: white !important;
}

.html-form-radio {
  margin: 1rem 0;
}
.html-form-radio label {
  color: var(--blue-dark);
  font-size: var(--text-size-xs);
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
}
.html-form-radio label input[type=radio], .html-form-radio label #acf-form .acf-input-wrap > input[type=radio][type=text], #acf-form .html-form-radio label .acf-input-wrap > input[type=radio][type=text],
.html-form-radio label #acf-form .acf-input-wrap > input[type=radio][type=email],
#acf-form .html-form-radio label .acf-input-wrap > input[type=radio][type=email],
.html-form-radio label #acf-form .acf-input > textarea[type=radio],
#acf-form .html-form-radio label .acf-input > textarea[type=radio],
.html-form-radio label #acf-form .acf-radio-list input[type=radio][type=text],
#acf-form .acf-radio-list .html-form-radio label input[type=radio][type=text] {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.html-form-radio label input[type=radio]:focus::after, .html-form-radio label #acf-form .acf-input-wrap > input[type=radio][type=text]:focus::after, #acf-form .html-form-radio label .acf-input-wrap > input[type=radio][type=text]:focus::after,
.html-form-radio label #acf-form .acf-input-wrap > input[type=radio][type=email]:focus::after,
#acf-form .html-form-radio label .acf-input-wrap > input[type=radio][type=email]:focus::after,
.html-form-radio label #acf-form .acf-input > textarea[type=radio]:focus::after,
#acf-form .html-form-radio label .acf-input > textarea[type=radio]:focus::after,
.html-form-radio label #acf-form .acf-radio-list input[type=radio][type=text]:focus::after,
#acf-form .acf-radio-list .html-form-radio label input[type=radio][type=text]:focus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid var(--blue-dark);
}
.html-form-radio label input[type=checkbox]:focus::after, .html-form-radio label #acf-form .acf-input-wrap > input[type=checkbox][type=text]:focus::after, #acf-form .html-form-radio label .acf-input-wrap > input[type=checkbox][type=text]:focus::after,
.html-form-radio label #acf-form .acf-input-wrap > input[type=checkbox][type=email]:focus::after,
#acf-form .html-form-radio label .acf-input-wrap > input[type=checkbox][type=email]:focus::after,
.html-form-radio label #acf-form .acf-input > textarea[type=checkbox]:focus::after,
#acf-form .html-form-radio label .acf-input > textarea[type=checkbox]:focus::after,
.html-form-radio label #acf-form .acf-radio-list input[type=checkbox][type=text]:focus::after,
#acf-form .acf-radio-list .html-form-radio label input[type=checkbox][type=text]:focus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid var(--blue-dark);
}

.form-label {
  color: var(--blue-darkest);
}

textarea:focus,
input[type=text]:focus,
#acf-form .acf-input-wrap > input[type=text]:focus,
#acf-form .acf-input > textarea[type=text]:focus,
#acf-form .acf-radio-list input[type=text]:focus,
input[type=email]:focus,
#acf-form .acf-input-wrap > input[type=email]:focus,
#acf-form .acf-input > textarea[type=email]:focus,
input[type=tel]:focus,
#acf-form .acf-input > textarea[type=tel]:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

:root {
  font-size: 62.5%;
  scroll-padding-top: 15rem;
}
@media screen and (max-width: 1100px) {
  :root {
    font-size: 50%;
  }
}

.hidden {
  display: none;
}

.hidden--visually {
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; /* added line */
  width: 1px;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  margin: 0 auto;
  text-align: center;
}

::-moz-selection {
  background: var(--blue);
}

::selection {
  background: var(--blue);
}
