@charset "UTF-8";
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*=uk-animation-] {
  animation: 0.5s ease-out both;
}

/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/*
 * Scale
 */
.uk-animation-scale-up {
  animation-name: uk-fade, uk-scale-up;
}

.uk-animation-scale-down {
  animation-name: uk-fade, uk-scale-down;
}

/*
 * Slide
 */
.uk-animation-slide-top {
  animation-name: uk-fade, uk-slide-top;
}

.uk-animation-slide-bottom {
  animation-name: uk-fade, uk-slide-bottom;
}

.uk-animation-slide-left {
  animation-name: uk-fade, uk-slide-left;
}

.uk-animation-slide-right {
  animation-name: uk-fade, uk-slide-right;
}

/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  animation-name: uk-fade, uk-slide-top-small;
}

.uk-animation-slide-bottom-small {
  animation-name: uk-fade, uk-slide-bottom-small;
}

.uk-animation-slide-left-small {
  animation-name: uk-fade, uk-slide-left-small;
}

.uk-animation-slide-right-small {
  animation-name: uk-fade, uk-slide-right-small;
}

/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  animation-name: uk-fade, uk-slide-top-medium;
}

.uk-animation-slide-bottom-medium {
  animation-name: uk-fade, uk-slide-bottom-medium;
}

.uk-animation-slide-left-medium {
  animation-name: uk-fade, uk-slide-left-medium;
}

.uk-animation-slide-right-medium {
  animation-name: uk-fade, uk-slide-right-medium;
}

/*
 * Kenburns
 */
.uk-animation-kenburns {
  animation-name: uk-kenburns;
  animation-duration: 15s;
}

/*
 * Shake
 */
.uk-animation-shake {
  animation-name: uk-shake;
}

/*
 * SVG Stroke
 * The `--uk-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.uk-animation-stroke {
  animation-name: uk-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--uk-animation-stroke);
}

/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}

/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-] {
  animation-name: none;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Scale
 */
@keyframes uk-scale-up {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes uk-scale-down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*
 * Slide
 */
@keyframes uk-slide-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Small
 */
@keyframes uk-slide-top-small {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-small {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-small {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Medium
 */
@keyframes uk-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-medium {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Kenburns
 */
@keyframes uk-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*
 * Shake
 */
@keyframes uk-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
 * 2. Reset responsiveness for embedded content
 * 3. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
/* 1 */
[uk-cover],
[data-uk-cover] {
  /* 2 */
  max-width: none;
  /* 3 */
  position: absolute;
  left: 50%;
  top: 50%;
  --uk-position-translate-x: -50%;
  --uk-position-translate-y: -50%;
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
}

iframe[uk-cover],
iframe[data-uk-cover] {
  pointer-events: none;
}

/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.uk-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.uk-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.2);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Hover */
.uk-dotnav > * > :hover {
  background-color: rgba(102, 102, 102, 0.6);
}

/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.2);
}

/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(102, 102, 102, 0.6);
}

/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}

/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: flex;
}

.uk-flex-inline {
  display: inline-flex;
}

/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  justify-content: flex-start;
}

.uk-flex-center {
  justify-content: center;
}

.uk-flex-right {
  justify-content: flex-end;
}

.uk-flex-between {
  justify-content: space-between;
}

.uk-flex-around {
  justify-content: space-around;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  align-items: stretch;
}

.uk-flex-top {
  align-items: flex-start;
}

.uk-flex-middle {
  align-items: center;
}

.uk-flex-bottom {
  align-items: flex-end;
}

/* Direction
 ========================================================================== */
.uk-flex-row {
  flex-direction: row;
}

.uk-flex-row-reverse {
  flex-direction: row-reverse;
}

.uk-flex-column {
  flex-direction: column;
}

.uk-flex-column-reverse {
  flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  flex-wrap: nowrap;
}

.uk-flex-wrap {
  flex-wrap: wrap;
}

.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  align-content: stretch;
}

.uk-flex-wrap-top {
  align-content: flex-start;
}

.uk-flex-wrap-middle {
  align-content: center;
}

.uk-flex-wrap-bottom {
  align-content: flex-end;
}

.uk-flex-wrap-between {
  align-content: space-between;
}

.uk-flex-wrap-around {
  align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  order: -1;
}

.uk-flex-last {
  order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  flex: auto;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  flex: 1;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.uk-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.uk-grid > * {
  margin: 0;
}

/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}

/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}

.uk-grid > * {
  padding-left: 30px;
}

/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-small,
.uk-grid-column-small {
  margin-left: -15px;
}

.uk-grid-small > *,
.uk-grid-column-small > * {
  padding-left: 15px;
}

/* Vertical */
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 15px;
}

/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium,
.uk-grid-column-medium {
  margin-left: -30px;
}

.uk-grid-medium > *,
.uk-grid-column-medium > * {
  padding-left: 30px;
}

/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}

/*
 * Large
 */
/* Horizontal */
.uk-grid-large,
.uk-grid-column-large {
  margin-left: -40px;
}

.uk-grid-large > *,
.uk-grid-column-large > * {
  padding-left: 40px;
}

/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large,
.uk-grid-column-large {
    margin-left: -70px;
  }
  .uk-grid-large > *,
.uk-grid-column-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse,
.uk-grid-column-collapse {
  margin-left: 0;
}

.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
  padding-left: 0;
}

/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}

/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}

/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}

/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}

.uk-grid-divider > * {
  padding-left: 60px;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}

/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}

.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}

.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}

.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}

/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}

.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}

.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}

.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}

/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}

.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}

.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}

/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}

.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}

.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}

.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}

/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}

.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}

.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}

/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}

.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}

.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}

.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.uk-grid-match > *,
.uk-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}

.uk-grid-match > * > :not([class*=uk-width]),
.uk-grid-item-match > :not([class*=uk-width]) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}

/* ========================================================================
   Component: Height
 ========================================================================== */
[class*=uk-height] {
  box-sizing: border-box;
}

/*
 * Only works if parent element has a height set
 */
.uk-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  min-height: 100vh;
}

.uk-height-viewport-2 {
  min-height: 200vh;
}

.uk-height-viewport-3 {
  min-height: 300vh;
}

.uk-height-viewport-4 {
  min-height: 400vh;
}

/*
 * Pixel
 * Useful for `overflow: auto`
 */
.uk-height-small {
  height: 150px;
}

.uk-height-medium {
  height: 300px;
}

.uk-height-large {
  height: 450px;
}

.uk-height-max-small {
  max-height: 150px;
}

.uk-height-max-medium {
  max-height: 300px;
}

.uk-height-max-large {
  max-height: 450px;
}

/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.uk-margin {
  margin-bottom: 20px;
}

* + .uk-margin {
  margin-top: 20px !important;
}

.uk-margin-top {
  margin-top: 20px !important;
}

.uk-margin-bottom {
  margin-bottom: 20px !important;
}

.uk-margin-left {
  margin-left: 20px !important;
}

.uk-margin-right {
  margin-right: 20px !important;
}

/* Small
 ========================================================================== */
.uk-margin-small {
  margin-bottom: 10px;
}

* + .uk-margin-small {
  margin-top: 10px !important;
}

.uk-margin-small-top {
  margin-top: 10px !important;
}

.uk-margin-small-bottom {
  margin-bottom: 10px !important;
}

.uk-margin-small-left {
  margin-left: 10px !important;
}

.uk-margin-small-right {
  margin-right: 10px !important;
}

/* Medium
 ========================================================================== */
.uk-margin-medium {
  margin-bottom: 40px;
}

* + .uk-margin-medium {
  margin-top: 40px !important;
}

.uk-margin-medium-top {
  margin-top: 40px !important;
}

.uk-margin-medium-bottom {
  margin-bottom: 40px !important;
}

.uk-margin-medium-left {
  margin-left: 40px !important;
}

.uk-margin-medium-right {
  margin-right: 40px !important;
}

/* Large
 ========================================================================== */
.uk-margin-large {
  margin-bottom: 40px;
}

* + .uk-margin-large {
  margin-top: 40px !important;
}

.uk-margin-large-top {
  margin-top: 40px !important;
}

.uk-margin-large-bottom {
  margin-bottom: 40px !important;
}

.uk-margin-large-left {
  margin-left: 40px !important;
}

.uk-margin-large-right {
  margin-right: 40px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-large {
    margin-bottom: 70px;
  }
  * + .uk-margin-large {
    margin-top: 70px !important;
  }
  .uk-margin-large-top {
    margin-top: 70px !important;
  }
  .uk-margin-large-bottom {
    margin-bottom: 70px !important;
  }
  .uk-margin-large-left {
    margin-left: 70px !important;
  }
  .uk-margin-large-right {
    margin-right: 70px !important;
  }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
  margin-bottom: 70px;
}

* + .uk-margin-xlarge {
  margin-top: 70px !important;
}

.uk-margin-xlarge-top {
  margin-top: 70px !important;
}

.uk-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}

.uk-margin-xlarge-left {
  margin-left: 70px !important;
}

.uk-margin-xlarge-right {
  margin-right: 70px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .uk-margin-xlarge {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .uk-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .uk-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .uk-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.uk-margin-auto-top {
  margin-top: auto !important;
}

.uk-margin-auto-bottom {
  margin-bottom: auto !important;
}

.uk-margin-auto-left {
  margin-left: auto !important;
}

.uk-margin-auto-right {
  margin-right: auto !important;
}

.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .uk-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .uk-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.uk-margin-remove {
  margin: 0 !important;
}

.uk-margin-remove-top {
  margin-top: 0 !important;
}

.uk-margin-remove-bottom {
  margin-bottom: 0 !important;
}

.uk-margin-remove-left {
  margin-left: 0 !important;
}

.uk-margin-remove-right {
  margin-right: 0 !important;
}

.uk-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.uk-margin-remove-adjacent + *,
.uk-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}

.uk-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .uk-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
  padding: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.uk-padding-small {
  padding: 15px;
}

/* Large
 ========================================================================== */
.uk-padding-large {
  padding: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}

.uk-padding-remove-top {
  padding-top: 0 !important;
}

.uk-padding-remove-bottom {
  padding-bottom: 0 !important;
}

.uk-padding-remove-left {
  padding-left: 0 !important;
}

.uk-padding-remove-right {
  padding-right: 0 !important;
}

.uk-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.uk-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========================================================================
   Component: Position
 ========================================================================== */
:root {
  --uk-position-margin-offset: 0px;
}

/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow.
 */
[class*=uk-position-top],
[class*=uk-position-bottom],
[class*=uk-position-left],
[class*=uk-position-right],
[class*=uk-position-center] {
  position: absolute !important;
  /* 1 */
  max-width: calc(100% - (var(--uk-position-margin-offset) * 2));
  box-sizing: border-box;
}

/*
 * Edges
 * Don't use `width: 100%` because it's wrong if the parent has padding.
 */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

/*
 * Corners
 */
.uk-position-top-left {
  top: 0;
  left: 0;
}

.uk-position-top-right {
  top: 0;
  right: 0;
}

.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}

.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 *    Using `max-content` requires `max-width` of 100% which is set generally.
 */
.uk-position-center {
  top: calc(50% - var(--uk-position-margin-offset));
  left: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-x: -50%;
  --uk-position-translate-y: -50%;
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
  /* 1 */
  width: -moz-max-content;
  width: max-content;
}

/* Vertical */
[class*=uk-position-center-left],
[class*=uk-position-center-right] {
  top: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-y: -50%;
  transform: translate(0, var(--uk-position-translate-y));
}

.uk-position-center-left {
  left: 0;
}

.uk-position-center-right {
  right: 0;
}

.uk-position-center-left-out {
  right: 100%;
  width: -moz-max-content;
  width: max-content;
}

.uk-position-center-right-out {
  left: 100%;
  width: -moz-max-content;
  width: max-content;
}

/* Horizontal */
.uk-position-top-center,
.uk-position-bottom-center {
  left: calc(50% - var(--uk-position-margin-offset));
  --uk-position-translate-x: -50%;
  transform: translate(var(--uk-position-translate-x), 0);
  /* 1 */
  width: -moz-max-content;
  width: max-content;
}

.uk-position-top-center {
  top: 0;
}

.uk-position-bottom-center {
  bottom: 0;
}

/*
 * Cover
 */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Margin
 ========================================================================== */
.uk-position-small {
  margin: 15px;
  --uk-position-margin-offset: 15px;
}

.uk-position-medium {
  margin: 30px;
  --uk-position-margin-offset: 30px;
}

.uk-position-large {
  margin: 30px;
  --uk-position-margin-offset: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-position-large {
    margin: 50px;
    --uk-position-margin-offset: 50px;
  }
}
/* Schemes
 ========================================================================== */
.uk-position-relative {
  position: relative !important;
}

.uk-position-absolute {
  position: absolute !important;
}

.uk-position-fixed {
  position: fixed !important;
}

.uk-position-sticky {
  position: sticky !important;
}

/* Layer
 ========================================================================== */
.uk-position-z-index {
  z-index: 1;
}

.uk-position-z-index-zero {
  z-index: 0;
}

.uk-position-z-index-negative {
  z-index: -1;
}

/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Container
 ========================================================================== */
/*
 * Clip child elements
 */
.uk-slider-container {
  overflow: hidden;
}

/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.uk-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}

/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 * 3. Disable horizontal panning gestures
 */
.uk-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}

/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.uk-slider-items:not(.uk-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}

.uk-slider-items.uk-grid {
  flex-wrap: nowrap;
}

/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 *    `max-width` needed to keep image responsiveness and prevent content overflow
 * 3. Create position context
 */
.uk-slider-items > * {
  /* 1 */
  flex: none;
  max-width: 100%;
  /* 3 */
  position: relative;
}

/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.uk-hidden {
  display: none !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}

/* Based on the State of the Parent Element
 ========================================================================== */
/*
 * Mind that `display: none`, `visibility: hidden` and `opacity: 0`
 * remove the element from the accessibility tree and that
 * `display: none` and `visibility: hidden` are not focusable.
 *
 * The target stays visible if any element within receives focus through keyboard.
 */
/*
 * Remove space when hidden.
 * 1. Remove from document flow.
 * 2. Hide element and shrink its dimension. Can't use zero dimensions together
 *    with `overflow: hidden` it would remove it from the accessibility tree.
 * 3. Hide the single rendered pixel.
 * 4. Prevent text wrapping caused by `width: 1px` because it has side effects on vocalisation
 *    by screen readers and the visual tracking indicator of other assistive technologies.
 */
.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
  /* 1 */
  position: absolute !important;
  /* 2 */
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  /* 3 */
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  /* 4 */
  white-space: nowrap !important;
}

/*
 * Keep space when hidden.
 * Hide element without shrinking its dimension.
 * Unfortunately, can't use `clip-path: inset(50%)` because hover won't work
 * if the element is positioned outside of the toggle box.
 */
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
  opacity: 0 !important;
}

/* Based on Hover Capability of the Pointing Device
 ========================================================================== */
/*
 * Hover
 */
/* Hide if primary pointing device doesn't support hover, e.g. touch screens. */
@media (hover: none) {
  .uk-hidden-touch {
    display: none !important;
  }
}
/* Hide if primary pointing device supports hover, e.g. mice. */
@media (hover) {
  .uk-hidden-notouch {
    display: none !important;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*=uk-child-width] > * {
  box-sizing: border-box;
  width: 100%;
}

.uk-child-width-1-2 > * {
  width: 50%;
}

.uk-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}

.uk-child-width-1-4 > * {
  width: 25%;
}

.uk-child-width-1-5 > * {
  width: 20%;
}

.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}

.uk-child-width-auto > * {
  width: auto;
}

/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.uk-child-width-expand > :not([class*=uk-width]) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-child-width-1-1\@s > * {
    width: 100%;
  }
  .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .uk-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@s > * {
    width: 25%;
  }
  .uk-child-width-1-5\@s > * {
    width: 20%;
  }
  .uk-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > :not([class*=uk-width]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }
  .uk-child-width-1-2\@m > * {
    width: 50%;
  }
  .uk-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@m > * {
    width: 25%;
  }
  .uk-child-width-1-5\@m > * {
    width: 20%;
  }
  .uk-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > :not([class*=uk-width]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }
  .uk-child-width-1-2\@l > * {
    width: 50%;
  }
  .uk-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .uk-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > :not([class*=uk-width]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }
  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }
  .uk-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }
  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }
  .uk-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > :not([class*=uk-width]) {
    flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*=uk-width] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}

/* Halves */
.uk-width-1-2 {
  width: 50%;
}

/* Thirds */
.uk-width-1-3 {
  width: calc(100% * 1 / 3.001);
}

.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}

/* Quarters */
.uk-width-1-4 {
  width: 25%;
}

.uk-width-3-4 {
  width: 75%;
}

/* Fifths */
.uk-width-1-5 {
  width: 20%;
}

.uk-width-2-5 {
  width: 40%;
}

.uk-width-3-5 {
  width: 60%;
}

.uk-width-4-5 {
  width: 80%;
}

/* Sixths */
.uk-width-1-6 {
  width: calc(100% * 1 / 6.001);
}

.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}

/* Pixel */
.uk-width-small {
  width: 150px;
}

.uk-width-medium {
  width: 300px;
}

.uk-width-large {
  width: 450px;
}

.uk-width-xlarge {
  width: 600px;
}

.uk-width-2xlarge {
  width: 750px;
}

/* Auto */
.uk-width-auto {
  width: auto;
}

