@import "variables.css";
@import "fonts.css";
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-BlackItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 900;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 800;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 200;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-LightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-MediumItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-SemiboldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 600;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-display: swap;
  font-family: "montserrat";
  src: url("../fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 100;
}
body,
.montserrat {
  font-family: "montserrat", Helvetica, Arial, sans-serif;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --brand-pink: #d7c6f2;
  --brand-yellow: #F8F667;
  --brand-blue: #26449C;
  --brand-teal: #3BBFEB;
}

html {
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background-color: white;
  color: var(--brand-blue);
  font-display: swap;
}

body::-moz-selection {
  background-color: var(--brand-yellow);
}

body::selection {
  background-color: var(--brand-yellow);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
span,
input,
em,
strong,
textarea,
label,
select,
option,
button {
  font-family: "montserrat", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  width: -moz-fit-content;
  width: fit-content;
}

h2,
h3,
h4,
h5,
h6 {
  margin-top: 3rem;
  color: var(--brand-blue);
  font-weight: 800;
  line-height: 1.25;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin-bottom: 1.25rem;
}

li {
  padding: 0.5em 10px;
}

li h1,
li h2,
li h3,
li h4,
li h5,
li h6,
li p,
li li {
  padding-right: 0;
  padding-left: 0;
}

p,
li,
a,
input,
textarea,
blockquote,
ul,
ol,
label,
input,
textarea,
select,
option,
button {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

em,
i {
  color: var(--brand-teal);
  font-style: italic;
}

strong,
b {
  color: var(--brand-teal);
  font-weight: 700;
}

a,
button {
  cursor: pointer;
}

a {
  color: var(--brand-teal);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

a:hover,
a:focus,
a:focus-within {
  color: var(--brand-blue);
}

h1,
.h1 {
  margin-bottom: 0.5em;
  color: var(--brand-pink);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 26px;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 18px;
}

blockquote {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 15px 0 15px 15px;
}

blockquote::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--brand-pink);
}

blockquote p {
  margin: 0;
}

hr {
  margin: 30px 0;
  border: 0;
  border-top-width: 5px;
  border-color: var(--brand-pink);
  border-style: solid;
}

.wysiwyg img {
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.wysiwyg ul {
  list-style-type: disc;
}

.wysiwyg ul li::marker {
  color: var(--brand-teal);
  font-weight: 900;
}

.wysiwyg ol {
  list-style: number;
}

.wysiwyg ol li::marker {
  color: var(--brand-teal);
  font-weight: 900;
}

.wysiwyg ul,
.wysiwyg ol,
.wysiwyg blockquote {
  padding-left: 35px;
}

.wysiwyg a {
  text-decoration: underline;
  word-wrap: break-word;
}

.nf-form-title h3,
.primary-headline {
  z-index: 1;
  position: relative;
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: 5px;
  padding: 0 10px;
  background-color: var(--brand-pink);
  color: var(--brand-blue);
  font-size: 40px;
  font-weight: 700;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.2);
}

.nf-form-title h3:before,
.primary-headline:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 5px;
  left: -5px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--brand-yellow);
}

.nf-form-title h3:after,
.primary-headline:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--brand-pink);
}

.image-blue-square {
  display: flex;
  z-index: 1;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--brand-teal);
}

.image-blue-square img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 10px;
  margin-bottom: -10px;
  margin-left: -10px;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  p,
  li,
  a,
  input,
  textarea,
  blockquote,
  ul,
  ol,
  label,
  input,
  textarea,
  select,
  option,
  button {
    font-size: 20px;
  }
  h1,
  .h1 {
    font-size: 46px;
  }
  blockquote {
    padding: 30px 0 30px 30px;
  }
}
.global-header {
  position: relative;
  padding: 15px;
  background-color: var(--brand-pink);
  border: 0;
  border-bottom: 10px solid var(--brand-yellow);
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
}

