@charset "UTF-8";
/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #fff !important;
}

.c-white {
  color: #fff;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

.lc > :last-child {
  margin-bottom: 0;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 15;
}

.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 16px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}

.button,
.cta a,
[type=submit],
.facetwp-load-more,
.button-wrap a,
.facetwp-reset {
  background-color: #1F2BD4;
  display: inline-block;
  font-weight: 500;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 0 28px;
  color: #fff;
  text-align: center;
  box-shadow: none;
  text-transform: capitalize;
  text-decoration: none;
}
.button:hover,
.cta a:hover,
[type=submit]:hover,
.facetwp-load-more:hover,
.button-wrap a:hover,
.facetwp-reset:hover {
  background-color: rgb(10, 62, 110);
  opacity: 1 !important;
}
.button.white,
.cta a.white,
[type=submit].white,
.facetwp-load-more.white,
.button-wrap a.white,
.facetwp-reset.white {
  color: #1F2BD4;
  border: 1px solid #1F2BD4;
  background-color: transparent;
  line-height: 36px;
}
.button.white:hover,
.cta a.white:hover,
[type=submit].white:hover,
.facetwp-load-more.white:hover,
.button-wrap a.white:hover,
.facetwp-reset.white:hover {
  color: #fff;
  background-color: #1F2BD4;
}

.facetwp-reset {
  color: #1F2BD4 !important;
  border: 1px solid #1F2BD4 !important;
  background-color: transparent !important;
  line-height: 36px !important;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
}
.facetwp-reset:after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("../images/x.svg");
  margin-left: 16px;
}

.cta a {
  display: inline-block !important;
  line-height: 30px !important;
  padding: 0 28px !important;
  height: 30px;
  font-size: 12px;
  color: #fff !important;
}

.anchor {
  color: #1F2BD4;
  font-size: 14px;
  font-weight: 500;
}
.anchor:hover {
  color: #0C0E48;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-footer {
  flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height);
  /**
  * @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
  */
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #0C0E48;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  p {
    font-size: 16px;
  }
}
p img {
  display: inline-block;
}
p a {
  color: currentColor;
  text-decoration: underline;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter {
  margin: 1em auto;
}

.text-large {
  font-size: 20px;
}
@media (min-width: 992px) {
  .text-large {
    font-size: 32px;
  }
}

.text-medium {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .text-medium {
    font-size: 20px;
  }
}

.subtitle {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .subtitle {
    font-size: 24px;
  }
}

strong .subtitle {
  font-weight: 600;
}

.text-small {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-xlarge {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
@media (min-width: 992px) {
  .text-xlarge {
    font-size: 48px;
  }
}

h1,
.h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 64px;
    margin-bottom: 24px;
  }
}

h2,
.h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 52px;
    margin-bottom: 32px;
  }
}

h3,
.h3 {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}