/* Expand */
.uk-width-expand {
  flex: 1;
  min-width: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .uk-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@s {
    width: 25%;
  }
  .uk-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@s {
    width: 20%;
  }
  .uk-width-2-5\@s {
    width: 40%;
  }
  .uk-width-3-5\@s {
    width: 60%;
  }
  .uk-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@s {
    width: 150px;
  }
  .uk-width-medium\@s {
    width: 300px;
  }
  .uk-width-large\@s {
    width: 450px;
  }
  .uk-width-xlarge\@s {
    width: 600px;
  }
  .uk-width-2xlarge\@s {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@m {
    width: 25%;
  }
  .uk-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@m {
    width: 20%;
  }
  .uk-width-2-5\@m {
    width: 40%;
  }
  .uk-width-3-5\@m {
    width: 60%;
  }
  .uk-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@m {
    width: 150px;
  }
  .uk-width-medium\@m {
    width: 300px;
  }
  .uk-width-large\@m {
    width: 450px;
  }
  .uk-width-xlarge\@m {
    width: 600px;
  }
  .uk-width-2xlarge\@m {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .uk-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@l {
    width: 25%;
  }
  .uk-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@l {
    width: 20%;
  }
  .uk-width-2-5\@l {
    width: 40%;
  }
  .uk-width-3-5\@l {
    width: 60%;
  }
  .uk-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@l {
    width: 150px;
  }
  .uk-width-medium\@l {
    width: 300px;
  }
  .uk-width-large\@l {
    width: 450px;
  }
  .uk-width-xlarge\@l {
    width: 600px;
  }
  .uk-width-2xlarge\@l {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .uk-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@xl {
    width: 25%;
  }
  .uk-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@xl {
    width: 20%;
  }
  .uk-width-2-5\@xl {
    width: 40%;
  }
  .uk-width-3-5\@xl {
    width: 60%;
  }
  .uk-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@xl {
    width: 150px;
  }
  .uk-width-medium\@xl {
    width: 300px;
  }
  .uk-width-large\@xl {
    width: 450px;
  }
  .uk-width-xlarge\@xl {
    width: 600px;
  }
  .uk-width-2xlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}
/* Intrinsic Widths
 ========================================================================== */
.uk-width-max-content {
  width: -moz-max-content;
  width: max-content;
}

.uk-width-min-content {
  width: -moz-min-content;
  width: min-content;
}

/**
 * Swiper 9.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 14, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Reset
 * from Kirby @ https://github.com/getkirby/starterkit/blob/master/assets/css/main.css
-------------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

* {
  outline: none;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

a,
a:focus {
  text-decoration: none;
  color: inherit;
}

a {
  outline: none;
}

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

li {
  list-style-type: none;
}

input {
  border-radius: 0;
}

select {
  all: unset;
  box-sizing: border-box;
  background-color: transparent;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

@-moz-document url-prefix() {
  fieldset {
    display: table-cell;
  }
}
html {
  font-size: 10px;
  scroll-behavior: smooth !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-ligatures: none;
}

button {
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  overflow: visible;
  width: auto;
  margin: 0;
  padding: 0;
  /* inherit font & color from ancestor */
  color: inherit;
  border: none;
  border-radius: 0;
  background: transparent;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

address {
  font-style: normal;
}

video {
  max-width: 100%;
}

/*


      ___|         |
     |       _ \   |   _ \    __|  __|
     |      (   |  |  (   |  |   \__ \
    \____| \___/  _| \___/  _|   ____/



*/
/* Grays
-------------------------------------------------- */
/* Colors
-------------------------------------------------- */
/* General
-------------------------------------------------- */
/* Color Application
-------------------------------------------------- */
/* Breakpoints
* mainly from http://callmenick.com/post/maintainable-responsive-web-design-with-sass
* usage:
    @include break(0, sm) { // break
    @include break(sm) { // use this for min width declarations
    @include break(sm, lg) { // use this for min and max-width declarations
-------------------------------------------------- */
/*
    Dimensions for easier responsive styling
*/
:root {
  --gutterInt: 10;
  --columnInt: 89;
  --pageWidthInt: 386;
  --gutter: calc(var(--gutterInt) * 2 / var(--pageWidthInt) * 100vw);
  --column: calc(var(--columnInt) / var(--pageWidthInt) * 100vw);
}
@media (min-width: 48em) {
  :root {
    --gutterInt: 60;
    --columnInt: 60;
    --pageWidthInt: 1620;
  }
}
@media (min-width: 48em) {
  :root {
    --gutter: calc(var(--gutterInt) / var(--pageWidthInt) * 100vw);
  }
}
@media (min-width: 101.25em) {
  :root {
    --gutter: calc(var(--gutterInt) * 1px);
    --column: calc(var(--columnInt) * 1px);
  }
}

/* Gutters
-------------------------------------------------- */
/* Sizes
-------------------------------------------------- */
/* Margins
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: calc(var(--gutter));
  }
}

@media (min-width: 48em) {
  .grid-sm-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: calc(var(--gutter));
  }
}

.core {
  padding-right: calc(var(--gutter) / 2);
  padding-left: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .core {
    padding-right: calc(var(--gutter) * 2);
    padding-left: calc(var(--gutter) * 2);
    max-width: calc(var(--pageWidthInt) * 1px);
    margin: 0 auto;
  }
}

.blog-page .blog-article-date:not(.blog-featured-date), .blog-article-date, .comments-section #kommentsWebmentions .date, .article-byline, .footer-address-wrapper, .cta-tag, .donation-success, .review-value, .review-title, .blog-article-title, .timeline-entry-text, .nav-contact, .grid-quote-attribution, .grid-text-sub, .residences-page .section-title, .related-articles-title, .comments-title, .article-categories-title, .article-breadcrumb-link, .timeline-control, .newsletter-signup-text, .intro-sub, .grid-text-headline, .faq-question, .ccc-block .body-text, .sierra-serif, .instagram-link, .quote-text, .donation-legend, .intro-headline, .cta-course-block .cta-headline, h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header, .section-title, .cta-subhead, .topper-video-subtitle, .blog-featured-title, .grid-quote-text, .residences-page .intro-sub, .swiper ~ .section-title, .instagram-title, .article-title, .residences-page .cta-headline, .newsletter-section-heading, .form-heading, .feature-title, h2, .jotform-form .header-large .form-header, .home-intro-text, .cta-double-block .cta-headline, .page-title, h1, .blog-page .page-title, .timeline-entry-year.section-title, .cta-headline {
  font-family: CooperBT, serif;
}

.jotform-form .form-textbox::-moz-placeholder, .donation-form .form-textbox::-moz-placeholder, .jotform-form .form-dropdown::-moz-placeholder, .jotform-form .form-textarea::-moz-placeholder, .jotform-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .jotform-form .signature-wrapper::-moz-placeholder, .donation-form .form-dropdown::-moz-placeholder, .donation-form .form-textarea::-moz-placeholder, .donation-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .donation-form .signature-wrapper::-moz-placeholder, .form-textarea::-moz-placeholder, .contact-form input:not(.button)::-moz-placeholder {
  font-family: "Alegreya Sans", sans-serif;
}

.footer-credits, .logo-study-item-title, .cost-footnotes, .ccc-select, .jotform-form .form-sub-label, .donation-form .form-sub-label, .footer-links, .media-slider-figcaption, .media-slide-quote, .cost-small, .cost-input-td,
.total-td,
.bazero, .cost-fillable, .cost-name-td, .ccc-select-td::before, .ccc-column-heading, .button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit], .news-block-article-title, .nursing-service-item, .pagination-wrapper .pagination-link, .blog-article-intro, .blog-featured-link, .masthead-cta, a.aside-link, .text-slider-attribution, .map-controls, .map-label, .reveal-button::after, figcaption, .body-text, .payment_footer::after, .jotform-form #label_60::after, .donation-form #label_60::after, .jotform-form .form-textbox::placeholder, .donation-form .form-textbox::placeholder, .jotform-form .form-dropdown::placeholder, .jotform-form .form-textarea::placeholder, .jotform-form .form-textbox:not(#productSearch-input)::placeholder, .jotform-form .signature-wrapper::placeholder, .donation-form .form-dropdown::placeholder, .donation-form .form-textarea::placeholder, .donation-form .form-textbox:not(#productSearch-input)::placeholder, .donation-form .signature-wrapper::placeholder, .jotform-form .form-dropdown, .jotform-form .form-textarea, .jotform-form .form-textbox:not(#productSearch-input), .jotform-form .signature-wrapper, .donation-form .form-dropdown, .donation-form .form-textarea, .donation-form .form-textbox:not(#productSearch-input), .donation-form .signature-wrapper, .jotform-form label[id*=label_input], .donation-form label[id*=label_input], .donation-error, .donation-changes-link, .expiration-month::after, .donation-textarea, .donation-note, .donations-custom-code-page .donation-form .dollar-wrapper::before, .donations-custom-code-page .donation-form .form-sub-label, .comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback, .note-text, .note-heading h4, .links-block-link, .email-signature-link, .tag-nav-link, .donation-radio-legend, .residences-page .intro-headline, .main-text, .blog-featured-intro, .komment-privacy, .comments-section #kommentsWebmentions .single-komment, .profile-popdown-email,
.profile-popdown-phone,
.profile-popdown-bio,
.profile-popdown-location, .profile-details, .newsletter-signup-field, .testimony-hidden .attribution, .attribution, .position-intro, .form-textarea::placeholder, .form-textarea, .form-label, .form-subhead, .contact-form input:not(.button)::placeholder, .contact-form input:not(.button), .feature-text, .faq-answer, .cta-buttons-block .cta-button, .reveal-button, h5, h4, .audio-block-title, .jotform-form .form-label, main table, .profile-popdown-position, .cta-double-block .cta-text, .ccc-h4, .main-intro-text, .aside-select, .faq-button::after, .cta-text, .profile-popdown-bio h2, .nursing-service-item h2, .secondary-nav-link, .subprime-nav-link, .primary-nav-link, .home-intro-heading, .blog-category-page .article-title {
  font-family: "Alegreya Sans", sans-serif;
}

/* Fonts
* underlying structure from https://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps/
-------------------------------------------------- */
/* build sizes
-------------------------------------------------- */
/* build font sizes
* start with style, then greek size group name, then two sizes for mobile and desktop
-------------------------------------------------- */
.cta-headline {
  font-size: 10.5263157895vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .cta-headline {
    font-size: 6.1728395062vw;
  }
}
@media (min-width: 101.25em) {
  .cta-headline {
    font-size: 100px;
  }
}

.blog-page .page-title, .timeline-entry-year.section-title {
  font-size: 9.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .blog-page .page-title, .timeline-entry-year.section-title {
    font-size: 5.3086419753vw;
  }
}
@media (min-width: 101.25em) {
  .blog-page .page-title, .timeline-entry-year.section-title {
    font-size: 86px;
  }
}

.page-title, h1 {
  font-size: 6.3157894737vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .page-title, h1 {
    font-size: 4.012345679vw;
  }
}
@media (min-width: 101.25em) {
  .page-title, h1 {
    font-size: 65px;
  }
}

.home-intro-text, .cta-double-block .cta-headline {
  font-size: 6.8421052632vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .home-intro-text, .cta-double-block .cta-headline {
    font-size: 4.3209876543vw;
  }
}
@media (min-width: 101.25em) {
  .home-intro-text, .cta-double-block .cta-headline {
    font-size: 70px;
  }
}

.residences-page .cta-headline, .newsletter-section-heading, .form-heading, .feature-title, h2, .jotform-form .header-large .form-header {
  font-size: 6.5263157895vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .residences-page .cta-headline, .newsletter-section-heading, .form-heading, .feature-title, h2, .jotform-form .header-large .form-header {
    font-size: 3.7654320988vw;
  }
}
@media (min-width: 101.25em) {
  .residences-page .cta-headline, .newsletter-section-heading, .form-heading, .feature-title, h2, .jotform-form .header-large .form-header {
    font-size: 61px;
  }
}

.residences-page .intro-sub, .swiper ~ .section-title, .instagram-title, .article-title {
  font-size: 6.1052631579vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .residences-page .intro-sub, .swiper ~ .section-title, .instagram-title, .article-title {
    font-size: 3.5802469136vw;
  }
}
@media (min-width: 101.25em) {
  .residences-page .intro-sub, .swiper ~ .section-title, .instagram-title, .article-title {
    font-size: 58px;
  }
}

.topper-video-subtitle, .blog-featured-title, .grid-quote-text {
  font-size: 5.4736842105vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .topper-video-subtitle, .blog-featured-title, .grid-quote-text {
    font-size: 3.2098765432vw;
  }
}
@media (min-width: 101.25em) {
  .topper-video-subtitle, .blog-featured-title, .grid-quote-text {
    font-size: 52px;
  }
}

.cta-subhead {
  font-size: 5.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .cta-subhead {
    font-size: 2.962962963vw;
  }
}
@media (min-width: 101.25em) {
  .cta-subhead {
    font-size: 48px;
  }
}

.section-title {
  font-size: 5.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .section-title {
    font-size: 2.5925925926vw;
  }
}
@media (min-width: 101.25em) {
  .section-title {
    font-size: 42px;
  }
}

.donation-legend, .intro-headline, .cta-course-block .cta-headline, h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header {
  font-size: 5.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .donation-legend, .intro-headline, .cta-course-block .cta-headline, h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header {
    font-size: 2.3456790123vw;
  }
}
@media (min-width: 101.25em) {
  .donation-legend, .intro-headline, .cta-course-block .cta-headline, h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header {
    font-size: 38px;
  }
}

.instagram-link, .quote-text {
  font-size: 4.7368421053vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .instagram-link, .quote-text {
    font-size: 2.0987654321vw;
  }
}
@media (min-width: 101.25em) {
  .instagram-link, .quote-text {
    font-size: 34px;
  }
}

.residences-page .section-title, .related-articles-title, .comments-title, .article-categories-title, .article-breadcrumb-link, .timeline-control, .newsletter-signup-text, .intro-sub, .grid-text-headline, .faq-question, .ccc-block .body-text, .sierra-serif {
  font-size: 4.2105263158vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .residences-page .section-title, .related-articles-title, .comments-title, .article-categories-title, .article-breadcrumb-link, .timeline-control, .newsletter-signup-text, .intro-sub, .grid-text-headline, .faq-question, .ccc-block .body-text, .sierra-serif {
    font-size: 1.7283950617vw;
  }
}
@media (min-width: 101.25em) {
  .residences-page .section-title, .related-articles-title, .comments-title, .article-categories-title, .article-breadcrumb-link, .timeline-control, .newsletter-signup-text, .intro-sub, .grid-text-headline, .faq-question, .ccc-block .body-text, .sierra-serif {
    font-size: 28px;
  }
}

.donation-success, .review-value, .review-title, .blog-article-title, .timeline-entry-text, .nav-contact, .grid-quote-attribution, .grid-text-sub {
  font-size: 4vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .donation-success, .review-value, .review-title, .blog-article-title, .timeline-entry-text, .nav-contact, .grid-quote-attribution, .grid-text-sub {
    font-size: 1.6049382716vw;
  }
}
@media (min-width: 101.25em) {
  .donation-success, .review-value, .review-title, .blog-article-title, .timeline-entry-text, .nav-contact, .grid-quote-attribution, .grid-text-sub {
    font-size: 26px;
  }
}

.blog-article-date, .comments-section #kommentsWebmentions .date, .article-byline, .footer-address-wrapper, .cta-tag {
  font-size: 2.9473684211vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .blog-article-date, .comments-section #kommentsWebmentions .date, .article-byline, .footer-address-wrapper, .cta-tag {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 101.25em) {
  .blog-article-date, .comments-section #kommentsWebmentions .date, .article-byline, .footer-address-wrapper, .cta-tag {
    font-size: 18px;
  }
}

.blog-page .blog-article-date:not(.blog-featured-date) {
  font-size: 2.5263157895vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .blog-page .blog-article-date:not(.blog-featured-date) {
    font-size: 0.8641975309vw;
  }
}
@media (min-width: 101.25em) {
  .blog-page .blog-article-date:not(.blog-featured-date) {
    font-size: 14px;
  }
}

.home-intro-heading, .blog-category-page .article-title {
  font-size: 6.3157894737vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .home-intro-heading, .blog-category-page .article-title {
    font-size: 3.7037037037vw;
  }
}
@media (min-width: 101.25em) {
  .home-intro-heading, .blog-category-page .article-title {
    font-size: 60px;
  }
}

.secondary-nav-link, .subprime-nav-link, .primary-nav-link {
  font-size: 7.1578947368vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .secondary-nav-link, .subprime-nav-link, .primary-nav-link {
    font-size: 3.3950617284vw;
  }
}
@media (min-width: 101.25em) {
  .secondary-nav-link, .subprime-nav-link, .primary-nav-link {
    font-size: 55px;
  }
}

.nursing-service-item h2 {
  font-size: 5.4736842105vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .nursing-service-item h2 {
    font-size: 3.0864197531vw;
  }
}
@media (min-width: 101.25em) {
  .nursing-service-item h2 {
    font-size: 50px;
  }
}

.profile-popdown-bio h2 {
  font-size: 4.6315789474vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .profile-popdown-bio h2 {
    font-size: 2.7160493827vw;
  }
}
@media (min-width: 101.25em) {
  .profile-popdown-bio h2 {
    font-size: 44px;
  }
}

.main-intro-text, .aside-select, .faq-button::after, .cta-text {
  font-size: 5.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .main-intro-text, .aside-select, .faq-button::after, .cta-text {
    font-size: 2.2222222222vw;
  }
}
@media (min-width: 101.25em) {
  .main-intro-text, .aside-select, .faq-button::after, .cta-text {
    font-size: 36px;
  }
}

.cta-double-block .cta-text, .ccc-h4 {
  font-size: 5.0526315789vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .cta-double-block .cta-text, .ccc-h4 {
    font-size: 1.975308642vw;
  }
}
@media (min-width: 101.25em) {
  .cta-double-block .cta-text, .ccc-h4 {
    font-size: 32px;
  }
}

.profile-popdown-position {
  font-size: 4.5263157895vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .profile-popdown-position {
    font-size: 1.975308642vw;
  }
}
@media (min-width: 101.25em) {
  .profile-popdown-position {
    font-size: 32px;
  }
}

.form-textarea::-moz-placeholder, .contact-form input:not(.button)::-moz-placeholder {
  font-size: 4.5263157895vw;
  line-height: 1.1;
}

.donation-radio-legend, .residences-page .intro-headline, .main-text, .blog-featured-intro, .komment-privacy, .comments-section #kommentsWebmentions .single-komment, .profile-popdown-email,
.profile-popdown-phone,
.profile-popdown-bio,
.profile-popdown-location, .profile-details, .newsletter-signup-field, .testimony-hidden .attribution, .attribution, .position-intro, .form-textarea::placeholder, .form-textarea, .form-label, .form-subhead, .contact-form input:not(.button)::placeholder, .contact-form input:not(.button), .feature-text, .faq-answer, .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back, .reveal-button, h5, h4, .audio-block-title, .jotform-form .form-label, main table {
  font-size: 4.5263157895vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .form-textarea::-moz-placeholder, .contact-form input:not(.button)::-moz-placeholder {
    font-size: 1.8518518519vw;
  }
  .donation-radio-legend, .residences-page .intro-headline, .main-text, .blog-featured-intro, .komment-privacy, .comments-section #kommentsWebmentions .single-komment, .profile-popdown-email,
.profile-popdown-phone,
.profile-popdown-bio,
.profile-popdown-location, .profile-details, .newsletter-signup-field, .testimony-hidden .attribution, .attribution, .position-intro, .form-textarea::placeholder, .form-textarea, .form-label, .form-subhead, .contact-form input:not(.button)::placeholder, .contact-form input:not(.button), .feature-text, .faq-answer, .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back, .reveal-button, h5, h4, .audio-block-title, .jotform-form .form-label, main table {
    font-size: 1.8518518519vw;
  }
}
@media (min-width: 101.25em) {
  .form-textarea::-moz-placeholder, .contact-form input:not(.button)::-moz-placeholder {
    font-size: 30px;
  }
  .donation-radio-legend, .residences-page .intro-headline, .main-text, .blog-featured-intro, .komment-privacy, .comments-section #kommentsWebmentions .single-komment, .profile-popdown-email,
.profile-popdown-phone,
.profile-popdown-bio,
.profile-popdown-location, .profile-details, .newsletter-signup-field, .testimony-hidden .attribution, .attribution, .position-intro, .form-textarea::placeholder, .form-textarea, .form-label, .form-subhead, .contact-form input:not(.button)::placeholder, .contact-form input:not(.button), .feature-text, .faq-answer, .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back, .reveal-button, h5, h4, .audio-block-title, .jotform-form .form-label, main table {
    font-size: 30px;
  }
}

.email-signature-link, .tag-nav-link {
  font-size: 4.4210526316vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .email-signature-link, .tag-nav-link {
    font-size: 1.6049382716vw;
  }
}
@media (min-width: 101.25em) {
  .email-signature-link, .tag-nav-link {
    font-size: 26px;
  }
}

.jotform-form .form-textbox::-moz-placeholder, .donation-form .form-textbox::-moz-placeholder, .jotform-form .form-dropdown::-moz-placeholder, .jotform-form .form-textarea::-moz-placeholder, .jotform-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .jotform-form .signature-wrapper::-moz-placeholder, .donation-form .form-dropdown::-moz-placeholder, .donation-form .form-textarea::-moz-placeholder, .donation-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .donation-form .signature-wrapper::-moz-placeholder {
  font-size: 4.2105263158vw;
  line-height: 1.1;
}

.payment_footer::after, .jotform-form #label_60::after, .donation-form #label_60::after, .jotform-form .form-textbox::placeholder, .donation-form .form-textbox::placeholder, .jotform-form .form-dropdown::placeholder, .jotform-form .form-textarea::placeholder, .jotform-form .form-textbox:not(#productSearch-input)::placeholder, .jotform-form .signature-wrapper::placeholder, .donation-form .form-dropdown::placeholder, .donation-form .form-textarea::placeholder, .donation-form .form-textbox:not(#productSearch-input)::placeholder, .donation-form .signature-wrapper::placeholder, .jotform-form .form-dropdown, .jotform-form .form-textarea, .jotform-form .form-textbox:not(#productSearch-input), .jotform-form .signature-wrapper, .donation-form .form-dropdown, .donation-form .form-textarea, .donation-form .form-textbox:not(#productSearch-input), .donation-form .signature-wrapper, .jotform-form label[id*=label_input], .donation-form label[id*=label_input], .donation-error, .donation-changes-link, .expiration-month::after, .donation-textarea, .donation-note, .donations-custom-code-page .donation-form .dollar-wrapper::before, .donations-custom-code-page .donation-form .form-sub-label, .comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback, .note-text, .note-heading h4, .links-block-link {
  font-size: 4.2105263158vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .jotform-form .form-textbox::-moz-placeholder, .donation-form .form-textbox::-moz-placeholder, .jotform-form .form-dropdown::-moz-placeholder, .jotform-form .form-textarea::-moz-placeholder, .jotform-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .jotform-form .signature-wrapper::-moz-placeholder, .donation-form .form-dropdown::-moz-placeholder, .donation-form .form-textarea::-moz-placeholder, .donation-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .donation-form .signature-wrapper::-moz-placeholder {
    font-size: 1.4814814815vw;
  }
  .payment_footer::after, .jotform-form #label_60::after, .donation-form #label_60::after, .jotform-form .form-textbox::placeholder, .donation-form .form-textbox::placeholder, .jotform-form .form-dropdown::placeholder, .jotform-form .form-textarea::placeholder, .jotform-form .form-textbox:not(#productSearch-input)::placeholder, .jotform-form .signature-wrapper::placeholder, .donation-form .form-dropdown::placeholder, .donation-form .form-textarea::placeholder, .donation-form .form-textbox:not(#productSearch-input)::placeholder, .donation-form .signature-wrapper::placeholder, .jotform-form .form-dropdown, .jotform-form .form-textarea, .jotform-form .form-textbox:not(#productSearch-input), .jotform-form .signature-wrapper, .donation-form .form-dropdown, .donation-form .form-textarea, .donation-form .form-textbox:not(#productSearch-input), .donation-form .signature-wrapper, .jotform-form label[id*=label_input], .donation-form label[id*=label_input], .donation-error, .donation-changes-link, .expiration-month::after, .donation-textarea, .donation-note, .donations-custom-code-page .donation-form .dollar-wrapper::before, .donations-custom-code-page .donation-form .form-sub-label, .comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback, .note-text, .note-heading h4, .links-block-link {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 101.25em) {
  .jotform-form .form-textbox::-moz-placeholder, .donation-form .form-textbox::-moz-placeholder, .jotform-form .form-dropdown::-moz-placeholder, .jotform-form .form-textarea::-moz-placeholder, .jotform-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .jotform-form .signature-wrapper::-moz-placeholder, .donation-form .form-dropdown::-moz-placeholder, .donation-form .form-textarea::-moz-placeholder, .donation-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .donation-form .signature-wrapper::-moz-placeholder {
    font-size: 24px;
  }
  .payment_footer::after, .jotform-form #label_60::after, .donation-form #label_60::after, .jotform-form .form-textbox::placeholder, .donation-form .form-textbox::placeholder, .jotform-form .form-dropdown::placeholder, .jotform-form .form-textarea::placeholder, .jotform-form .form-textbox:not(#productSearch-input)::placeholder, .jotform-form .signature-wrapper::placeholder, .donation-form .form-dropdown::placeholder, .donation-form .form-textarea::placeholder, .donation-form .form-textbox:not(#productSearch-input)::placeholder, .donation-form .signature-wrapper::placeholder, .jotform-form .form-dropdown, .jotform-form .form-textarea, .jotform-form .form-textbox:not(#productSearch-input), .jotform-form .signature-wrapper, .donation-form .form-dropdown, .donation-form .form-textarea, .donation-form .form-textbox:not(#productSearch-input), .donation-form .signature-wrapper, .jotform-form label[id*=label_input], .donation-form label[id*=label_input], .donation-error, .donation-changes-link, .expiration-month::after, .donation-textarea, .donation-note, .donations-custom-code-page .donation-form .dollar-wrapper::before, .donations-custom-code-page .donation-form .form-sub-label, .comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback, .note-text, .note-heading h4, .links-block-link {
    font-size: 24px;
  }
}

.news-block-article-title, .nursing-service-item, .pagination-wrapper .pagination-link, .blog-article-intro, .blog-featured-link, .masthead-cta, a.aside-link, .text-slider-attribution, .map-controls, .map-label, .reveal-button::after, figcaption, .body-text {
  font-size: 3.7894736842vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .news-block-article-title, .nursing-service-item, .pagination-wrapper .pagination-link, .blog-article-intro, .blog-featured-link, .masthead-cta, a.aside-link, .text-slider-attribution, .map-controls, .map-label, .reveal-button::after, figcaption, .body-text {
    font-size: 1.3580246914vw;
  }
}
@media (min-width: 101.25em) {
  .news-block-article-title, .nursing-service-item, .pagination-wrapper .pagination-link, .blog-article-intro, .blog-featured-link, .masthead-cta, a.aside-link, .text-slider-attribution, .map-controls, .map-label, .reveal-button::after, figcaption, .body-text {
    font-size: 22px;
  }
}

.jotform-form .form-sub-label, .donation-form .form-sub-label, .footer-links, .media-slider-figcaption, .media-slide-quote, .cost-small, .cost-input-td,
.total-td,
.bazero, .cost-fillable, .cost-name-td, .ccc-select-td::before, .ccc-column-heading, .button, .form-block .submit-button, .form-submit-button,
.form-block .form-pagebreak-next,
.form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit] {
  font-size: 3.5789473684vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .jotform-form .form-sub-label, .donation-form .form-sub-label, .footer-links, .media-slider-figcaption, .media-slide-quote, .cost-small, .cost-input-td,
.total-td,
.bazero, .cost-fillable, .cost-name-td, .ccc-select-td::before, .ccc-column-heading, .button, .form-block .submit-button, .form-submit-button,
.form-block .form-pagebreak-next,
.form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit] {
    font-size: 1.2345679012vw;
  }
}
@media (min-width: 101.25em) {
  .jotform-form .form-sub-label, .donation-form .form-sub-label, .footer-links, .media-slider-figcaption, .media-slide-quote, .cost-small, .cost-input-td,
.total-td,
.bazero, .cost-fillable, .cost-name-td, .ccc-select-td::before, .ccc-column-heading, .button, .form-block .submit-button, .form-submit-button,
.form-block .form-pagebreak-next,
.form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit] {
    font-size: 20px;
  }
}

.logo-study-item-title, .cost-footnotes, .ccc-select {
  font-size: 3.3684210526vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .logo-study-item-title, .cost-footnotes, .ccc-select {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 101.25em) {
  .logo-study-item-title, .cost-footnotes, .ccc-select {
    font-size: 18px;
  }
}

.footer-credits {
  font-size: 3.3684210526vw;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .footer-credits {
    font-size: 0.987654321vw;
  }
}
@media (min-width: 101.25em) {
  .footer-credits {
    font-size: 16px;
  }
}

.random,
.another {
  color: brown;
}
.random .another,
.another .another {
  color: red;
}

.main-text h2 {
  margin: 0 0 calc(var(--gutter) / 4);
}
.main-text ul li {
  list-style-type: disc;
  margin-left: calc(var(--gutter) / 1.5);
}
@media (min-width: 48em) {
  .main-text ul li {
    margin-left: calc(var(--gutter) / 3);
  }
}
.main-text ul li::marker {
  font-size: 3.3684210526vw;
}
@media (min-width: 48em) {
  .main-text ul li::marker {
    font-size: 1.2345679012vw;
  }
}
@media (min-width: 101.25em) {
  .main-text ul li::marker {
    font-size: 20px;
  }
}
.main-text ul ul li {
  list-style-type: circle;
}
.main-text ol li {
  list-style-type: decimal;
  margin-left: calc(var(--gutter) / 1);
}
@media (min-width: 48em) {
  .main-text ol li {
    margin-left: calc(var(--gutter) / 2);
  }
}

main tr {
  text-align: left;
}

h2, .jotform-form .header-large .form-header {
  line-height: 1.1;
}

h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header {
  line-height: 1.1;
  padding-top: calc(var(--gutter));
  padding-bottom: calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  h3, .audio-block-quote, .profile-popdown-name, .jotform-form .header-default .form-header {
    padding-top: calc(var(--gutter) / 2);
  }
}
h3 + h4, .audio-block-quote + h4, .profile-popdown-name + h4, .jotform-form .header-default .form-header + h4 {
  padding-top: 0;
}

h3 strong {
  font-weight: 400;
}

h4, .audio-block-title, .jotform-form .form-label {
  font-weight: 500;
  padding: calc(var(--gutter) / 4) 0 0;
}
h4 + ul, h4 + p, .audio-block-title + ul, .audio-block-title + p, .jotform-form .form-label + ul, .jotform-form .form-label + p {
  margin-top: 0;
}

h5 {
  font-weight: 500;
  margin-top: calc(var(--gutter) / 4);
}

h4 + ul, h4 + p, h5 + ul, h5 + p {
  margin-top: calc(var(--gutter) / 8);
}

/* Links
-------------------------------------------------- */
a:hover {
  color: black;
}
a:focus, a:focus-visible {
  color: var(--type-color, black);
}

a.icon {
  font-weight: 500;
  position: relative;
}
a.icon:hover {
  color: black;
}
a.icon:hover:after {
  color: black;
  content: url(/assets/svg/icons/right-arrow-hover.svg);
}
a.icon:after {
  content: " ➮";
  content: url(/assets/svg/icons/right-arrow-yellow.svg);
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  top: 2px;
  margin-left: 5px;
  color: hsl(0deg, 0%, 88%);
}

/* Borders
-------------------------------------------------- */
:root {
  --radius: calc(var(--gutter)/2);
}
@media (min-width: 48em) {
  :root {
    --radius: calc(var(--gutter)/4);
  }
}

.border {
  border: 1px solid #034ea2;
  border-radius: var(--radius);
  padding: calc(var(--gutter) / 4);
}

/* Elements Settings
-------------------------------------------------- */
:target {
  scroll-margin-top: calc(var(--gutter) * 3);
}
@media (min-width: 48em) {
  :target {
    scroll-margin-top: calc(var(--gutter));
  }
}

p:last-child {
  margin-bottom: calc(var(--gutter) / 4);
}

ol,
ul,
p,
table {
  margin-bottom: calc(var(--gutter));
}
@media (min-width: 48em) {
  ol,
ul,
p,
table {
    margin-bottom: calc(var(--gutter) / 2);
  }
}
li ol,
li ul,
li p,
li table {
  margin-bottom: calc(var(--gutter) / 4);
}

table {
  margin-top: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter) / 2);
}
table th,
table td {
  padding-bottom: calc(var(--gutter) / 4);
}

