/*
 * Default Styles
 */
/* Container / Main */
@media (max-width: 1235px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }
}
main {
  overflow: hidden;
}
main > *:not(.shuffl-section):first-child {
  margin-top: 50px;
}
main > *:not(.shuffl-section):last-child {
  margin-bottom: 50px;
}
.container {
  box-sizing: content-box;
}
.container.page-not-found {
  padding: 100px 0;
  text-align: center;
}
.container.page-not-found .btn {
  margin-top: 20px;
}
.container.with-margin {
  margin: 50px auto;
}
/*
 * Breadcrumbs
 */
.breadcrumbs {
  font-size: 0.8em;
}
.breadcrumbs .breadcrumb-item {
  display: inline-block;
  color: #484848;
}
.breadcrumbs .breadcrumb-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #bbbbbb;
  margin-top: -1px;
}
/*
 * WPCF7
 */
.wpcf7 span[role=alert] {
  padding: 5px 0 0 0;
  font-size: 0.9em;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 1em;
  line-height: 1.2;
}




/*
 * Default Document Styles
 */
* {
  box-sizing: border-box;
}
.editor-styles-wrapper, body, html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: var(--primary-color);
  color: var(--primary-text-color);
  font-size: var(--font-body-size);
  font-family: var(--font-body-family);
}
body.header-spacing {
  padding-top: var(--header-height);
}
p {
  line-height: var(--font-line-height);
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
iframe {
  border: none;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
}
h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
}
h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
}
h4 {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
}
h5 {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
}
h6 {
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
}
a {
  color: var(--link-color);
  transition: color 0.5s;
}
a:hover {
  color: var(--link-hover-color);
}
.acf-block-preview .button-wrapper, .shuffl-frontend .button-wrapper {
  margin-top: 1em;
}
.acf-block-preview button, .acf-block-preview input[type=submit], .acf-block-preview input[type=button], .shuffl-frontend button, .shuffl-frontend input[type=submit], .shuffl-frontend input[type=button] {
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  max-width: 100%;
}
.acf-block-preview .btn, .acf-block-preview .button, .shuffl-frontend .btn, .shuffl-frontend .button {
  text-decoration: none;
  background-color: var(--button-primary-color);
  color: var(--button-primary-text-color);
  font-family: var(--font-button-family);
  border-radius: var(--button-primary-round);
  margin-right: 0.5em;
  padding: 10px 37px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.5s, color 0.5s, border 0.5s;
  vertical-align: middle;
  border: var(--button-primary-border);
}
.acf-block-preview .btn:last-child, .acf-block-preview .button:last-child, .shuffl-frontend .btn:last-child, .shuffl-frontend .button:last-child {
  margin-right: 0;
}
.acf-block-preview .btn:hover, .acf-block-preview .button:hover, .shuffl-frontend .btn:hover, .shuffl-frontend .button:hover {
  background-color: var(--button-primary-hover-color);
  color: var(--button-primary-hover-text-color);
  border-color: var(--button-primary-border-hover);
}
.acf-block-preview .btn-secondary, .acf-block-preview .button-secondary, .shuffl-frontend .btn-secondary, .shuffl-frontend .button-secondary {
  background-color: var(--button-secondary-color);
  color: var(--button-secondary-text-color);
  border-radius: var(--button-secondary-round);
  border: var(--button-secondary-border);
}
.acf-block-preview .btn-secondary:hover, .acf-block-preview .button-secondary:hover, .shuffl-frontend .btn-secondary:hover, .shuffl-frontend .button-secondary:hover {
  background-color: var(--button-secondary-hover-color);
  color: var(--button-secondary-hover-text-color);
  border-color: var(--button-secondary-border-hover);
}
.acf-block-preview .button-link, .shuffl-frontend .button-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  position: relative;
  margin-right: 50px;
}
.acf-block-preview .button-link::after, .shuffl-frontend .button-link::after {
  content: '';
  display: block;
  position: absolute;
  border: solid var(--link-color);
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 5px;
  left: 100%;
  margin-left: 10px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
  transition: margin 0.5s;
}
.acf-block-preview .button-link:hover::after, .shuffl-frontend .button-link:hover::after {
  border-color: var(--link-hover-color);
  margin-left: 15px;
}
.acf-block-preview .button-link:last-child, .shuffl-frontend .button-link:last-child {
  margin-right: 10px;
}
.menu {
  font-family: var(--font-menu-family);
}
.menu a {
  text-decoration: none;
}
.shuffl-gallery .slick-track {
  display: flex;
  align-items: center;
}
.shuffl-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 0;
  background: 0;
  border: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--primary-text-color);
  border-width: 3px 3px 0px 0;
  margin: 0;
  transform: rotate(-135deg);
  cursor: pointer;
}
.shuffl-gallery .slick-arrow.slick-prev {
  left: -20px;
}
.shuffl-gallery .slick-arrow.slick-next {
  right: -20px;
  transform: rotate(45deg);
}
.shuffl-video {
  position: relative;
}
.shuffl-video:not(.with-controls) {
  cursor: pointer;
}
.shuffl-video:not(.with-controls)::before, .shuffl-video:not(.with-controls)::after {
  content: '';
  transition: opacity 2s;
  display: block;
  position: absolute;
  opacity: 0;
}
.shuffl-video:not(.with-controls)::before {
  width: 60px;
  height: 60px;
  border-radius: 40px;
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.shuffl-video:not(.with-controls)[data-state="play"]::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 18px;
  background-color: var(--primary-text-color);
  box-shadow: 10px 0 0 var(--primary-text-color);
  margin-left: -5px;
  pointer-events: none;
}
.shuffl-video:not(.with-controls)[data-state="play"]:hover::before, .shuffl-video:not(.with-controls)[data-state="play"]:hover::after {
  opacity: 1;
}
.shuffl-video:not(.with-controls)[data-state="pause"]::before {
  opacity: 1;
}
.shuffl-video:not(.with-controls)[data-state="pause"]::after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--primary-text-color);
  margin-left: 3px;
  pointer-events: none;
  opacity: 1;
}
.shuffl-video video {
  max-width: 100%;
}
.shuffl-step {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.5s;
}
.shuffl-step.active {
  opacity: 1;
}
.shuffl-step-wrap {
  overflow: hidden;
}
.shuffl-step-track {
  display: flex;
  transition: transform 0.8s 0.2s;
}
/*
 * Additional
 */