.global-header .container {
  display: flex;
  align-items: center;
  max-width: 1276px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.global-header .logo {
  max-width: 150px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  font-size: 30px;
  font-weight: 700;
}

.global-header a.logo {
  display: block;
}

.global-header .logo > img {
  display: block;
  width: 100%;
}

.global-header .logo > span {
  margin-left: 10px;
}

.global-header .menu {
  z-index: 100;
  overflow: auto;
  position: fixed;
  top: 0;
  left: -100vw;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  padding: 30px 30px;
  background-color: var(--brand-pink);
  transition: transform 0.25s ease-in-out;
}

.global-header .menu .social-media {
  display: flex;
  justify-content: center;
}

.global-header .menu .social-media li {
  margin: 0 15px;
}

.global-header .menu .social-media li a {
  color: var(--brand-blue);
}

.global-header .wp-list-menu {
  margin-top: 20px;
}

.global-header .wp-list-menu .menu-item .sub-menu {
  margin-bottom: -0.5em;
  padding-left: 2em;
  border: 0;
  border-left: 1px solid var(--brand-blue);
}

.global-header .wp-list-menu .menu-item.menu-item-has-children:before {
  content: "";
  margin: 0 0.5em;
  display: none;
  border: 7px solid transparent;
  border-top: 8px solid var(--brand-blue);
  border-bottom: 0 none;
}

.global-header .wp-list-menu li a {
  position: relative;
  outline: none;
  color: var(--brand-blue);
  font-size: 30px;
  text-decoration: none;
}

.global-header .wp-list-menu li a:before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background-color: transparent;
  display: inline;
  transition: background-color 0.25s ease-in-out;
}

.global-header .wp-list-menu li.current-menu-item > a:before,
.global-header .wp-list-menu li a:hover:before,
.global-header .wp-list-menu li a:focus:before,
.global-header .wp-list-menu li a:focus-within:before {
  background-color: var(--brand-blue);
}

.global-header .box {
  z-index: 200;
  position: fixed;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0;
  background-color: transparent;
  border: 0;
  transition: background-color 0.25s ease-in-out;
}

.global-header .box.closed > .hamburger-close {
  display: none;
}

.global-header .box.open > .hamburger-close {
  display: block;
}

.global-header .box.closed > .hamburger-open {
  display: block;
}

.global-header .box.open > .hamburger-open {
  display: none;
}

.global-header.open .menu {
  transform: translateX(100%);
}

