:root {
  --text-dark-backgrounds: #0f203e;
  --dark-teal: #347382;
  --hover-color: #69d3bf;
  --active-color: #74d2c0;
  --alternative-color-1: #eb642b;
  --light-backgrounds: #f4f7f8;
  --alternative-color-2: #bce0e6;
  --round-4: 4px;
  --white: white;
  --black: #0f203e;
  --very-light-teal: #ddeff2;
  --light-teal: #bce0e6;
  --all-links: #cc4d25;
  --margin-24: 24px;
  --margin-6: 6px;
}

.w-embed-youtubevideo {
  width: 100%;
  background-image: url('../images/youtube-placeholder.svg');
  background-position: 50%;
  background-size: cover;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

body {
  color: var(--text-dark-backgrounds);
  font-family: Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.8rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Domine, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Domine, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

p {
  margin-bottom: 18px;
}

a {
  color: var(--dark-teal);
  text-decoration: none;
  transition: all .25s;
}

a:hover {
  color: var(--dark-teal);
  text-decoration: underline;
}

ul {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 18px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
  padding-left: 3px;
}

label {
  color: var(--text-dark-backgrounds);
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  display: block;
}

strong {
  font-weight: 700;
}

blockquote {
  border-left: 4px solid var(--dark-teal);
  color: var(--text-dark-backgrounds);
  letter-spacing: .5px;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 0 0 0 24px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

.p-large {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.p-small {
  flex: 0 auto;
  font-size: 1rem;
  line-height: 1.6rem;
}

.p-small.caption {
  margin-bottom: 60px;
  font-style: italic;
}
.p-small.caption.negative-margin {
  margin-top: -36px;
}

.p-small.caption:before {
  content: '- ';
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 400px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.style-guide-color {
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  display: flex;
}

.style-guide-color.active-color {
  background-color: var(--active-color);
}

.style-guide-color.text-dark-backgrounds {
  background-color: var(--text-dark-backgrounds);
}

.style-guide-color.hover-color {
  background-color: var(--hover-color);
}

.style-guide-color.alternative-color-1 {
  background-color: var(--alternative-color-1);
}

.style-guide-color.light-backgrounds {
  background-color: var(--light-backgrounds);
}

.style-guide-color.alternative-color-2 {
  background-color: var(--alternative-color-2);
}

.button {
  border-radius: var(--round-4);
  background-color: var(--active-color);
  color: var(--text-dark-backgrounds);
  text-align: center;
  letter-spacing: 1px;
  flex: none;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 14px 40px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
  transition-duration: .35s;
  display: inline-block;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.button:hover {
  background-color: var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
  transform: scale(1.03);
}

.button.secondary {
  border: 2px solid var(--text-dark-backgrounds);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
}

.button.secondary:hover {
  border-color: var(--hover-color);
}

.button.secondary.invert {
  border: 2px solid var(--white);
  color: var(--white);
}

.button.t-margin {
  margin-top: 24px;
}

.section {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.section.no-t-padding {
  padding-top: 0;
}

.section._404 {
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.tint {
  background-color: var(--light-backgrounds);
}

.section.tint._50-p-right {
  background-image: linear-gradient(to right, var(--white) 50%, var(--light-backgrounds) 50%);
}

.section.tint._50-p-left {
  background-image: linear-gradient(270deg, var(--white) 50%, var(--light-backgrounds) 50%);
}

.section.tint._25-p-right {
  background-image: linear-gradient(to right, var(--white) 70%, var(--light-backgrounds) 70%);
}

.section.tint._25-p-left {
  background-image: linear-gradient(270deg, var(--white) 70%, var(--light-backgrounds) 70%);
}

.section.dark {
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
}

.section.dark.text-element {
  background-color: #0f203e;
  border: 1px solid rgba(255, 255, 255, .15);
  border-style: solid none;
  padding-top: 36px;
  padding-bottom: 36px;
}

.section._w-floating-block {
  padding-top: 0;
  padding-bottom: 0;
}

.section._w-floating-block.as-header {
  padding-top: 60px;
}

.section.divider {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.section.narow {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.no-b-padding {
  padding-bottom: 0;
}

.section.text-changer {
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .15);
  border-style: solid none;
  padding-top: 36px;
  padding-bottom: 36px;
}

.fluid-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
}

.fluid-cell._67-p {
  width: 66.7%;
  flex: 0 auto;
}

.fluid-cell._50-p {
  width: 50%;
  flex: 0 auto;
}

.fluid-cell._25-p {
  width: 25%;
  flex: 0 auto;
}

.fluid-cell._70-p {
  width: 70%;
  flex: 0 auto;
}

.fluid-cell._100-p {
  width: 100%;
  flex: 0 auto;
}

.fluid-cell._33-p {
  width: 33.3%;
  flex: 0 auto;
}

.fluid-cell.center-object {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fluid-cell.center-intro {
  width: 60%;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 20%;
  margin-right: 20%;
  display: flex;
}

.fluid-cell.no-b-padding {
  padding-bottom: 0;
}

.fluid-cell._55-p-w-floating-block {
  z-index: 3;
  width: 50%;
  flex: 0 auto;
  position: relative;
}

.fluid-cell._55-p-w-floating-block.left {
  padding-left: 0;
}

.fluid-cell._55-p-w-floating-block.right {
  padding-right: 0;
}

.fluid-cell.text-changer {
  width: 50%;
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 25%;
  margin-right: 25%;
  display: flex;
}

.fluid-cell.pagination-wrap {
  align-items: center;
  display: flex;
}

.fluid-cell.gallery-item {
  width: 33.3%;
  flex: 0 auto;
  padding: 12px;
  display: flex;
}

.fluid-cell._20-p {
  width: 20%;
  flex: 0 auto;
}

.invert {
  color: #fff;
}

.subheading {
  color: var(--text-dark-backgrounds);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-top: 12px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
}

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

.text-field {
  min-height: 55px;
  color: var(--text-dark-backgrounds);
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  margin-bottom: 0;
  padding: 12px 36px 12px 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8rem;
  transition: all .2s;
}

.text-field:focus {
  border-bottom-color: var(--black);
}

.text-field::-ms-input-placeholder {
  color: var(--text-dark-backgrounds);
}

.text-field::placeholder {
  color: var(--text-dark-backgrounds);
}

.text-field.text-area {
  min-height: 150px;
  padding-top: 12px;
}

.text-field.search {
  background-image: url('../images/Search.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 36px;
}

.text-field.invert,
.form-block.invert .text-field {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .3);
}

.text-field.invert::-ms-input-placeholder,
.form-block.invert .text-field::-ms-input-placeholder {
  color: var(--white);
}

.text-field.invert::placeholder,
.form-block.invert .text-field::placeholder {
  color: var(--white);
}

.container {
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  position: relative;
}

.container.center {
  justify-content: center;
}

.container.center-horizontal {
  justify-content: center;
  align-items: center;
}

.container._w-floating-block {
  height: 100%;
  align-items: center;
  padding: 48px 0;
  position: relative;
}

.container._w-floating-block.right {
  justify-content: flex-end;
}

.container._w-isolated-image {
  align-items: flex-end;
  padding-top: 84px;
  padding-bottom: 84px;
  position: relative;
}

.container.footer-nav {
  padding-bottom: 24px;
}

.container.gallery-wrap {
  padding: 24px 60px 12px;
}

.form-section {
  text-align: left;
  flex-flow: wrap;
  align-items: stretch;
  margin-left: -1%;
  display: flex;
}

.faux-h1 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.faux-h2 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.6rem;
}

.faux-h3 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.faux-h4 {
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Domine, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.3rem;
}

.faux-h4.in-mega {
  padding-top: 0;
}

.faux-h4.mobile-card-title {
  display: none;
}

.faux-h5 {
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Domine, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.faux-h5:hover {
  text-decoration: none;
}

.faux-h5.margin-24 {
  margin-bottom: 24px;
}

.style-guide-color-block {
  border-bottom: 1px solid var(--light-backgrounds);
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.form-item-wrap {
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
  padding-top: 1%;
  padding-bottom: 1%;
}

.form-item-wrap.half {
  width: 48%;
}

.center {
  text-align: center;
}

.faux-h6 {
  margin-bottom: 8px;
  padding-top: 8px;
  font-family: Domine, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.faux-h6:hover {
  text-decoration: none;
}

.heading-link {
  color: var(--text-dark-backgrounds);
  border-bottom: 1px solid rgba(0, 0, 0, .11);
  transition: all .2s;
}

.heading-link:hover {
  border-bottom: 1px solid var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.img-in-text,
img.alignnone {
  min-width: 120%;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -10%;
  display: block;
}

.link {
  letter-spacing: .5px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6rem;
  display: inline-block;
  position: relative;
}

.link:hover {
  border-bottom-color: var(--text-dark-backgrounds);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
  transform: scale(1.03);
}

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

.link.in-faq {
  margin-top: 0;
  margin-bottom: 18px;
}

.footer-nav-link {
  color: var(--text-dark-backgrounds);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-size: 1rem;
  line-height: 1.6rem;
  text-decoration: none;
  display: inline;
}

.footer-nav-link:hover {
  border-bottom-color: var(--dark-teal);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.thumb-img {
  min-width: 100%;
}

.button-hover {
  width: 100%;
  height: 200%;
  background-color: var(--hover-color);
  display: none;
  position: absolute;
  top: 101%;
  bottom: 0%;
  left: 0;
  right: auto;
}

.button-text {
  z-index: 2;
  position: relative;
}

.icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--active-color);
  margin-top: 12px;
  margin-bottom: 18px;
}

.logo-img {
  height: 48px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-right: 12px;
}

.child-link {
  width: 100%;
  color: var(--text-dark-backgrounds);
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}

.child-link:hover {
  color: var(--dark-teal);
  text-decoration: none;
}

.child-link.w--current {
  color: #01c6e4;
}

.child-link.last,
.child-link:last-child {
  border-bottom-style: none;
}

.child-link.last:hover,
.child-link:last-child:hover {
  box-shadow: none;
}

.child-link.mega {
  color: var(--text-dark-backgrounds);
  white-space: pre-wrap;
  border-bottom-style: none;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.child-link.mega:hover {
  color: var(--dark-teal);
}

.child-link.mega.invert {
  color: var(--active-color);
}

.child-link.mega.invert:hover {
  color: var(--white);
}

.nav-link {
  height: 100%;
  color: var(--text-dark-backgrounds);
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  font-family: Roboto, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all .25s;
  display: flex;
}

.nav-link:hover {
  border-bottom-color: var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.nav-link.w--current {
  border-top-color: #98b839;
}

.nav-link.w--current:hover {
  color: var(--text-dark-backgrounds);
}

.nav-link.hide-desktop {
  display: none;
}

.nav-link._w-dropdown {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.nav-link.as-button {
  height: auto;
  border-radius: var(--round-4);
  background-color: var(--active-color);
  color: var(--black);
  margin-left: 12px;
  margin-right: 12px;
  padding: 6px 24px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
}

.nav-link.as-button:hover {
  background-color: var(--hover-color);
  color: var(--black);
  transform: scale(1.03);
}

.nav-link.in-dropdown {
  background-image: url('../images/Arrow-nav.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-bottom-style: none;
  margin-left: 12px;
  margin-right: 12px;
  padding-left: 0;
  padding-right: 24px;
}

.nav-link.in-mega-dropdown {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  border-bottom-style: none;
  margin-right: 12px;
  padding-left: 0;
  padding-right: 24px;
}

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

.embed-image {
  z-index: 2;
  object-fit: cover;
  border-radius: 36px 400px 400px;
  position: relative;
  overflow: hidden;
}

.embed-image.classic {
  border-radius: 16px;
}

.highlighted-text {
  background-color: var(--alternative-color-1);
  box-shadow: -6px 0 0 0 var(--alternative-color-1), 6px 0 0 0 var(--alternative-color-1);
  color: var(--text-dark-backgrounds);
  margin-left: 6px;
  margin-right: 6px;
}

.nav-bar {
  z-index: 1111;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-dropdown-content {
  background-color: var(--white);
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 30px;
  font-weight: 600;
  display: none;
  position: absolute;
  top: 95%;
  bottom: auto;
  left: auto;
  right: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
}

.nav-dropdown-content._w-hamburger {
  right: 0;
}

.nav-dropdown-content.mega {
  width: 100%;
  min-width: 100%;
  background-color: var(--white);
  border-radius: 0;
  flex-flow: wrap;
  padding: 36px 0;
  top: 100%;
  left: 0;
  right: 0;
}

.nav-dropdown-content.mega:hover {
  color: var(--text-dark-backgrounds);
}

.tittle-in-30-p-article {
  padding-right: 36px;
}

.article-thumb-tint {
  z-index: -1;
  background-color: var(--light-backgrounds);
  border-radius: 16px;
  position: absolute;
  top: 36px;
  bottom: -36px;
  left: 36px;
  right: -36px;
}

.tittle-in-50-p-article {
  padding-right: 96px;
}

.thumb-link {
  z-index: 1;
  border-radius: 16px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.article-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px;
}

.article-cell:hover {
  text-decoration: none;
}

.article-cell._40-p-article {
  width: 40%;
  flex: 0 auto;
  margin-left: 5%;
  margin-right: 5%;
  position: relative;
}

.article-cell._40-p-article.second {
  margin-top: 4vw;
}

.article-cell._50-p-article {
  width: 50%;
  flex: 0 auto;
  position: relative;
}

.article-cell._33-p-article {
  width: 33.3%;
  flex: 0 auto;
  margin-top: 60px;
  margin-left: 8%;
  margin-right: 8%;
  position: relative;
}

.hide-desktop {
  display: none;
}

.article-share {
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.pagination {
  background-color: var(--very-light-teal);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.page-no {
  color: var(--text-dark-backgrounds);
  border-radius: 30px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all .2s;
  display: block;
}

.page-no:hover {
  background-color: var(--white);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.page-no.current {
  background-color: var(--hover-color);
}

.page-no.current:hover {
  border-color: var(--alternative-color-1);
  color: #131212;
}

.link-text {
  color: var(--text-dark-backgrounds);
}

.link-text.invert, .link-text.in-card-flip {
  color: var(--white);
}

.link-arrow {
  width: 19px;
  height: 19px;
  background-color: var(--hover-color);
  background-image: url('../images/Arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  position: absolute;
  top: 3px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.embed-media {
  z-index: 2;
  max-width: 50%;
  min-width: 40%;
  position: relative;
}

.embed-media.classic {
  max-width: 70%;
  min-width: 60%;
}

.dropdown-content-wrap {
  border: 2px solid var(--text-dark-backgrounds);
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.dropdown-content-wrap.on-dark {
  border-color: var(--white);
}

.dropdown-wrap {
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  position: relative;
}

.dropdown-wrap.last {
  margin-bottom: 18px;
}

.dropdown-wrap.on-dark {
  border-bottom-color: rgba(255, 255, 255, .15);
}

.dropdown-trigger {
  z-index: 20;
  width: 100%;
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 18px;
  font-family: Domine, sans-serif;
  font-weight: 700;
  display: flex;
  position: relative;
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  min-height: 18px;
  min-width: 18px;
  background-color: var(--active-color);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-left: 24px;
  display: flex;
}

.dropdown-icon.faq {
  margin-top: 3px;
}

.dropdown-content {
  padding: 24px 24px 6px;
}

.simple-slider-arrow-icon {
  color: var(--text-dark-backgrounds);
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4rem;
  display: flex;
}

.simple-slider-arrow-icon.down {
  margin-top: 1px;
  transform: rotate(90deg);
}

.side-graphic-wrap {
  width: 72px;
  height: 500px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  top: -60px;
  bottom: auto;
  left: auto;
  right: 0%;
}

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

.text-block {
  height: 100%;
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 18px;
  padding: 48px 48px 36px;
  transition: all .25s;
  display: block;
}

.text-block:hover {
  color: var(--white);
  text-decoration: none;
}

.text-block.teal {
  background-color: var(--very-light-teal);
  color: var(--text-dark-backgrounds);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.text-block.dark-teal {
  background-color: var(--dark-teal);
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  margin-right: 6px;
  padding-bottom: 2px;
  display: flex;
}

.social-icon:hover {
  background-color: var(--active-color);
  color: var(--text-dark-backgrounds);
  transform: scale(1.1);
}

.article-thumb-wrap {
  position: relative;
}

.dropdown-trigger-2 {
  z-index: 20;
  width: 100%;
  color: #005689;
  cursor: pointer;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.nav-wrap {
  border-top: 6px solid var(--text-dark-backgrounds);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-dropdown-trigger {
  z-index: 20;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
}

.nav-dropdown-trigger:hover {
  text-decoration: none;
}

.nav-dropdown-trigger.hamburger {
  width: 100%;
  height: 100%;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.menu-open {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-icon-button {
  width: 30px;
  height: 42px;
  cursor: pointer;
  position: relative;
}

.nav-icon-button._w-mobile-menu {
  display: none;
}

.nav-icon-button._w-dropdown {
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.nav-icon-buttons {
  align-items: center;
  padding-left: 12px;
  padding-right: 0;
  font-size: .9rem;
  line-height: 1.6rem;
  display: flex;
}

.breadcrumbs {
  align-items: center;
  margin-bottom: 12px;
  font-size: .8rem;
  line-height: 1.4rem;
  display: flex;
}

.breadcrumbs.article-page {
  margin-bottom: 36px;
}

.header {
  z-index: 10;
  background-color: var(--white);
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 72px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.header.dark {
  z-index: 100;
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
}

.header.tint {
  background-color: var(--light-backgrounds);
}

.header._w-image {
  min-height: 450px;
  background-image: linear-gradient(to bottom, var(--white), var(--light-backgrounds));
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.header._w-image.dark {
  background-image: none;
}

.header.no-b-padding {
  padding-bottom: 0;
}

.avatar-large {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 100px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.card-flip-large {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.flip-block-large {
  height: 400px;
  perspective: 1000px;
  justify-content: center;
  position: relative;
}

.card-flip-side-large {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1200px;
  padding: 24px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-flip-side-large.back {
  background-color: var(--text-dark-backgrounds);
  color: #fff;
  transform-style: preserve-3d;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 30px 24px;
  font-size: 1rem;
  line-height: 1.7rem;
  display: flex;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
  box-shadow: 8px 8px 48px rgba(0, 0, 0, .15);
}

.card-flip-side-large.front {
  border: 2px solid var(--text-dark-backgrounds);
  text-align: center;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 42px;
  display: flex;
  transform: rotate(0);
}

.card-flip-side-large.front.dark-teal {
  background-color: var(--dark-teal);
  color: var(--white);
  border-color: rgba(15, 32, 62, 0);
}

.card-flip-side-large.front.large-image {
  color: var(--text-dark-backgrounds);
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.block-floating {
  width: 100%;
  background-color: var(--text-dark-backgrounds);
  color: #fff;
  border-radius: 0 16px 16px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 60px 60px 72px;
  display: flex;
}

.block-floating.right {
  background-image: url('../images/Angle-BG-Right.svg');
  background-position: 0%;
  border-radius: 16px 0 0 16px;
  padding-left: 84px;
}

.parallax-image {
  width: 100%;
  height: 116%;
  object-fit: cover;
  position: absolute;
  top: -8%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.parallax-bg-wrap {
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.parallax-bg-wrap.left {
  width: 60%;
  right: auto;
}

.parallax-bg-wrap.right {
  width: 60%;
  left: auto;
}

.sticky-bg-mobile {
  display: none;
}

.hamburger-row {
  width: 30px;
  height: 2px;
  background-color: var(--text-dark-backgrounds);
  border-radius: 2px;
}

.hamburger {
  width: 30px;
  height: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hamburger.in-dropdown-button {
  margin-left: 24px;
}

.ppm-intro-page-link {
  width: 100%;
  color: var(--text-dark-backgrounds);
  background-color: #fff;
  border: 1px solid #e8eae9;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 12px 36px;
  font-weight: 700;
  display: block;
}

.ppm-intro-page-link:hover {
  border-color: var(--hover-color);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.number {
  font-family: Domine, sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
}

.number-wrap {
  z-index: 1;
  border-radius: 100%;
  margin-bottom: 12px;
  padding-bottom: 18px;
  padding-left: 24px;
  padding-right: 24px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.number-bg {
  z-index: -1;
  width: 200%;
  height: 100%;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  bottom: 0%;
  left: -50%;
  right: 0%;
  transform: rotate(-10deg);
}

.number-bg.orange {
  background-color: var(--alternative-color-1);
}

.number-bg.teal {
  background-color: var(--alternative-color-2);
}

.number-bg.ocean {
  background-color: var(--active-color);
}

.isolated-image-wrap {
  width: 50%;
  height: 110%;
  justify-content: center;
  align-items: flex-end;
  margin-left: 50%;
  display: flex;
  position: absolute;
  top: -10%;
}

.isolated-image-wrap.in-header {
  z-index: -1;
  width: 80%;
  height: 100%;
  margin-left: 20%;
  padding-left: 30%;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.isolated-image {
  max-height: 100%;
  min-width: 100%;
  object-fit: contain;
}

.isolated-image.xxx {
  object-fit: none;
}

.embed-shadow {
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(188, 224, 230, .6), rgba(255, 255, 255, 0) 70%);
  border-radius: 36px 400px 400px;
  position: absolute;
  top: -8%;
  bottom: auto;
  left: auto;
  right: -8%;
}

.embed-shadow.on-dark {
  opacity: .3;
}

.breadcrumb-icon {
  color: var(--dark-teal);
  margin-right: 12px;
}

.breadcrumb-link {
  color: var(--text-dark-backgrounds);
  margin-right: 12px;
}

.breadcrumb-link:hover {
  color: var(--active-color);
  text-decoration: none;
}

.breadcrumb-link.invert {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .25);
}

.breadcrumb-link.invert:hover {
  color: var(--active-color);
  border-bottom-color: #fff;
}

.before-after-search {
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-end;
  display: flex;
}

.search-item {
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
}

.search-wrap {
  width: 100%;
  margin-bottom: 12px;
}

.flip-block-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
}

.flip-block-cell._33-p {
  width: 33.3%;
  flex: 0 auto;
}

.flip-block-cell._50-p {
  width: 50%;
  flex: 0 auto;
}

.nav-dropdown-link {
  color: var(--text-dark-backgrounds);
  letter-spacing: 1px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: Roboto, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.nav-dropdown-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.nav-dropdown-link.w--current {
  border-top-color: #98b839;
}

.nav-dropdown-link.w--current:hover {
  color: var(--text-dark-backgrounds);
}

.nav-dropdown-link.mega {
  position: static;
}

.nav-dropdown-link.mega:hover {
  color: var(--text-dark-backgrounds);
}

.nav-bar-bg-trigger {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.text-link {
  border-bottom: 2px solid var(--active-color);
  color: var(--text-dark-backgrounds);
  transition: all .2s;
}

.text-link:hover {
  border-bottom-color: var(--text-dark-backgrounds);
  color: var(--active-color);
  text-decoration: none;
  transform: translate(0, -3px);
}

.navtainer {
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.form-block {
  margin-bottom: 0;
}

.embed-image-deco {
  z-index: -1;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: -12%;
  right: auto;
}

.heading-line {
  width: 36px;
  height: 4px;
  background-color: var(--alternative-color-1);
  border-radius: 2px;
  margin-top: 6px;
  margin-bottom: 12px;
}

.box-cta {
  height: 100%;
  background-color: var(--text-dark-backgrounds);
  color: var(--light-backgrounds);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  padding: 36px 48px;
  transition: all .25s;
  display: flex;
}

.box-cta-buttons {
  padding-left: 24px;
  display: flex;
}

.horizontal-spacer._24 {
  width: 24px;
  height: 0;
}

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

.ba-cta-row {
  z-index: 1;
  text-align: left;
  flex: 1;
  justify-content: center;
  display: flex;
  position: relative;
}

.ba-cta-wrap {
  width: 50%;
  text-align: left;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: stretch;
  padding: 12px;
  display: flex;
  position: relative;
}

.ba-cta-image {
  width: 100%;
  border-radius: 16px;
}

.ba-cta-item {
  width: 100%;
  padding: 12px;
  position: relative;
}

.ba-cta-tooltip {
  background-color: var(--alternative-color-2);
  color: var(--text-dark-backgrounds);
  border-radius: 2px;
  padding: 4px 12px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 0;
  right: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.ba-cta-deco-1 {
  position: absolute;
  top: -24px;
  bottom: auto;
  left: -24px;
  right: auto;
}

.ba-cta-deco-2 {
  position: absolute;
  top: auto;
  bottom: -24px;
  left: auto;
  right: -24px;
}

.changer-overflow {
  height: 120px;
  display: inline-block;
  overflow: hidden;
}

.changer-move {
  display: inline-block;
  overflow: hidden;
}

.changer-text {
  justify-content: center;
  align-items: center;
  font-family: Domine, sans-serif;
  font-size: 2.4vw;
  font-weight: 400;
  line-height: 4vw;
  display: inline;
  position: relative;
  top: 0;
}

.text-underline {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  display: inline;
}

.changer {
  height: 120px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.header-circle {
  z-index: -1;
  width: 600px;
  height: 600px;
  background-image: linear-gradient(to bottom, var(--alternative-color-2), rgba(255, 255, 255, 0) 70%);
  opacity: .15;
  border-radius: 100%;
  position: absolute;
  top: auto;
  bottom: -40%;
  left: 30%;
  right: auto;
}

.header-circle.on-dark {
  opacity: .15;
}

.header-pattern {
  z-index: -1;
  position: absolute;
  top: auto;
  bottom: -5%;
  left: 35%;
  right: auto;
}

.mega-nav-col {
  width: 25%;
  text-align: left;
  border-right: 1px solid rgba(15, 32, 62, .15);
  flex: 1;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

.mega-nav-col.last {
  background-color: var(--text-dark-backgrounds);
  color: var(--white);
  border-right-style: none;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 30px;
  padding-bottom: 24px;
}

.mega-nav-col._3 {
  border-right-style: none;
}

.mega-dropdown-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 12px;
  font-weight: 600;
  display: block;
}

.mega-dropdown-link {
  color: var(--text-dark-backgrounds);
  letter-spacing: 1px;
  flex-direction: column;
  align-items: flex-start;
  font-family: Roboto, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.6rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.mega-dropdown-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.mega-dropdown-link.w--current {
  border-top-color: #98b839;
}

.mega-dropdown-link.w--current:hover {
  color: var(--text-dark-backgrounds);
}

.footer-nav-link-wrap {
  padding-top: 6px;
  padding-bottom: 6px;
}

.floating-quote {
  z-index: 1;
  width: 300px;
  height: 260px;
  background-color: var(--dark-teal);
  border-radius: 36px 300px 300px;
  padding: 36px 72px 36px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6rem;
  position: absolute;
  top: auto;
  bottom: -20%;
  left: auto;
  right: 6%;
}

.quote-icon {
  position: absolute;
  top: auto;
  bottom: -12px;
  left: auto;
  right: 36px;
}

.floating-quote-author {
  flex: 0 auto;
  padding-top: 12px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6rem;
}

.quote-rating {
  color: var(--alternative-color-1);
  margin-bottom: 18px;
}

.tabs {
  flex: 1;
}

.tabs.vertical {
  display: flex;
}

.tab-container {
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  margin-left: -24px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.tab-container.vertical {
  margin-top: -24px;
  margin-left: 0;
  padding-top: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.tab-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
}

.tabs-content.vertical {
  width: 75%;
}

.tab-link {
  letter-spacing: 1px;
  background-color: rgba(255, 255, 255, 0);
  border-top: 2px solid rgba(0, 0, 0, 0);
  border-left: 1px solid rgba(0, 0, 0, 0);
  border-right: 1px solid rgba(0, 0, 0, 0);
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6rem;
}

.tab-link:hover {
  color: var(--dark-teal);
  text-decoration: none;
}

.tab-link.w--current {
  color: var(--dark-teal);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.tab-link.on-dark {
  color: var(--white);
}

.tab-link.on-dark:hover {
  color: var(--hover-color);
}

.tab-link.on-dark.w--current {
  background-color: var(--text-dark-backgrounds);
  color: var(--active-color);
}

.tab-link.vertical {
  padding: 14px 18px;
}

.tab-link.vertical.w--current {
  border-bottom-color: rgba(15, 32, 62, 0);
}

.tabs-menu {
  background-color: var(--very-light-teal);
  border-radius: 16px;
  padding: 12px;
  display: flex;
}

.tabs-menu.on-dark {
  background-color: rgba(188, 224, 230, .1);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.tabs-menu.vertical {
  width: 33.3%;
  height: 100%;
  min-width: 250px;
  background-color: var(--very-light-teal);
  border-bottom-style: none;
  border-radius: 16px;
  flex-direction: column;
  padding: 12px;
}

.tabs-menu.vertical.on-dark {
  background-color: rgba(221, 239, 242, .1);
}

.card-flip-links {
  width: 100%;
  text-align: right;
  padding-bottom: 18px;
}

.logo-link {
  flex: 1;
}

.text-block-deco {
  z-index: -1;
  width: 140px;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: auto;
  right: -5%;
}

.deco-circle {
  z-index: -1;
  width: 800px;
  height: 800px;
  background-image: linear-gradient(rgba(188, 224, 230, .5), rgba(255, 255, 255, 0) 70%);
  border-radius: 100%;
  position: absolute;
  top: 36px;
  bottom: 0%;
  left: -300px;
  right: auto;
}

.deco-circle.on-dark {
  opacity: .15;
}

.mega-nav-cols-wrap {
  z-index: 3;
  width: 100%;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.testimonial-author {
  flex: 0 auto;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.6rem;
}

.card-flip-map {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.sm-icon-16 {
  width: 14px;
  height: 14px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.img-article-header {
  min-width: 120%;
  margin-top: 60px;
  margin-bottom: 24px;
  margin-left: -10%;
  display: block;
}

.link-invert {
  color: var(--active-color);
}

.link-invert:hover {
  color: var(--hover-color);
}

.select-field {
  height: 54px;
  color: var(--text-dark-backgrounds);
  cursor: pointer;
  background-color: #fff;
  background-image: url('../images/Hamburger.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  border-style: none none solid;
  border-width: 2px 2px 1px;
  border-bottom-color: rgba(0, 0, 0, .2);
  margin-bottom: 0;
  padding-left: 36px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  transition: all .2s;
}

.select-field:focus {
  border-bottom-color: var(--text-dark-backgrounds);
}

.dropdown-button {
  cursor: pointer;
  position: relative;
}

.dropdown-button-trigger {
  z-index: 20;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  position: relative;
}

.dropdown-button-trigger:hover {
  text-decoration: none;
}

.dropdown-button-trigger.button {
  padding-left: 30px;
  padding-right: 30px;
}

.dropdown-button-content {
  background-color: var(--white);
  text-align: left;
  border-radius: 6px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 30px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5rem;
  display: block;
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
}

.social-icon-font {
  font-family: Awb Icons;
}

.footer-smi-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-gradient {
  z-index: -1;
  width: 100%;
  height: 120%;
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--light-teal), rgba(188, 224, 230, .25) 60%, rgba(15, 32, 62, 0));
  opacity: .2;
  position: absolute;
  top: auto;
  bottom: -20%;
  left: auto;
  right: 0%;
}

.image-gradient.on-dark {
  opacity: .15;
}

.div-block {
  background-image: url('../images/New-Header-IMG.png');
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-2 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.isolated-image-gradient {
  z-index: -1;
  opacity: .2;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.anchor-link {
  z-index: 20;
  width: 100%;
  color: var(--text-dark-backgrounds);
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 18px;
  font-family: Domine, sans-serif;
  font-weight: 700;
  display: flex;
  position: relative;
}

.anchor-link:hover {
  border-bottom-color: var(--text-dark-backgrounds);
  color: var(--text-dark-backgrounds);
  text-decoration: none;
}

.anchor-link.on-dark {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.anchor-link.on-dark:hover {
  color: var(--hover-color);
}

@media screen and (min-width: 1440px) {
  .section {
    overflow: hidden;
  }

  .container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .container._w-floating-block {
    padding: 60px 48px 60px 72px;
  }

  .container._w-isolated-image {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .nav-link {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .nav-link.as-button {
    margin-left: 18px;
    margin-right: 18px;
  }

  .page-no:hover {
    color: var(--dark-teal);
  }

  .header._w-image {
    align-items: stretch;
  }

  .avatar-large {
    width: 180px;
    height: 180px;
  }

  .card-flip-side-large {
    padding: 36px;
  }

  .block-floating {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    padding-left: 60px;
  }

  .block-floating.right {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .parallax-bg-wrap.left {
    width: 52%;
    left: 72px;
  }

  .parallax-bg-wrap.right {
    width: 52%;
    right: 72px;
  }

  .navtainer {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 72px;
    padding-right: 72px;
  }

  .changer-text {
    font-size: 2.3rem;
    line-height: 3.5rem;
  }

  .header-circle {
    max-height: 600px;
    max-width: 600px;
  }

  .mega-nav-col {
    padding-left: 36px;
    padding-right: 36px;
  }

  .mega-nav-col.last {
    border-radius: 16px;
  }

  .deco-circle {
    width: 1200px;
    height: 1200px;
    left: -600px;
  }

  .mega-nav-cols-wrap {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 36px;
    padding-right: 72px;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-image: none;
  }

  h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  a:hover {
    color: var(--hover-color);
  }

  blockquote {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section.tint._50-p-right, .section.tint._50-p-left {
    background-image: none;
  }

  .section._w-floating-block {
    overflow: visible;
  }

  .section._w-floating-block.as-header {
    padding-top: 24px;
  }

  .section.text-changer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .fluid-cell {
    flex: 1;
  }

  .fluid-cell._67-p._100-p-tablet, .fluid-cell._50-p._100-p-tablet {
    width: 100%;
  }

  .fluid-cell._25-p._50-p-on-tablet {
    width: 50%;
  }

  .fluid-cell._70-p {
    width: 80%;
  }

  .fluid-cell._33-p._100-p-tablet {
    width: 100%;
  }

  .fluid-cell._33-p._50-p-tablet {
    width: 50%;
  }

  .fluid-cell.center-intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell._55-p-w-floating-block {
    width: 100%;
    margin-top: -24px;
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell.text-changer {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell._20-p._50-p-on-tablet {
    width: 50%;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container._w-floating-block {
    flex-wrap: wrap-reverse;
    justify-content: flex-start;
    padding: 0 24px;
  }

  .container._w-floating-block.right {
    justify-content: flex-start;
  }

  .container._w-isolated-image {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .container.stretch-tablet {
    align-items: stretch;
  }

  .container.footer-nav {
    padding-bottom: 12px;
  }

  .container.gallery-wrap {
    padding-top: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .faux-h1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .faux-h2 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .faux-h3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .faux-h4 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }

  .logo-img {
    z-index: 3;
    height: 36px;
    position: relative;
  }

  .child-link {
    color: var(--text-dark-backgrounds);
    letter-spacing: 0;
    white-space: pre-wrap;
    word-break: keep-all;
    background-color: rgba(0, 0, 0, 0);
    border-bottom-style: none;
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  .child-link:hover {
    color: var(--text-dark-backgrounds);
    background-color: rgba(0, 0, 0, 0);
  }

  .child-link.last,
  .child-link:last-child {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .child-link.first,
  .child-link:first-child {
    padding-top: 24px;
  }

  .child-link.mega {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7rem;
  }

  .child-link.mega.first,
  .child-link.mega:first-child {
    padding-top: 24px;
  }

  .child-link.in-dropdown-button {
    border-bottom-style: solid;
  }

  .child-link.in-dropdown-button.last,
  .child-link.in-dropdown-button:last-child {
    border-bottom-style: none;
  }

  .nav-link {
    height: auto;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 12px 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.9rem;
    display: inline-block;
  }

  .nav-link:hover {
    color: var(--text-dark-backgrounds);
    border-bottom-color: rgba(0, 0, 0, .1);
  }

  .nav-link.w--current {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-link.w--current:hover {
    color: var(--white);
  }

  .nav-link.hide-desktop {
    display: block;
  }

  .nav-link._w-dropdown {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link.as-button {
    text-align: center;
    order: 1;
    margin: 36px 0 18px;
    padding: 12px 30px 14px;
  }

  .nav-link.in-dropdown {
    border-bottom-style: none;
    margin-left: 0;
  }

  .nav-link.in-mega-dropdown {
    background-image: url('../images/Arrow-nav.svg');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: auto;
    border-bottom-style: none;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  .nav {
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: var(--light-backgrounds);
    border-top: 1px solid rgba(0, 0, 0, .1);
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
    padding: 36px 60px 120px;
    display: none;
    position: absolute;
    top: 72px;
    bottom: auto;
    left: 0%;
    right: 0%;
    overflow: scroll;
    box-shadow: 0 24px 36px rgba(0, 0, 0, .15);
  }

  .nav-bar {
    height: 72px;
    padding: 12px 42px;
  }

  .nav-dropdown-content {
    border-top: 1px solid var(--dark-teal);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding: 0 0 0 12px;
    position: static;
  }

  .nav-dropdown-content.mega {
    background-color: rgba(255, 255, 255, 0);
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 12px;
    overflow: hidden;
  }

  .tittle-in-30-p-article {
    padding-right: 0;
  }

  .article-thumb-tint {
    top: 24px;
    bottom: -24px;
    left: 24px;
    right: -24px;
  }

  .thumb-link, .article-cell {
    flex: 1;
  }

  .embed-media {
    max-width: 90%;
    min-width: 90%;
  }

  .text-block {
    padding: 36px 36px 24px;
  }

  .dropdown-trigger-2 {
    padding-right: 36px;
  }

  .nav-dropdown-trigger {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-icon-button {
    width: 30px;
    height: 48px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-icon-button._w-mobile-menu {
    display: block;
  }

  .nav-icon-button._w-dropdown {
    display: none;
  }

  .nav-icon-buttons {
    z-index: 3;
    margin-left: 0;
    position: relative;
  }

  .header {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .card-flip-side-large {
    padding: 24px;
  }

  .block-floating {
    background-color: var(--text-dark-backgrounds);
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    padding: 48px 36px 36px;
  }

  .block-floating.right {
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    padding-left: 36px;
  }

  .parallax-bg-wrap {
    height: 450px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    position: relative;
  }

  .parallax-bg-wrap.left {
    width: 100%;
    right: 0;
  }

  .parallax-bg-wrap.right {
    width: 100%;
    left: 0;
  }

  .sticky-bg-mobile {
    z-index: 2;
    background-color: var(--white);
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .hamburger-row {
    width: 30px;
    height: 2px;
  }

  .number {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .isolated-image-wrap {
    width: 50%;
  }

  .isolated-image-wrap.in-header {
    width: 100vw;
    height: auto;
    margin-bottom: -36px;
    margin-left: 0;
    padding-left: 0%;
    display: block;
    position: relative;
  }

  .isolated-image {
    height: auto;
  }

  .search-item {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .flip-block-cell {
    flex: 1;
  }

  .flip-block-cell._33-p._50-p-tablet {
    width: 50%;
  }

  .flip-block-cell._33-p._100-p-tablet {
    width: 100%;
  }

  .nav-dropdown-link {
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
    display: inline-block;
  }

  .nav-dropdown-link:hover {
    color: var(--text-dark-backgrounds);
  }

  .nav-dropdown-link.w--current {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-dropdown-link.w--current:hover {
    color: var(--white);
  }

  .navtainer {
    height: auto;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .box-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .box-cta-buttons {
    padding-left: 0;
  }

  .ba-cta-row {
    flex: 1;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .ba-cta-row._2nd {
    display: none;
  }

  .ba-cta-wrap {
    width: 100%;
    margin-top: 24px;
  }

  .ba-cta-item {
    width: 50%;
    margin-bottom: 0;
    padding: 12px;
  }

  .ba-cta-item._100-p {
    width: 100%;
  }

  .ba-cta-tooltip {
    left: 0;
  }

  .changer-text {
    font-size: 4vw;
    line-height: 6vw;
  }

  .header-circle {
    top: 30%;
    bottom: auto;
    left: -15%;
  }

  .header-circle.on-dark {
    display: none;
  }

  .header-pattern {
    left: 0%;
  }

  .mega-nav-col {
    width: 100%;
    border-right-style: none;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .mega-nav-col.last {
    display: none;
  }

  .mega-dropdown-content {
    width: 100%;
    border-top: 1px solid var(--dark-teal);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0;
    padding-bottom: 0;
    padding-left: 12px;
    display: none;
    position: static;
  }

  .mega-dropdown-link {
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-left: 0;
    margin-right: 0;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .mega-dropdown-link:hover {
    color: var(--text-dark-backgrounds);
  }

  .mega-dropdown-link.w--current {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

  .mega-dropdown-link.w--current:hover {
    color: var(--white);
  }

  .floating-quote {
    width: 250px;
    height: 250px;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    border-bottom-left-radius: 250px;
    padding-top: 36px;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.6rem;
    bottom: -10%;
    right: 0%;
  }

  .quote-icon {
    width: 96px;
  }

  .tab-cell {
    flex: 1;
  }

  .mega-nav-cols-wrap {
    flex-direction: column;
  }

  .image-gradient {
    height: 100%;
    bottom: 0%;
  }

  .image-gradient.on-dark {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-image: none;
    font-size: 1rem;
    line-height: 1.7rem;
  }

  h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  h5 {
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  blockquote {
    margin-left: 0;
    font-size: 1.75rem;
    line-height: 2.6rem;
  }

  .p-large {
    margin-bottom: 18px;
  }

  .p-small.caption {
    margin-bottom: 48px;
  }
  .p-small.caption.negative-margin {
    margin-top: -24px;
  }

  .section {
    padding-top: 36px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .section.tint._25-p-right {
    background-color: var(--white);
    background-image: none;
  }

  .section.tint._25-p-left {
    background-image: none;
  }

  .section._w-floating-block.as-header {
    padding-top: 0;
  }

  .section.text-changer {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .fluid-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fluid-cell._67-p, .fluid-cell._50-p, .fluid-cell._25-p, .fluid-cell._25-p._50-p-on-tablet, .fluid-cell._70-p, .fluid-cell._33-p, .fluid-cell._33-p._50-p-tablet {
    width: 100%;
  }

  .fluid-cell.center-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell._55-p-w-floating-block {
    margin-top: -18px;
    padding-bottom: 0;
  }

  .fluid-cell.text-changer {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell.pagination-wrap {
    align-items: flex-start;
    padding-bottom: 24px;
  }

  .fluid-cell.gallery-item, .fluid-cell._20-p, .fluid-cell._20-p._50-p-on-tablet {
    width: 100%;
  }

  .subheading {
    background-image: none;
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .text-field {
    padding-right: 24px;
  }

  .container {
    flex-direction: column;
  }

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

  .container._w-floating-block {
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
  }

  .container.reverse-mobile {
    flex-direction: column-reverse;
  }

  .container._w-isolated-image {
    align-items: flex-start;
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .container.footer-nav {
    padding-bottom: 0;
  }

  .container.gallery-wrap {
    padding-top: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .faux-h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .faux-h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 2.1rem;
    line-height: 2.75rem;
  }

  .faux-h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 2.25rem;
  }

  .faux-h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .faux-h4.mobile-card-title {
    margin-bottom: 0;
    display: block;
  }

  .faux-h5 {
    font-size: 1.1rem;
    line-height: 1.7rem;
  }

  .img-in-text,
  img.alignnone {
    min-width: 100%;
    margin-top: 48px;
    margin-bottom: 48px;
    margin-left: 0%;
  }

  .thumb-img {
    min-width: 100%;
  }

  .nav {
    padding-top: 24px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-bar {
    padding-left: 30px;
    padding-right: 30px;
  }

  .article-thumb-tint {
    top: 18px;
    bottom: -18px;
    left: 18px;
    right: -18px;
  }

  .tittle-in-50-p-article {
    padding-right: 0;
  }

  .thumb-link {
    flex-direction: column;
    justify-content: flex-start;
  }

  .article-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px;
  }

  .article-cell._40-p-article {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .article-cell._40-p-article.second {
    margin-top: 0;
  }

  .article-cell._50-p-article {
    width: 100%;
  }

  .article-cell._33-p-article {
    width: 100%;
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }

  .article-share {
    margin-top: 18px;
  }

  .link-text.in-card-flip {
    color: var(--text-dark-backgrounds);
  }

  .link-text.in-card-flip.invert {
    color: var(--white);
  }

  .embed-media {
    max-width: 70%;
    min-width: 70%;
    margin-top: 8%;
  }

  .side-graphic-wrap {
    width: 48px;
    background-position: 0%;
  }

  .menu-open {
    width: 100%;
    height: 100%;
  }

  .breadcrumbs.article-page {
    margin-bottom: 24px;
  }

  .header {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .header._w-image {
    align-items: flex-end;
  }

  .avatar-large {
    width: 140px;
    height: 140px;
    margin-right: 30px;
  }

  .card-flip-large {
    position: static;
  }

  .flip-block-large {
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }

  .card-flip-side-large.back {
    border-right: 2px solid var(--text-dark-backgrounds);
    border-bottom: 2px solid var(--text-dark-backgrounds);
    border-left: 2px solid var(--text-dark-backgrounds);
    box-shadow: none;
    color: var(--text-dark-backgrounds);
    background-color: rgba(0, 0, 0, 0);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 18px 24px;
    position: static;
    transform: none;
  }

  .card-flip-side-large.back.dark-teal {
    background-color: var(--dark-teal);
    color: var(--white);
    border-bottom-style: none;
    border-left-style: none;
    border-right-style: none;
  }

  .card-flip-side-large.front {
    text-align: left;
    border-style: solid solid none;
    border-width: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 0;
    position: static;
    transform: none;
  }

  .parallax-bg-wrap {
    height: 370px;
    border-radius: 0;
  }

  .parallax-bg-wrap.right {
    padding-left: 0;
    padding-right: 0;
  }

  .ppm-intro-page-link {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ppm-intro-page-link:hover {
    box-shadow: none;
    transform: none;
  }

  .number {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .isolated-image-wrap {
    display: none;
  }

  .isolated-image-wrap.in-header {
    margin-bottom: -24px;
    margin-left: -18px;
  }

  .isolated-image {
    padding-left: 18px;
    padding-right: 18px;
  }

  .before-after-search {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .search-item {
    padding: 0 12px;
  }

  .flip-block-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .flip-block-cell._33-p, .flip-block-cell._33-p._50-p-tablet, .flip-block-cell._50-p {
    width: 100%;
  }

  .embed-image-deco {
    width: 50%;
  }

  .box-cta {
    align-items: flex-start;
    padding: 24px 36px;
  }

  .box-cta-buttons {
    flex-wrap: wrap;
  }

  .ba-cta-row {
    flex-direction: row;
  }

  .ba-cta-wrap {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ba-cta-deco-1 {
    display: none;
  }

  .ba-cta-deco-2 {
    max-width: 50%;
    top: 12px;
    bottom: 0%;
    left: auto;
    right: auto;
  }

  .changer-text {
    font-size: 5.4vw;
    line-height: 8vw;
  }

  .header-pattern {
    width: 40vw;
  }

  .floating-quote {
    width: 280px;
    height: 180px;
    border-radius: 16px 100px 100px;
    padding-top: 24px;
    padding-left: 24px;
    font-size: 1rem;
    line-height: 1.5rem;
    right: 3%;
  }

  .quote-icon {
    width: 72px;
  }

  .floating-quote-author {
    font-size: .8rem;
    line-height: 1.4rem;
  }

  .tabs.vertical {
    border-style: none;
    flex-direction: column;
  }

  .tab-container {
    flex-direction: column;
    margin-left: 0;
    padding-bottom: 0;
  }

  .tab-container.vertical {
    margin-top: 0;
    padding-top: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .tab-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-content, .tabs-content.vertical {
    width: 100%;
  }

  .tab-link {
    padding-left: 18px;
    padding-right: 18px;
    display: flex;
  }

  .tab-link.w--current {
    border-bottom-color: rgba(0, 0, 0, 0);
    bottom: 0;
  }

  .tab-link.on-dark {
    border-bottom-color: rgba(255, 255, 255, .15);
  }

  .tab-link.on-dark.w--current {
    border-bottom-color: rgba(255, 255, 255, 0);
  }

  .tab-link.vertical {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .tab-link.vertical.w--current {
    right: 0;
  }

  .tabs-menu {
    border-bottom-style: none;
    flex-direction: column;
  }

  .tabs-menu.vertical {
    width: auto;
    min-width: auto;
    border-right-style: none;
  }

  .text-block-deco {
    width: 50%;
  }

  .card-flip-map {
    height: 200px;
  }

  .img-article-header {
    min-width: 100%;
    margin-top: 48px;
    margin-bottom: 12px;
    margin-left: 0%;
  }

  .image-gradient {
    background-image: repeating-linear-gradient(to top, var(--light-teal), rgba(188, 224, 230, .25) 40%, rgba(15, 32, 62, 0));
  }
}

@media screen and (max-width: 479px) {
  body {
    background-position: -330px -20px;
  }

  h1 {
    margin-bottom: 10px;
    line-height: 3.1rem;
  }

  p {
    margin-bottom: 12px;
  }

  blockquote {
    padding-left: 24px;
    font-size: 1.4rem;
    line-height: 2.1rem;
  }

  .p-large {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .p-small.caption {
    margin-bottom: 36px;
  }
  .p-small.caption.negative-margin {
    margin-top: -18px;
  }

  .utility-page-content {
    width: 260px;
  }

  .button {
    min-width: auto;
    letter-spacing: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 12px 24px;
  }

  .section, .section.narow {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section.text-changer {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .fluid-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell.center-intro {
    text-align: left;
    align-items: flex-start;
  }

  .fluid-cell._55-p-w-floating-block {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .fluid-cell.text-changer {
    align-items: flex-start;
  }

  .fluid-cell.gallery-item {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    align-items: stretch;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container._w-isolated-image {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .container.gallery-wrap {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .form-section {
    flex-direction: column;
    margin-left: 0;
  }

  .faux-h1 {
    margin-bottom: 10px;
  }

  .form-item-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .form-item-wrap.half {
    width: 100%;
  }

  .img-in-text,
  img.alignnone {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .link {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .logo-img {
    height: 30px;
  }

  .child-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .nav-link {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }

  .nav-link.as-button {
    margin-top: 24px;
  }

  .nav {
    padding-left: 8vw;
    padding-right: 8vw;
    top: 60px;
  }

  .embed-image {
    border-radius: 16px;
  }

  .nav-bar {
    height: 60px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .article-thumb-tint {
    top: 12px;
    bottom: -12px;
    left: 12px;
    right: -12px;
  }

  .thumb-link {
    margin-bottom: 12px;
  }

  .article-cell {
    padding: 18px 0;
  }

  .article-cell._40-p-article {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .embed-media {
    max-width: 100%;
    min-width: 100%;
    margin-top: 0%;
  }

  .embed-media.classic {
    max-width: 100%;
    min-width: 100%;
  }

  .side-graphic-wrap {
    width: 24px;
  }

  .text-block {
    padding: 24px 24px 12px;
  }

  .breadcrumbs.article-page {
    margin-bottom: 18px;
  }

  .header {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .avatar-large {
    margin-bottom: 18px;
  }

  .card-flip-side-large {
    padding: 24px;
  }

  .card-flip-side-large.back {
    padding-top: 18px;
  }

  .card-flip-side-large.front {
    flex-direction: column;
    align-items: flex-start;
  }

  .block-floating {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .block-floating.right {
    padding-left: 8vw;
  }

  .parallax-bg-wrap {
    height: 300px;
    padding-left: 0;
    padding-right: 0;
  }

  .isolated-image-wrap.in-header {
    margin-bottom: -12px;
    margin-left: -8vw;
  }

  .isolated-image {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .embed-shadow {
    opacity: .5;
    top: -4%;
  }

  .before-after-search {
    flex-direction: column;
    align-items: stretch;
  }

  .search-item {
    padding-left: 0;
    padding-right: 0;
  }

  .flip-block-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .box-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .box-cta-buttons {
    margin-top: 6px;
  }

  .horizontal-spacer._24 {
    width: 16px;
  }

  .action-wrap {
    margin-top: 6px;
  }

  .ba-cta-row {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .ba-cta-row._2nd {
    display: none;
  }

  .ba-cta-wrap {
    flex-direction: column;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ba-cta-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .ba-cta-tooltip {
    left: -6px;
  }

  .ba-cta-deco-1 {
    display: none;
  }

  .ba-cta-deco-2 {
    max-width: 60%;
    top: auto;
  }

  .changer-text {
    font-size: 7.2vw;
    line-height: 8.4vw;
  }

  .header-circle {
    left: auto;
    right: 0;
  }

  .header-pattern {
    display: none;
  }

  .mega-dropdown-link {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .floating-quote {
    width: 100vw;
    height: auto;
    border-radius: 0;
    padding-top: 36px;
    padding-left: 8vw;
    padding-right: 8vw;
    position: relative;
    right: 0%;
  }

  .quote-icon {
    right: 8vw;
  }

  .quote-rating {
    margin-bottom: 12px;
  }

  .tab-container {
    align-items: stretch;
  }

  .tab-cell {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .card-flip-links {
    text-align: left;
  }

  .testimonial-author {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .card-flip-map {
    height: 150px;
  }

  .img-article-header {
    margin-top: 42px;
    margin-bottom: 6px;
  }
}