h4,
.h4 {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

.background-blue {
  background-color: #1F2BD4;
}

.background-dark-blue {
  background-color: #0C0E48;
  color: #fff;
}
.background-dark-blue .page-intro {
  color: #fff;
}

.background-light-blue-tints {
  background-color: rgb(236, 245, 252);
  color: #0C0E48;
}

.background-turquoise {
  background-color: rgb(205, 239, 239);
  color: #0C0E48;
}

.background-pale-blue {
  background-color: rgb(241, 247, 252);
  color: #0C0E48;
}

.background-light-turquoise {
  background-color: rgb(230, 247, 247);
  color: #0C0E48;
}

.background-white {
  background-color: #fff;
  color: #0C0E48;
}

.background-light-blue {
  background-color: rgb(198, 224, 245);
  color: #0C0E48;
}

.background-light-grey {
  background-color: rgb(242, 242, 242);
  color: #0C0E48;
}

.mb-l {
  margin-bottom: 64px;
}
@media (min-width: 992px) {
  .mb-l {
    margin-bottom: 120px;
  }
}

.mb-xs {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb-xs {
    margin-bottom: 40px;
  }
}

.mb-m {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .mb-m {
    margin-bottom: 72px;
  }
}

.mb-s {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .mb-s {
    margin-bottom: 56px;
  }
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-8px {
  margin-bottom: 8px;
}

.section {
  padding: 56px 0;
}
@media (min-width: 992px) {
  .section {
    padding: 104px 0;
  }
}

.full-width {
  width: 100%;
}

.ml-24 {
  margin-left: 24px;
}

section.background-dark-blue {
  color: #fff;
}

.position-relative {
  position: relative;
}

.fsize-14px {
  font-size: 14px;
}

.pr-0 {
  padding-right: 0 !important;
}

.page-intro-text + .page-intro {
  padding: 56px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  .page-intro-text + .page-intro {
    padding: 72px 0;
  }
}

.fw-500 {
  font-weight: 500;
}

.container {
  max-width: 100%;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
    padding: 0 12px;
  }
}

.color-white {
  color: #fff !important;
}

#wpadminbar {
  position: fixed;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 16px 0;
  transition: opacity 0.3s ease-in;
  background-color: #0C0E48;
  color: #fff;
}
.header .logo {
  padding: 20px 0px;
}
.header .logo svg {
  width: 100%;
  height: auto;
}
.header .logo svg path {
  fill: #fff;
  color: #fff;
}
@media (min-width: 992px) {
  .header {
    padding: 0;
  }
}
.admin-bar .header {
  top: 46px;
}
@media (min-width: 992px) {
  .admin-bar .header {
    top: 32px;
  }
}
.single-post .header {
  background-color: #fff;
  color: #0C0E48;
}
.single-post .header svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.transparent {
  background-color: transparent;
}
.header.background-light-blue-tints {
  background-color: rgb(236, 245, 252);
  color: #0C0E48;
}
.header.background-light-blue-tints svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-turquoise {
  background-color: rgb(205, 239, 239);
  color: #0C0E48;
}
.header.background-turquoise svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-pale-blue {
  background-color: rgb(241, 247, 252);
  color: #0C0E48;
}
.header.background-pale-blue svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-light-turquoise {
  background-color: rgb(230, 247, 247);
  color: #0C0E48;
}
.header.background-light-turquoise svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-white {
  background-color: #fff;
  color: #0C0E48;
}
.header.background-white svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-light-blue {
  background-color: rgb(198, 224, 245);
  color: #0C0E48;
}
.header.background-light-blue svg path {
  fill: #0C0E48;
  color: #0C0E48;
}
.header.background-light-grey {
  background-color: rgb(242, 242, 242);
  color: #0C0E48;
}
.header.background-light-grey svg path {
  fill: #0C0E48;
  color: #0C0E48;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  align-items: center;
  display: flex;
}

.menu-header {
  display: none;
}
.menu-header li:last-child {
  margin-left: 24px;
}
@media (min-width: 992px) {
  .menu-header {
    display: flex;
    align-items: center;
  }
}
.menu-header a {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  white-space: nowrap;
  color: currentColor;
  display: inline-block;
}
.menu-header a:hover {
  opacity: 0.6;
}
.menu-header > li > a {
  padding: 40px 20px;
  display: inline-block;
  line-height: 1;
}
.menu-header .menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
}
.menu-header .menu-item-has-children > a:after {
  content: "";
  background-image: url("../images/submenu.svg");
  min-width: 13px;
  width: 13px;
  height: 7px;
  background-size: contain;
  margin-left: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in;
}
.menu-header .menu-item-has-children:hover a:after {
  transform: rotate(180deg);
}
.menu-header .menu-item-has-children:hover .sub-menu {
  display: flex;
  visibility: initial;
}
.menu-header .sub-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 400px;
  list-style: none;
  margin: 0;
  padding: 16px;
  display: none;
  visibility: hidden;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background-color: #0C0E48;
  flex-wrap: wrap;
}
.background-light-blue-tints .menu-header .sub-menu {
  background-color: rgb(236, 245, 252);
  color: #0C0E48;
}
.background-turquoise .menu-header .sub-menu {
  background-color: rgb(205, 239, 239);
  color: #0C0E48;
}
.background-pale-blue .menu-header .sub-menu {
  background-color: rgb(241, 247, 252);
  color: #0C0E48;
}
.background-light-turquoise .menu-header .sub-menu {
  background-color: rgb(230, 247, 247);
  color: #0C0E48;
}
.background-white .menu-header .sub-menu {
  background-color: #fff;
}
.background-light-blue .menu-header .sub-menu {
  background-color: rgb(198, 224, 245);
  color: #0C0E48;
}
.background-light-grey .menu-header .sub-menu {
  background-color: rgb(242, 242, 242);
  color: #0C0E48;
}
.single-post .menu-header .sub-menu {
  background-color: #fff;
  color: #0C0E48;
}
.menu-header .sub-menu li {
  margin: 0;
  padding: 0;
  width: 50%;
}
.menu-header .sub-menu li a {
  padding: 8px;
  display: block;
  white-space: nowrap;
}