figcaption {
  margin-top: calc(var(--gutter) / 4);
}

.button.apply-button {
  margin-top: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter));
}
.button.apply-button:hover {
  color: #fffcf5;
  background-color: var(--headline-color, --type-color, #034ea2);
}

strong {
  font-weight: 500;
}

@media (max-width: 47.9em) {
  video {
    width: 100%;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  video {
    width: 100%;
  }
}

/* Utilities
-------------------------------------------------- */
.uk-section {
  padding-top: 5.2vw;
  padding-bottom: 5.2vw;
}
@media (max-width: 47.9em) {
  .home-template .uk-section {
    padding-top: 2.6vw;
    padding-bottom: 2.6vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .home-template .uk-section {
    padding-top: 2.6vw;
    padding-bottom: 2.6vw;
  }
}
@media (min-width: 48em) {
  .uk-section {
    padding-top: 2.6vw;
    padding-bottom: 2.6vw;
  }
}

.uk-container {
  padding-right: 6.5vw;
  padding-left: 6.5vw;
}
@media (min-width: 48em) {
  .uk-container {
    padding-right: 5.2vw;
    padding-left: 5.2vw;
  }
}

.uk-grid-large > *,
.uk-grid-column-large {
  margin-left: -6.5vw;
}
@media (min-width: 48em) {
  .uk-grid-large > *,
.uk-grid-column-large {
    margin-left: -5.2vw;
  }
}
.uk-grid-large > * > [class^=uk-width],
.uk-grid-column-large > [class^=uk-width] {
  padding-left: 6.5vw;
}
@media (min-width: 48em) {
  .uk-grid-large > * > [class^=uk-width],
.uk-grid-column-large > [class^=uk-width] {
    padding-left: 5.2vw;
  }
}
.uk-grid-large > * [class^=uk-margin-large-top],
.uk-grid-column-large [class^=uk-margin-large-top] {
  margin-left: 6.5vw !important;
}
@media (min-width: 48em) {
  .uk-grid-large > * [class^=uk-margin-large-top],
.uk-grid-column-large [class^=uk-margin-large-top] {
    margin-top: 5.2vw !important;
  }
}

a.uk-link-text,
.uk-link-text a,
.uk-link-toggle .uk-link-text {
  color: #efebe5;
  background: none;
}
a.uk-link-text:hover,
.uk-link-text a:hover,
.uk-link-toggle .uk-link-text:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.uk-lightbox {
  background-color: rgba(0, 0, 0, 0.8);
}

.uk-lightbox-toolbar {
  background-color: transparent;
}

/* Overrides
 * overwrites Mimar theme settings
-------------------------------------------------- */
.uk-dotnav {
  margin-top: calc(var(--gutter) / 4);
}
.uk-dotnav a {
  box-shadow: unset;
}
.uk-dotnav .uk-active a {
  background-color: var(--type-color, #034ea2);
}

.uk-slidenav {
  box-shadow: unset;
}

:root {
  --swiper-pagination-bullet-width: calc(var(--gutter)/2);
  --swiper-pagination-bullet-height: calc(var(--gutter)/2);
  --swiper-pagination-bullet-horizontal-gap: calc(var(--gutter)/4);
}
@media (min-width: 48em) {
  :root {
    --swiper-pagination-bullet-width: calc(var(--gutter)/4);
    --swiper-pagination-bullet-height: calc(var(--gutter)/4);
    --swiper-pagination-bullet-horizontal-gap: calc(var(--gutter)/8);
  }
}

.swiper-pagination-bullet-active {
  background: var(--type-color, #034ea2);
}

/* Dialog for video modal
-------------------------------------------------- */
body.show-dialog {
  overflow: hidden;
  margin-right: 14px;
}

dialog {
  position: fixed;
  overflow: visible;
  background-color: transparent;
}
@media (min-width: 48em) {
  dialog {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 80%;
    max-width: 90vh;
  }
}
@media (min-width: 101.25em) {
  dialog {
    width: 50%;
  }
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

.video-dialog-video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.video-dialog-button {
  cursor: pointer;
}
@media (max-width: 47.9em) {
  .video-dialog-button {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .video-dialog-button {
    display: none;
  }
}
.video-dialog-button:hover svg {
  stroke: #FEBD15;
  fill: none !important;
}

.video-dialog-close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 9;
  cursor: pointer;
}
@media (min-width: 48em) {
  .video-dialog-close-wrapper {
    padding: 0 0 0 calc(var(--gutter) / 8);
  }
}
.video-dialog-close-wrapper svg {
  stroke: white;
}
.video-dialog-close-wrapper:hover svg {
  stroke: #FEBD15;
}
.popdown-small-list-list .video-dialog-close-wrapper {
  transform: translateY(-50%);
}

.video-dialog-close-svg {
  stroke-width: 2;
  padding: calc(Var(--gutter) / 8);
  --scale: .9;
  width: calc(var(--gutter) / var(--scale));
  height: calc(var(--gutter) / var(--scale));
}
@media (min-width: 48em) {
  .video-dialog-close-svg {
    --scale: 1.4;
  }
}

/* General
-------------------------------------------------- */
:root {
  --shadow: 0 10px 41px -8px rgb(0 0 0 / 10%);
}

body {
  background-color: #fffcf5 !important;
}

/* Buttons
-------------------------------------------------- */
.button, .form-block .submit-button, .form-submit-button,
.form-block .form-pagebreak-next,
.form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit] {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
  box-shadow: none;
  border: 1px solid var(--headline-color, #5792cd);
  border-radius: calc(var(--gutter));
  padding: calc(var(--gutter) / 3) calc(var(--gutter) / 1.5);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: calc(var(--gutter) / 32);
}
@media (min-width: 48em) {
  .button, .form-block .submit-button, .form-submit-button,
.form-block .form-pagebreak-next,
.form-block .form-pagebreak-back,
.komments-wrapper .input[type=submit] {
    padding: calc(var(--gutter) / 6) calc(var(--gutter) / 4);
    border-radius: calc(var(--gutter) / 2);
    letter-spacing: calc(var(--gutter) / 32);
  }
}
.button:hover, .button:focus, .form-block .submit-button:hover, .form-block .submit-button:focus, .form-submit-button:hover, .form-submit-button:focus,
.form-block .form-pagebreak-next:hover,
.form-block .form-pagebreak-next:focus,
.form-block .form-pagebreak-back:hover,
.form-block .form-pagebreak-back:focus,
.komments-wrapper .input[type=submit]:hover,
.komments-wrapper .input[type=submit]:focus {
  color: white;
  background-color: #5792cd;
}

/* Image Element
-------------------------------------------------- */
[class*=uk-width-] [class*=uk-inline] {
  display: block;
}
[class*=uk-width-] img {
  width: 100%;
  max-width: unset;
}

img {
  border-radius: var(--radius);
}

/* Video Element
-------------------------------------------------- */
.video-controls-wrapper {
  position: absolute;
  right: 0;
  bottom: calc(var(--gutter) / 8);
  z-index: 10;
  cursor: pointer;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
}
@media (min-width: 48em) {
  .video-controls-wrapper {
    bottom: 0;
    display: block;
    margin: calc(var(--gutter) / 5);
  }
}
@media (min-width: 48em) {
  .nurse-swiper .video-controls-wrapper {
    margin: calc(var(--gutter) / 2.3);
  }
}
.video-card .video-controls-wrapper {
  margin: calc(var(--gutter) / 2) calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .video-card .video-controls-wrapper {
    margin: calc(var(--gutter) / 12);
  }
}
.video-controls-wrapper svg {
  display: block;
  overflow: visible;
  --icon-scale: 2;
  width: calc(var(--gutter) * var(--icon-scale));
  height: calc(var(--gutter) * var(--icon-scale));
  fill: white;
  cursor: pointer;
}
.video-controls-wrapper svg:hover {
  fill: #034ea2;
  fill: #FEBD15;
}
@media (min-width: 48em) {
  .video-controls-wrapper svg {
    --icon-scale: .8;
  }
}

svg.video-open-fullscreen-icon, svg.video-close-fullscreen-icon {
  stroke: white;
  stroke-linecap: round;
  fill: none;
  stroke-width: 2px;
}

.video-open-fullscreen-icon {
  pointer-events: none;
}

.video-extra-controls-wrapper {
  display: flex;
  justify-content: space-between;
  left: 0;
}

.swiper .video-sound-wrapper {
  display: none;
}

svg.video-pause-icon {
  display: none;
}

.show-pause .video-pause-icon {
  display: block;
}
.show-pause .video-play-icon {
  display: none;
}

svg.video-sound-off-icon {
  display: none;
}

.show-sound-on .video-sound-off-icon {
  display: block;
}
.show-sound-on .video-sound-on-icon {
  display: none;
}

svg.video-cc-off-icon {
  display: none;
}

.show-cc-off .video-cc-off-icon {
  display: block;
}
.show-cc-off .video-cc-on-icon {
  display: none;
}

.video-cc-icon {
  fill: #FEBD15 !important;
}
.show-cc-off .video-cc-icon {
  fill: rgba(108, 103, 101, 0.7);
}

.slider-item {
  width: 100%;
}

.video-slider {
  width: 100%;
  border-radius: var(--radius);
}

@media (max-width: 47.9em) {
  .swiper-wrapper[style] {
    margin-bottom: calc(var(--gutter) * 1.5);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .swiper-wrapper[style] {
    margin-bottom: calc(var(--gutter) * 1.5);
  }
}
.section-title-wrapper .swiper-wrapper {
  margin-bottom: 0;
}
.text-swiper .swiper-wrapper {
  margin-bottom: calc(var(--gutter));
}
@media (min-width: 48em) {
  .text-swiper .swiper-wrapper {
    margin-bottom: calc(var(--gutter) / 2);
  }
}

.home-nurses .swiper-pagination {
  --swiper-pagination-bottom: calc(var(--gutter)*-1.5);
}
@media (min-width: 48em) {
  .home-nurses .swiper-pagination {
    --swiper-pagination-bottom: calc(var(--gutter)/-1.7);
  }
}
.home-residences .swiper-pagination, .home-rest-study .swiper-pagination {
  --swiper-pagination-bottom: calc(var(--gutter)*-1.5);
}
@media (min-width: 48em) {
  .home-residences .swiper-pagination, .home-rest-study .swiper-pagination {
    --swiper-pagination-bottom: calc(var(--gutter)/-1.5);
  }
}
.text-slider-block .swiper-pagination {
  --swiper-pagination-bottom: 0;
}

.swiper-video {
  border-radius: var(--radius);
  width: 100%;
}

/* Page Section Element
-------------------------------------------------- */
.page-section {
  border-radius: var(--radius);
  margin: calc(var(--gutter) / -4) 0 0;
}
.page-section .reveal-wrapper.core {
  padding-left: 0;
  padding-right: 0;
  max-width: unset;
}
.page-section .cta-wrapper {
  text-align: unset;
}
.page-section .cta-block {
  margin: calc(var(--gutter)) calc(var(--gutter) / -2) 0;
  padding: calc(var(--gutter)) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .page-section .cta-block {
    margin: calc(var(--gutter) * 1) calc(var(--gutter) * -2) 0;
    padding: 0;
  }
}
.page-section .cta-block .cta-wrapper {
  background-color: var(--background-color, #034ea2);
  border-radius: var(--radius);
}
.page-section .cta-block .core {
  padding: 0;
  max-width: unset;
}

.section-header {
  padding: calc(var(--gutter) / 2) 0 0;
  background-color: unset;
  --bg-offset: 45%;
  position: relative;
}
@media (min-width: 48em) {
  .section-header {
    padding: calc(var(--gutter) * 2) 0 0;
  }
}
.section-header .section-inner {
  padding-bottom: 0;
}
@media (min-width: 48em) {
  .section-header .section-inner {
    padding: 0 calc(var(--gutter) * 2);
  }
}
.section-header::before {
  content: "";
  position: absolute;
  top: var(--bg-offset);
  bottom: 0;
  width: 100%;
  background-color: var(--background-color);
  border-radius: var(--radius) var(--radius) 0 0;
}

.section-outer {
  background-color: var(--background-color);
  border-radius: 0 0 var(--radius) var(--radius);
}
@media (min-width: 48em) {
  .section-outer {
    padding-bottom: calc(var(--gutter) / 2);
  }
}
.section-outer:last-child {
  padding-bottom: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .section-outer:last-child {
    padding-bottom: calc(var(--gutter) * 2);
  }
}
.section-outer:last-child .section-inner:last-child {
  padding-bottom: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .section-outer:last-child .section-inner:last-child {
    padding-bottom: 0;
  }
}
.section-outer:last-child .section-inner:last-child .reveal-wrapper:last-child:not(.faq-wrapper) {
  margin: 0;
}
.section-outer:last-child ul:last-child {
  margin-bottom: 0;
}

.section-outer-with-slides {
  padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) / 1.5);
}
.section-outer-with-slides .media-slider {
  padding-bottom: calc(var(--gutter) / 3);
}
@media (min-width: 48em) {
  .section-outer-with-slides {
    padding-bottom: calc(var(--gutter) / 2.4);
  }
}

.section-outer.section-outer-no-slides {
  background: var(--background-color, #fffcf5);
  padding-top: calc(var(--gutter) * 1);
}
@media (min-width: 48em) {
  .section-outer.section-outer-no-slides {
    padding-top: calc(var(--gutter) * 2);
  }
}

.section-outer-no-slides .section-title {
  padding-top: 0;
}

.section-inner {
  color: var(--type-color, #034ea2);
  padding: 0 0 calc(var(--gutter) * 1);
}
@media (min-width: 48em) {
  .section-inner {
    padding: 0 calc(var(--gutter) * 4) 0;
  }
}

/* Revealer Block
-------------------------------------------------- */
.course-position-list {
  border-top: #034ea2 1px solid;
  padding-bottom: calc(var(--gutter));
}

.reveal-wrapper {
  margin-bottom: calc(var(--gutter));
  padding-top: calc(var(--gutter) / 3);
  padding-bottom: calc(var(--gutter) / 8);
}
@media (min-width: 48em) {
  .reveal-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: calc(var(--gutter));
  }
}
.reveal-wrapper.show-hidden .reveal-hidden {
  display: block;
}
.reveal-wrapper.show-hidden .reveal-button::after {
  content: "less";
}

.reveal-heading {
  margin-bottom: calc(var(--gutter) / 4);
}

.reveal-intro p:last-of-type {
  margin-bottom: 0;
}

.reveal-hidden {
  display: none;
  padding-top: calc(var(--gutter) / 2);
}

.reveal-text {
  padding-bottom: calc(var(--gutter) / 4);
}

.revealer {
  cursor: pointer;
}

.reveal-button {
  color: var(--type-color, #034ea2);
  text-decoration-color: var(--type-color, #034ea2);
}
.reveal-button::after {
  content: "more";
  text-transform: uppercase;
  letter-spacing: 0.1vw;
}
.reveal-button:hover::after {
  color: var(--headline-color, #034ea2) !important;
  text-decoration-color: var(--headline-color, #034ea2) !important;
}

/* CTA Block
-------------------------------------------------- */
.audio-block-quote {
  line-height: 1.3;
}
@media (max-width: 47.9em) {
  .audio-block-quote {
    margin-bottom: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .audio-block-quote {
    margin-bottom: calc(var(--gutter) / 2);
  }
}

/* Course Block
-------------------------------------------------- */
.course-wrapper {
  border-bottom: #93BFE6 0.5px solid;
  padding-bottom: calc(var(--gutter));
  margin-bottom: calc(var(--gutter) / 2) !important;
}
@media (min-width: 48em) {
  .course-wrapper {
    padding-bottom: calc(var(--gutter) / 2);
  }
}
.course-wrapper .button {
  margin-top: calc(var(--gutter) / 4);
}
.course-wrapper .button:hover {
  color: white;
}
.course-wrapper .reveal-button {
  padding-left: 0;
}

/* CTA Block
-------------------------------------------------- */
.cost-comparison-calculator-section {
  background-color: var(--background-color, #fffcf5);
  margin-top: calc(var(--gutter) * -4);
  padding-top: calc(var(--gutter) * 4);
}
@media (min-width: 48em) {
  .cost-comparison-calculator-section {
    padding-top: calc(var(--gutter) * 3);
    margin-top: calc(var(--gutter) * -2);
  }
  .cost-comparison-calculator-section .section-inner {
    padding: 0 calc(var(--gutter) * 2);
  }
}

.ccc-block {
  padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 2);
  position: relative;
}
@media (min-width: 48em) {
  .ccc-block {
    padding: calc(var(--gutter)) 0 calc(var(--gutter) * 2);
  }
}
.ccc-block .body-text {
  line-height: 1.4;
  margin-bottom: calc(var(--gutter));
}
.ccc-block table {
  border-collapse: collapse;
}
.ccc-block table td {
  display: flex;
  padding: 0 calc(var(--gutter) / 4) calc(var(--gutter) / 2) calc(var(--gutter) / 8);
  padding: 0 calc(var(--gutter) / 4) 0 calc(var(--gutter) / 8);
  margin-bottom: calc(var(--gutter) / 2);
  position: relative;
}
@media (min-width: 48em) {
  .ccc-block table td {
    display: table-cell;
    margin-bottom: 0;
    padding: 0 calc(var(--gutter) / 4) calc(var(--gutter) / 8) 0;
  }
}
.ccc-block table tr {
  border: none;
}

.ccc-block-inner {
  color: var(--type-color);
  border: 1px solid var(--type-color);
  border-radius: var(--radius);
  padding: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .ccc-block-inner {
    padding: calc(var(--gutter) / 2) calc(var(--gutter));
    margin: 0 calc(var(--gutter) * 1);
  }
}

.ccc-h4 {
  padding-bottom: calc(var(--gutter));
}
@media (min-width: 48em) {
  .ccc-h4 {
    width: calc(var(--gutter) * 9);
  }
}

.ccc-column-heading {
  font-weight: 400;
}
@media (min-width: 48em) {
  .ccc-column-heading {
    width: calc(var(--gutter) * 3);
  }
}

.ccc-select {
  border: 1px solid green;
  border-radius: calc(var(--radius) / 2);
  padding: calc(var(--gutter) / 12);
  text-align: center;
}
@media (max-width: 47.9em) {
  .ccc-select {
    margin-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .ccc-select {
    margin-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: 48em) {
  .ccc-select {
    width: calc(var(--gutter) * 2);
  }
}

@media (max-width: 47.9em) {
  .ccc-select-td {
    padding-left: calc(var(--gutter) * 5);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .ccc-select-td {
    padding-left: calc(var(--gutter) * 5);
  }
}
@media (max-width: 47.9em) {
  .ccc-select-td::before {
    position: static;
    display: flex;
    align-items: center;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .ccc-select-td::before {
    position: static;
    display: flex;
    align-items: center;
  }
}

.cost-footnotes {
  line-height: 1.3;
}

.cost-fillable {
  color: var(--type-color, #034ea2);
  background-color: var(--background-color, #fffcf5);
  width: calc(var(--gutter) * 2);
}
@media (max-width: 47.9em) {
  .cost-fillable {
    background-color: white;
    border-radius: calc(var(--radius) / 2);
    width: calc(var(--gutter) * 4);
    width: 100%;
    padding: calc(var(--gutter) / 4);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cost-fillable {
    background-color: white;
    border-radius: calc(var(--radius) / 2);
    width: calc(var(--gutter) * 4);
    width: 100%;
    padding: calc(var(--gutter) / 4);
  }
}

.cost-fillable,
.bazero,
.total-td {
  padding-left: calc(var(--gutter) / 2) !important;
}
@media (min-width: 48em) {
  .cost-fillable,
.bazero,
.total-td {
    padding-left: calc(var(--gutter) / 4) !important;
  }
}

.cost-input-td,
.total-td,
.bazero {
  position: relative;
}
.cost-input-td::before,
.total-td::before,
.bazero::before {
  content: "$";
}
@media (min-width: 48em) {
  .cost-input-td::before,
.total-td::before,
.bazero::before {
    position: absolute;
    left: 0;
    bottom: calc(var(--gutter) / 6);
  }
}
.cost-input-td::after,
.total-td::after,
.bazero::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: calc(var(--gutter) / 8);
  width: 100%;
}
@media (min-width: 48em) {
  .cost-input-td::after,
.total-td::after,
.bazero::after {
    border-bottom: 1px solid var(--type-color, #034ea2);
    width: calc(var(--gutter) * 2);
  }
}

@media (max-width: 47.9em) {
  .cost-input-td::before {
    padding-right: calc(var(--gutter) / 4);
    position: static;
    content: "Current residence monthly expenses $";
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cost-input-td::before {
    padding-right: calc(var(--gutter) / 4);
    position: static;
    content: "Current residence monthly expenses $";
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
}

.bazero {
  padding-left: calc(var(--gutter) / -4);
}
@media (max-width: 47.9em) {
  .bazero {
    padding-left: 0 !important;
    margin-bottom: calc(var(--gutter) * 2) !important;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .bazero {
    padding-left: 0 !important;
    margin-bottom: calc(var(--gutter) * 2) !important;
  }
}
.bazero::before {
  left: 0;
}
@media (max-width: 47.9em) {
  .bazero::before {
    content: "Monthly expenses at The Residences at 910 $";
    position: static;
    padding: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .bazero::before {
    content: "Monthly expenses at The Residences at 910 $";
    position: static;
    padding: 0;
  }
}

#ba-total::before {
  content: "";
}

@media (max-width: 47.9em) {
  .blank-row {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .blank-row {
    display: none;
  }
}

/* CTA Block
-------------------------------------------------- */
.cta-block {
  margin: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .cta-block {
    margin: 0;
  }
}
.cta-block .cta-wrapper {
  position: relative;
}
@media (max-width: 47.9em) {
  .cta-block .cta-wrapper {
    text-align: center;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cta-block .cta-wrapper {
    text-align: center;
  }
}
.cta-block .feature-bg {
  background-color: var(--background-color, #034ea2);
}
.cta-block .feature-copy {
  padding-left: calc(var(--gutter));
  margin-top: calc(var(--gutter) * 2);
}
.page-intro-wrapper-section .cta-block:last-child .cta-wrapper {
  margin-bottom: 0;
}

.cta-wrapper {
  text-align: center;
  padding: calc(var(--gutter)) calc(var(--gutter) * 2);
  margin-bottom: calc(var(--gutter));
  text-align: left;
}

.cta-tag {
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  padding-bottom: calc(var(--gutter) / 4);
  color: var(--type-color, #034ea2);
}

@media (min-width: 48em) {
  .cta-headline,
.cta-text-wrapper {
    grid-row: 1/2;
  }
}

@media (min-width: 48em) {
  .cta-titles, .cta-text-wrapper {
    grid-row: 1;
  }
}

.cta-titles {
  padding: calc(var(--gutter)) calc(var(--gutter)) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .cta-titles {
    margin-bottom: calc(var(--gutter) / 2);
    grid-column: 1/8;
    padding: calc(var(--gutter));
  }
}

.cta-headline {
  line-height: 1.1;
  color: var(--headline-color, #034ea2);
  font-weight: 300;
}

.cta-subhead {
  color: var(--headline-color, #034ea2);
}

@media (min-width: 48em) {
  .cta-text-wrapper {
    grid-column: 7/13;
    padding: var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.cta-text {
  line-height: 1.3;
  color: var(--type-color, #034ea2);
  margin-bottom: calc(var(--gutter) / 2);
  color: var(--type-color, #034ea2);
}
@media (min-width: 48em) {
  .cta-text {
    margin-bottom: 0;
  }
}
.cta-text h3 {
  padding-top: 0;
}
.cta-text p {
  margin: 0;
}

@media (max-width: 47.9em) {
  .cta-buttons-wrapper {
    padding: calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cta-buttons-wrapper {
    padding: calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: 48em) {
  .cta-buttons-wrapper {
    margin-top: calc(var(--gutter) / 4);
  }
}

.cta-button, .form-block .submit-button, .form-submit-button {
  color: var(--type-color, #034ea2);
  align-self: flex-start;
  border-color: var(--type-color, #034ea2);
  margin: 0 calc(var(--gutter) / 2) calc(var(--gutter) / 1.5) 0;
}
@media (min-width: 48em) {
  .cta-button, .form-block .submit-button, .form-submit-button {
    margin-bottom: 0;
  }
}
.cta-button:hover, .cta-button:focus, .form-block .submit-button:hover, .form-block .submit-button:focus, .form-submit-button:hover, .form-submit-button:focus {
  color: var(--background-color, #034ea2);
  background-color: var(--headline-color, #034ea2);
  border-color: var(--headline-color, #034ea2);
}

.cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back {
  color: var(--type-color, #fffcf5);
  background-color: var(--background-color, #034ea2);
  padding: calc(var(--gutter) / 1.5) calc(var(--gutter) / 0.75);
  border-radius: calc(var(--gutter));
  border-color: var(--background-color, #034ea2);
}
@media (max-width: 47.9em) {
  .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back {
    margin-bottom: calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back {
    margin-bottom: calc(var(--gutter));
  }
}
@media (min-width: 48em) {
  .cta-buttons-block .cta-button,
.form-block .submit-button, .form-submit-button, .form-block .form-pagebreak-next, .form-block .form-pagebreak-back {
    border-radius: calc(var(--gutter));
    padding: calc(var(--gutter) / 3) calc(var(--gutter) / 2);
    letter-spacing: calc(var(--gutter) / 32);
  }
}
.cta-buttons-block .cta-button:hover, .cta-buttons-block .cta-button:focus,
.form-block .submit-button:hover,
.form-block .submit-button:focus, .form-submit-button:hover, .form-submit-button:focus, .form-block .form-pagebreak-next:hover, .form-block .form-pagebreak-next:focus, .form-block .form-pagebreak-back:hover, .form-block .form-pagebreak-back:focus {
  color: var(--background-color, #034ea2);
  background-color: var(--type-color, #fffcf5);
}

/* CTA home page
-------------------------------------------------- */
.cta-home-block .cta-wrapper {
  padding: calc(var(--gutter)) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .cta-home-block .cta-wrapper {
    padding: 0 calc(var(--gutter) * 2) calc(var(--gutter));
  }
}
.cta-home-block .cta-titles,
.cta-home-block .cta-text-wrapper {
  padding: 0 calc(var(--gutter));
}
.cta-home-block .feature-bg,
.cta-home-block .cta-titles,
.cta-home-block .cta-text-wrapper {
  grid-column: 1/9;
}
@media (min-width: 48em) {
  .cta-home-block .feature-bg,
.cta-home-block .cta-titles,
.cta-home-block .cta-text-wrapper {
    grid-column: 1/13;
  }
}
.cta-home-block .feature-bg {
  grid-row: 1/5;
}
@media (min-width: 48em) {
  .cta-home-block .feature-bg {
    grid-row: 1/4;
  }
}
.cta-home-block .cta-titles {
  grid-row: 2/3;
}
@media (min-width: 48em) {
  .cta-home-block .cta-titles {
    margin-bottom: 0;
    grid-row: 2/3;
    grid-column: 1/7;
  }
}
.cta-home-block .cta-text-wrapper {
  grid-row: 3/4;
}
@media (min-width: 48em) {
  .cta-home-block .cta-text-wrapper {
    grid-row: 2/3;
    grid-column: 7/13;
  }
}
.cta-home-block .cta-text {
  padding-bottom: calc(var(--gutter) / 4);
}

/* CTA Course
-------------------------------------------------- */
.cta-course-block .cta-wrapper {
  display: block;
  border: 1px solid var(--outline-color);
}
.cta-course-block .cta-titles {
  padding-bottom: calc(var(--gutter) / 4);
  margin-bottom: calc(var(--gutter) / 4) !important;
}
.cta-course-block .cta-text-wrapper {
  padding-top: 0;
}

/* CTA Side-by-side (double)
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .cta-double-block {
    margin-bottom: calc(var(--gutter) * 2);
  }
  .cta-double-block .cta-wrapper {
    padding: 0 calc(var(--gutter) / 2);
    grid-gap: 0;
  }
  .cta-double-block .feature-bg {
    grid-row: 1/3;
  }
  .cta-double-block .cta-titles {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .cta-double-block .cta-text-wrapper {
    grid-column: 1/-1;
    grid-row: 2;
    padding: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cta-double-block {
    margin-bottom: calc(var(--gutter) * 2);
  }
  .cta-double-block .cta-wrapper {
    padding: 0 calc(var(--gutter) / 2);
    grid-gap: 0;
  }
  .cta-double-block .feature-bg {
    grid-row: 1/3;
  }
  .cta-double-block .cta-titles {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .cta-double-block .cta-text-wrapper {
    grid-column: 1/-1;
    grid-row: 2;
    padding: calc(var(--gutter) / 2);
  }
}
.cta-double-block .cta-text {
  line-height: 1.2;
}

/* CTA Buttons (giving)
-------------------------------------------------- */
.cta-buttons-block {
  margin-bottom: calc(var(--gutter));
}
.cta-buttons-block .cta-wrapper {
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cta-buttons-block .cta-buttons-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 47.9em) {
  .cta-buttons-block .cta-buttons-wrapper {
    display: block;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .cta-buttons-block .cta-buttons-wrapper {
    display: block;
  }
}
.cta-buttons-block .cta-button {
  border-radius: calc(var(--gutter));
}
@media (min-width: 48em) {
  .cta-buttons-block .cta-button {
    border-radius: calc(var(--gutter) / 4);
  }
}

/* CTA Inline (910)
-------------------------------------------------- */
.cta-inline-block .cta-titles {
  grid-column: 1/-1;
  grid-row: 1;
  padding: 0 calc(var(--gutter));
}

/* FAQs Block
-------------------------------------------------- */
.faqs-section {
  background-color: var(--background-color, #fffcf5);
}
.faq-revealer,
.position-revealer {
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
  margin-bottom: calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .faq-revealer,
.position-revealer {
    padding-bottom: calc(var(--gutter) / 12);
    margin-bottom: 0;
  }
}
.faq-revealer:hover,
.position-revealer:hover {
  cursor: pointer;
  border-color: #007546;
}

.faq-wrapper, .position-wrapper {
  margin-bottom: calc(var(--gutter));
  border-bottom: 1px solid rgba(var(--headline-rgb), 0.5);
}
@media (max-width: 47.9em) {
  .faq-wrapper, .position-wrapper {
    margin-bottom: calc(var(--gutter) * 2);
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .faq-wrapper, .position-wrapper {
    margin-bottom: calc(var(--gutter) * 2);
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}

.faq-wrapper {
  margin-bottom: calc(var(--gutter) * 1);
}

.faq-button {
  margin: 0;
  text-decoration: none;
  margin-left: auto;
  pointer-events: none;
}
.faq-button::after {
  content: "+";
}
.show-hidden .faq-button::after {
  content: "–";
}

.faq-question {
  line-height: 1.3;
}
.faq-question:hover {
  color: black;
}

.faq-question, .position-intro {
  padding-right: calc(var(--gutter) / 2);
}

.faq-answer {
  margin-bottom: calc(var(--gutter));
  margin-left: calc(var(--gutter));
  line-height: 1.3;
}
@media (min-width: 48em) {
  .faq-answer {
    margin-top: calc(var(--gutter) / 4);
    margin-bottom: calc(var(--gutter) / 2);
    padding-top: 0;
  }
}

/* Features on home and nursing overview
-------------------------------------------------- */
.feature {
  border-radius: var(--radius);
  margin-top: calc(var(--gutter) * 2);
  padding-top: calc(var(--gutter));
  position: relative;
}
@media (max-width: 47.9em) {
  .feature {
    grid-gap: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .feature {
    grid-gap: 0;
  }
}
@media (min-width: 48em) {
  .feature {
    margin-bottom: calc(var(--gutter) * 1);
  }
}

.feature-swiper {
  padding-bottom: calc(var(--gutter));
  overflow: visible;
}
@media (min-width: 48em) {
  .feature-swiper {
    padding-bottom: calc(var(--gutter) * 2);
  }
}

.feature-bg {
  background-color: var(--background-color);
  border-radius: var(--radius);
  grid-row: 1/2;
  grid-column: 1/-1;
}

.feature-copy,
.feature-slides {
  grid-row: 1/2;
}
@media (min-width: 48em) {
  .feature-copy,
.feature-slides {
    flex: 0 0 50%;
  }
}

.feature-slides {
  min-width: 0;
  grid-column: 1/9;
  grid-row: 1/2;
}
.feature-slides .video-cc-wrapper {
  display: none;
}
.feature-slides iframe {
  pointer-events: all;
}

.feature-copy {
  text-align: center;
  grid-column: 1/9;
  grid-row: 2/3;
  padding: calc(var(--gutter)) calc(var(--gutter)) calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .feature-copy {
    grid-row: 1/2;
    text-align: unset;
    padding: calc(var(--gutter)) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.feature-title {
  line-height: 1.1;
  color: var(--headline-color, #034ea2);
}
@media (min-width: 48em) {
  .feature-title {
    margin-bottom: calc(var(--gutter) / 2);
  }
}

.feature-text {
  line-height: 1.3;
  color: var(--type-color, #034ea2);
  margin: calc(var(--gutter) / 2) 0 calc(var(--gutter));
}
@media (max-width: 47.9em) {
  .feature-text {
    font-size: 5.0526315789vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .feature-text {
    font-size: 5.0526315789vw;
  }
}
@media (min-width: 48em) {
  .feature-text {
    margin: 0 0 calc(var(--gutter) / 2);
  }
}
.feature-text p {
  margin: 0;
}

.feature-button {
  color: var(--headline-color, #034ea2);
  border-color: var(--headline-color, #034ea2);
}
.feature-button:hover {
  background-color: var(--headline-color, #034ea2);
}

/* Form Block
-------------------------------------------------- */
.form-section {
  margin: 0 !important;
}
.form-section .section-inner {
  padding: 0;
}
@media (max-width: 47.9em) {
  .form-section .core {
    padding: 0 calc(var(--gutter) / 4);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .form-section .core {
    padding: 0 calc(var(--gutter) / 4);
  }
}

@media (min-width: 48em) {
  .form-block-section-inner {
    padding-top: calc(var(--gutter));
  }
}

.form-block {
  background-color: var(--background-color, #fffcf5);
  border-radius: var(--radius);
}
@media (min-width: 48em) {
  .form-block {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: calc(var(--gutter));
  }
}
.form-page .form-block {
  margin-top: 0;
}

.form-text-wrapper {
  padding: calc(var(--gutter)) 0 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .form-text-wrapper {
    grid-column: 1/5;
    grid-row: 1;
    padding: calc(var(--gutter)) calc(var(--gutter)) 0 calc(var(--gutter));
  }
}

@media (min-width: 48em) {
  .form-sourcecode {
    grid-column: 4/13;
    grid-row: 1;
    padding: calc(var(--gutter) / 2) calc(var(--gutter)) calc(var(--gutter) * 0.75);
  }
}

.contact-form {
  padding: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .contact-form {
    padding-right: 0;
    padding-left: 0;
    grid-column: 5/11;
    padding-right: calc(var(--gutter));
  }
}
.contact-form input:not(.button) {
  width: 100%;
  background-color: var(--background-color, #fffcf5);
  padding: calc(var(--gutter) / 4) calc(var(--gutter) / 4);
  color: var(--type-color, #034ea2);
}
.contact-form input:not(.button)::-moz-placeholder {
  color: var(--type-color, #034ea2);
  line-height: 1.3;
}
.contact-form input:not(.button)::placeholder {
  color: var(--type-color, #034ea2);
  line-height: 1.3;
}

@media (min-width: 48em) {
  .form-elements {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--gutter) / -2) 0;
  }
}

.form-heading {
  color: var(--headline-color, #034ea2);
  margin-bottom: calc(var(--gutter) / 2);
}

.form-subhead {
  color: var(--type-color, #034ea2);
  line-height: 1.2;
}

.text-field-wrapper,
.email-field-wrapper,
.textarea-field-wrapper,
.date-field-wrapper,
.button-field-wrapper {
  margin-bottom: calc(var(--gutter));
}
@media (min-width: 48em) {
  .text-field-wrapper,
.email-field-wrapper,
.textarea-field-wrapper,
.date-field-wrapper,
.button-field-wrapper {
    padding: 0 calc(var(--gutter) / 2);
  }
}

.text-field-inner,
.email-field-inner,
.textarea-field-inner,
.date-field-inner {
  border: 1px solid #034ea2;
  border-radius: var(--radius);
}

.form-input, .form-textarea {
  border-radius: var(--radius);
}

@media (min-width: 48em) {
  .text-field-wrapper,
.email-field-wrapper,
.date-field-wrapper {
    width: 50%;
  }
}

.date-field-wrapper .form-label {
  background-color: var(--type-color, #034ea2);
  color: #fffcf5;
  width: 100%;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: calc(var(--gutter) / 8);
}

.textarea-field-wrapper {
  width: 100%;
}

.form-textarea {
  background-color: transparent;
  color: var(--type-color, #034ea2);
  padding: calc(var(--gutter) / 4) calc(var(--gutter) / 4);
  height: calc(var(--gutter) * 3.5);
  width: 100%;
}
.form-textarea::-moz-placeholder {
  color: var(--type-color, #034ea2);
  line-height: 1.3;
}
.form-textarea::placeholder {
  color: var(--type-color, #034ea2);
  line-height: 1.3;
}

input.form-submit {
  background-color: var(--type-color, #034ea2);
  color: #fffcf5;
}

/* Grid Block
-------------------------------------------------- */
@media (min-width: 48em) {
  .grid-wrapper {
    margin-top: calc(var(--gutter) * 2);
    margin-bottom: calc(var(--gutter));
  }
}
@media (max-width: 47.9em) {
  .grid-wrapper figure, .grid-wrapper .grid-video-wrapper {
    padding: calc(var(--gutter)) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .grid-wrapper figure, .grid-wrapper .grid-video-wrapper {
    padding: calc(var(--gutter)) 0;
  }
}

.grid-inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .grid-inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: calc(var(--gutter));
    grid-row-gap: calc(var(--gutter) * 2);
  }
}

.grid-quote-section blockquote {
  margin: 0;
  text-align: left;
  padding: calc(var(--gutter)) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .grid-quote-section blockquote {
    padding: 0;
  }
}

.grid-text-headline {
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  color: var(--headline-color);
  margin-bottom: calc(var(--gutter) / 4);
  line-height: 1.1;
}

.grid-text-sub {
  color: var(--type-color);
  line-height: 1.46;
}
.grid-text-sub p {
  margin-bottom: calc(var(--gutter) / 4);
}
.grid-text-sub p:last-of-type {
  margin: 0;
}

.grid-text-wrapper {
  padding: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .grid-text-wrapper {
    padding-right: calc(var(--gutter));
  }
}

.grid-quote-text {
  line-height: 1.2;
  color: var(--headline-color);
  margin-bottom: calc(var(--gutter) / 2);
  font-style: italic;
}

.grid-quote-attribution {
  color: var(--type-color);
}
.grid-quote-attribution::before {
  content: "—";
}

.grid-video {
  border-radius: var(--radius);
}

/* Intro Block
-------------------------------------------------- */
.intro-block-wrapper {
  background-color: var(--background-color);
  position: relative;
  border-radius: var(--radius);
  padding: calc(var(--gutter)) calc(var(--gutter) / 2) calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .intro-block-wrapper {
    padding: calc(var(--gutter) * 1) 0 calc(var(--gutter) / 4);
  }
}
@media (min-width: 48em) {
  .intro-block-wrapper ~ .reveal-wrapper .reveal-button {
    position: relative;
    left: calc(var(--gutter) * 12);
  }
}
.intro-block-wrapper .cta-buttons-wrapper {
  margin: calc(var(--gutter)) calc(var(--gutter) / 2) 0 0;
}
@media (min-width: 48em) {
  .intro-block-wrapper .cta-buttons-wrapper {
    margin: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0 0;
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 48em) {
  .intro-inner {
    display: flex;
  }
}

.intro-headline {
  color: var(--headline-color, #034ea2);
  line-height: 1.3;
}
@media (min-width: 48em) {
  .intro-headline {
    flex: 0 0 calc(var(--gutter) * 11);
  }
}

.intro-sub {
  color: var(--type-color, #034ea2);
  line-height: 1.4;
  padding: calc(var(--gutter) / 2) 0 0;
}
@media (min-width: 48em) {
  .intro-sub {
    padding: 0 0 0 calc(var(--gutter));
  }
}

/* Links Block
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .links-block-wrapper {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .links-block-wrapper {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}

.links-block-link {
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  display: block;
  padding: calc(var(--gutter) / 2) 0;
}

/* Google Map
-------------------------------------------------- */
.gm-style .gm-style-iw-tc::after {
  content: none !important;
}

/* Always set the map height explicitly to define the size of the div
   * element that contains the map. */
#google-map {
  height: 100vw;
}
@media (min-width: 48em) {
  #google-map {
    height: 56.25vw;
    max-height: 100vh;
  }
}
#google-map img {
  border-radius: 0;
}

/* reset styles */
.gm-style .gm-style-iw-c {
  transform: translate3d(-50%, 0, 0);
}

.gm-style-iw-d {
  overflow: unset !important;
  max-height: unset !important;
}

.gm-style-iw-c {
  overflow: unset !important;
  max-height: unset !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.gm-style .gm-style-iw-t::after {
  content: none !important;
}

.gm-ui-hover-effect {
  display: none !important;
}

/* labels */
.map-label,
.map-large-label {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: blue;
}

.map-label {
  line-height: 1;
  font-size: 13px;
  max-width: 150px;
}
@media (min-width: 48em) {
  .map-label {
    font-size: 13px;
  }
}
.map-label.zoom-19 {
  transform: translateY(125px);
  font-size: 18px !important;
}
.map-label.zoom-18 {
  transform: translateY(65px);
  font-size: 17px !important;
}
.map-label.zoom-17 {
  transform: translateY(65px);
  transform: translateY(60px);
  font-size: 16px !important;
}
.map-label.zoom-16 {
  transform: translateY(55px);
  transform: translateY(50px);
  font-size: 15px !important;
}
.map-label.zoom-15 {
  transform: translateY(40px);
}
.map-label.zoom-14 {
  transform: translateY(30px);
}
.map-label.is-above.zoom-19, .map-label.is-above.zoom-18, .map-label.is-above.zoom-17, .map-label.is-above.zoom-16, .map-label.is-above.zoom-15, .map-label.is-above.zoom-14 {
  transform: translateY(calc(-100% + 8px));
}
@media (min-width: 48em) {
  .map-label {
    max-width: 150px;
  }
  .map-label.zoom-19 {
    transform: translateY(125px);
  }
  .map-label.zoom-18 {
    transform: translateY(95px);
  }
  .map-label.zoom-17 {
    transform: translateY(65px);
  }
  .map-label.zoom-16 {
    transform: translateY(55px);
    transform: translateY(50px);
  }
  .map-label.zoom-15 {
    transform: translateY(40px);
  }
  .map-label.zoom-14 {
    transform: translateY(30px);
  }
  .map-label.is-above.zoom-19, .map-label.is-above.zoom-18, .map-label.is-above.zoom-17, .map-label.is-above.zoom-16, .map-label.is-above.zoom-15, .map-label.is-above.zoom-14 {
    transform: translateY(calc(-100% + 8px));
  }
}
.map-label.zoom-14, .map-label.zoom-13 {
  display: none;
}

.infoBox {
  width: span(2 of 4 wide) !important;
  transform: translate(-47%, 5vw) !important;
}
@media (min-width: 48em) {
  .infoBox {
    width: span(2 of 14) !important;
    transform: translate(-40%, 2.7vw) !important;
  }
}
@media (min-width: 85.375em) {
  .infoBox {
    transform: translate(-40%, 34px) !important;
  }
}
.infoBox > div {
  margin: 0 !important;
}
.infoBox > img {
  width: 9% !important;
  padding: 2%;
  z-index: 2;
}

.infobox-content-inner {
  background-color: gray;
  color: white;
  padding: gutter(of 2)/4 !important;
  line-height: 1;
}
@media (min-width: 48em) {
  .infobox-content-inner {
    padding: gutter(of 2)/4 !important;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.infobox-image {
  background-position: center;
  background-size: cover;
  position: relative;
}
.infobox-image:after {
  content: "";
  display: block;
  padding-bottom: 61.5384615385%;
}

.infobox-title {
  margin-bottom: gutter(of 2)/4 !important;
}

.infobox-title-link:hover {
  color: black !important;
}

.infobox-directions-wrapper:hover .infobox-directions-link {
  color: black !important;
}
.infobox-directions-wrapper:hover .infobox-directions-arrow {
  fill: black;
}

.infobox-directions-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.infobox-directions-arrow {
  cursor: pointer;
  width: gutter(of 2)/2 !important;
}

.infobox-address {
  display: block;
  width: 100%;
}

/* Map Section
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .map-section .section-inner, .map-and-directions-section .section-inner {
    padding: 0 !important;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .map-section .section-inner, .map-and-directions-section .section-inner {
    padding: 0 !important;
  }
}
.map-section .section-outer, .map-section .core, .map-section .section-inner, .map-and-directions-section .section-outer, .map-and-directions-section .core, .map-and-directions-section .section-inner {
  padding: 0;
  margin: 0;
  max-width: unset;
}

/* Map Controls
-------------------------------------------------- */
.map-controls {
  background-color: white;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 48em) {
  .map-controls {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: calc(var(--column) + var(--gutter) + var(--gutter));
    margin: calc(var(--gutter) * 2) calc(var(--gutter)) 0;
  }
}
.map-controls input {
  display: none;
}
.map-controls > li:last-of-type {
  border: none;
}
.map-controls:focus-visible {
  border: 2px solid green;
}

.map-control {
  border-bottom: 1px solid green;
  width: auto !important;
  cursor: pointer !important;
  padding: calc(var(--gutter) / 2) 0;
}
.map-control label {
  display: block;
  cursor: pointer;
  width: 100%;
}
.map-control label:focus-visible {
  background-color: green;
  color: white;
}
.map-control:hover, .map-control:focus-visible,
.map-control label:focus-visible {
  color: white;
}

.selector-control:focus-visible {
  background-color: green;
}

/* Markdown block
-------------------------------------------------- */
.signature-block tr {
  border: none;
}
.signature-block th {
  padding: 0;
}
.signature-block td {
  width: 50%;
  padding: 0;
}
.signature-block figure {
  margin-top: calc(var(--gutter) / 2) !important;
}
.signature-block img {
  width: 50%;
  border-radius: 0;
}

/* Media Slider
-------------------------------------------------- */
.media-slider-figcaption {
  font-weight: 500;
  padding: calc(var(--gutter) / 8) calc(var(--gutter) / 2);
  margin-top: calc(var(--gutter) / 4);
}
@media (max-width: 47.9em) {
  .media-slider-figcaption {
    font-size: 4.2105263158vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .media-slider-figcaption {
    font-size: 4.2105263158vw;
  }
}
@media (min-width: 48em) {
  .media-slider-figcaption {
    padding: 0 0 calc(var(--gutter) / 8);
  }
}

.media-slide-quote {
  line-height: 1.3;
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
}
@media (min-width: 48em) {
  .media-slide-quote {
    padding: 0;
  }
}

audio {
  width: 100%;
}

.audio-swiper .swiper-wrapper {
  margin: 0 calc(var(--gutter) / -3);
}
.audio-swiper .swiper-slide {
  padding: 0 calc(var(--gutter) / 3);
}

.interviews-section .swiper-pagination {
  bottom: calc(var(--gutter) / -1);
}

.media-slider-section {
  overflow: hidden;
}
@media (min-width: 48em) {
  .media-slider-section .section-title {
    padding-left: 0;
  }
}
@media (min-width: 48em) {
  .media-slider-section .section-inner {
    padding: 0;
  }
}
.media-slider-section swiper-container {
  margin: 0 calc(var(--gutter) / -4);
}
.media-slider-section swiper-slide {
  padding: 0 calc(var(--gutter) / 4);
}
.media-slider-section .swiper-arrow svg {
  stroke: var(--type-color, #034ea2);
}
.media-slider-section .swiper-arrow.swiper-button-disabled svg {
  stroke: var(--headline-color, #034ea2);
}
.media-slider-section .swiper-arrow:hover svg {
  stroke: var(--headline-color, #034ea2);
}

/* News & Events section
-------------------------------------------------- */
.news-section {
  background-color: var(--background-color);
}
@media (max-width: 47.9em) {
  .news-section {
    padding: 0 0 calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .news-section {
    padding: 0 0 calc(var(--gutter));
  }
}
.news-section .section-title {
  color: var(--headline-color, #034ea2);
  padding-left: 0;
}
@media (min-width: 48em) {
  .news-section .section-inner {
    padding: 0;
  }
}

.all-news-button {
  color: var(--headline-color, #034ea2);
  border-color: var(--headline-color, #034ea2);
}
.all-news-button:hover {
  background-color: var(--headline-color, #034ea2);
  border-color: var(--headline-color, #034ea2);
}

/* Note
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .note-block {
    padding: 0 calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .note-block {
    padding: 0 calc(var(--gutter) / 2);
  }
}

.note-heading {
  font-weight: 700;
}
.note-heading h4 {
  padding-bottom: calc(var(--gutter) / 12);
}

.note-text {
  line-height: 1.3;
}

/* Position Block
-------------------------------------------------- */
.position-title {
  padding-bottom: calc(var(--gutter) / 4);
  padding-top: 0;
  padding-right: calc(var(--gutter));
}
.position-title:hover {
  color: black;
}

.position-intro {
  line-height: 1.3;
}
.position-intro p:last-of-type {
  margin: 0;
}

/* Pull Quote
-------------------------------------------------- */
.quote-block {
  color: var(--type-color, #034ea2);
  background: var(--background-color);
  margin-bottom: calc(var(--gutter));
  padding-top: calc(var(--gutter) / 2);
}
.page-intro-wrapper-section .quote-block {
  margin-bottom: 0;
}

blockquote {
  padding: calc(var(--gutter) / 2) 0 0;
  margin: 0 auto calc(var(--gutter));
  text-align: center;
  max-width: calc(var(--gutter) * 16);
}
.page-intro-wrapper-section blockquote {
  margin-bottom: 0;
}

.quote-text {
  font-style: italic;
  line-height: 1.35;
  padding: 0 calc(var(--gutter) / 4) calc(var(--gutter) / 8);
}

.attribution {
  line-height: 1.5;
}
.attribution::before {
  content: "—";
}

.page-section .quote-inner {
  padding: 0;
}

/* Testimony Block
-------------------------------------------------- */
@media (min-width: 48em) {
  .testimony-hidden {
    padding-top: 0;
  }
}
.testimony-hidden .attribution {
  line-height: 1.3;
}

.testimony-block .faq-answer {
  margin-top: calc(var(--gutter) / 2);
}

/* Testimony Slider
-------------------------------------------------- */
.text-slider-wrapper {
  margin-bottom: calc(var(--gutter));
}

.text-slider-item {
  padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: var(--background-color, #fffcf5);
  height: auto;
}

.text-slider-attribution {
  font-weight: 700;
}

/* Announcement Bar
-------------------------------------------------- */
.announcement-bar {
  display: none;
}

.below-announcement-wrapper {
  position: relative;
}

/* Aside
-------------------------------------------------- */
.page-aside {
  background-color: #fffcf5;
  border-radius: 0 0 var(--radius) var(--radius);
  position: relative;
  z-index: 10;
}
@media (min-width: 48em) {
  .show-follow-header .page-aside {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
.hide-follow-header .page-aside {
  visibility: hidden;
}
@media (max-width: 47.9em) {
  .page-aside ::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .page-aside ::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 48em) {
  .page-aside {
    padding: calc(var(--gutter) / 2) 0 calc(var(--gutter) / 2);
  }
  .show-follow-header:not(.in-top-area) .page-aside {
    box-shadow: var(--shadow);
  }
}

:root {
  --halflinkgutter: 1/5;
}
@media (min-width: 48em) {
  :root {
    --halflinkgutter: 1/4;
  }
}

.aside-links {
  margin: 0 calc(var(--gutter) * var(--halflinkgutter) * -1);
  display: flex;
  overflow-x: scroll;
  padding: calc(var(--gutter)) 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .aside-links {
    padding: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
}

.aside-item {
  padding: 0 calc(var(--gutter) * var(--halflinkgutter));
}

a.aside-link {
  letter-spacing: 0;
  color: var(--type-color, #5792cd);
  border-color: var(--type-color, #5792cd);
  text-transform: unset;
  font-weight: 400;
}
@media (max-width: 47.9em) {
  a.aside-link {
    white-space: nowrap;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  a.aside-link {
    white-space: nowrap;
  }
}
a.aside-link:hover {
  color: white;
  background-color: var(--type-color, #5792cd);
  border-color: var(--type-color, #5792cd);
}

.aside-select-wrapper {
  display: none;
  padding: calc(var(--gutter) / 2) calc(var(--gutter) * 4);
}

.aside-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  width: 100%;
  font-weight: 700;
  margin-top: calc(var(--gutter) / 2);
  margin-bottom: calc(var(--gutter) / 2);
  background-color: transparent;
  color: var(--action-color, black);
  border-bottom: 1px solid var(--action-color, black);
  padding: 0 calc(var(--gutter) / 2);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23535353' d='M.758.57h10l-5 5z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 11px 6px;
  background-position: 98%;
  background-origin: content-box;
}
/* Static Masthead
-------------------------------------------------- */
.masthead-bg {
  background-color: var(--background-color, #fffcf5);
  padding: 0 0 calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .masthead-bg {
    padding: calc(var(--gutter) / 4) 0;
  }
}

.masthead-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
  z-index: 12;
  -moz-column-gap: calc(var(--gutter) / 2);
       column-gap: calc(var(--gutter) / 2);
  align-items: flex-start;
  padding: calc(var(--gutter)) calc(var(--gutter) / 2) calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .masthead-wrapper {
    padding: 0 calc(var(--gutter) * 2) 0;
    align-items: center;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: calc(var(--gutter));
         column-gap: calc(var(--gutter));
  }
}
.masthead-wrapper a {
  box-shadow: unset;
}

.masthead-ctas-left {
  grid-column: 1/3;
  grid-row: 1;
  display: flex;
}
@media (min-width: 48em) {
  .masthead-ctas-left {
    grid-column: 1/5;
    justify-content: flex-start;
    padding: 0;
  }
}

.masthead-ctas-right {
  grid-row: 1;
  grid-column: 6/8;
  text-align: right;
  position: relative;
  left: calc(var(--gutter) * 0.65);
}
@media (min-width: 48em) {
  .masthead-ctas-right {
    position: static;
    grid-column: 9/13;
  }
}

.masthead-cta {
  color: #66a552;
  border-color: #66a552;
  margin-right: calc(var(--gutter) / 2);
}
.masthead-cta:hover {
  color: white;
  background-color: #66a552;
}
.masthead-cta:last-of-type {
  margin: 0;
}
@media (max-width: 47.9em) {
  .masthead-cta:last-of-type {
    padding: calc(var(--gutter) / 3) calc(var(--gutter) / 1.5);
    line-height: 1.2;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .masthead-cta:last-of-type {
    padding: calc(var(--gutter) / 3) calc(var(--gutter) / 1.5);
    line-height: 1.2;
  }
}
@media (max-width: 47.9em) {
  .masthead-cta .mobile-only {
    display: inline-block;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .masthead-cta .mobile-only {
    display: inline-block;
  }
}

.masthead-hamburger-wrapper {
  grid-column: 8/9;
  padding-top: calc(var(--gutter) / 8);
  padding-left: calc(var(--gutter) / 2);
  padding-bottom: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .masthead-hamburger-wrapper {
    grid-column: unset;
    position: absolute;
    right: 0;
    width: calc(var(--gutter) * 2);
    padding: calc(var(--gutter) / 2) 0;
  }
}

.masthead-logo-outer {
  grid-row: 1;
  grid-column: 3/7;
}
@media (min-width: 48em) {
  .masthead-logo-outer {
    grid-column: 5/9;
  }
}

.masthead-logo-wrapper {
  margin: 0 auto;
  padding: 0 calc(var(--gutter) * 1);
}
@media (min-width: 48em) {
  .masthead-logo-wrapper {
    padding: 0;
    width: 56%;
  }
}
.masthead-logo-wrapper svg {
  overflow: visible;
}

.masthead-logo-link {
  display: block;
  box-shadow: unset;
}
.masthead-logo-link:hover svg path {
  fill: #5792cd;
}

/* follow header
-------------------------------------------------- */
.follow-header-wrapper {
  position: absolute;
  z-index: 12;
  width: 100%;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.show-nav .follow-header-wrapper {
  z-index: 13;
}

.follow-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
@media (min-width: 48em) {
  .follow-header {
    padding: calc(var(--gutter) / 4) 0;
  }
}
.show-follow-header .follow-header, .show-nav .follow-header {
  display: block;
  min-height: 100vh;
}
.hide-follow-header .follow-header {
  visibility: hidden;
}
.in-top-area .follow-header .hamburger-wrapper {
  display: none;
}
.follow-header .hamburger-wrapper {
  display: none;
}
.show-follow-header:not(.in-top-area) .follow-header .hamburger-wrapper {
  display: flex;
}

.follow-logo-wrapper,
.hamburger-wrapper,
nav {
  pointer-events: all;
}

.follow-logo-wrapper {
  flex: 0 0 calc(var(--gutter) * 2);
  z-index: 10;
}
@media (min-width: 48em) {
  .follow-logo-wrapper {
    display: flex;
    justify-content: center;
  }
}
.in-top-area:not(.show-nav):not(.residences-page) .follow-logo-wrapper {
  visibility: hidden;
}
.residences-page .follow-logo-wrapper, body.show-nav .follow-logo-wrapper {
  visibility: visible !important;
}

.follow-logo-link {
  box-shadow: unset;
}
.follow-logo-link svg {
  overflow: visible;
  width: calc(var(--gutter) * 3);
}
@media (min-width: 48em) {
  .follow-logo-link svg {
    width: calc(var(--gutter) * 1.2);
  }
}
.follow-logo-link svg:hover .logofill {
  fill: #5792cd;
}

.follow-header-inner {
  justify-content: space-between;
}
@media (max-width: 47.9em) {
  .follow-header-inner {
    padding: calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .follow-header-inner {
    padding: calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: 48em) {
  .follow-header-inner {
    margin: 0 calc(var(--gutter) * -2);
  }
}

/* Header
-------------------------------------------------- */
.header-inner {
  padding-top: calc(var(--gutter) / 4);
  padding-bottom: calc(var(--gutter) / 4);
}

.hamburger-wrapper {
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 48em) {
  .hamburger-wrapper {
    justify-content: center;
    flex: 0 0 calc(var(--gutter) * 2);
  }
}

.hamburger-icon,
.close-icon {
  cursor: pointer;
}

.hamburger-icon {
  stroke: #0072BC;
  width: calc(var(--gutter) * 1.2);
  height: calc(var(--gutter) * 1.2);
}
@media (min-width: 48em) {
  .hamburger-icon {
    width: calc(var(--gutter) / 1.5);
    height: calc(var(--gutter) / 1.5);
  }
}
.hamburger-icon:hover {
  stroke: #93BFE6;
}

.close-wrapper {
  display: none;
  justify-content: flex-end;
  align-items: center;
  padding-top: calc(var(--gutter) / 8);
  z-index: 10;
  pointer-events: all;
}
@media (min-width: 48em) {
  .close-wrapper {
    padding: 0;
    justify-content: center;
    flex: 0 0 calc(var(--gutter) * 2);
    float: right;
  }
}
@media (max-width: 47.9em) {
  .show-nav .close-wrapper.mobile-close-wrapper {
    display: flex;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .show-nav .close-wrapper.mobile-close-wrapper {
    display: flex;
  }
}
@media (min-width: 48em) {
  .show-nav .close-wrapper.desktop-close-wrapper {
    display: flex;
  }
}

.close-icon {
  width: calc(var(--gutter) / 0.8);
  height: calc(var(--gutter) / 0.8);
  background-color: #d4effc;
  border-radius: 50%;
  stroke: #034ea2;
  stroke-width: 2;
}
.close-icon:hover {
  stroke: #5792cd;
}
@media (min-width: 48em) {
  .close-icon {
    padding: calc(var(--gutter) / 8);
    width: calc(var(--gutter) / 1.1);
    height: calc(var(--gutter) / 1.1);
  }
}

nav {
  display: none;
  padding-top: calc(var(--gutter) * 1);
  background-color: #d4effc;
  overflow: scroll;
  padding-bottom: calc(var(--gutter));
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 47.9em) {
  nav {
    height: 100vh;
    overflow-y: scroll;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  nav {
    height: 100vh;
    overflow-y: scroll;
  }
}
@media (min-width: 48em) {
  nav {
    right: 0;
    bottom: 0;
    width: 100%;
    padding-top: calc(var(--gutter) * 1.8);
  }
}
.show-nav nav {
  display: block;
}
nav li {
  padding: calc(var(--gutter) / 3) 0;
}
@media (min-width: 48em) {
  nav li {
    padding: calc(var(--gutter) / 4) 0;
  }
}

.nav-inner {
  padding-bottom: calc(var(--gutter) * 5);
}
@media (min-width: 48em) {
  .nav-inner {
    padding: 0;
    position: relative;
    display: flex;
  }
}

.nav-links-outer {
  padding-top: calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .nav-links-outer {
    flex: 0 0 calc(var(--gutter) * 17);
    padding: 0 calc(var(--gutter)) 0 0;
  }
}

@media (min-width: 48em) {
  .nav-links-wrapper {
    display: flex;
  }
}

@media (min-width: 48em) {
  .nav-nursing-nav {
    flex: 0 0 calc(var(--gutter) * 8);
    padding-right: calc(var(--gutter));
  }
}

.nav-link {
  color: #034ea2;
  box-shadow: unset;
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 1s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover, .nav-link.active-nav-link {
  background-size: 100% 1px;
}

.nav-link-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media (max-width: 47.9em) {
  .nav-link-item {
    margin-bottom: 0 !important;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-link-item {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 48em) {
  .tag-nav-item {
    margin-bottom: calc(var(--gutter) / 3);
  }
}

.tag-nav-link {
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  color: #034ea2;
  font-weight: 700;
}

.primary-nav-link {
  font-weight: 500;
}
@media (max-width: 47.9em) {
  .primary-nav-link {
    font-size: 8vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .primary-nav-link {
    font-size: 8vw;
  }
}

.subprime-nav-link {
  font-weight: 500;
}
@media (max-width: 47.9em) {
  .subprime-nav-link {
    font-size: 7.1578947368vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .subprime-nav-link {
    font-size: 7.1578947368vw;
  }
}

.secondary-nav-link {
  font-weight: 300;
}
.secondary-nav-link.active-nav-link {
  display: inline-block;
}
.secondary-nav-link.active-nav-link::after {
  width: 100%;
}

.nav-secondary-nav {
  margin: calc(var(--gutter) / 2) 0 calc(var(--gutter) * 1.5);
}
@media (max-width: 47.9em) {
  .nav-secondary-nav {
    padding-bottom: calc(var(--gutter));
    border-bottom: 1px solid #6c6765;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-secondary-nav {
    padding-bottom: calc(var(--gutter));
    border-bottom: 1px solid #6c6765;
  }
}
@media (min-width: 48em) {
  .nav-secondary-nav {
    margin: 0;
    flex: 0 0 calc(var(--gutter) * 8);
  }
}

.nav-extra {
  color: #6c6765;
  margin: 0 calc(var(--gutter) * -1 / 4);
}
@media (min-width: 48em) {
  .nav-extra {
    flex: 0 0 calc(var(--gutter) * 6);
    padding-top: calc(var(--gutter));
    padding-left: calc(var(--gutter));
    margin-bottom: 0;
    border-left: 1px solid #6c6765;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 47.9em) {
  .nav-ctas {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--gutter) / 1.5);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-ctas {
    display: flex;
    justify-content: center;
    margin-bottom: calc(var(--gutter) / 1.5);
  }
}

.nav-cta {
  margin: 0 calc(var(--gutter) / 4);
  margin-bottom: calc(var(--gutter) / 2);
  border-color: #6c6765;
}
@media (max-width: 47.9em) {
  .nav-cta {
    display: flex;
    align-items: center;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-cta {
    display: flex;
    align-items: center;
  }
}
.nav-cta:hover {
  border-color: #5792cd;
}

.nav-contact {
  line-height: 1.2;
  margin-top: auto;
  text-align: center;
}
@media (min-width: 48em) {
  .nav-contact {
    font-size: 1.3580246914vw;
  }
}
@media (min-width: 101.25em) {
  .nav-contact {
    font-size: 22px;
  }
}
.nav-contact a {
  box-shadow: none;
}

.nav-contact-name {
  padding: 0;
}
.nav-contact-name,
.nav-contact-address,
.nav-contact-phone {
  display: block;
}
@media (max-width: 47.9em) {
  .nav-contact-name,
.nav-contact-address,
.nav-contact-phone {
    line-height: 1.4;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nav-contact-name,
.nav-contact-address,
.nav-contact-phone {
    line-height: 1.4;
  }
}

.nav-social {
  display: flex;
  justify-content: center;
  margin: calc(var(--gutter)) 0 0;
}
@media (min-width: 48em) {
  .nav-social {
    margin: calc(var(--gutter) / 2) 0 0;
    padding: 0;
  }
}

.nav-social-link {
  padding: 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .nav-social-link {
    padding: 0 calc(var(--gutter) / 8);
  }
}

.nav-social-icon {
  width: calc(var(--gutter) * 1.2);
  overflow: visible;
  fill: #6c6765;
}
@media (min-width: 48em) {
  .nav-social-icon {
    width: calc(var(--gutter) * 0.5);
  }
}
.nav-social-link:hover .nav-social-icon {
  fill: white;
}

.footer-social .nav-social {
  margin: 0;
  padding-bottom: calc(var(--gutter) * 0.5);
}
.footer-social .nav-social-icon {
  fill: #93BFE6;
}

@media (max-width: 47.9em) {
  .main-header-inner {
    padding: 0;
  }
  .main-header-inner img {
    border-radius: unset;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .main-header-inner {
    padding: 0;
  }
  .main-header-inner img {
    border-radius: unset;
  }
}

/* Footer
-------------------------------------------------- */
main section:last-child {
  position: relative;
}

.main-footer-section {
  background-color: #233C88;
  color: #93BFE6;
  margin-top: calc(var(--gutter) * -1);
  padding-top: calc(var(--gutter) * 2.5);
}
/* Newsletter
-------------------------------------------------- */
.newsletter-section {
  background-color: #5792cd;
  border-radius: var(--radius);
  color: #d4effc;
  padding-bottom: calc(var(--gutter));
  position: relative;
  margin-top: calc(var(--radius) * -1.5);
  padding: calc(var(--gutter) * 2) 0;
}
@media (max-width: 47.9em) {
  .newsletter-section {
    text-align: center;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .newsletter-section {
    text-align: center;
  }
}
@media (min-width: 48em) {
  .newsletter-section {
    padding-top: calc(var(--gutter) * 1);
    padding-bottom: calc(var(--gutter) * 1);
    margin-top: calc(var(--radius) * -1);
  }
}
@media (max-width: 47.9em) {
  .newsletter-section .mc-field-group {
    padding: 0 calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .newsletter-section .mc-field-group {
    padding: 0 calc(var(--gutter));
  }
}

.newsletter-inner {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 48em) {
  .newsletter-inner {
    flex-direction: row;
    padding: 0 calc(var(--gutter) * 4);
    align-items: center;
  }
}

.newsletter-section-heading {
  font-weight: 100;
  margin-bottom: calc(var(--gutter) / 4);
  flex: 0 0 calc(var(--gutter) * 10);
}
@media (min-width: 48em) {
  .newsletter-section-heading {
    padding-right: calc(var(--gutter));
  }
}

@media (min-width: 48em) {
  .newsletter-signup-wrapper {
    padding: 0 calc(var(--gutter)) 0 0;
    flex: 0 0 calc(var(--gutter) * 11);
    margin-top: calc(var(--gutter) / 2);
  }
}

.newsletter-signup-text {
  flex: 0 0 calc(var(--gutter) * 8);
  padding: calc(var(--gutter));
  line-height: 1.2;
}
@media (min-width: 48em) {
  .newsletter-signup-text {
    padding: 0;
  }
}

.newsletter-signup-field {
  color: #d4effc;
  background-color: transparent;
  border: 1px solid #d4effc;
  border-radius: calc(var(--radius));
  margin: 0 0 calc(var(--gutter));
  padding: calc(var(--gutter) / 3) calc(var(--gutter) / 2);
  flex: 0 0 calc(var(--gutter) * 8);
  width: 100%;
}
@media (min-width: 48em) {
  .newsletter-signup-field {
    padding: calc(var(--gutter) / 6) calc(var(--gutter) / 4);
    margin: calc(var(--gutter) / 2) 0;
  }
}
.newsletter-signup-field::-moz-placeholder {
  color: #d4effc;
}
.newsletter-signup-field::placeholder {
  color: #d4effc;
}

.newsletter-signup-button {
  border-color: #d4effc;
  background-color: transparent;
  color: #d4effc;
}
.newsletter-signup-button:hover {
  background-color: #d4effc;
  color: #5792cd;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.keep-in-touch-icon {
  --icon-size: calc(var(--gutter)*6);
  width: var(--icon-size);
  height: var(--icon-size);
  fill: white;
  padding: 0 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .keep-in-touch-icon {
    --icon-size: calc(var(--gutter)*4);
    margin: 0;
    padding: calc(var(--gutter) / 4);
  }
}

.keep-in-touch-spin-group {
  transition: transform 0.3s;
  transform-origin: center;
  animation: rotation 20s infinite linear;
  will-change: transform;
}

/* Main Footer Section
-------------------------------------------------- */
.footer-details-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (min-width: 48em) {
  .footer-details-wrapper {
    display: block;
    flex: 0 0 calc(var(--gutter) * 5);
  }
}

@media (min-width: 48em) {
  .main-footer-inner {
    display: flex;
  }
}

.footer-logo-wrapper {
  display: block;
  box-shadow: unset;
  text-align: center;
  grid-column: 1/5;
  grid-row: 1;
  margin: 0 calc(var(--gutter));
  display: flex;
}
@media (min-width: 48em) {
  .footer-logo-wrapper {
    margin: 0;
    padding: 0 calc(var(--gutter) / 2);
  }
}
.footer-logo-wrapper svg {
  width: 100%;
  overflow: visible;
}
.footer-logo-wrapper svg path {
  fill: #efebe5;
}
.footer-logo-wrapper:hover svg path {
  fill: white;
}

@media (min-width: 48em) {
  .footer-title {
    padding: 0 calc(var(--gutter) / 1.3);
  }
}

.footer-address-wrapper {
  line-height: 1.3;
  grid-column: 5/9;
  grid-row: 1;
  margin-bottom: calc(var(--gutter) / 2);
}
@media (max-width: 47.9em) {
  .footer-address-wrapper {
    font-size: 3.7894736842vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--gutter) / 1.5);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .footer-address-wrapper {
    font-size: 3.7894736842vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--gutter) / 1.5);
  }
}
@media (min-width: 48em) {
  .footer-address-wrapper {
    text-align: center;
  }
}

.footer-ctas {
  text-align: center;
  grid-column: 1/9;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .footer-ctas {
    flex-direction: column;
  }
}

.footer-cta {
  border-color: #93BFE6;
  margin: 0 0 calc(var(--gutter) / 3);
}
@media (max-width: 47.9em) {
  .footer-cta {
    display: flex;
    align-items: center;
    margin: 0 calc(var(--gutter) / 4) calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .footer-cta {
    display: flex;
    align-items: center;
    margin: 0 calc(var(--gutter) / 4) calc(var(--gutter));
  }
}
.footer-cta:hover {
  border-color: #5792cd;
}

.footer-social {
  grid-column: 1/9;
  grid-row: 3;
}
.footer-social.mobile-only .nav-social {
  justify-content: flex-start;
}
.footer-social.mobile-only .nav-social-link {
  padding: calc(var(--gutter)) calc(var(--gutter) / 2) calc(var(--gutter) / 8) 0;
}

.footer-links {
  flex: 0 0 calc(var(--gutter) * 16);
  line-height: 1;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media (min-width: 48em) {
  .footer-links {
    -moz-columns: 3;
         columns: 3;
    padding-left: calc(var(--gutter));
  }
}

.footer-link,
.footer-credits a,
.footer-address-wrapper a {
  box-shadow: unset;
}
.footer-link:hover,
.footer-credits a:hover,
.footer-address-wrapper a:hover {
  color: white;
}

.primary-footer-link {
  font-weight: 700;
}

.footer-link {
  display: inline-block;
  padding-bottom: calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .footer-link {
    padding-bottom: calc(var(--gutter) / 5);
  }
}

.footer-link-item {
  padding-right: calc(var(--gutter));
  margin-bottom: calc(var(--gutter));
}
@media (min-width: 48em) {
  .footer-link-item {
    padding-right: calc(var(--gutter) / 2);
    margin-bottom: calc(var(--gutter) / 1.8);
  }
}

.footer-link,
.footer-link-item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.footer-child-links {
  font-weight: 400;
}

.footer-credits {
  margin-top: calc(var(--gutter) / 2);
  line-height: 1.3;
}

/* Contact section
-------------------------------------------------- */
.contact-us-section {
  background-color: var(--background-color, #fffcf5);
  padding-bottom: calc(var(--gutter) * 2);
}
.contact-us-section .section-inner {
  background-color: transparent;
}

/* Profiles section (on About page)
-------------------------------------------------- */
@media (min-width: 48em) {
  .profiles-section .section-title {
    padding-left: 0;
  }
}
.profiles-section .section-outer:last-child {
  padding-bottom: calc(var(--gutter));
}

.profiles-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--gutter) / -4);
}
@media (min-width: 48em) {
  .profiles-list {
    flex-wrap: wrap;
    margin: 0 calc(var(--gutter) / -2);
    padding: calc(var(--gutter)) 0;
  }
}

.profile-item {
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
  flex: 0 0 50%;
}
@media (min-width: 48em) {
  .profile-item {
    flex: 0 0 25%;
    padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
  }
}
.profile-item figure, .profile-item .profile-details {
  cursor: pointer;
}
.profile-item figure:hover + .profile-details, .profile-item .profile-details:hover {
  color: black;
}

.profile-picture img {
  border-radius: 50%;
}

.profile-details {
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  margin: calc(var(--gutter) / 4) calc(var(--gutter) / 4) 0;
  color: var(--type-color, #5792cd);
}

.profile-position {
  font-style: italic;
  font-weight: 400;
}

/* profile popdown box
-------------------------------------------------- */
.profile-popdown-box {
  display: none;
  order: 3;
  color: var(--type-color, #034ea2);
  border-top: 1px solid var(--headline-color, #93BFE6);
  border-bottom: 1px solid var(--headline-color, #93BFE6);
  position: relative;
  padding: calc(var(--gutter)) 0 calc(var(--gutter) / 2);
  margin: calc(var(--gutter) / -8) 0 calc(var(--gutter) * 2);
}
.show-profile .profile-popdown-box {
  display: flex;
  flex: 0 0 100%;
}
.profile-popdown-box a {
  text-decoration: underline;
}
.profile-popdown-box a:hover {
  color: #93BFE6;
}

.profile-popdown-wrapper {
  width: 100%;
  padding: 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .profile-popdown-wrapper {
    padding: 0 calc(var(--gutter) / 2);
  }
}

.profile-popdown-left {
  padding-right: calc(var(--gutter));
}
@media (min-width: 48em) {
  .profile-popdown-left {
    flex: 0 0 calc(var(--gutter) * 8);
  }
}

.profile-popdown-right {
  padding-right: calc(var(--gutter));
}
@media (min-width: 48em) {
  .profile-popdown-right {
    flex: 0 0 calc(var(--gutter) * 16);
  }
}

@media (min-width: 48em) {
  .profile-popdown-content {
    display: flex;
  }
}
.profile-popdown-content div.no-details {
  display: none;
}

.profile-popdown-name {
  padding-top: 0;
}
@media (min-width: 48em) {
  .profile-popdown-name {
    padding: 0 0 calc(var(--gutter) / 2);
  }
}

.profile-popdown-location {
  padding-bottom: calc(var(--gutter));
}

.profile-popdown-position,
.profile-popdown-email,
.profile-popdown-phone,
.profile-popdown-business {
  line-height: 1.3;
}

.profile-popdown-position {
  font-style: italic;
  font-weight: 500;
}

.profile-popdown-business {
  padding-bottom: calc(var(--gutter) / 2);
}

.profile-popdown-email a,
.profile-popdown-phone a {
  text-decoration: none;
}

.profile-popdown-bio {
  line-height: 1.2;
}
.profile-popdown-close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  cursor: pointer;
  margin: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0 0;
}
@media (min-width: 48em) {
  .profile-popdown-close-wrapper {
    transform: translateX(100%);
    margin: calc(var(--gutter) / 4) 0 0;
  }
}
.profile-popdown-close-wrapper svg {
  stroke: var(--type-color, #034ea2);
}
.profile-popdown-close-wrapper:hover svg {
  stroke: #93BFE6;
}
.popdown-small-list-list .profile-popdown-close-wrapper {
  transform: translateY(-50%);
}

.profile-popdown-close-svg {
  stroke-width: 2;
  padding: calc(var(--gutter) / 8);
  --scale: .9;
  width: calc(var(--gutter) / var(--scale));
  height: calc(var(--gutter) / var(--scale));
}
@media (min-width: 48em) {
  .profile-popdown-close-svg {
    --scale: 1.4;
  }
}

.block-click {
  pointer-events: none;
}
.block-click figure, .block-click .profile-details {
  cursor: unset;
}
.block-click figure:hover + .profile-details, .block-click .profile-details:hover {
  color: var(--type-color, #034ea2);
}

/* Timeline section (on About page)
-------------------------------------------------- */
@media (min-width: 48em) {
  .timeline-section .section-inner, .timeline-section .section-title {
    padding-left: 0;
  }
}

.timeline-text-swiper {
  display: flex;
}
.timeline-text-swiper swiper-slide {
  background-color: var(--background-color);
  height: auto;
}

.timeline-swiper-outer {
  padding-bottom: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .timeline-swiper-outer {
    padding: 0;
    grid-column: 5/13;
    grid-row: 1;
  }
}

@media (max-width: 47.9em) {
  .timeline-wrapper {
    padding-top: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .timeline-wrapper {
    padding-top: calc(var(--gutter) / 2);
  }
}

@media (min-width: 48em) {
  .timeline-details-wrapper {
    grid-column: 1/5;
    grid-row: 1;
  }
}

.timeline-details {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.timeline-entry-year.section-title {
  padding: calc(var(--gutter) / 4) 0;
  text-transform: unset;
}

.timeline-entry-text {
  line-height: 1.3;
  color: #034ea2;
}
.timeline-entry-text p {
  margin: 0;
}

.timeline-image-swiper {
  display: flex;
}
.timeline-image-swiper swiper-slide {
  height: auto;
  display: flex;
}
@media (min-width: 48em) {
  .timeline-image-swiper figure {
    width: 100%;
  }
}

.timeline-picture img.portrait-orientation {
  width: auto;
  max-width: 64%;
}

@media (max-width: 47.9em) {
  .timeline-content {
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .timeline-content {
    padding-left: calc(var(--gutter) / 2);
  }
}

.timeline-controls {
  display: none;
}
@media (min-width: 48em) {
  .timeline-controls {
    display: flex;
    justify-content: space-between;
    grid-column: 1/-1;
    grid-row: 2;
    position: relative;
    z-index: 1;
    margin-top: calc(var(--gutter) / 4);
  }
}
.timeline-controls:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 96%;
  top: 8%;
  left: 2%;
  border-top: 1px solid #93BFE6;
}

.timeline-control {
  cursor: pointer;
  color: #93BFE6;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-control svg {
  fill: #93BFE6;
}
.timeline-control:hover {
  color: #034ea2;
}
.timeline-control:hover svg {
  fill: #034ea2;
}
.timeline-control.active-control {
  color: #034ea2;
}
.timeline-control.active-control svg {
  fill: #034ea2;
}
@media (min-width: 48em) {
  .timeline-svg {
    width: calc(var(--gutter) / 4);
    height: calc(var(--gutter) / 4);
  }
}

@media (min-width: 48em) {
  .control-year {
    margin-top: calc(var(--gutter) / 4);
  }
}

/* Portfolio page
-------------------------------------------------- */
/* Article page
-------------------------------------------------- */
.article-page .masthead-bg, .article-page .main-header {
  background-color: #fefad7;
}
.article-page .main-header-inner {
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
}
@media (min-width: 48em) {
  .article-page .main-header-inner {
    padding: calc(var(--gutter)) calc(var(--gutter) * 4);
  }
}

.article-breadcrumb-link {
  color: #0072BC;
  display: block;
  margin-bottom: calc(var(--gutter) / 2);
  letter-spacing: 0.1vw;
  text-transform: uppercase;
}
.article-breadcrumb-link:hover {
  color: #5792cd;
}

.article-title {
  line-height: 1.1;
  color: #5792cd;
  padding: 0 calc(var(--gutter) * 2) calc(var(--gutter) / 2) 0;
}

.article-byline {
  color: #034ea2;
  letter-spacing: 0.07vw;
  text-transform: uppercase;
}

.article-main-picture-wrapper {
  background: linear-gradient(to bottom, #fefad7, #fefad7 20%, #fffcf5 20%);
}

@media (min-width: 48em) {
  .article-main-picture-inner {
    padding: 0 calc(var(--gutter) * 2);
  }
}

.article-main-inner {
  padding: calc(var(--gutter)) 0 calc(var(--gutter));
  color: #034ea2;
  --headline-color: #5792cd;
}
@media (min-width: 48em) {
  .article-main-inner {
    padding: calc(var(--gutter)) calc(var(--gutter) * 4);
  }
}
.article-main-inner figure {
  margin: calc(var(--gutter)) 0;
}
.article-main-inner figure:last-child {
  margin-bottom: 0;
}
.article-main-inner iframe {
  border-radius: calc(var(--gutter) / 4);
}
.article-main-inner .cta-wrapper {
  padding-right: 0;
  padding-left: 0;
  margin: 0 calc(var(--gutter) * -2);
}
.article-main-inner .cta-block:last-child .cta-wrapper {
  padding-bottom: 0;
}
.article-main-inner a:hover {
  color: #5792cd;
}

@media (min-width: 48em) {
  .article-main-picture img.portrait-orientation, .article-main-picture img.square-orientation {
    max-width: 44%;
    margin: 0 auto;
  }
}

.article-main-inner .media-swiper {
  overflow: visible;
  padding-bottom: calc(var(--gutter) / 2);
  --swiper-pagination-bottom: calc(var(--gutter)/-1.5);
}
@media (min-width: 48em) {
  .article-main-inner .media-swiper {
    padding-bottom: 0;
    height: 37vw;
    margin: calc(var(--gutter) / 2) 0 calc(var(--gutter) / 1.5);
  }
}
@media (min-width: 101.25em) {
  .article-main-inner .media-swiper {
    height: 600px;
  }
}
.article-main-inner .media-swiper img {
  height: 100%;
}
.article-main-inner .media-swiper img.portrait-orientation, .article-main-inner .media-swiper img.square-orientation {
  max-width: unset;
}
.article-main-inner .media-swiper-wrapper {
  overflow: hidden;
}
@media (max-width: 47.9em) {
  .article-main-inner .media-swiper-wrapper {
    padding: calc(var(--gutter)) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .article-main-inner .media-swiper-wrapper {
    padding: calc(var(--gutter)) 0;
  }
}
.article-main-inner swiper-slide {
  display: flex;
  justify-content: center;
}
.article-main-inner swiper-slide figure {
  margin: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 47.9em) {
  .article-main-inner swiper-slide img.portrait-orientation, .article-main-inner swiper-slide img.square-orientation {
    max-width: 44%;
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .article-main-inner swiper-slide img.portrait-orientation, .article-main-inner swiper-slide img.square-orientation {
    max-width: 44%;
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.article-main-inner iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}

@media (min-width: 48em) {
  .article-main-inner img.portrait-orientation, .article-main-inner img.square-orientation, .form-page img.portrait-orientation, .form-page img.square-orientation {
    max-width: 44%;
    height: 100%;
    margin: 0 auto;
  }
}

.article-categories-section {
  background-color: #d4effc;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: calc(var(--gutter)) 0 calc(var(--gutter));
  margin: calc(var(--gutter) * 1) 0 0;
}
@media (min-width: 48em) {
  .article-categories-section {
    margin: 0;
    padding: calc(var(--gutter)) 0 calc(var(--gutter) * 1.3);
  }
}

.article-categories-title {
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  color: #6c6765;
  text-align: center;
  margin: 0 0 calc(var(--gutter));
}
@media (min-width: 48em) {
  .article-categories-title {
    margin: 0 0 calc(var(--gutter) / 2);
    text-align: left;
  }
}

.article-categories-list {
  margin: 0 calc(var(--gutter) / -8);
  text-align: center;
}

.article-category-item {
  color: #6c6765;
  border-color: #BFB7AE;
  margin: 0 calc(var(--gutter) / 8) calc(var(--gutter) / 2);
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 400;
  padding: 0;
}
@media (min-width: 48em) {
  .article-category-item {
    margin: 0 calc(var(--gutter) / 8) calc(var(--gutter) / 4);
  }
}
.article-category-item:hover {
  background-color: #6c6765;
}

.article-category-item-link {
  display: block;
  padding: calc(var(--gutter) / 4) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .article-category-item-link {
    padding: calc(var(--gutter) / 6) calc(var(--gutter) / 3);
  }
}
.article-category-item-link:hover {
  color: white;
}

.splitted-komments h5, .splitted-komments .author-avatar, .splitted-komments .type-of, .splitted-komments .quote, .splitted-komments .kommentReply {
  display: none !important;
}

.share-elsewhere, input[name=author_url], .visible-quote, .verified-badge {
  display: none !important;
}

.comments-section #kommentsWebmentions .single-komment {
  color: #9D582B;
  background-color: #ffecd8;
  border-radius: var(--radius);
  border: none;
  padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2);
  grid-template-columns: repeat(1, 1fr);
  grid-template-areas: "action" "content";
  word-break: break-word;
}
@media (min-width: 48em) {
  .comments-section #kommentsWebmentions .single-komment {
    grid-template-columns: repeat(8, 1fr);
    grid-template-areas: "action action content content content content content content";
    grid-gap: var(--gutter);
    padding: calc(var(--gutter) / 2);
  }
}
.comments-section #kommentsWebmentions .author-action {
  grid-area: action;
  line-height: 1.1;
}
.comments-section #kommentsWebmentions .author-action a {
  pointer-events: none;
}
.comments-section #kommentsWebmentions .mention-content {
  grid-area: content;
  padding-bottom: 0;
}
.comments-section #kommentsWebmentions .date {
  letter-spacing: 0.07vw;
  text-transform: uppercase;
  display: block;
  margin: calc(var(--gutter) / 8) 0 calc(var(--gutter) / 4);
}
.comments-section #kommentsWebmentions .komment-text {
  line-height: 1.3;
}
.comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback {
  padding: calc(var(--gutter) / 4);
  margin: 0 0 calc(var(--gutter) / 2);
  border: 1px solid #BFB7AE;
  border-radius: calc(var(--radius) / 2);
}
@media (min-width: 48em) {
  .comments-section textarea, .comments-section input[type=email], .comments-section input[type=text], .comments-section .form-feedback {
    padding: calc(var(--gutter) / 8);
    margin: 0 0 calc(var(--gutter) / 4);
  }
}
.comments-section input[type=submit] {
  border-radius: calc(var(--gutter) / 2);
  justify-self: flex-start;
  margin-top: calc(var(--gutter));
}
@media (min-width: 48em) {
  .comments-section input[type=submit] {
    margin-top: calc(var(--gutter) / 2);
  }
}

.comments-title {
  color: #9D582B;
  letter-spacing: 0.07vw;
  text-transform: uppercase;
}
@media (max-width: 47.9em) {
  .comments-title {
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .comments-title {
    padding-left: calc(var(--gutter) / 2);
  }
}
.has-comments .comments-title {
  padding-bottom: calc(var(--gutter) / 2);
}

#kommentform {
  grid-row-gap: 0 !important;
}

.komments-wrapper {
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .komments-wrapper {
    padding: 0 0 calc(var(--gutter));
  }
}

.komment-privacy {
  font-size: initial !important;
  line-height: 1.2;
  color: #6c6765;
}

.form-feedback {
  display: none;
}
.form-feedback.moderation-note, .form-feedback.error {
  display: block;
  margin: calc(var(--gutter) / 2) 0 calc(var(--gutter) / 3);
}

#kommentform .form-feedback.moderation-note {
  background-color: #66a552;
}

.related-articles-section {
  background-color: #fefad7;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 2);
  margin-top: calc(var(--gutter) * -0.3);
}
@media (min-width: 48em) {
  .related-articles-section {
    margin-top: calc(var(--gutter) * -0.3);
    padding: calc(var(--gutter) * 2) 0 calc(var(--gutter) * 1.5);
  }
}

.related-articles-title {
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  margin-bottom: calc(var(--gutter) / 2);
  color: #034ea2;
}
@media (max-width: 47.9em) {
  .related-articles-title {
    margin-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .related-articles-title {
    margin-left: calc(var(--gutter) / 2);
  }
}

.related-articles-list {
  margin: 0 calc(var(--gutter) / -4);
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .related-articles-list {
    margin: 0 calc(var(--gutter) / -2);
  }
}

/* Blog page
-------------------------------------------------- */
.blog-page .main-header {
  padding-top: calc(var(--gutter) * 2);
  background-color: var(--background-color, #fffcf5);
}
.blog-page .page-title-wrapper {
  justify-content: flex-start;
  padding-left: 0;
}
.blog-page .page-title {
  background-color: var(--background-color, #fffcf5);
  padding: 0 calc(var(--gutter)) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .blog-page .page-title {
    padding: 0 0 calc(var(--gutter));
  }
}
.blog-page .article-categories-section {
  background-color: unset;
}
@media (min-width: 48em) {
  .blog-page .article-categories-section {
    padding-bottom: calc(var(--gutter) / 2);
  }
}
.blog-page .article-categories-title {
  color: #BFB7AE;
}
.blog-featured-section {
  padding: calc(var(--gutter) / 2) 0 calc(var(--gutter));
}
@media (min-width: 48em) {
  .blog-featured-section {
    padding: calc(var(--gutter)) 0;
  }
}

@media (min-width: 48em) {
  .blog-featured-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

.blog-featured-copy {
  padding: 0 calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .blog-featured-copy {
    flex: 0 0 calc(var(--gutter) * 12);
    padding: 0 calc(var(--gutter)) 0 0;
  }
}

.blog-featured-image-wrapper {
  padding: 0 0 calc(var(--gutter));
}
@media (min-width: 48em) {
  .blog-featured-image-wrapper {
    padding: 0;
    flex: 0 0 calc(var(--gutter) * 11);
  }
}

.blog-featured-date {
  padding-bottom: calc(var(--gutter) / 4);
}
@media (max-width: 47.9em) {
  .blog-featured-date {
    font-size: 3.3684210526vw !important;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .blog-featured-date {
    font-size: 3.3684210526vw !important;
  }
}

.blog-featured-title {
  color: #5792cd;
  line-height: 1.1;
  margin-bottom: calc(var(--gutter) / 2);
}

.blog-featured-intro {
  line-height: 1.3;
  color: #034ea2;
  margin-bottom: calc(var(--gutter) / 2);
}

.blog-featured-link {
  text-transform: uppercase;
  letter-spacing: calc(var(--gutter) / 32);
  color: #034ea2;
}

.blog-articles-section {
  padding-bottom: calc(var(--gutter));
  margin-top: calc(var(--gutter));
}

.blog-articles-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--gutter)) calc(var(--gutter) / -3) calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .blog-articles-list {
    margin: calc(var(--gutter) / 3) calc(var(--gutter) / -2) 0;
  }
}

.blog-article-item {
  flex: 0 0 50%;
  height: calc(var(--gutter) * 11);
  padding: 0 calc(var(--gutter) / 3) calc(var(--gutter) / 1.5);
}
@media (min-width: 48em) {
  .blog-article-item {
    margin: 0;
    flex: 0 0 25%;
    height: calc(var(--gutter) * 6.9);
    padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
  }
}

.blog-article-inner {
  border: 1px solid #93BFE6;
  border-radius: calc(var(--radius) * 1.1);
  height: 100%;
  overflow: hidden;
}
.blog-article-inner a {
  display: block;
  height: 100%;
}
.blog-article-inner a:hover {
  background-color: #d4effc;
  border-radius: var(--radius);
}
.blog-article-inner figcaption {
  display: none;
}

.blog-article-picture {
  display: block;
  height: 100%;
}
.blog-article-picture img {
  border-radius: var(--radius);
}
.blog-article-item .blog-article-picture img {
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-article-text-wrapper {
  padding: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .blog-article-text-wrapper {
    padding: calc(var(--gutter) / 4);
  }
}

.blog-article-date {
  text-transform: uppercase;
  letter-spacing: 0.07vw;
  color: #034ea2;
  margin-bottom: calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .blog-article-date {
    margin-bottom: calc(var(--gutter) / 8);
  }
}

.blog-article-title {
  color: #034ea2;
  line-height: 1.2;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-article-intro {
  line-height: 1.3;
  color: #034ea2;
  margin-top: calc(var(--gutter) / 12);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}
@media (min-width: 48em) {
  .blog-article-intro {
    -webkit-line-clamp: 9;
  }
}
.blog-article-intro p {
  display: inline;
}

@media (max-width: 47.9em) {
  .pagination-wrapper {
    margin-bottom: calc(var(--gutter) * 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .pagination-wrapper {
    margin-bottom: calc(var(--gutter) * 2);
  }
}
.pagination-wrapper .pagination-link {
  color: #034ea2;
  text-decoration-color: #034ea2;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
}
.pagination-wrapper .pagination-link:hover {
  color: #5792cd;
  text-decoration-color: #5792cd;
}

/* Blog Category page (same template as blog for cleaner url)
-------------------------------------------------- */
.blog-category-page .masthead-bg, .blog-category-page .main-header {
  background-color: #fefad7;
}
.blog-category-page .article-title {
  font-weight: 400;
  color: #0072BC;
}
.blog-category-page .active-category-item {
  pointer-events: none;
}
@media (max-width: 47.9em) {
  .blog-category-page .main-header-inner {
    padding: 0 calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .blog-category-page .main-header-inner {
    padding: 0 calc(var(--gutter) / 2) 0;
  }
}

.active-category-item {
  background-color: #6c6765;
}
.active-category-item a {
  color: #fffcf5;
}
.active-category-item:hover {
  background-color: unset;
}
.active-category-item:hover a {
  color: #6c6765;
}

/* Christian Science Nursing page
-------------------------------------------------- */
.christian-science-nursing-page .masthead-logo-link:hover svg path {
  fill: #fffcf5;
}
.christian-science-nursing-page .masthead-cta {
  color: #6c6765;
  border-color: #6c6765;
}
.christian-science-nursing-page .masthead-cta:hover {
  color: #fffcf5;
  background-color: #6c6765;
}
.christian-science-nursing-page .masthead-wrapper .hamburger-icon {
  stroke: #6c6765;
}
.christian-science-nursing-page .masthead-wrapper .hamburger-icon:hover {
  stroke: #fffcf5;
}
.christian-science-nursing-page .intro-wrapper {
  border-radius: var(--radius);
}
.christian-science-nursing-page .quote-block {
  padding: calc(var(--gutter) / 4) 0;
}

@media (max-width: 47.9em) {
  .nursing-care, .nursing-training, .nursing-employment {
    padding: 0;
  }
  .nursing-care .feature-slides, .nursing-training .feature-slides, .nursing-employment .feature-slides {
    padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .nursing-care, .nursing-training, .nursing-employment {
    padding: 0;
  }
  .nursing-care .feature-slides, .nursing-training .feature-slides, .nursing-employment .feature-slides {
    padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0;
  }
}

@media (min-width: 48em) {
  .nursing-care .feature-slides {
    grid-column: 2/9;
  }
}
@media (min-width: 48em) {
  .nursing-care .feature-copy {
    padding: calc(var(--gutter) * 3) 0 calc(var(--gutter) * 1.5) 0;
    grid-column: 9/13;
  }
}
.nursing-care .feature-bg {
  grid-row: 1/3;
}
@media (min-width: 48em) {
  .nursing-care .feature-bg {
    grid-column: 6/13;
    grid-row: 1/2;
    margin-top: calc(var(--gutter) * 1.5);
    margin-right: calc(var(--gutter) * -2);
  }
}

@media (min-width: 48em) {
  .nursing-training .feature-slides {
    margin-top: calc(var(--gutter) * 3);
    grid-column: 5/12;
    grid-row: 1/4;
  }
}
@media (min-width: 48em) {
  .nursing-training .feature-copy {
    grid-column: 1/5;
    grid-row: 1/2;
    margin: calc(var(--gutter) / 2) 0;
  }
}
.nursing-training .feature-bg {
  grid-row: 1/3;
  margin-left: calc(var(--gutter) * -2);
}
@media (min-width: 48em) {
  .nursing-training .feature-bg {
    grid-column: 1/9;
  }
}

@media (min-width: 48em) {
  .nursing-employment .feature-slides {
    grid-column: 1/7;
  }
}
.nursing-employment .feature-copy {
  padding-bottom: calc(var(--gutter) * 3);
}
@media (min-width: 48em) {
  .nursing-employment .feature-copy {
    grid-column: 7/12;
    padding-bottom: 0;
    padding-top: calc(var(--gutter) * 2.5);
    padding-right: calc(var(--gutter) * 1);
  }
}
.nursing-employment .feature-bg {
  grid-row: 1/3;
}
@media (min-width: 48em) {
  .nursing-employment .feature-bg {
    grid-column: 5/13;
    margin-top: calc(var(--gutter) * 1);
    margin-right: calc(var(--gutter) * 1);
  }
}
.nursing-employment .feature-swiper {
  padding-bottom: calc(var(--gutter) * 1.5);
}

/* Email Signatures
-------------------------------------------------- */
.email-signature-link {
  text-decoration: none !important;
}
@media (min-width: 48em) {
  .email-signature-link {
    margin-top: calc(var(--gutter) / -4);
  }
}
.email-signature-link .main-text {
  padding-right: calc(var(--gutter) / 2);
}
.email-signature-link:hover {
  color: black !important;
}

/* Form page
-------------------------------------------------- */
.form-page .form-block {
  display: block;
}

/* Home page
-------------------------------------------------- */
.home-topper {
  position: relative;
}

.topper-video {
  width: 100%;
  max-height: 100%;
  display: block;
  position: relaive;
}
@media (min-width: 48em) {
  .topper-video {
    height: 56.25%;
    border-radius: var(--radius);
  }
}
.topper-video-inner {
  position: relative;
}

.topper-video-subtitle-wrapper {
  pointer-events: none;
}
.topper-video-subtitle-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100vw;
  width: 100%;
  --offset: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent var(--offset));
  border-radius: var(--radius);
}
@media (min-width: 48em) {
  .topper-video-subtitle-wrapper:after {
    --offset: 20%;
    height: 56.25vw;
  }
}

.topper-video-subtitle {
  display: none;
  position: absolute;
  z-index: 10;
  padding: 0 calc(var(--gutter) * 2) calc(var(--gutter) / 2);
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}
@media (max-width: 47.9em) {
  .topper-video-subtitle {
    font-size: 6.4210526316vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .topper-video-subtitle {
    font-size: 6.4210526316vw;
  }
}

.topper-video-wrapper {
  position: relative;
}
@media (max-width: 47.9em) {
  .topper-video-wrapper {
    padding: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .topper-video-wrapper {
    padding: 0;
  }
}
.topper-video-wrapper .video-controls-wrapper {
  left: 0;
  right: unset;
}
.home-intro-copy {
  color: #5792cd;
  margin-top: calc(var(--gutter) * -2);
  margin-bottom: calc(var(--gutter) * 2);
  padding-top: calc(var(--gutter) * 3);
  padding-bottom: calc(var(--gutter) * 2);
  border-radius: var(--radius);
}
@media (max-width: 47.9em) {
  .home-intro-copy {
    text-align: center;
    margin-bottom: calc(var(--gutter) * 1);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .home-intro-copy {
    text-align: center;
    margin-bottom: calc(var(--gutter) * 1);
  }
}

.home-intro-heading {
  margin: calc(var(--gutter)) calc(var(--gutter) * 3);
}

.home-intro-text {
  line-height: 1.3;
  margin: calc(var(--gutter) / 2) 0 calc(var(--gutter));
}
@media (min-width: 48em) {
  .home-intro-text {
    padding-right: calc(var(--gutter));
  }
}

.home-intro-button {
  color: #5792cd;
  border-color: #5792cd;
}
.home-intro-button:hover {
  color: #034ea2;
  background-color: white;
  border-color: #fffcf5;
}

/* Nurse videos
-------------------------------------------------- */
.home-nurses {
  overflow: hidden;
}
.home-nurses .feature-bg {
  grid-row: 2/4;
  margin: calc(var(--gutter) * -1) calc(var(--gutter) / -2) 0;
}
@media (min-width: 48em) {
  .home-nurses .feature-bg {
    margin: calc(var(--gutter) * -1) calc(var(--gutter) * -1) 0;
    grid-column: 1/11;
    grid-row: 1/2;
  }
}
.home-nurses .feature-copy {
  padding: calc(var(--gutter)) calc(var(--gutter)) calc(var(--gutter)) 0;
  grid-row: 3/4;
}
@media (min-width: 48em) {
  .home-nurses .feature-copy {
    grid-column: 1/7;
    grid-row: 1/2;
    padding: 0 calc(var(--gutter)) 0 0;
  }
}
.home-nurses .feature-slides {
  grid-row: 1/3;
  padding: 0 calc(var(--gutter)) calc(var(--gutter) * 1.5);
}
@media (min-width: 48em) {
  .home-nurses .feature-slides {
    grid-row: 1/2;
    grid-column: 7/13;
    padding: 0 0 calc(var(--gutter));
  }
}
.home-nurses .feature-text {
  height: calc(var(--gutter) * 6);
}
@media (min-width: 48em) {
  .home-nurses .feature-text {
    height: auto;
  }
}
.home-nurses .feature-button {
  margin: 0 0 calc(var(--gutter) * 1);
}

.video-figcaption {
  display: none;
}

.video-figcaption-attribution {
  position: relative;
}
.video-figcaption-attribution::before {
  content: "–";
}

/* The Residences
-------------------------------------------------- */
@media (max-width: 47.9em) {
  .home-residences {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .home-residences {
    padding-right: 0;
    padding-left: 0;
  }
}
.home-residences .feature-copy {
  flex: 0 0 calc(var(--gutter) * 10);
}
@media (min-width: 48em) {
  .home-residences .feature-copy {
    grid-column: 8/13;
    grid-row: 1/2;
    padding: calc(var(--gutter) * 2) calc(var(--gutter)) calc(var(--gutter));
  }
}
.home-residences .feature-slides {
  margin-top: calc(var(--gutter) * 1);
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
}
@media (min-width: 48em) {
  .home-residences .feature-slides {
    padding: 0 calc(var(--gutter));
  }
}
.home-residences .feature-bg {
  grid-row: 1/3;
}
@media (min-width: 48em) {
  .home-residences .feature-bg {
    grid-row: 1/2;
  }
}

/* Rest & Study (must have class .rest-and-study)
-------------------------------------------------- */
.home-rest-study {
  overflow: hidden;
}
@media (max-width: 47.9em) {
  .home-rest-study {
    padding: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .home-rest-study {
    padding: 0;
  }
}
.home-rest-study .feature-copy {
  grid-column: 1/9;
  grid-row: 3/4;
  padding: calc(var(--gutter)) calc(var(--gutter)) calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .home-rest-study .feature-copy {
    grid-row: 1/2;
    grid-column: 3/7;
    margin: 0;
    padding-top: calc(var(--gutter) * 1);
    padding-right: 0;
    padding-left: 0;
  }
}
.home-rest-study .feature-slides {
  grid-row: 1/3;
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter) * 1);
}
@media (min-width: 48em) {
  .home-rest-study .feature-slides {
    padding-right: calc(var(--gutter) * 1);
    margin-top: calc(var(--gutter) * 2);
    grid-column: 7/12;
    grid-row: 1/3;
  }
}
.home-rest-study .feature-bg {
  grid-row: 2/4;
  margin: 0;
}
@media (min-width: 48em) {
  .home-rest-study .feature-bg {
    grid-column: 2/9;
    grid-row: 1/2;
    margin: 0 0 calc(var(--gutter) / 2) calc(var(--gutter) * 1);
  }
}
.home-rest-study .feature-button {
  margin-top: 0;
}
/* Donation test
-------------------------------------------------- */
.home-page .donation-text {
  display: none;
}

/* Instagram feed
-------------------------------------------------- */
.instagram-section {
  border-radius: var(--radius);
  padding-bottom: calc(var(--gutter));
  background-color: #d4effc;
  padding-top: calc(var(--gutter));
  color: #034ea2;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 47.9em) {
  .instagram-section {
    text-align: center;
    padding-bottom: 0;
  }
  .instagram-section .swiper-arrows-wrapper {
    display: none;
  }
  .instagram-section .swiper-wrapper[style] {
    margin-bottom: calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .instagram-section {
    text-align: center;
    padding-bottom: 0;
  }
  .instagram-section .swiper-arrows-wrapper {
    display: none;
  }
  .instagram-section .swiper-wrapper[style] {
    margin-bottom: calc(var(--gutter));
  }
}

.instagram-swiper {
  overflow: visible;
  margin: 0 calc(var(--gutter) / -2);
}

.instagram-image-item {
  padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0;
  flex: 0 0 50%;
}
@media (min-width: 48em) {
  .instagram-image-item {
    flex: 0 0 25%;
  }
}

.instagram-icon {
  width: var(--gutter);
  height: var(--gutter);
}

.instagram-title {
  font-weight: 400;
  display: block;
  margin: calc(var(--gutter) / 2) 0 calc(var(--gutter) / 8);
}
@media (max-width: 47.9em) {
  .instagram-title {
    padding: 0 calc(var(--gutter) * 2);
    line-height: 1.2;
    font-size: 7.0526315789vw;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .instagram-title {
    padding: 0 calc(var(--gutter) * 2);
    line-height: 1.2;
    font-size: 7.0526315789vw;
  }
}

.instagram-link {
  box-shadow: unset;
  display: block;
  margin-bottom: calc(var(--gutter) / 2);
}
.instagram-link:hover {
  color: #5792cd;
}

.instagram-photo-description-wrapper {
  display: none;
}

.swiper-arrows-wrapper {
  padding-left: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .swiper-arrows-wrapper {
    padding: 0;
    display: block;
    margin-top: calc(var(--gutter) / 2);
  }
}

.swiper-arrow {
  display: inline-block;
}
.swiper-arrow svg {
  width: 12vw;
  height: 8vw;
  stroke: #034ea2;
  fill: none;
  stroke-linecap: round;
}
@media (min-width: 48em) {
  .swiper-arrow svg {
    width: 3vw;
    height: 2.25vw;
  }
}
@media (min-width: 101.25em) {
  .swiper-arrow svg {
    width: 60px;
    height: 45px;
  }
}
.swiper-arrow:hover svg {
  stroke: #5792cd;
}
.swiper-arrow.swiper-button-disabled {
  visibility: visible !important;
  cursor: not-allowed;
}
.swiper-arrow.swiper-button-disabled svg {
  stroke: #5792cd;
}

/* Landing page
-------------------------------------------------- */
.page-intro-wrapper-section {
  background-color: var(--intro-background-color, #fffcf5);
  padding-bottom: calc(var(--gutter) * 2);
  border-radius: var(--radius);
}
@media (min-width: 48em) {
  .page-intro-wrapper-section {
    margin-top: calc(var(--gutter) / -4);
  }
}
.page-intro-wrapper-section > div:first-of-type {
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: calc(var(--gutter) / -2);
}
.page-intro-wrapper-section > div:last-of-type {
  border-radius: 0 0 var(--radius) var(--radius);
}
.page-intro-wrapper-section .main-text {
  padding-right: calc(var(--gutter) / 2);
  padding-left: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .page-intro-wrapper-section .main-text {
    padding-right: calc(var(--gutter) * 6);
    padding-left: calc(var(--gutter) * 6);
    max-width: calc(var(--pageWidthInt) * 1px);
    margin: 0 auto;
  }
}

.landing-page-page .page-intro-wrapper-section {
  padding-bottom: 0;
}
@media (max-width: 47.9em) {
  .landing-page-page .page-intro-wrapper-section {
    margin-bottom: calc(var(--gutter) / -2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .landing-page-page .page-intro-wrapper-section {
    margin-bottom: calc(var(--gutter) / -2);
  }
}
@media (min-width: 48em) {
  .landing-page-page .page-intro-wrapper-section {
    padding-bottom: calc(var(--gutter));
  }
}
.landing-page-page .feature {
  flex-direction: row-reverse;
}
@media (min-width: 48em) {
  .landing-page-page .feature {
    margin: calc(var(--gutter)) auto;
  }
}
.landing-page-page .main-header {
  padding-top: calc(var(--gutter));
  padding-bottom: calc(var(--gutter) * 1);
  --bg-offset: 0;
  background-color: var(--background-color, #fffcf5);
}
.landing-page-page .main-header .page-title {
  background-color: unset;
  display: block;
  text-align: center;
}

.page-title, h1 {
  font-weight: 400;
}

.main-intro-text {
  line-height: 1.3;
  padding: calc(var(--gutter) / 2) 0;
}
@media (max-width: 47.9em) {
  .main-intro-text {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .main-intro-text {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}
.main-intro-text + .reveal-wrapper {
  margin-top: calc(var(--gutter) / -2);
}

.nursing-services-section {
  padding-top: calc(var(--gutter));
  padding-bottom: calc(var(--gutter));
  margin: 0 calc(var(--gutter) / -2);
}

@media (min-width: 48em) {
  .nursing-services-list {
    display: flex;
  }
}

.nursing-service-item {
  display: flex;
  flex-direction: column;
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter) * 2);
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 48em) {
  .nursing-service-item {
    flex: 0 0 33.333%;
  }
}
.nursing-service-item figure {
  margin-bottom: calc(var(--gutter) / 2);
}
.nursing-service-item h2 {
  margin-bottom: calc(var(--gutter) / 4);
}

/* log study page
-------------------------------------------------- */
.logo-study-page .main-header {
  padding-top: calc(var(--gutter) * 2);
  background-color: var(--background-color, #fffcf5);
}
.logo-study-page .page-title {
  background-color: var(--background-color, #fffcf5);
  padding-left: 0;
  padding-bottom: calc(var(--gutter));
}

.logo-study-list {
  padding: calc(var(--gutter) * 2) 0;
}

.logo-study-item:nth-child(1) {
  grid-column: 1/5;
}
.logo-study-item:nth-child(2) {
  grid-column: 5/9;
}
.logo-study-item:nth-child(3) {
  grid-column: 9/13;
}
.logo-study-item img {
  width: 56%;
  margin: 0 auto calc(var(--gutter));
}

.logo-study-item-title {
  text-align: center;
}

/* Main Content page
-------------------------------------------------- */
.page-page .main-header, .style-guide-page .main-header, .form-page .main-header, .donation-form-page .main-header {
  --bg-offset: 18%;
  position: relative;
}
@media (min-width: 48em) {
  .page-page .main-header, .style-guide-page .main-header, .form-page .main-header, .donation-form-page .main-header {
    --bg-offset: 9%;
  }
}
.page-page .main-header::before, .style-guide-page .main-header::before, .form-page .main-header::before, .donation-form-page .main-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: var(--bg-offset);
  width: 100%;
  background-color: var(--background-color);
  border-radius: 0 0 var(--radius) var(--radius);
}

.page-title-wrapper {
  display: flex;
  justify-content: center;
  margin-top: calc(var(--gutter) * -3);
  margin-bottom: calc(var(--gutter) / 2);
  padding: 0 calc(var(--gutter) / 5);
  position: relative;
  z-index: 2;
}
@media (min-width: 48em) {
  .page-title-wrapper {
    margin-top: calc(var(--gutter) * -3.6);
    padding: 0 calc(var(--gutter) / 4);
  }
}
@media (max-width: 47.9em) {
  .christian-science-nursing-care-page .page-title-wrapper, .christian-science-nurses-training-school-page .page-title-wrapper, .christian-science-nursing-employment-page .page-title-wrapper {
    margin-top: calc(var(--gutter) * -2.7);
    padding: 0 calc(var(--gutter) / 1.5);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .christian-science-nursing-care-page .page-title-wrapper, .christian-science-nurses-training-school-page .page-title-wrapper, .christian-science-nursing-employment-page .page-title-wrapper {
    margin-top: calc(var(--gutter) * -2.7);
    padding: 0 calc(var(--gutter) / 1.5);
  }
}

.page-title-wrapper-no-slides {
  margin-top: 0;
  padding-top: calc(var(--gutter) * 1);
}

.page-title {
  color: var(--headline-color);
  display: inline-block;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  background-color: #fffcf5;
  padding-top: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 1);
  padding-bottom: calc(var(--gutter) / 2);
  padding-left: calc(var(--gutter) / 1);
  max-width: 99%;
  text-align: center;
}
@media (min-width: 48em) {
  .page-title {
    max-width: unset;
    padding-top: calc(var(--gutter) / 2);
    padding-right: calc(var(--gutter) / 1.3);
    padding-bottom: calc(var(--gutter) / 3);
    padding-left: calc(var(--gutter) / 1.3);
  }
}
@media (max-width: 47.9em) {
  .christian-science-nursing-care-page .page-title, .christian-science-nurses-training-school-page .page-title, .christian-science-nursing-employment-page .page-title {
    padding-top: calc(var(--gutter) / 3);
    padding-right: calc(var(--gutter) / 2);
    padding-bottom: calc(var(--gutter) / 3);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .christian-science-nursing-care-page .page-title, .christian-science-nurses-training-school-page .page-title, .christian-science-nursing-employment-page .page-title {
    padding-top: calc(var(--gutter) / 3);
    padding-right: calc(var(--gutter) / 2);
    padding-bottom: calc(var(--gutter) / 3);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (max-width: 47.9em) {
  .christian-science-nurses-training-school-page .page-title, .christian-science-nursing-employment-page .page-title {
    max-width: 79%;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .christian-science-nurses-training-school-page .page-title, .christian-science-nursing-employment-page .page-title {
    max-width: 79%;
  }
}

@media (max-width: 47.9em) {
  .section-title,
.main-text,
.reveal-button,
.main-text ~ table,
.main-text ~ .reveal-wrapper,
.main-intro-text ~ .reveal-wrapper {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .section-title,
.main-text,
.reveal-button,
.main-text ~ table,
.main-text ~ .reveal-wrapper,
.main-intro-text ~ .reveal-wrapper {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
  }
}

.main-text ~ .reveal-wrapper,
.main-intro-text ~ .reveal-wrapper {
  margin-bottom: calc(var(--gutter));
}

.main-text {
  line-height: 1.3;
  color: var(--type-color, #034ea2);
  position: relative;
}
.main-text:not(.reveal-wrapper) + .reveal-wrapper.main-text, .main-text:not(.reveal-wrapper) + .reveal-wrapper.faq-wrapper, .main-text:not(.reveal-wrapper) + .reveal-wrapper.position-wrapper {
  margin-top: calc(var(--gutter));
}
@media (max-width: 47.9em) {
  .page-intro-wrapper-section .main-text {
    padding: 0 calc(var(--gutter));
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .page-intro-wrapper-section .main-text {
    padding: 0 calc(var(--gutter));
  }
}

.intro-sub a,
.main-text:not(.course-wrapper):not(.position-wrapper) a,
.reveal-text:not(.course-wrapper):not(.position-wrapper) a,
.reveal-button::after,
.ccc-section-inner a,
.cta-text a,
.links-block-link,
.pagination-link,
.faq-answer a {
  padding-bottom: 3px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--type-color, #034ea2);
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}

.main-text a:not(.button):hover,
.reveal-button:hover::after,
.ccc-section-inner a:hover,
.faq-answer a:hover,
.cta-text a:hover,
.main-text a:not(.button):focus,
.reveal-button:focus::after,
.ccc-section-inner a:focus,
.cta-text a:focus,
.links-block-link:hover,
.pagination-link:focus,
.faq-answer a:focus {
  color: #034ea2;
  text-decoration-color: black;
}

.reveal-button:after {
  display: block;
}

.section-title-wrapper {
  position: relative;
}
.section-title-wrapper .swiper {
  padding-bottom: 0;
  margin-bottom: calc(var(--gutter) * -1.8);
}
@media (min-width: 48em) {
  .section-title-wrapper .swiper {
    margin-bottom: calc(var(--gutter) * -1.3);
  }
}

.section-title {
  color: var(--headline-color, #034ea2);
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2vw;
  background-color: var(--background-color);
  padding-top: calc(var(--gutter) / 2);
  padding-bottom: calc(var(--gutter) / 3);
  border-radius: 0 var(--radius) 0 0;
  text-transform: uppercase;
}
@media (min-width: 48em) {
  .section-title {
    padding: calc(var(--gutter) / 3) calc(var(--gutter) / 2);
    padding-bottom: 0;
    padding-left: calc(var(--gutter) * 2);
  }
}
.swiper ~ .section-title {
  display: inline-block;
  position: relative;
  z-index: 2;
  text-transform: unset;
  letter-spacing: unset;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .swiper ~ .section-title {
    padding-left: 0;
    padding-bottom: calc(var(--gutter) / 2);
    max-width: 80%;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  font-weight: 700;
}
@media (max-width: 47.9em) {
  thead {
    display: none;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  thead {
    display: none;
  }
}

tr {
  border-bottom: 1px solid var(--headline-color, #034ea2);
}

td {
  padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) calc(var(--gutter) / 2);
}
@media (max-width: 47.9em) {
  td {
    display: block;
    width: 100%;
  }
  td:first-of-type {
    margin-top: calc(var(--gutter) / 2);
    font-weight: 700;
  }
  td:last-of-type {
    margin-bottom: calc(var(--gutter) / 2);
  }
  td::before {
    content: attr(data-th) "";
    position: absolute;
    top: calc(var(--gutter) / 8);
    left: 0;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  td {
    display: block;
    width: 100%;
  }
  td:first-of-type {
    margin-top: calc(var(--gutter) / 2);
    font-weight: 700;
  }
  td:last-of-type {
    margin-bottom: calc(var(--gutter) / 2);
  }
  td::before {
    content: attr(data-th) "";
    position: absolute;
    top: calc(var(--gutter) / 8);
    left: 0;
  }
}
@media (min-width: 48em) {
  td {
    padding: calc(var(--gutter) / 4) calc(var(--gutter) / 4) calc(var(--gutter) / 4) 0;
  }
}

.block-scripts img[src*=affinitycq] {
  width: calc(var(--gutter) * 6);
  margin-top: calc(var(--gutter) * 1);
}
@media (min-width: 48em) {
  .block-scripts img[src*=affinitycq] {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(var(--gutter) * 3);
  }
}

/* Residences Page
-------------------------------------------------- */
.residences-page section:not(.news-section) .section-outer {
  padding: 0;
}
.residences-page section:not(.news-section) .section-outer:first-of-type {
  --bg-offset: 100%;
}
.residences-page .topper-video-wrapper {
  padding: 0;
  margin: 0;
  max-width: unset;
  position: relative;
}
.residences-page .topper-video-wrapper .video-controls-wrapper {
  left: calc(var(--gutter) / 4);
  bottom: calc(var(--gutter) / 4);
}
.residences-page .topper-video {
  border-radius: unset;
}
.residences-page .masthead-bg {
  position: absolute;
  width: 100%;
}
.residences-page .masthead-logo-outer {
  display: none;
}
.residences-page .masthead-ctas-left,
.residences-page .masthead-logo-outer,
.residences-page .masthead-ctas-right {
  visibility: hidden;
}
.residences-page .masthead-hamburger-wrapper {
  margin-top: calc(var(--gutter));
}
.residences-page .main-header {
  position: relative;
  margin-bottom: calc(var(--gutter) / 2);
}
.residences-page.in-top-area .hamburger-icon {
  stroke: #fefad7;
}
.residences-page.in-top-area .hamburger-icon:hover {
  stroke: #93BFE6;
}
.residences-page .section-title {
  padding-left: 0;
  padding-bottom: calc(var(--gutter) / 2);
}
.residences-page .intro-inner {
  display: block;
  padding: calc(var(--gutter) * 1) 0 calc(var(--gutter) * 1.5);
}
@media (min-width: 48em) {
  .residences-page .intro-inner {
    padding: 0 calc(var(--gutter) * 4);
  }
}
.residences-page .intro-headline {
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  margin-bottom: calc(var(--gutter) / 4);
}
.residences-page .intro-sub {
  padding: 0;
  line-height: 1.24;
}
@media (min-width: 48em) {
  .residences-page .grid-wrapper {
    margin-right: calc(var(--gutter) * -4);
    margin-left: calc(var(--gutter) * -4);
  }
}
@media (min-width: 48em) {
  .residences-page .cta-block {
    margin-top: calc(var(--gutter) * 1);
    margin-right: calc(var(--gutter) * -4);
    margin-left: calc(var(--gutter) * -4);
    margin-bottom: 0;
  }
}
.residences-page .cta-wrapper {
  text-align: center;
  grid-gap: 0;
  margin: calc(var(--gutter) / 2) auto 0;
  padding: 0;
}
.residences-page .cta-button:hover, .residences-page .cta-button:focus {
  color: #007546;
}
.residences-page .feature-bg {
  grid-row: 1/3;
}
.residences-page .cta-headline {
  grid-column: 1/-1;
  grid-row: 1;
  padding: calc(var(--gutter) * 0.75) 0 0;
}
.residences-page .cta-text-wrapper {
  grid-column: 1/-1;
  grid-row: 2;
  padding: 0 0 calc(var(--gutter) * 0.75);
}
.residences-page .cta-button {
  margin: 0 calc(var(--gutter) / 6);
}
.residences-page .news-events-section .section-inner {
  padding: 0;
}
.residences-page .news-events-section .section-title {
  padding-bottom: 0;
}
.residences-page .map-section .core, .residences-page .map-section .section-inner {
  padding: 0;
  margin: 0;
  max-width: unset;
}
.residences-page .faqs-section {
  padding: calc(var(--gutter) * 2) 0;
}
.residences-page .faqs-section .section-outer:first-child .section-inner {
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: none;
  padding-top: calc(var(--gutter));
  padding-bottom: 0;
}
.residences-page .faqs-section .section-outer:last-child .section-inner {
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: none;
}
.residences-page .faqs-section .section-inner {
  border: 1px solid var(--type-color, #fffcf5);
  padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) calc(var(--gutter));
}
@media (min-width: 48em) {
  .residences-page .faqs-section .section-inner {
    padding: calc(var(--gutter) / 2) calc(var(--gutter)) calc(var(--gutter));
    margin: 0 calc(var(--gutter) * 3);
  }
}
.residences-page .faqs-section .reveal-wrapper {
  padding-left: 0;
}
.residences-page .contact-us-section .section-inner {
  padding-top: calc(var(--gutter) / 2);
}
@media (min-width: 48em) {
  .residences-page .contact-us-section .section-inner {
    padding: 0;
  }
}
.residences-page .newsletter-section {
  display: none;
}

.residences-logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 3s ease-in-out;
}
.residences-logo-wrapper svg {
  width: calc(var(--gutter) * 12.5);
  height: calc(var(--gutter) * 12.5);
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
}
.hide-logo ~ .residences-logo-wrapper {
  opacity: 0;
}

@media (min-width: 48em) {
  .residences-grid-item-1 {
    grid-column: 1/6;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.residences-grid-item-2 {
  order: -1;
}
@media (min-width: 48em) {
  .residences-grid-item-2 {
    order: unset;
    grid-column: 6/13;
    margin-left: calc(var(--gutter) * -1);
  }
}

.residences-grid-item-3 {
  width: 75%;
}
@media (min-width: 48em) {
  .residences-grid-item-3 {
    width: 100%;
    grid-column: 1/11;
  }
}

@media (min-width: 48em) {
  .residences-grid-item-4 {
    grid-column: 2/8;
  }
}

.residences-grid-item-5 {
  width: 75%;
  align-self: flex-end;
}
@media (min-width: 48em) {
  .residences-grid-item-5 {
    width: 100%;
    grid-column: 8/13;
    grid-row: 3/5;
    margin-left: calc(var(--gutter));
  }
}

@media (min-width: 48em) {
  .residences-grid-item-6 {
    grid-column: 1/8;
    grid-row: 4/6;
  }
}

@media (min-width: 48em) {
  .residences-grid-item-7 {
    grid-column: 8/13;
    margin: calc(var(--gutter) * 2) 0 0;
  }
}

@media (min-width: 48em) {
  .residences-grid-item-8 {
    grid-column: 3/13;
  }
}

.residences-grid-item-9 {
  width: 75%;
}
@media (min-width: 48em) {
  .residences-grid-item-9 {
    width: 100%;
    grid-column: 2/10;
  }
}

/* Style Guide
-------------------------------------------------- */
.page-intro-wrapper-section > div:first-of-type {
  margin-top: 0;
}

.style-category {
  margin-bottom: calc(var(--gutter));
}

/* Helpers
-------------------------------------------------*/
.is-hidden {
  display: none;
}

.is-hidden-important {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 0;
}

@media (min-width: 48em) {
  .mobile-only {
    display: none;
  }
}

.no-mobile-inline {
  display: none;
}
@media (min-width: 48em) {
  .no-mobile-inline {
    display: inline-block;
  }
}

.no-mobile {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile {
    display: block !important;
  }
}

.no-mobile-flex {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile-flex {
    display: flex !important;
  }
}

.no-mobile-grid {
  display: none !important;
}
@media (min-width: 48em) {
  .no-mobile-grid {
    display: grid !important;
  }
}

@media (min-width: 101.25em) {
  .tablet-only {
    display: none;
  }
}

.no-tablet-block {
  display: none;
}
@media (min-width: 101.25em) {
  .no-tablet-block {
    display: block;
  }
}

.is-frozen {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.screen-reader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}

/* Margins
-------------------------------------------------- */
.margin {
  margin: calc(var(--gutter));
}

.margin-1-2 {
  margin: calc(var(--gutter) / 2);
}

.margin-1-4 {
  margin: calc(var(--gutter) / 4);
}

.margin-1-8 {
  margin: calc(var(--gutter) / 8);
}

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

.margin-top-1-4 {
  margin-top: calc(var(--gutter) / 4);
}

.margin-left {
  margin-left: calc(var(--gutter));
}

.margin-left-1-2 {
  margin-left: calc(var(--gutter) / 2);
}

.margin-bottom {
  margin-bottom: calc(var(--gutter));
}

.margin-bottom-1-2 {
  margin-bottom: calc(var(--gutter) / 2);
}

.margin-bottom-1-3 {
  margin-bottom: calc(var(--gutter) / 3);
}

.margin-bottom-1-4 {
  margin-bottom: calc(var(--gutter) / 4);
}

.margin-bottom-1-8 {
  margin-bottom: calc(var(--gutter) / 8);
}

/* Padding
-------------------------------------------------- */
.padding {
  padding: calc(var(--gutter));
}

.padding-1-2 {
  padding: calc(var(--gutter) / 2);
}

.padding-left {
  padding-left: calc(var(--gutter));
}

.padding-top-0 {
  padding-top: 0;
}

.padding-top {
  padding-top: calc(var(--gutter));
}

.padding-top-1-8 {
  padding-top: calc(var(--gutter) / 8);
}

.padding-top-2 {
  padding-top: calc(var(--gutter) * 2);
}

.padding-top-3 {
  padding-top: calc(var(--gutter) * 3);
}

.padding-bottom {
  padding-bottom: calc(var(--gutter));
}

.padding-bottom-1-2 {
  padding-bottom: calc(var(--gutter) / 2);
}

.padding-bottom-1-4 {
  padding-bottom: calc(var(--gutter) / 4);
}

/* Custom coded donations form with authorize.net
-------------------------------------------------- */
.honeypot {
  position: absolute;
  left: -9999px;
}

.donations-custom-code-page .page-intro-wrapper-section {
  padding-bottom: 0;
}
.donations-custom-code-page .donation-form-section .section-outer, .donations-custom-code-page .donation-form-section .section-inner {
  padding-top: 0;
}
.donations-custom-code-page .donation-form .form-label {
  display: inline-block;
}
.donations-custom-code-page .donation-form .form-input {
  border: 1px solid #034ea2;
  width: 100%;
}
.donations-custom-code-page .donation-form .form-input[type=number] {
  -moz-appearance: textfield;
}
.donations-custom-code-page .donation-form .form-input::-webkit-outer-spin-button, .donations-custom-code-page .donation-form .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.donations-custom-code-page .donation-form .form-sub-label {
  color: #6c6765;
  margin: calc(var(--gutter) / 4) 0;
}
.donations-custom-code-page .donation-form .dollar-wrapper {
  position: relative;
}
.donations-custom-code-page .donation-form .dollar-wrapper::before {
  content: "$";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: calc(var(--gutter) / 4);
}
.donations-custom-code-page .donation-form .dollar-wrapper input {
  padding-left: calc(var(--gutter) / 2);
}
.donations-custom-code-page .form-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: calc(var(--gutter));
  grid-row-gap: calc(var(--gutter) / 2);
}

.donation-form-fieldset {
  margin: calc(var(--gutter)) 0;
}

.donation-radio-wrapper {
  align-items: center;
}
.donation-radio-wrapper input {
  margin: calc(var(--gutter) / 6) calc(var(--gutter) / 6) 0 0;
}
.donation-radio-wrapper label {
  white-space: nowrap;
  cursor: pointer;
}

.donation-note {
  line-height: 1.3;
}

.donation-legend {
  line-height: 1.1;
  padding-bottom: calc(var(--gutter) / 8);
  border-bottom: 1px solid #034ea2;
  width: 100%;
  padding-bottom: calc(var(--gutter) / 4);
  margin-bottom: calc(var(--gutter) / 2);
}

.donation-funds.hide-more-than-one-option .donation-radio-wrapper:last-child {
  display: none;
}

.form-required {
  color: #9D582B;
}

.donation-select, .donation-textarea, .expiration-wrapper {
  border: 1px solid #034ea2;
  border-radius: calc(var(--radius) / 2);
  width: 100%;
}

.donation-select {
  padding: 0 1.875em 0 0.625em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2357647E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 10px bottom 50%;
  background-size: 0.625em;
  background-repeat: no-repeat;
}

.donation-textarea {
  padding: calc(var(--gutter) / 4);
}

.expiration-wrapper {
  display: flex;
}
.expiration-wrapper select {
  border: none;
  background-image: none;
}

.expiration-month {
  width: 40%;
  position: relative;
}
.expiration-month::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.expiration-inner input {
  width: 100%;
}

.expiration-year {
  width: 60%;
}

.multifund-amount-list {
  display: none !important;
}
.multifund-amount-list.show-multifund {
  display: grid !important;
}

.multifund-amount-item {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: calc(var(--gutter));
}
.multifund-amount-item label {
  grid-column: span 6;
  display: flex !important;
  align-items: center;
}
.multifund-amount-item .dollar-wrapper {
  grid-column: span 2;
}
.multifund-amount-item .dollar-wrapper input {
  text-align: right;
}

.multifund-amount-item-total {
  padding: calc(var(--gutter) / 3) 0;
}

.multifund-total-label {
  grid-column: span 5;
}

.multifund-total-wrapper {
  grid-column: span 3;
  text-align: right;
}

.donation-form-wrapper {
  padding: calc(var(--gutter)) calc(var(--gutter) / 2) calc(var(--gutter) * 2);
}
@media (min-width: 48em) {
  .donation-form-wrapper {
    padding: calc(var(--gutter)) 0 calc(var(--gutter) * 2);
  }
}

.review-item {
  padding-bottom: calc(var(--gutter) / 4);
}

.donation-changes-link {
  text-decoration: underline;
  padding: 0 calc(var(--gutter) / 2);
}

.sm-grid-span-2 {
  grid-column: span 4;
}
@media (min-width: 48em) {
  .sm-grid-span-2 {
    grid-column: span 2;
  }
}

.sm-grid-span-3 {
  grid-column: span 4;
}
@media (min-width: 48em) {
  .sm-grid-span-3 {
    grid-column: span 3;
  }
}

.sm-grid-span-4 {
  grid-column: span 8;
}
@media (min-width: 48em) {
  .sm-grid-span-4 {
    grid-column: span 4;
  }
}

.sm-grid-span-6 {
  grid-column: span 8;
}
@media (min-width: 48em) {
  .sm-grid-span-6 {
    grid-column: span 6;
  }
}

.sm-grid-span-8 {
  grid-column: span 8;
}

.xs-grid-span-2 {
  grid-column: span 2;
}

.xs-grid-span-4 {
  grid-column: span 4;
}

.donation-error {
  color: white;
  background-color: #C67F5D;
  padding: calc(var(--gutter) / 2);
  font-weight: 700;
}

/* Jotforms
* - applications
* - donations?
-------------------------------------------------- */
body.form-page {
  background-color: #fffcf5;
}

.jotform-form h2, .donation-form h2 {
  font-weight: 400;
}
.jotform-form .form-all, .donation-form .form-all {
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  box-shadow: unset;
  margin: 0;
  max-width: unset;
}
.jotform-form ul.page-section, .jotform-form ul.form-section, .donation-form ul.page-section, .donation-form ul.form-section {
  padding: 0;
}
.jotform-form .header-large .form-header, .donation-form .header-large .form-header {
  font-weight: 400;
}
.jotform-form .form-header-group, .donation-form .form-header-group {
  border-color: var(--headline-color, #034ea2);
  padding: calc(var(--gutter) / 4) 0;
}
.jotform-form .form-header, .jotform-form .form-address-table th, .donation-form .form-header, .donation-form .form-address-table th {
  color: var(--headline-color, #034ea2);
}
.jotform-form .form-address-table tr, .donation-form .form-address-table tr {
  border: none;
}
.jotform-form .form-product-name, .jotform-form .form-product-details, .donation-form .form-product-name, .donation-form .form-product-details {
  color: var(--type-color, #034ea2);
}
.jotform-form .form-label, .jotform-form .form-radio-item label, .donation-form .form-label, .donation-form .form-radio-item label {
  color: var(--type-color, #034ea2);
  font-weight: 400;
}
.jotform-form .rc-anchor-light, .donation-form .rc-anchor-light {
  background-color: red;
}
.jotform-form .form-label-top, .donation-form .form-label-top {
  margin: 0 0 calc(var(--gutter) / 4);
}
.jotform-form .form-sub-label, .donation-form .form-sub-label {
  font-weight: 400;
}
.jotform-form .page-section > li:first-child:not(.form-line-column):not([data-type=control_head]):not([data-type=control_payment]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]), .jotform-form .page-section > li:nth-child(2):not(.form-line-column):not([data-type=control_head]):not([data-type=control_paymrnt]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]), .donation-form .page-section > li:first-child:not(.form-line-column):not([data-type=control_head]):not([data-type=control_payment]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]), .donation-form .page-section > li:nth-child(2):not(.form-line-column):not([data-type=control_head]):not([data-type=control_paymrnt]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]) {
  margin-top: calc(var(--gutter) / 4);
}
.jotform-form .form-buttons-wrapper, .jotform-form .form-submit-clear-wrapper, .donation-form .form-buttons-wrapper, .donation-form .form-submit-clear-wrapper {
  border: none;
  padding: 0 calc(var(--gutter) / 2) calc(var(--gutter));
  justify-content: unset;
}
@media (min-width: 48em) {
  .jotform-form .form-buttons-wrapper, .jotform-form .form-submit-clear-wrapper, .donation-form .form-buttons-wrapper, .donation-form .form-submit-clear-wrapper {
    padding: calc(var(--gutter) / 2) calc(var(--gutter) / 2) 0;
  }
}
.jotform-form .formFooter-heightMask, .donation-form .formFooter-heightMask {
  display: none;
}
.jotform-form .date-container, .donation-form .date-container {
  display: flex;
}
.jotform-form .date-container li, .donation-form .date-container li {
  flex: 0 0 50%;
}
.jotform-form .form-line, .donation-form .form-line {
  padding: 0 calc(var(--gutter) / 2);
  margin: calc(var(--gutter) / 2) 0;
}
@media (min-width: 48em) {
  .jotform-form .form-line, .donation-form .form-line {
    padding: 0;
    margin: calc(var(--gutter) / 4) 0;
  }
}
@media (min-width: 48em) {
  .jotform-form .form-address-line, .jotform-form .form-address-table, .donation-form .form-address-line, .donation-form .form-address-table {
    margin: 0 !important;
  }
  .jotform-form .form-address-line .form-sub-label-container, .jotform-form .form-address-table .form-sub-label-container, .donation-form .form-address-line .form-sub-label-container, .donation-form .form-address-table .form-sub-label-container {
    padding: 0;
  }
  .jotform-form .form-address-line .form-dropdown, .jotform-form .form-address-table .form-dropdown, .donation-form .form-address-line .form-dropdown, .donation-form .form-address-table .form-dropdown {
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-indent: calc(var(--gutter) / 8);
  }
}
@media (min-width: 48em) {
  .jotform-form .form-address-city-line, .jotform-form .form-address-zip-line, .donation-form .form-address-city-line, .donation-form .form-address-zip-line {
    padding-right: calc(var(--gutter) / 2);
  }
}
@media (min-width: 48em) {
  .jotform-form .form-address-state-line, .donation-form .form-address-state-line {
    margin-left: 0 !important;
    padding-left: calc(var(--gutter) / 2);
  }
}
@media (min-width: 48em) {
  .jotform-form .form-address-country-line, .donation-form .form-address-country-line {
    padding-left: calc(var(--gutter) / 2);
  }
}
.jotform-form select.form-address-country, .donation-form select.form-address-country {
  background-color: transparent;
  border-radius: calc(var(--radius) / 2) !important;
  border-color: var(--type-color, #034ea2);
}
.jotform-form #id_16, .donation-form #id_16 {
  padding: 0 0 0 calc(var(--gutter));
}
.jotform-form .date-container, .donation-form .date-container {
  margin: 0 calc(var(--gutter) / -2);
  padding: 0 0 0 calc(var(--gutter));
}
.jotform-form .date-container li, .donation-form .date-container li {
  padding: 0 calc(var(--gutter));
}
@media (min-width: 48em) {
  .jotform-form .form-line-column, .donation-form .form-line-column {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .jotform-form .form-col-1, .donation-form .form-col-1 {
    padding-right: calc(var(--gutter) / 2);
  }
}
@media (min-width: 48em) {
  .jotform-form .form-col-2, .jotform-form .form-col-4, .jotform-form .form-col-6, .jotform-form .form-col-8, .jotform-form .form-col-10, .jotform-form .form-col-12, .donation-form .form-col-2, .donation-form .form-col-4, .donation-form .form-col-6, .donation-form .form-col-8, .donation-form .form-col-10, .donation-form .form-col-12 {
    padding-left: calc(var(--gutter) / 2);
  }
}
.jotform-form li.form-line:not(.form-line-column)[data-type=control_fullname] .form-input-wide [data-wrapper-react]:not(.extended) .form-sub-label-container + .form-sub-label-container, .donation-form li.form-line:not(.form-line-column)[data-type=control_fullname] .form-input-wide [data-wrapper-react]:not(.extended) .form-sub-label-container + .form-sub-label-container {
  margin-left: calc(var(--gutter));
}
@media (max-width: 47.9em) {
  .jotform-form .form-sub-label-container, .donation-form .form-sub-label-container {
    flex: 0 0 100% !important;
  }
  .jotform-form .form-sub-label-container ~ .form-sub-label-container, .donation-form .form-sub-label-container ~ .form-sub-label-container {
    margin: calc(var(--gutter) / 2) 0 0 !important;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .jotform-form .form-sub-label-container, .donation-form .form-sub-label-container {
    flex: 0 0 100% !important;
  }
  .jotform-form .form-sub-label-container ~ .form-sub-label-container, .donation-form .form-sub-label-container ~ .form-sub-label-container {
    margin: calc(var(--gutter) / 2) 0 0 !important;
  }
}
.jotform-form .form-line-active, .donation-form .form-line-active {
  background-color: transparent !important;
}
.jotform-form .form-dropdown, .jotform-form .form-textarea, .jotform-form .form-textbox:not(#productSearch-input), .jotform-form .signature-wrapper, .donation-form .form-dropdown, .donation-form .form-textarea, .donation-form .form-textbox:not(#productSearch-input), .donation-form .signature-wrapper {
  color: var(--type-color, #034ea2);
}
.jotform-form .form-dropdown::-moz-placeholder, .jotform-form .form-textarea::-moz-placeholder, .jotform-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .jotform-form .signature-wrapper::-moz-placeholder, .donation-form .form-dropdown::-moz-placeholder, .donation-form .form-textarea::-moz-placeholder, .donation-form .form-textbox:not(#productSearch-input)::-moz-placeholder, .donation-form .signature-wrapper::-moz-placeholder {
  color: rgba(var(--headline-rgb, #034ea2), 0.8);
}
.jotform-form .form-dropdown::placeholder, .jotform-form .form-textarea::placeholder, .jotform-form .form-textbox:not(#productSearch-input)::placeholder, .jotform-form .signature-wrapper::placeholder, .donation-form .form-dropdown::placeholder, .donation-form .form-textarea::placeholder, .donation-form .form-textbox:not(#productSearch-input)::placeholder, .donation-form .signature-wrapper::placeholder {
  color: rgba(var(--headline-rgb, #034ea2), 0.8);
}
.jotform-form .form-textbox::-moz-placeholder, .donation-form .form-textbox::-moz-placeholder {
  color: green;
}
.jotform-form .form-textbox::placeholder, .donation-form .form-textbox::placeholder {
  color: green;
}
.jotform-form .form-dropdown:not([size]), .jotform-form .form-textbox, .donation-form .form-dropdown:not([size]), .donation-form .form-textbox {
  height: unset;
  padding: calc(var(--gutter) / 4);
}
.jotform-form input:not([type=submit]), .jotform-form textarea, .donation-form input:not([type=submit]), .donation-form textarea {
  background-color: transparent;
  color: var(--type-color, #034ea2);
  border-radius: calc(var(--radius) / 2) !important;
  border-color: var(--type-color, #034ea2);
}
.jotform-form input:not([type=submit]):hover, .jotform-form input:not([type=submit]):focus, .jotform-form textarea:hover, .jotform-form textarea:focus, .donation-form input:not([type=submit]):hover, .donation-form input:not([type=submit]):focus, .donation-form textarea:hover, .donation-form textarea:focus {
  border-color: var(--type-color, #034ea2);
}
.jotform-form input:not([type=submit])::-moz-placeholder, .jotform-form textarea::-moz-placeholder, .donation-form input:not([type=submit])::-moz-placeholder, .donation-form textarea::-moz-placeholder {
  color: #d4effc;
  opacity: 1;
}
.jotform-form input:not([type=submit])::placeholder, .jotform-form textarea::placeholder, .donation-form input:not([type=submit])::placeholder, .donation-form textarea::placeholder {
  color: #d4effc;
  opacity: 1;
}
.jotform-form .submit-button, .donation-form .submit-button {
  border-color: var(--type-color);
  margin: calc(var(--gutter)) 0 0;
}
@media (min-width: 48em) {
  .jotform-form .submit-button, .donation-form .submit-button {
    margin: 0;
  }
}
.jotform-form #label_60::after, .donation-form #label_60::after {
  color: #57647E;
  display: block;
  margin-top: calc(var(--gutter) / 4);
}
@media (min-width: 48em) {
  .jotform-form #label_60::after, .donation-form #label_60::after {
    margin-top: calc(var(--gutter) / 8);
  }
}
@media (max-width: 47.9em) {
  .jotform-form .jf-form-buttons.submit-button:only-child, .donation-form .jf-form-buttons.submit-button:only-child {
    width: unset;
  }
}
@media (min-width: ) and (max-width: 47.9em) {
  .jotform-form .jf-form-buttons.submit-button:only-child, .donation-form .jf-form-buttons.submit-button:only-child {
    width: unset;
  }
}

.calendar.popup table[summary="Datepicker Popup"] {
  margin-top: 0;
}
.calendar.popup::before {
  top: calc(var(--gutter) * -1) !important;
}

.calendar-new-header .nextMonth, .calendar-new-header .nextYear,
.calendar-new-header .previousMonth, .calendar-new-header .previousYear {
  background-position: 50% !important;
}

li[data-type=control_datetime] [data-wrapper-react=true].extended > div + .form-sub-label-container .form-textbox, li[data-type=control_datetime] [data-wrapper-react=true]:not(.extended) .form-textbox:not(.time-dropdown) {
  background-size: calc(var(--gutter) / 2) !important;
}

tr.if_cc_field + tr td {
  float: left;
}

.payment_footer {
  position: relative;
}
.payment_footer::after {
  content: var(--note);
  line-height: 1.3;
}

.form-section select {
  background-color: transparent;
  border-color: #034ea2;
  color: #034ea2 !important;
}

#input_11_cc_ccv {
  min-width: unset !important;
  width: 30% !important;
}

#input_11_cc_exp_month, #input_11_cc_exp_year {
  width: 50%;
}

.page-intro-wrapper-section figure {
  padding: calc(var(--gutter)) calc(var(--gutter) / 2);
  margin: 0 auto;
}
@media (min-width: 48em) {
  .page-intro-wrapper-section figure {
    padding: calc(var(--gutter)) calc(var(--gutter) * 6);
    max-width: calc(var(--pageWidthInt) * 1px);
  }
}

#donations-page .form-product-details span input {
  margin-left: 0;
}
@media (min-width: 48em) and (max-width: 101.15em) {
  #donations-page .form-product-details span span {
    display: block !important;
  }
}