.global-header .arrow-up {
  display: none;
  z-index: -5;
  opacity: 0;
  position: fixed;
  right: 15px;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  background-color: transparent;
  transform: scale(1);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.global-header .arrow-up.scrolling {
  z-index: 200;
  opacity: 1;
}

.global-header .arrow-up:hover, .global-header .arrow-up:focus, .global-header .arrow-up:focus-visible, .global-header .arrow-up:focus-within {
  transform: scale(1.2);
}

.global-header .arrow-up svg {
  display: none;
  width: 100%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(3px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(3px);
  }
}
@media (min-width: 768px) {
  .global-header {
    padding: 15px 30px;
  }
  .global-header .mobile-logo-container {
    display: none;
  }
  .global-header .menu {
    overflow: visible;
    position: relative;
    top: unset;
    left: unset;
    display: flex;
    height: auto;
    width: auto;
    margin: 0 -10px 0 auto;
    padding: 0;
  }
  .global-header .wp-list-menu {
    display: flex;
    margin-right: -10px;
  }
  .global-header .wp-list-menu .menu-item {
    position: relative;
    display: flex;
    align-items: baseline;
  }
  .global-header .wp-list-menu .menu-item.menu-item-has-children:before {
    content: "";
    margin: 0 0.5em;
    display: inline-block;
    border: 7px solid transparent;
    border-top: 8px solid var(--brand-blue);
    border-bottom: 0 none;
  }
  .global-header .wp-list-menu .menu-item .sub-menu {
    position: absolute;
    top: 45px;
    right: 0;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    border: 0;
    border-left: 0;
    background-color: var(--brand-pink);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  }
  .global-header .wp-list-menu .menu-item.menu-item-has-children .sub-menu {
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  .global-header .wp-list-menu .menu-item.menu-item-has-children.active .sub-menu {
    height: auto;
    padding: 0.5em 10px;
  }
  .global-header .wp-list-menu li a {
    font-size: 20px;
  }
  .global-header .menu .social-media {
    display: none;
  }
  .global-header .box {
    display: none;
  }
  .global-header.open .menu {
    transform: translateX(0);
  }
  .global-header .arrow-up {
    display: flex;
  }
  .global-header .arrow-up svg {
    display: block;
  }
}
.global-footer {
  margin-top: 30px;
  padding: 30px 15px;
  background-color: var(--brand-blue);
  color: white;
}

.global-footer .wp-list-menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}

.global-footer .wp-list-menu a {
  color: var(--brand-yellow);
  outline: none;
  text-decoration: underline;
}

.global-footer .wp-list-menu a:hover,
.global-footer .wp-list-menu a:focus,
.global-footer .wp-list-menu a:focus-within {
  color: var(--brand-teal);
}

.global-footer .copy a {
  color: var(--brand-yellow);
  outline: none;
  text-decoration: underline;
}

.global-footer .copy a:hover,
.global-footer .copy a:focus,
.global-footer .copy a:focus-within {
  color: var(--brand-teal);
}

.global-footer .highlight {
  color: var(--brand-yellow);
  font-weight: 700;
  text-decoration: underline;
}

.global-footer .social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.global-footer .social-media li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}