.background-light-blue-tints .menu-header .menu-item-has-children > a:after,
.background-light-turquoise .menu-header .menu-item-has-children > a:after,
.single-post .menu-header .menu-item-has-children > a:after,
.background-light-blue .menu-header .menu-item-has-children > a:after,
.background-turquoise .menu-header .menu-item-has-children > a:after {
  background-image: url("../images/chevron-blue.svg");
}
.background-light-blue-tints .menu-toggle:before,
.background-light-blue-tints .menu-toggle:after,
.background-light-blue-tints .menu-toggle span,
.background-light-turquoise .menu-toggle:before,
.background-light-turquoise .menu-toggle:after,
.background-light-turquoise .menu-toggle span,
.single-post .menu-toggle:before,
.single-post .menu-toggle:after,
.single-post .menu-toggle span,
.background-light-blue .menu-toggle:before,
.background-light-blue .menu-toggle:after,
.background-light-blue .menu-toggle span,
.background-turquoise .menu-toggle:before,
.background-turquoise .menu-toggle:after,
.background-turquoise .menu-toggle span {
  background-color: #0C0E48;
}

.logo {
  max-width: 133px;
}
@media (min-width: 992px) {
  .logo {
    max-width: 168px;
  }
}

.menu-toggle {
  padding: 0;
  background: transparent;
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:before, .menu-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  background: #fff;
  transition: top 0.3s ease 0.3s, width 0.1s ease-in 0.1s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform-origin: 50% 50%;
  border-radius: 2px;
}
.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  top: 13px;
  transition: opacity 0.2s ease-in;
}
.menu-toggle:before {
  top: 4px;
}
.menu-toggle:after {
  top: 22px;
}
.menu-toggle.menu-close:before, .menu-toggle.menu-close:after {
  top: 14px;
  transition: top 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transform-origin: 50% 50%;
}
.menu-toggle.menu-close:before {
  transform: rotate(45deg);
}
.menu-toggle.menu-close:after {
  transform: rotate(-45deg);
}
.menu-toggle.menu-close span {
  opacity: 0;
}

.off-canvas {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  max-height: 100vh;
  z-index: 5;
  overflow-y: auto;
  transition: transform 0.3s ease-in;
  padding: 96px 0 24px;
  transform: translateY(-100%);
}
.admin-bar .off-canvas {
  padding: 142px 0 24px;
}
.off-canvas.active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .off-canvas {
    padding-left: 12px;
    padding-right: 12px;
  }
  .admin-bar .off-canvas {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.off-canvas .menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 54px;
  padding: 0 12px;
}
.off-canvas .menu li {
  align-self: center;
}
.off-canvas .menu > li > a {
  color: currentColor;
}
.off-canvas .menu a {
  text-transform: capitalize;
  font-weight: 500;
  display: block;
  padding: 12px;
  line-height: 19px;
}