.small-text {
  display: inline-block;
  max-width: 13em;
  font-size: 0.75em;
  margin: 0 0 0 0.5em;
  vertical-align: middle;
}




/*
 * Admin Bar Styles
 */
.shuffl-edit-page {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999999999;
  color: #fff;
  font-size: 0;
  height: 60px;
  width: 60px;
  border-radius: 999px;
  background: var(--button-primary-color, #fff);
  transition: background-color 0.5s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}
.shuffl-edit-page i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url(http://financesolutionsnow.com.au/wp-content/plugins/shuffl/modules/admin-bar/assets/images/ico-edit.svg);
  -webkit-mask-size: 21px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(http://financesolutionsnow.com.au/wp-content/plugins/shuffl/modules/admin-bar/assets/images/ico-edit.svg);
  mask-size: 21px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--button-primary-text-color, #000);
}
.shuffl-edit-page:hover {
  background-color: var(--button-primary-hover-color, #21759b);
}
.shuffl-edit-page:hover i {
  background-color: var(--button-primary-hover-text-color, #fff);
}
.shuffl-page-edit-options {
  background: #2b2b2b;
  list-style: none;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  background: #000;
  position: fixed;
  bottom: 0;
  left: 25px;
  padding: 0;
  font-family: sans-serif;
  letter-spacing: 0.9px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
  transition: opacity 0.5s, bottom 0.5s 0.2s;
  text-align: left;
  z-index: 999999999;
  border: 1px solid #444;
}
.shuffl-page-edit-options a {
  text-decoration: none;
  color: #a2a2a2;
  display: block;
  padding: 10px;
  transition: color 0.5s, background-color 0.5s;
  line-height: 16px;
}
.shuffl-page-edit-options li {
  border-bottom: 1px solid #444444;
}
.shuffl-page-edit-options li a:hover {
  background: #232323;
  color: #fff;
  text-decoration: none;
}
.shuffl-page-edit-options li:last-child {
  border-bottom: 0;
}
.shuffl-page-edit-options.visible {
  pointer-events: all;
  opacity: 1;
  bottom: 100px;
  transition: opacity 0.5s, bottom 0.2s;
}
@media (max-width: 1000px) {
  .shuffl-page-edit-options, .shuffl-edit-page {
    display: none;
  }
}




/*
 * Finance Solutions Now design
 */
@font-face {
  font-family: 'Recoleta';
  font-weight: 600;
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.eot);
  /* IE9 Compat Modes */
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.eot?#iefix) format('embedded-opentype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.woff) format('woff'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.ttf) format('truetype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.woff2) format('woff2'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Recoleta-Bold.svg#Recoleta) format('svg');
  /* Legacy iOS */
}
@font-face {
  font-family: 'Ovo';
  font-weight: 400;
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.eot);
  /* IE9 Compat Modes */
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.eot?#iefix) format('embedded-opentype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.woff) format('woff'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.ttf) format('truetype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.woff2) format('woff2'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/Ovo-Regular.svg#Ovo) format('svg');
  /* Legacy iOS */
}
@font-face {
  font-family: 'PhotographSignature';
  font-weight: 400;
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.eot);
  /* IE9 Compat Modes */
  src: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.eot?#iefix) format('embedded-opentype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.woff) format('woff'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.ttf) format('truetype'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.woff2) format('woff2'), url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../fonts/PhotographSignature.svg#PhotographSignature) format('svg');
  /* Legacy iOS */
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: 'Ovo';
  font-weight: 400;
  padding-top: var(--header-height);
}
@media (max-width: 500px) {
  body {
    --font-body-size: 16px;
  }
}
@media (max-width: 400px) {
  body {
    --container-pad: 20px;
  }
}
h1, h2, h3 {
  font-family: "Recoleta";
  font-weight: 600;
}
.shuffl-frontend .button {
  font-family: "Recoleta";
  font-weight: 600;
  font-size: calc(1em + 2px);
}
.signature {
  font-family: 'PhotographSignature';
  font-weight: 400;
}
@media (max-width: 500px) {
  .acf-block-preview .btn, .acf-block-preview .button, .shuffl-frontend .btn, .shuffl-frontend .button {
    padding: 10px 0;
    display: block;
    width: 100%;
  }
}
header.shuffl-header .menu li a {
  font-family: 'Recoleta';
  font-weight: 600;
}
header.shuffl-header .logo-wrapper a {
  display: inline-block;
  width: var(--header-logo-width);
}
header.shuffl-header .logo-wrapper a img {
  min-width: 100%;
}
@media (max-width: 1800px) {
  header.shuffl-header .container {
    max-width: 100vw;
    box-sizing: border-box;
  }
}
@media (max-width: 1800px) {
  footer.shuffl-footer .container {
    box-sizing: border-box;
  }
}
.social-wrapper {
  display: flex;
}
.social-wrapper a {
  font-size: 0px;
  line-height: 1em;
  height: 28px;
  width: 28px;
  display: inline-block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out !important;
}
.social-wrapper a[data-platform="instagram"] {
  background-image: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../images/instagram-line.svg);
}
.social-wrapper a[data-platform="facebook"] {
  background-image: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../images/facebook-box-fill.svg);
}
.social-wrapper a[data-platform="linkedin"] {
  background-image: url(http://financesolutionsnow.com.au/wp-content/themes/financesolutionsnow-landing/assets/css/../images/linkedin-box-fill.svg);
}
.social-wrapper a:hover {
  opacity: 0.6;
}
@media (min-width: 901px) {
  .social-wrapper {
    align-items: flex-end;
  }
}
@media (max-width: 900px) {
  .social-wrapper {
    align-items: center;
  }
}
@media (max-width: 1235px) {
  .container {
    box-sizing: border-box;
  }
}
@media (max-width: 1155px) {
  .slick-slider {
    max-width: calc(100vw - 2*var(--container-pad));
  }
}
section.section-banner {
  --content-width: 450px;
}
section.section-banner .container {
  position: relative;
}
section.section-banner h1 {
  line-height: 1em;
  margin-block-end: 50px;
}
section.section-banner h1 .signature {
  color: #E7D2CC;
  font-size: 106.2px;
  line-height: 61.2px;
}
section.section-banner .inner-content p {
  margin-block-end: 2em;
}
section.section-banner .inner-content a {
  font-size: calc(1em + 2px);
  padding: 14px 113px;
}
@media (max-width: 500px) {
  section.section-banner .inner-content a {
    padding: 10px 0;
    display: block;
    width: 100%;
  }
}
body.home section.section-banner .wrapper {
  background-color: var(--primary-color);
}
body.home section.section-banner .wrapper .inline-image img {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 50vw;
  height: 100%;
  max-width: 50vw;
  max-height: unset;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 0 100px;
}
body.home section.section-banner .container {
  min-height: 725px;
}
@media (max-width: 1155px) and (min-width: 901px) {
  body.home section.section-banner {
    --content-width: 40vw;
  }
}
@media (max-width: 900px) {
  body.home section.section-banner {
    --content-width: 100%;
  }
  body.home section.section-banner .wrapper .container {
    display: block;
  }
  body.home section.section-banner .wrapper .inner {
    text-align: center;
    margin-block-end: var(--vertical-padding);
  }
  body.home section.section-banner .wrapper .inline-image img {
    border-radius: 100px;
    position: relative;
    max-width: calc(100vw - 2*var(--container-pad));
    width: 100%;
    top: unset;
    left: unset;
  }
}
@media (max-width: 900px) and (min-width: 500px) {
  body.home section.section-banner .wrapper .inner a {
    min-width: 324px;
  }
}
@media (max-width: 900px) and (max-width: 500px) {
  body.home section.section-banner .wrapper .inline-image img {
    border-radius: 26px;
  }
}
@media (max-width: 300px) {
  body.home section.section-banner h1 {
    --h1-size: 3em;
  }
  body.home section.section-banner h1 .signature {
    font-size: 80px;
    line-height: 46px;
  }
}
section.section-service-slider .icon-wrapper {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section-service-slider .service-tile {
  box-shadow: -5px 20px 50px 0 rgba(203, 205, 204, 0.5);
  height: 100%;
}
section.section-service-slider .slick-list {
  overflow: visible;
}
section.section-service-slider .slick-track {
  display: flex !important;
}
section.section-service-slider .slick-slide {
  height: inherit !important;
}
section.section-service-slider .slick-slide > div {
  height: 100%;
}
section.section-service-slider .slick-dots {
  --dots-top-margin: 140px;
  list-style: none;
  padding-inline-start: unset;
  display: flex;
  justify-content: center;
  width: calc(100% - var(--container-pad));
  margin: var(--dots-top-margin) auto 1em;
}
@media (max-width: 1155px) {
  section.section-service-slider .slick-dots {
    --dots-top-margin: 60px;
  }
}
section.section-service-slider .slick-dots li {
  flex-grow: 1;
  font-size: 0px;
}
section.section-service-slider .slick-dots li button {
  width: 100%;
  border: unset;
  font-size: 0px;
  height: 4px;
  background: rgba(24, 0, 50, 0.1);
  transition: background 0.5s ease-in-out;
}
section.section-service-slider .slick-dots li button:focus {
  outline: none;
}
section.section-service-slider .slick-dots li.slick-active button {
  background: #f1d2bf;
}
section.section-service-slider .slick-dots li:not(.slick-active) button {
  cursor: pointer;
}
section.section-service-slider .slick-dots li:not(.slick-active) button:hover {
  background: rgba(24, 0, 50, 0.15);
}
@media (max-width: 900px) {
  section.section-service-slider {
    padding: var(--container-pad) 0 calc(2*var(--container-pad));
  }
}
section.section-content.layout-normal {
  margin: unset;
}
section.section-content .wrapper {
  padding: 100px 0;
  background: var(--secondary-color);
}
section.section-content .container {
  --content-section-height: 545px;
  min-height: var(--content-section-height);
}
section.section-content img.aligned-image {
  max-height: var(--content-section-height);
  border-radius: 24px;
  height: 100%;
}
@media (max-width: 768px) {
  section.section-content img.aligned-image {
    max-height: calc(100vw - 2*var(--container-pad));
  }
}
@media (max-width: 900px) {
  section.section-content .content-wrapper {
    text-align: center;
  }
}
section.section-team .thumbnail-wrapper {
  margin-block-end: 30px;
}
section.section-team .team-info-wrap {
  text-align: center;
}
section.section-team .team-name {
  font-size: calc(1em * (32/18));
  line-height: calc(1em + 8px);
  margin-block-end: 12px;
  width: calc(var(--team-person-width) - var(--container-pad));
}
section.section-team .team-title {
  font-size: calc(1em * (20/18));
  line-height: calc(1em + 4px);
  font-weight: 400;
  margin-block-end: 12px;
  margin-block-start: unset;
}
section.section-team .team-bio {
  text-align: center;
  font-size: calc(1em * (16/18));
  line-height: calc(1em + 8px);
  margin-block-end: 1.5em;
}
section.section-team .button {
  width: 100%;
  padding: 17px 0;
  border-radius: 27px;
  border: 2px solid var(--button-primary-text-color);
  color: var(--button-primary-text-color);
  background: rgba(231, 210, 204, 0);
  transition: border 0.5s ease-in-out, color 0.5s ease-in-out, background 0.5s ease-in-out;
}
section.section-team .button:hover {
  background: #e7d2cc;
  border-color: #e7d2cc;
  color: var(--button-primary-text-color);
}
@media (max-width: 900px) {
  section.section-team {
    margin: unset;
  }
  section.section-team .container {
    padding: var(--container-pad);
  }
}
@media (max-width: 768px) {
  section.section-team .people-wrapper {
    --team-person-width: calc(100vw - 2*var(--container-pad));
  }
}
section.section-testimonials .testimonial-icon {
  margin-block-end: 50px;
}
section.section-testimonials .testimonial-content {
  font-size: calc(1em * (24/18));
  margin-block-end: 50px;
  padding: 0 var(--container-pad);
}
section.section-testimonials .testimonial-name {
  font-size: calc(1em * (16/18));
  font-family: 'Recoleta';
  font-weight: 600;
  color: rgba(24, 0, 50, 0.4);
}
@media (max-width: 900px) {
  section.section-testimonials {
    padding: 0;
  }
  section.section-testimonials .wrapper {
    padding: var(--container-pad) 0;
  }
}
@media (max-width: 500px) {
  section.section-testimonials .wrapper {
    padding: calc(2*var(--container-pad)) 0;
  }
}
section.section-wpcf7 .container[data-content-alignment="above"] {
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}
section.section-wpcf7 .container[data-content-alignment="above"] .content-section, section.section-wpcf7 .container[data-content-alignment="above"] .form-section {
  max-width: 570px;
  width: calc(100vw - 2*var(--container-pad));
}
section.section-wpcf7 .container[data-content-alignment="above"] .content-section {
  margin-block-end: 48px;
  text-align: center;
}
section.section-wpcf7 .container[data-content-alignment="above"] .content-section h2 {
  font-size: calc(1em * (48/18));
}
section.section-wpcf7 form input, section.section-wpcf7 form textarea {
  font-size: calc(1em* (16/18));
  font-family: 'Ovo';
  font-weight: 400;
  border-radius: 3px;
}
section.section-wpcf7 form input:focus, section.section-wpcf7 form textarea:focus {
  outline: none;
}
section.section-wpcf7 form input[type="submit"] {
  width: 100%;
  border-radius: 27.5px;
  background: var(--primary-text-color);
  color: #fff;
  border: unset;
  padding: 18px 0;
  font-family: "Recoleta";
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.5s ease-in-out;
}
section.section-wpcf7 form input[type="submit"]:hover {
  background: #444444;
}
body.privacy-policy p:first-child {
  margin-block-start: 1em;
}
body.privacy-policy p:last-child {
  margin-block-end: 1em;
}
body.privacy-policy h3:first-child {
  margin-block-start: 1.17em;
}
body.privacy-policy main {
  padding-bottom: 2em;
}
/** Quick Modal Styling - General **/
body.modal-visible {
  overflow: hidden;
}
body > .quick-modal {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: -999999999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s 2s, visibility 0.5s 2s, background 0.5s 2s;
}
body > .quick-modal.visible {
  z-index: 999999999999;
  background: rgba(30, 30, 30, 0.7);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0s, visibility 0s, background 0.5s;
}
body > .quick-modal .modal-inner {
  display: block;
  position: relative;
  left: 0px;
  top: 0px;
  min-height: 100vh;
  width: 100vw;
  background: transparent;
  text-align: center;
  min-width: 80vw;
  transition: height 1s;
}
#close-quick-modal {
  position: fixed;
  top: 14px;
  right: 14px;
  font-size: 0px;
  height: 24px;
  width: 24px;
  display: inline-block;
  transition: opacity 0.5s;
  opacity: 0;
}
@media (max-width: 500px) {
  #close-quick-modal {
    top: 7px;
    right: 7px;
  }
}
body > .quick-modal.visible #close-quick-modal {
  transition: opacity 0.5s 0.5s;
  opacity: 1;
}
body > .quick-modal.visible #close-quick-modal:hover {
  opacity: 0.4;
  transition: opacity 0.5s;
}
#close-quick-modal::before, #close-quick-modal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 2px;
  border-radius: 8px;
  background: #180032;
}
#close-quick-modal::before {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
#close-quick-modal::after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
body > .quick-modal:not(.visible) .modal-inner {
  height: 0px;
  padding: 0px;
  transition: height 1s 0.5s, padding 0.5s 0.5s;
}
/** Quick Modal Styling - Person **/
.modal-inner .person-wrapper {
  color: var(--primary-text-color);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: calc(100vw - 2*var(--container-pad));
  max-height: calc(100vh - 2*var(--container-pad));
  width: auto;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out 1s;
}
@media (max-width: 768px) {
  .modal-inner .person-wrapper {
    max-width: calc(100vw - var(--container-pad));
    max-height: calc(100vh - var(--container-pad));
    width: 100%;
    padding: 5px;
  }
}
.modal-inner .person-wrapper.hidden {
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.5s;
}
.modal-inner .person-wrapper a {
  color: var(--primary-text-color);
}
.modal-inner .person-wrapper .content-wrapper {
  padding: 60px 100px;
  overflow-y: scroll;
}
@media (max-width: 500px) {
  .modal-inner .person-wrapper .content-wrapper {
    padding: var(--container-pad) var(--container-pad) calc(2*var(--container-pad));
  }
}
.modal-inner .person-wrapper img {
  width: 254px;
  height: 254px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .modal-inner .person-wrapper img {
    height: calc(100vw - 3*var(--container-pad));
    width: calc(100vw - 3*var(--container-pad));
  }
}
.modal-inner .person-wrapper .bio {
  margin-block-start: unset;
  margin-block-end: unset;
}