.global-footer .social-media li a {
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  border: 3px solid var(--brand-yellow);
  border-radius: 100%;
  color: var(--brand-yellow);
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.global-footer .social-media li a:hover, .global-footer .social-media li a:focus {
  background-color: var(--brand-yellow);
  color: var(--brand-blue);
}

.global-footer .copyright {
  margin-top: 60px;
  text-align: right;
}
.global-footer .copyright a {
  color: var(--brand-yellow);
  font-size: 16px;
}

@media (min-width: 768px) {
  .global-footer {
    padding: 30px;
  }
}
.fragment.page-title {
  padding: 45px 0;
}

.fragment.page-title .page-header {
  max-width: 785px;
  margin: 0 auto;
  color: var(--brand-blue);
  font-size: 45px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: var(--brand-teal) 1px 1px 1px;
}

@media (min-width: 768px) {
  .fragment.page-title .page-header {
    font-size: 65px;
  }
}
.hero-w-mini-contact-form {
  position: relative;
  min-height: 400px;
  margin-bottom: 30px;
}

.hero-w-mini-contact-form.left .hero-image {
  -o-object-position: left;
     object-position: left;
}

.hero-w-mini-contact-form.center .hero-image {
  -o-object-position: center;
     object-position: center;
}

.hero-w-mini-contact-form.right .hero-image {
  -o-object-position: right;
     object-position: right;
}

.hero-w-mini-contact-form .hero-image {
  min-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-w-mini-contact-form .container.special {
  position: relative;
  margin: -50px auto 0 auto;
}

.hero-w-mini-contact-form .content {
  padding: 0 15px;
}

.hero-w-mini-contact-form .nf-form-title {
  display: none;
}

.hero-w-mini-contact-form .nf-form-fields-required {
  display: none;
}

@media (min-width: 768px) {
  .hero-w-mini-contact-form {
    min-height: 800px;
  }
  .hero-w-mini-contact-form {
    display: flex;
    align-items: flex-end;
  }
  .hero-w-mini-contact-form.left {
    justify-content: flex-end;
  }
  .hero-w-mini-contact-form.right {
    justify-content: flex-start;
  }
  .hero-w-mini-contact-form.center {
    justify-content: flex-start;
  }
  .hero-w-mini-contact-form .hero-image {
    min-height: unset;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-height: 800px;
  }
  .hero-w-mini-contact-form .container.special {
    flex: 0 0 50%;
    margin: 0;
  }
  .hero-w-mini-contact-form.center .container.special {
    display: flex;
    flex: 0 0 100%;
    margin: 0;
  }
  .hero-w-mini-contact-form.center nf-fields-wrap {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .hero-w-mini-contact-form.center nf-field {
    margin-right: 2px;
  }
  .hero-w-mini-contact-form.center .nf-field-container {
    margin-bottom: 0;
  }
  .hero-w-mini-contact-form .content {
    padding: 15px 15px;
  }
  .hero-w-mini-contact-form .nf-form-cont {
    width: 100%;
    padding: 10px;
    background-color: rgba(215, 198, 242, 0.7);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .hero-w-mini-contact-form .nf-error .nf-error-msg,
  .hero-w-mini-contact-form .nf-error-msg.nf-error-field-errors {
    margin-top: 5px;
    color: var(--brand-blue);
    font-weight: 900;
  }
}
@media (min-width: 1024px) {
  .hero-w-mini-contact-form.left .container.special {
    margin: 0 30px 0 0;
  }
  .hero-w-mini-contact-form.right .container.special {
    margin: 0 0 0 30px;
  }
}
.copy-w-image .mobile-image {
  display: flex;
  width: 100%;
  margin-bottom: 35px;
}

.copy-w-image .image-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .copy-w-image .mobile-image {
    display: none;
  }
  .copy-w-image .image-wrapper {
    display: flex;
    flex: 0 0 50%;
    margin-top: 70px;
  }
  .copy-w-image .container {
    display: flex;
  }
  .copy-w-image article {
    flex: 0 0 50%;
    padding-right: 30px;
  }
}
.headline-w-three-buttons {
  margin: 30px 0;
}

.headline-w-three-buttons .button-list {
  margin: -10px;
}

.headline-w-three-buttons .button-list li {
  padding: 10px;
}

.headline-w-three-buttons .button-list .button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 10px;
  background-color: var(--brand-pink);
  color: var(--brand-blue);
  outline: none;
  border: 0;
  font-size: 30px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.headline-w-three-buttons .button-list .button:hover,
.headline-w-three-buttons .button-list .button:focus,
.headline-w-three-buttons .button-list .button:focus-within {
  background-color: var(--brand-teal);
  color: white;
}

@media (min-width: 768px) {
  .headline-w-three-buttons .button-list {
    display: flex;
  }
  .headline-w-three-buttons .button-list li {
    flex: 1 1 25%;
  }
}
.list-with-image .image-blue-square {
  margin-bottom: 30px;
}

.list-with-image .item {
  width: 100%;
  margin-top: 15px;
  padding: 0;
}

.list-with-image .item .content {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  padding-top: 15px;
}

.list-with-image .item.active .content {
  height: auto;
  visibility: visible;
}

.list-with-image .item button {
  display: flex;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  outline: none;
  border: 0;
  border-bottom: 5px solid;
  border-color: var(--brand-yellow);
  color: var(--brand-blue);
  font-size: 26px;
  font-weight: 700;
  transition: border-color 0.25s ease-in-out;
}

.list-with-image .item button span {
  text-align: left;
}

.list-with-image .item button svg {
  flex: 0 0 36px;
  margin-right: 15px;
  transform: rotate(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.list-with-image .item button.active svg {
  transform: rotate(45deg);
}

.list-with-image .item button:hover, .list-with-image .item button:focus {
  border-color: var(--brand-teal);
}

@media (min-width: 768px) {
  .list-with-image .list-image-wrapper {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
  .list-with-image .list {
    width: 50%;
    margin-top: -15px;
    margin-right: auto;
    height: -moz-max-content;
    height: max-content;
  }
  .list-with-image .image-blue-square {
    width: calc(50% - 35px);
    max-width: 540px;
    height: -moz-max-content;
    height: max-content;
    margin-left: 35px;
  }
}
.list-of-headshots .item {
  margin-top: 15px;
  padding: 0;
  border: 0;
}

.list-of-headshots .item .content {
  overflow: hidden;
  height: 0;
  padding-top: 15px;
}

.list-of-headshots .item.active .content {
  height: auto;
}

.list-of-headshots .item button {
  display: flex;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: 0;
  border-bottom: 5px solid;
  border-color: var(--brand-yellow);
  color: var(--brand-blue);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  transition: border-color 0.25s ease-in-out;
}

.list-of-headshots .item button span {
  max-width: 400px;
  text-align: left;
}

.list-of-headshots .item button svg {
  flex: 0 0 36px;
  margin-right: 15px;
  transform: rotate(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.list-of-headshots .item button.active svg {
  transform: rotate(45deg);
}

.list-of-headshots .item button:hover,
.list-of-headshots .item button:focus {
  border-color: var(--brand-teal);
}

.list-of-headshots .sub-item {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}

.list-of-headshots .sub-item figure {
  position: relative;
  padding-top: 100%;
}

.list-of-headshots .sub-item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: white;
  border: 10px solid var(--brand-teal);
  border-radius: 100%;
  box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.2);
}

.list-of-headshots .sub-item .name {
  margin: 15px 0 5px 0;
  color: var(--brand-blue);
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
}

.list-of-headshots .sub-item .details {
  margin: 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  .list-of-headshots .list {
    flex: 0 0 calc(100% - 470px);
    height: -moz-max-content;
    height: max-content;
  }
  .list-of-headshots .item .content {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .list-of-headshots .item button {
    width: 50%;
  }
  .list-of-headshots .sub-item {
    flex: 0 0 50%;
    padding: 15px 15px;
  }
  .list-of-headshots .sub-item {
    flex: 0 0 25%;
    padding: 15px 15px;
  }
}
.banner-w-social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px 15px;
  background-color: var(--brand-teal);
  color: white;
}

.banner-w-social-media .announcement {
  margin: 0;
}

.banner-w-social-media .announcement.wysiwyg * {
  color: white;
}

.banner-w-social-media .announcement.wysiwyg p {
  margin: 0;
}

.banner-w-social-media .list {
  display: flex;
  justify-content: center;
  margin: 0;
}

.banner-w-social-media .list li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}

.banner-w-social-media .list li a {
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  color: white;
  border: 3px solid white;
  border-radius: 100%;
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.banner-w-social-media .list li a:hover, .banner-w-social-media .list li a:focus {
  background-color: var(--brand-blue);
  color: white;
}

@media (min-width: 768px) {
  .banner-w-social-media {
    flex-direction: row;
  }
}
.nf-form-cont {
  max-width: 1276px;
  width: 100%;
  margin: 0 auto;
}

.nf-response-msg {
  padding: 30px;
  background-color: var(--brand-pink);
  border: 0;
  border-bottom: 10px solid var(--brand-yellow);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
  cursor: pointer;
  background: var(--brand-pink) !important;
  color: var(--brand-blue) !important;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2) !important;
  font-size: 20px;
  font-weight: 700;
  height: auto !important;
}

.nf-form-content button:focus-within,
.nf-form-content input[type=button]:focus-within,
.nf-form-content input[type=submit]:focus-within,
.nf-form-content button:focus,
.nf-form-content input[type=button]:focus,
.nf-form-content input[type=submit]:focus,
.nf-form-content button:hover,
.nf-form-content input[type=button]:hover,
.nf-form-content input[type=submit]:hover {
  background: var(--brand-teal) !important;
  color: white !important;
}

.no-posts {
  height: calc(100vh - 475px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nf-form-fields-required {
  margin-bottom: 30px !important;
}

.nf-form-content .recaptcha-wrap label {
  display: none;
}

.headline-w-testimonials .testimonial-list {
  display: flex;
  flex-direction: column;
}

.headline-w-testimonials .testimonial-list .testimonial {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  padding: 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.headline-w-testimonials .testimonial-list .testimonial .text {
  height: 100%;
  padding: 20px;
}

.headline-w-testimonials .testimonial-list .testimonial:nth-child(even) .text {
  background-color: var(--brand-pink);
}

.headline-w-testimonials .testimonial-list .testimonial:nth-child(even) .text .citation em {
  color: white;
}

.headline-w-testimonials .testimonial figure {
  display: block;
  position: relative;
  padding-top: 100%;
}

.headline-w-testimonials .testimonial figure img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .headline-w-testimonials .list-wrapper {
    margin: -15px;
  }
  .headline-w-testimonials .testimonial-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .headline-w-testimonials .testimonial-list .testimonial {
    flex: 0 0 calc(50% - 30px);
    margin: 15px;
  }
  .headline-w-testimonials .testimonial-list .testimonial:nth-child(even) {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1024px) {
  .headline-w-testimonials .testimonial-list .testimonial {
    flex: 0 0 calc(33.33% - 30px);
    margin: 15px;
  }
}
.headline-w-link-grid .grid-wrapper .grid li {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 0;
  border-bottom: 10px solid var(--brand-pink);
}

.headline-w-link-grid .grid-wrapper .grid li:last-of-type {
  border-bottom: 0;
}

.headline-w-link-grid .grid-wrapper .grid li .source {
  font-weight: 700;
}

.headline-w-link-grid .grid-wrapper .grid li .date {
  font-weight: 900;
}

.headline-w-link-grid .grid-wrapper .grid li h3 {
  margin-top: 0;
}

.headline-w-link-grid .grid-wrapper .grid li h3 a {
  font-size: inherit;
  color: var(--brand-blue);
  outline: none;
  text-decoration: underline;
}

.headline-w-link-grid .grid-wrapper .grid li h3 a:hover,
.headline-w-link-grid .grid-wrapper .grid li h3 a:focus,
.headline-w-link-grid .grid-wrapper .grid li h3 a:focus-within {
  color: var(--brand-teal);
}

.headline-w-link-grid .grid-wrapper .grid li .media-wrapper {
  position: relative;
  margin-bottom: 30px;
  /* padding-top: 65%; */
}

.headline-w-link-grid .grid-wrapper .grid li .media-wrapper img,
.headline-w-link-grid .grid-wrapper .grid li .media-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .headline-w-link-grid .grid-wrapper .grid {
    margin: 0 -15px;
  }
  .headline-w-link-grid .grid-wrapper .grid li {
    flex-direction: row;
  }
  .headline-w-link-grid .grid-wrapper .grid li.no-media {
    justify-content: center;
  }
  .headline-w-link-grid .grid-wrapper .grid li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .headline-w-link-grid .grid-wrapper .grid li .text-wrapper,
  .headline-w-link-grid .grid-wrapper .grid li .media-wrapper {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px 30px 15px;
  }
  .headline-w-link-grid .grid-wrapper .grid li .text-wrapper {
    padding-top: 30px;
  }
  /* .headline-w-link-grid .grid-wrapper .grid li .media-wrapper {
      padding-top: 35%;
  } */
}
.fullscreen-video iframe {
  width: 100%;
  height: 100%;
}

.blog-template {
  max-width: 785px;
  margin: 0 auto 60px auto;
}

.blog-template .date {
  color: var(--brand-teal);
  font-size: 18px;
  font-style: italic;
}

.container {
  max-width: 1276px;
  margin: 0 auto;
}

main {
  padding: 0 15px;
}

section {
  padding: 15px 0;
}

@media (min-width: 768px) {
  main {
    padding: 0 30px;
  }
  section {
    padding: 30px 0;
  }
  .nf-form-cont {
    width: 50%;
  }
}/*# sourceMappingURL=main.css.map */