footer {
  background-color: #0C0E48;
  color: #fff;
  padding: 56px 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  opacity: 0.7;
}
footer .gform_footer {
  justify-content: flex-end !important;
}
footer .gform_wrapper {
  margin-bottom: 56px;
}
footer .gform_fields [type=text],
footer .gform_fields [type=tel],
footer .gform_fields textarea,
footer .gform_fields [type=email],
footer .form-wrap [type=text],
footer .form-wrap [type=tel],
footer .form-wrap textarea,
footer .form-wrap [type=email] {
  border-bottom: 1px solid rgb(242, 242, 242) !important;
  color: #fff !important;
}
footer .gform_fields [type=text]::placeholder,
footer .gform_fields [type=tel]::placeholder,
footer .gform_fields textarea::placeholder,
footer .gform_fields [type=email]::placeholder,
footer .form-wrap [type=text]::placeholder,
footer .form-wrap [type=tel]::placeholder,
footer .form-wrap textarea::placeholder,
footer .form-wrap [type=email]::placeholder {
  color: rgb(242, 242, 242) !important;
}
@media (min-width: 992px) {
  footer form {
    display: flex !important;
  }
  footer form .gfield {
    margin-bottom: 0 !important;
  }
  footer form .gform_footer {
    margin-top: 0 !important;
    margin-left: 12px;
  }
}
footer .gform_body {
  flex-grow: 1;
}

.single-subscribe .gform_fields [type=text],
.single-subscribe .gform_fields [type=tel],
.single-subscribe .gform_fields textarea,
.single-subscribe .gform_fields [type=email],
.single-subscribe .form-wrap [type=text],
.single-subscribe .form-wrap [type=tel],
.single-subscribe .form-wrap textarea,
.single-subscribe .form-wrap [type=email] {
  border-bottom: 1px solid rgb(242, 242, 242) !important;
  color: #fff !important;
}
.single-subscribe .gform_fields [type=text]::placeholder,
.single-subscribe .gform_fields [type=tel]::placeholder,
.single-subscribe .gform_fields textarea::placeholder,
.single-subscribe .gform_fields [type=email]::placeholder,
.single-subscribe .form-wrap [type=text]::placeholder,
.single-subscribe .form-wrap [type=tel]::placeholder,
.single-subscribe .form-wrap textarea::placeholder,
.single-subscribe .form-wrap [type=email]::placeholder {
  color: rgb(242, 242, 242) !important;
}
.single-subscribe .gform_footer {
  justify-content: flex-end !important;
}

.footer-logo {
  margin-bottom: 56px;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer-logo {
    max-width: 132px;
  }
}

.gform_button {
  background-color: #1F2BD4 !important;
  display: inline-block;
  font-weight: 500 !important;
  height: 38px !important;
  line-height: 38px !important;
  font-size: 14px !important;
  border-radius: 0 !important;
  border-top-right-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  padding: 0 28px !important;
  color: #fff !important;
  text-align: center !important;
  box-shadow: none !important;
}
.gform_button:hover {
  background-color: rgb(10, 62, 110) !important;
}

.social-link {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
}

.menu-footer {
  margin-bottom: 56px;
}
.menu-footer li {
  margin-bottom: 16px;
}
.menu-footer a {
  font-size: 14px;
  line-height: 16.8px;
}

.footer-address {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .footer-address {
    margin-bottom: 132px;
  }
}
.footer-address a {
  text-decoration: underline;
}

.footer-supported {
  padding-top: 16px;
  border-top: 1px solid #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 16px;
}

.copyright {
  font-size: 12px;
  margin-top: 32px;
}

.hidden_label label {
  display: none;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.gfield_validation_message {
  position: relative;
  top: 2px;
  font-size: 12px;
}

.gform_footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: 300;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email] {
  border: 0;
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 0;
  height: 40px;
  padding: 0 0 0 26px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: rgb(167, 169, 172);
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  padding-right: 15px;
  border: 0;
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/
@media (min-width: 992px) {
  .gallery-slider img {
    max-width: 692px;
    margin-right: 24px;
  }
}

.page-intro {
  padding: 160px 0 56px;
}
@media (min-width: 992px) {
  .page-intro {
    padding: 220px 0 72px;
  }
}

.gallery-slider {
  margin-bottom: 55px;
}
@media (min-width: 992px) {
  .gallery-slider {
    margin-bottom: 72px;
  }
}

.frame {
  padding: 48px 32px 0;
  border-radius: 24px;
  position: relative;
}
@media (min-width: 992px) {
  .frame {
    padding: 32px 0 32px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .frame {
    padding: 0px 0 0 82px;
  }
}
.frame img {
  margin: 0 -32px;
  max-width: calc(100% + 64px);
}
@media (min-width: 992px) {
  .frame img {
    max-width: 50%;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .frame img {
    max-width: 612px;
  }
}
.frame--text svg:first-child {
  right: 178px;
  bottom: 316px;
  max-width: 122px;
}
@media (min-width: 768px) {
  .frame--text svg:first-child {
    max-width: 220px;
    right: 282px;
    bottom: auto;
    top: 24px;
  }
}
.frame--text svg:last-child {
  right: 0;
  bottom: 0;
  max-width: 70%;
}

.frame-col {
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 992px) {
  .frame-col {
    margin-bottom: 0;
    max-width: 45%;
  }
}
@media (min-width: 992px) {
  .frame-col h3 {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .frame-links {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
  }
}

.frame-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-image {
  padding-right: 65px;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .news-image {
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .news-image {
    padding-right: 90px;
    margin-bottom: 0;
  }
}

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 46px;
}
@media (min-width: 992px) {
  .partners {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.section-image {
  background-color: #fff;
}
.section-image img {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .section-image img {
    height: 718px;
    object-fit: cover;
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .section-image img {
    max-width: 1920px;
  }
}

.hidden-post {
  display: none;
}

.page-intro-image {
  padding: 52px 40px;
  position: relative;
  margin-bottom: 24px;
}
.page-intro-image:before {
  content: "";
  width: 130px;
  height: 92px;
  background-image: url("../images/page-intro-light-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 12px;
  top: 32px;
  position: absolute;
}
@media (min-width: 768px) {
  .page-intro-image:before {
    width: 233px;
    height: 107px;
    left: 0;
    top: 0;
  }
}
.page-intro-image:after {
  content: "";
  width: 230px;
  height: 200px;
  background-image: url("../images/page-intro-light-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -12px;
  bottom: 20px;
  position: absolute;
}
@media (min-width: 768px) {
  .page-intro-image:after {
    width: 380px;
    height: 321px;
    right: -32px;
  }
}
.page-intro-image img {
  border-radius: 80px 0px 80px 0px;
  position: relative;
}
@media (min-width: 768px) {
  .page-intro-image img {
    border-radius: 124px 0px 124px 0px;
  }
}

.section-image-text img {
  margin: 0 -24px;
  max-width: calc(100% + 48px);
}
@media (min-width: 768px) {
  .section-image-text img {
    margin: 0 -40px;
    max-width: calc(100% + 80px);
  }
}
@media (min-width: 992px) {
  .section-image-text img {
    margin: 0 0 0 -40px;
    max-width: calc(100% + 40px);
  }
}
@media (min-width: 1200px) {
  .section-image-text img {
    margin: 0 0 0 -80px;
    max-width: calc(100% + 80px);
  }
}
@media (min-width: 992px) {
  .section-image-text.reverse img {
    margin: 0 -40px 0 0;
    max-width: calc(100% + 40px);
  }
}
@media (min-width: 1200px) {
  .section-image-text.reverse img {
    margin: 0 -80px 0 0;
    max-width: calc(100% + 80px);
  }
}
@media (min-width: 992px) {
  .section-image-text.reverse .section-body {
    padding-left: 0;
    padding-right: 68px;
  }
}

.section-body {
  padding: 56px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (min-width: 1200px) {
  .section-body {
    padding: 80px 44px 64px 68px;
  }
}

.section-shifted-text img {
  margin: 0 -24px;
  max-width: calc(100% + 48px);
  width: calc(100% + 48px);
}
@media (min-width: 768px) {
  .section-shifted-text img {
    margin: 0 -40px;
    max-width: calc(100% + 80px);
    width: calc(100% + 80px);
  }
}
@media (min-width: 992px) {
  .section-shifted-text img {
    margin: 0 -40px 0 0;
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
  }
}
@media (min-width: 1200px) {
  .section-shifted-text img {
    margin: 0 -80px 0 0;
    max-width: calc(100% + 80px);
    width: calc(100% + 80px);
  }
}
@media (min-width: 1200px) {
  .section-shifted-text .section-body {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .section-shifted-text.reverse img {
    margin: 0 -40px 0 0;
  }
}
@media (min-width: 1200px) {
  .section-shifted-text.reverse img {
    margin: 0 0 0 -80px;
  }
}
@media (min-width: 1200px) {
  .section-shifted-text.reverse .section-body {
    padding-left: 68px;
    padding-right: 0;
  }
}

.member-top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.member-top img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 24px;
}

.member-card {
  border: 1px solid rgb(158, 184, 208);
  border-radius: 8px;
  padding: 24px 32px 0 24px;
  position: relative;
  align-self: start;
}

.member-email {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.member-name {
  font-weight: 600;
}

.member-position {
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: uppercase;
}

.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-title {
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 24px 40px 24px 0;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.team-title:before {
  content: "";
  background-image: url("../images/plus.svg");
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}
@media (min-width: 992px) {
  .team-title {
    font-size: 24px;
  }
}
.team-title:hover {
  font-weight: 600;
}

.acc-item {
  border-bottom: 1px solid #000;
}
.acc-item.active .team-title {
  font-weight: 600;
}
.acc-item.active .team-title:before {
  background-image: url("../images/minus.svg");
}

.acc-item-text {
  display: none;
}

.team-row {
  padding-bottom: 24px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .team-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .team-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
  }
}

.text-wrapper {
  padding-bottom: 24px;
}

.text-container,
.text-container p {
  font-size: 14px;
  line-height: 17px;
  /* Adjust based on font-size */
  max-height: 85px;
  /* 5 lines * line-height */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* Limit text to 5 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  transition: max-height 0.3s ease-in-out;
}

.text-container.expanded {
  -webkit-line-clamp: unset;
  /* Remove line limit */
  max-height: none;
}

.read-more {
  display: none;
  cursor: pointer;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}
.read-more .inner {
  display: flex;
  align-items: center;
}
.read-more svg {
  margin-left: 8px;
  transition: all 0.3s ease-in;
}

.expanded + .read-more svg {
  transform: rotate(180deg);
}

.wide-intro-image {
  margin: 0 -24px;
  max-width: calc(100% + 48px);
}
@media (min-width: 768px) {
  .wide-intro-image {
    margin: 0 -40px;
    max-width: calc(100% + 80px);
  }
}
@media (min-width: 992px) {
  .wide-intro-image {
    margin: 0;
    max-width: 100%;
  }
}

.tab-title {
  font-size: 20px;
  line-height: 1.1;
  padding: 16px 0;
  display: flex;
  width: 100%;
  border-top: 1px solid rgb(167, 169, 172);
  transition: all 0.3s ease-in;
  cursor: pointer;
}
@media (min-width: 992px) {
  .tab-title {
    font-size: 32px;
    opacity: 0.5;
  }
  .tab-title.active {
    font-weight: 600;
    opacity: 1;
  }
  .tab-title:hover {
    font-weight: 600;
    opacity: 1;
  }
}
.tab-title span {
  font-weight: 500;
  font-size: 12px;
  margin-right: 12px;
  display: inline-block;
}

.tab {
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.tab img {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .tab img {
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .tab {
    display: none;
  }
  .tab.active {
    display: block;
  }
}

@media (min-width: 992px) {
  .tabs {
    border-top: 1px solid rgb(167, 169, 172);
    padding-top: 16px;
  }
}

@media (min-width: 992px) {
  .tabs-nav {
    padding-right: 32px;
  }
}

.text-block {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #0C0E48;
}
@media (min-width: 992px) {
  .text-block {
    padding-top: 40px;
    margin-top: 40px;
  }
}

.researchers-list {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .researchers-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .researchers-list {
    gap: 56px;
  }
}

.researcher-item {
  align-self: auto;
}

.filter-title {
  font-size: 14px;
  font-weight: 500;
  padding: 16px 8px;
  line-height: 1.1;
  border-top: 1px solid currentColor;
  margin-bottom: 32px;
}

.facetwp-radio .facetwp-counter {
  display: none;
}

@media (min-width: 992px) {
  .filters {
    padding-right: 60px;
    position: sticky;
    top: 116px;
  }
  .admin-bar .filters {
    top: 148px;
  }
}
.filters .facetwp-radio {
  background-image: none !important;
  font-size: 12px;
  text-transform: uppercase;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  transition: all 0.3s ease-in;
  margin-bottom: 8px;
  display: block;
  width: fit-content;
  white-space: nowrap;
}
.filters .facetwp-radio:hover {
  font-weight: 600;
}
.filters .facetwp-radio.checked {
  background-color: rgb(242, 242, 242);
  font-weight: 600;
}
.filters .facetwp-facet input.facetwp-search {
  font-size: 14px;
  background-color: rgb(242, 242, 242);
  padding-left: 16px;
}
.filters .facetwp-input-wrap {
  width: 100%;
}

.facetwp-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.facetwp-pager .facetwp-page {
  color: #0C0E48 !important;
}
@media (min-width: 992px) {
  .facetwp-pager .facetwp-page {
    margin: 0 16px;
  }
}
.facetwp-pager .prev {
  font-size: 0;
  width: 26px;
  height: 26px;
  background-image: url("../images/chevron-right.svg");
  transform: rotate(180deg);
}
.facetwp-pager .next {
  font-size: 0;
  width: 26px;
  height: 26px;
  background-image: url("../images/chevron-right.svg");
}

.facetwp-type-pager {
  margin-bottom: 0 !important;
}

.page-intro-text {
  background-color: #fff;
  position: relative;
}
.page-intro-text:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 200px;
  position: absolute;
}
.background-dark-blue .page-intro-text:before {
  background-color: #0C0E48;
}
.background-light-blue .page-intro-text:before {
  background-color: rgb(198, 224, 245);
}
.background-light-blue-tints .page-intro-text:before {
  background-color: rgb(236, 245, 252);
  color: #0C0E48;
}
.background-turquoise .page-intro-text:before {
  background-color: rgb(205, 239, 239);
}
.background-pale-blue .page-intro-text:before {
  background-color: rgb(241, 247, 252);
}
.background-light-turquoise .page-intro-text:before {
  background-color: rgb(230, 247, 247);
}
.background-white .page-intro-text:before {
  background-color: #fff;
}
.background-light-blue .page-intro-text:before {
  background-color: rgb(198, 224, 245);
}
.background-light-grey .page-intro-text:before {
  background-color: rgb(242, 242, 242);
}

.section-form .gform_required_legend {
  display: none;
}
.section-form form {
  background-color: #fff;
  border-radius: 32px 0 32px 0;
  padding: 40px 24px;
}
@media (min-width: 992px) {
  .section-form form {
    padding: 40px;
  }
}
.section-form .gform-footer {
  justify-content: center;
}
.background-dark-blue .section-form p {
  color: #fff;
}
.background-dark-blue .section-form.background-light-grey p {
  color: #0C0E48;
}

.gform_fields [type=text],
.gform_fields [type=tel],
.gform_fields textarea,
.gform_fields [type=email],
.form-wrap [type=text],
.form-wrap [type=tel],
.form-wrap textarea,
.form-wrap [type=email] {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #0C0E48 !important;
  color: #0C0E48 !important;
  padding-left: 0 !important;
  box-shadow: none !important;
}
.gform_fields [type=text]::placeholder,
.gform_fields [type=tel]::placeholder,
.gform_fields textarea::placeholder,
.gform_fields [type=email]::placeholder,
.form-wrap [type=text]::placeholder,
.form-wrap [type=tel]::placeholder,
.form-wrap textarea::placeholder,
.form-wrap [type=email]::placeholder {
  color: rgb(167, 169, 172) !important;
}
.gform_fields [type=text]:active, .gform_fields [type=text]:focus,
.gform_fields [type=tel]:active,
.gform_fields [type=tel]:focus,
.gform_fields textarea:active,
.gform_fields textarea:focus,
.gform_fields [type=email]:active,
.gform_fields [type=email]:focus,
.form-wrap [type=text]:active,
.form-wrap [type=text]:focus,
.form-wrap [type=tel]:active,
.form-wrap [type=tel]:focus,
.form-wrap textarea:active,
.form-wrap textarea:focus,
.form-wrap [type=email]:active,
.form-wrap [type=email]:focus {
  outline: none !important;
}
.gform_fields textarea,
.form-wrap textarea {
  height: 100px !important;
}

.post-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.post-cat {
  text-transform: uppercase;
  height: 18px;
  line-height: 18px;
  margin-right: 16px;
  padding: 0 4px;
  border-radius: 2px;
  background-color: rgb(179, 213, 241);
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
}

.post-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.post-card-image {
  padding-bottom: 50%;
  background-size: cover;
  transition: all 0.3s ease-in;
}

.post-img {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
}
.post-img:hover .post-card-image {
  transform: scale(1.1);
}

.post-thumb {
  height: 163px;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 992px) {
  .post-thumb {
    height: 600px;
  }
}

.wp-caption {
  width: auto !important;
  margin-bottom: 64px;
  margin-top: 48px;
}

.single-post h1 {
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .single-post h1 {
    margin-bottom: 48px;
    font-size: 40px;
  }
}

.single-post-author {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.single-meta-row {
  display: flex;
}
.single-meta-row .post-cat {
  margin-right: 0;
}

.single-post-date,
.single-post-read {
  font-size: 14px;
  position: relative;
  margin-left: 8px;
}
.single-post-date:before,
.single-post-read:before {
  content: "•";
  margin-right: 8px;
  display: inline-block;
}

.single-intro {
  padding: 150px 0 56px;
}
@media (min-width: 992px) {
  .single-intro {
    padding: 212px 0 120px;
  }
}

.addtoany_shortcode {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .addtoany_shortcode {
    margin-top: 0;
  }
}

.single-content {
  border-bottom: 1px solid #0C0E48;
  padding: 64px 0;
}
@media (min-width: 992px) {
  .single-content {
    padding: 104px 0 64px;
  }
}

.share-bottom {
  text-align: center;
  padding: 64px 0 48px;
}
@media (min-width: 992px) {
  .share-bottom {
    padding: 64px 0 80px;
  }
}
.share-bottom .addtoany_shortcode {
  margin-top: 16px;
}

.wp-caption-text {
  margin-top: 16px;
  padding-left: 8px;
  border-left: 2px solid #0C0E48;
  font-size: 14px;
}

.button-wrap {
  margin-bottom: 36px;
}

blockquote {
  margin-left: 0;
  margin-right: 0;
  padding-left: 24px;
  border-left: 2px solid #0C0E48;
}
blockquote p {
  font-size: 18px;
  font-style: italic;
}

.single-subscribe {
  padding: 72px 0;
}
@media (min-width: 992px) {
  .single-subscribe {
    padding: 107px 0 94px;
  }
}
.single-subscribe h2 {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .single-subscribe h2 {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .single-subscribe form {
    display: flex !important;
  }
  .single-subscribe form .gfield {
    margin-bottom: 0 !important;
  }
  .single-subscribe form .gform_footer {
    margin-top: 0 !important;
    margin-left: 12px;
  }
}
.single-subscribe .gform_body {
  flex-grow: 1;
}

@media (min-width: 992px) {
  .single-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/*# sourceMappingURL=style.css.map */
