@charset "UTF-8";
/******************************************************************************
 *	COLORS
 *****************************************************************************/
/******************************************************************************
 *	FONTS
 *****************************************************************************/
/******************************************************************************
 *	BREAKPOINTS
 *****************************************************************************/
/******************************************************************************
 *	CONTENT
 *****************************************************************************/
/**
 *		Force an element to self-clear its floated children
 *
 *		element/.class/#id {
 *			@extend %clearfix;
 *		}
 */
.company-timeline .wrapper::after, .block.text::after {
  content: "";
  display: block;
  clear: both;
}

/**
 *		Absolutely position an element to the full width/height of its parent
 *
 *		element/.class/#id {
 *			@extend %fullcoverage;
 *		}
 */
/**
 *		Absolutely position an element to the center of its parent
 *
 *		element/.class/#id {
 *			@extend %center;
 *		}
 */
/**
 *		Sets:
 *			- max-width (defaults to global $max_width_content)
 *			- margin-right and margin-left to 'auto' (to center)
 *			- padding (top/bottom to 0, left/right defaults to global $padding_content)
 */
/**
 *		Duplicate contained style rules across various media breakpoints AND classes
 *
 *		Replace "@media (min-width: $breakpoint)" with "@include accessibility($breakpoint)"
 *		and this will automatically multiply the breakpoint by 1.5 and 2 and duplicate any
 *		@content within inside new media queries tied to data-font-size attribute values
 *		on the `html` element
 */
/**
 *		Scale units gracefully on any property that supports calc()
 *
 *		element/.class/#id {
 *			// Scales font-size from 16px (at 320px) to 24px (at 640px)
 *			@include scale(font-size, 1rem, 20rem, 1.5rem, 40rem);
 *		}
 */
/**
 *		Generate column-based layouts using flexbox
 *
 *		@include on the parent element and all direct children (of any type)
 *		will form a column layout at the specified breakpoints
 *
 *		element/.class/#id {
 *			// Forms a 2-column layout at 480px, 3-columns at 640px,
 *			// jumps back to 2 columns at 800px, etc.
 *			@include columns($margin_columns, $margin_rows, (
 *				30em : 2,
 *				40em : 3,
 *				50em : 2,
 *				60em : 3,
 *				70em : 4
 *			));
 *		}
 */
/**
 *		scrim-gradient
 *
 *		- Customizes the color stops for a much smoother transition
 *		- ONLY works from a single color to transparent
 *		- See https://css-tricks.com/easing-linear-gradients/ for details
 *
 *		element/.class/#id {
 *			@include scrim-gradient($direction, $color);
 *		}
 */
/**
 * 		(WIP) Generate a realistic box shadow using ambient and drop shadows.
 *
 *		@include physical-shadow(11); // uses default shadow color
 *		@include physical-shadow(11, darkgray); //specify a different shadow color
 *		@include physical-shadow(11, $transform: true); // translates the element up an appropriate distance, useful for transitions.
 */
/**
 *		Center block level elements using auto margins.
 *
 *		- Padding keeps space on sides in mobile layout
 *
 *		@include contained; // uses default settings
 *		@include contained(110ch); // uses default padding
 *		@include contained(110ch, 2rem);
 */
/**
 *		Browser hack wrapper
 *
 *		- supports ie11, edge
 *
 *		@include browser(ie11, edge) {
 * 			// ie11 and edge browser-specific rules
 * 		}
 */
/**
 * 		Visually hide an element without masking it from crawlers / assistive technology
 */
/**
 *		Force an element to self-clear its floated children
 *
 *		@include clearfix; // uses ::after
 *		@include clearfix(before); // uses ::before instead
 */
/**
 *		Absolutely position an element to the full width/height of its parent
 *
 *		@include fullcoverage;
 */
/**
 *		Absolutely position an element to the center of its parent
 *
 *		@include center;
 */
/**************************************
 *		CORE
 *************************************/
@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@-webkit-keyframes easeInBounce {
  0% {
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
  12% {
    -webkit-transform: translate(-50%, -139.11%);
            transform: translate(-50%, -139.11%);
  }
  24% {
    -webkit-transform: translate(-50%, -106.44%);
            transform: translate(-50%, -106.44%);
  }
  36% {
    -webkit-transform: translate(-50%, -51.89%);
            transform: translate(-50%, -51.89%);
  }
  54% {
    -webkit-transform: translate(-50%, -74.98%);
            transform: translate(-50%, -74.98%);
  }
  74% {
    -webkit-transform: translate(-50%, -51.63%);
            transform: translate(-50%, -51.63%);
  }
  82% {
    -webkit-transform: translate(-50%, -56.25%);
            transform: translate(-50%, -56.25%);
  }
  92% {
    -webkit-transform: translate(-50%, -50.66%);
            transform: translate(-50%, -50.66%);
  }
  96% {
    -webkit-transform: translate(-50%, -51.54%);
            transform: translate(-50%, -51.54%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes easeInBounce {
  0% {
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
  12% {
    -webkit-transform: translate(-50%, -139.11%);
            transform: translate(-50%, -139.11%);
  }
  24% {
    -webkit-transform: translate(-50%, -106.44%);
            transform: translate(-50%, -106.44%);
  }
  36% {
    -webkit-transform: translate(-50%, -51.89%);
            transform: translate(-50%, -51.89%);
  }
  54% {
    -webkit-transform: translate(-50%, -74.98%);
            transform: translate(-50%, -74.98%);
  }
  74% {
    -webkit-transform: translate(-50%, -51.63%);
            transform: translate(-50%, -51.63%);
  }
  82% {
    -webkit-transform: translate(-50%, -56.25%);
            transform: translate(-50%, -56.25%);
  }
  92% {
    -webkit-transform: translate(-50%, -50.66%);
            transform: translate(-50%, -50.66%);
  }
  96% {
    -webkit-transform: translate(-50%, -51.54%);
            transform: translate(-50%, -51.54%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
figure,
picture {
  display: block;
  margin: 0;
}
@media print {
  figure,
picture {
    position: relative;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
}
figure img,
figure video,
figure iframe,
picture img,
picture video,
picture iframe {
  display: block;
  width: 100%;
  height: auto;
}
figure.aspect,
picture.aspect {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
figure.aspect.portrait,
picture.aspect.portrait {
  padding-bottom: 160%;
}
figure.aspect.square,
picture.aspect.square {
  padding-bottom: 100%;
}
figure.aspect.traditional,
picture.aspect.traditional {
  padding-bottom: 75%;
}
figure.aspect.computer,
picture.aspect.computer {
  padding-bottom: 62.5%;
}
figure.aspect.hd, figure.aspect.video, figure.aspect.landscape,
picture.aspect.hd,
picture.aspect.video,
picture.aspect.landscape {
  padding-bottom: 56.25%;
}
figure.aspect.widescreen,
picture.aspect.widescreen {
  padding-bottom: 54%;
}
figure.aspect.cinema,
picture.aspect.cinema {
  padding-bottom: 41.84%;
}
figure.aspect.banner,
picture.aspect.banner {
  padding-bottom: 25%;
}
@supports (aspect-ratio: 1/1) {
  figure.aspect,
picture.aspect {
    height: auto;
    padding-bottom: 0 !important;
  }
  figure.aspect.portrait,
picture.aspect.portrait {
    aspect-ratio: 10/16;
  }
  figure.aspect.square,
picture.aspect.square {
    aspect-ratio: 1/1;
  }
  figure.aspect.traditional,
picture.aspect.traditional {
    aspect-ratio: 4/3;
  }
  figure.aspect.computer,
picture.aspect.computer {
    aspect-ratio: 16/10;
  }
  figure.aspect.hd, figure.aspect.video, figure.aspect.landscape,
picture.aspect.hd,
picture.aspect.video,
picture.aspect.landscape {
    aspect-ratio: 16/9;
  }
  figure.aspect.widescreen,
picture.aspect.widescreen {
    aspect-ratio: 1.85/1;
  }
  figure.aspect.cinema,
picture.aspect.cinema {
    aspect-ratio: 2.39/1;
  }
  figure.aspect.banner,
picture.aspect.banner {
    aspect-ratio: 4/1;
  }
}
figure.aspect img,
figure.aspect video,
picture.aspect img,
picture.aspect video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
figure.aspect img.contain,
figure.aspect video.contain,
picture.aspect img.contain,
picture.aspect video.contain {
  -o-object-fit: contain;
     object-fit: contain;
}
figure.aspect.contain img,
figure.aspect.contain video,
picture.aspect.contain img,
picture.aspect.contain video {
  -o-object-fit: contain;
     object-fit: contain;
}

.block.accordions {
  max-width: 58.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.accordions .wrapper {
  border-bottom: 1px solid #eee;
}
.block.accordions .wrapper .toggler {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 1rem 0;
  color: #0f74a8;
  font-weight: 700;
  text-decoration: none;
}
.block.accordions .wrapper .toggler .title {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  padding-right: 1.5rem;
  color: currentColor;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (prefers-reduced-motion: no-preference) {
  .block.accordions .wrapper .toggler .title {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.block.accordions .wrapper .toggler svg {
  width: 1rem;
  height: 1rem;
  margin: 0.125rem;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .block.accordions .wrapper .toggler svg {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.block.accordions .wrapper .toggler svg path {
  fill: currentColor;
}
.block.accordions .wrapper .toggler:hover, .block.accordions .wrapper .toggler.toggled {
  color: #09547b;
}
.block.accordions .wrapper .toggler.toggled {
  border-bottom: 0;
}
.block.accordions .wrapper .toggler.toggled + .toggle {
  display: block;
}
.block.accordions .wrapper .toggler.toggled svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block.accordions .wrapper .toggle {
  display: none;
  padding: 0 0 1rem;
}
.block.accordions .wrapper .toggle p:first-child {
  margin-top: 0;
}
.block.accordions .wrapper .toggle p:last-child {
  margin-bottom: 0;
}
.block.accordions .wrapper .toggle p:empty {
  display: none;
}
.block.accordions + .slab.accordion {
  margin-top: -5rem;
}
.block.button-links {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.button-links .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
.block.button-links .wrapper.left {
  -webkit-box-pack: start;
          justify-content: flex-start;
}
.block.button-links .wrapper.center {
  -webkit-box-pack: center;
          justify-content: center;
}
.block.button-links .wrapper.right {
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.block.button-links .wrapper.space-around {
  justify-content: space-around;
}
.block.button-links .wrapper.space-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.block.button-links .wrapper .rd-button, .block.button-links .wrapper .site-search button, .site-search .block.button-links .wrapper button, .block.button-links .wrapper .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.button-links .wrapper button {
  margin: 0.25rem;
}
.block.callout {
  padding: 3.5rem 0;
  color: white;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  text-align: center;
  background-color: #a29061;
}
.block.callout:last-child {
  margin-bottom: 0;
}
.block.callout .wrapper {
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.callout .wrapper header {
  color: inherit;
}
.block.callout .wrapper svg {
  display: block;
  width: 12.75rem;
  height: auto;
  margin: 2rem auto;
  opacity: 0.6;
}
.block.call-to-action {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.call-to-action .wrapper {
  position: relative;
  padding: 3rem 1rem;
  color: white;
  text-align: center;
}
.block.call-to-action .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #003366;
  z-index: 1;
}
.block.call-to-action .wrapper picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.25;
  z-index: 2;
}
.block.call-to-action .wrapper picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.block.call-to-action .wrapper .copy {
  max-width: 46rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  position: relative;
  margin-bottom: 2rem;
  z-index: 3;
}
.block.call-to-action .wrapper .copy header {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 1.2;
}
.block.call-to-action .wrapper .copy header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 8rem;
  height: 2px;
  background-color: white;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.block.call-to-action .wrapper .link {
  position: relative;
  z-index: 3;
}
.block.call-to-action .wrapper .link .rd-button, .block.call-to-action .wrapper .link .site-search button, .site-search .block.call-to-action .wrapper .link button, .block.call-to-action .wrapper .link .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.call-to-action .wrapper .link button {
  color: #0f74a8;
  background-color: white;
}
.block.countdownTimer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: white;
  background-color: #0f74a8;
}
.block.countdownTimer .wrapper {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.countdownTimer .wrapper .inner {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}
body[data-fonts-loaded=true] .block.countdownTimer .wrapper .inner {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.block.countdownTimer .wrapper .inner .days,
.block.countdownTimer .wrapper .inner .headline {
  display: inline-block;
}
.block.countdownTimer .wrapper .inner .fullText {
  display: none;
}
.block.featured-testimonial {
  position: relative;
  background-color: #151515;
}
.block.featured-testimonial > picture {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.2;
}
.block.featured-testimonial > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.block.featured-testimonial .copy {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  padding: 10.375rem 2rem 5.9375rem;
}
.block.featured-testimonial .copy blockquote {
  max-width: 36.25rem;
  margin: 0;
  padding: 0.5rem 0.625rem;
  color: white;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  font-family: inherit;
  line-height: 1.2857142857;
  text-align: center;
}
@media (min-width: 20rem) {
  .block.featured-testimonial .copy blockquote {
    font-size: calc(1.125rem + 0.625 * (100vw - 20rem) / 20);
  }
}
@media (min-width: 40rem) {
  .block.featured-testimonial .copy blockquote {
    font-size: 1.75rem;
  }
}
.block.featured-testimonial .copy blockquote::before, .block.featured-testimonial .copy blockquote::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1.375rem;
  height: 100%;
  background-color: transparent;
  background-image: url(/dist/svgs/featured-testimonial.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  -o-border-image: linear-gradient(to right, white 0%, white 50%, transparent 50%, transparent 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(white), color-stop(50%, white), color-stop(50%, transparent), to(transparent));
     border-image: linear-gradient(to right, white 0%, white 50%, transparent 50%, transparent 100%);
  border-image-slice: 1;
}
.block.featured-testimonial .copy blockquote::before {
  left: -1.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block.featured-testimonial .copy blockquote::after {
  right: -1.5rem;
}
.block.featured-testimonial .copy blockquote p:first-child {
  margin-top: 0;
}
.block.featured-testimonial .copy blockquote p:last-child {
  margin-bottom: 0;
}
.block.featured-testimonial .copy blockquote p::before {
  content: open-quote;
}
.block.featured-testimonial .copy blockquote p::after {
  content: close-quote;
}
.block.form {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.form .message {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 3rem;
  padding: 1.25rem 1.375rem;
  background: rgba(204, 204, 204, 0.12);
  border: 1px solid rgba(204, 204, 204, 0.29);
}
.block.form .message .icon {
  width: 2.1875rem;
  height: 2.1875rem;
  margin-right: 1rem;
  padding: 0.1875rem;
}
.block.form .message .icon svg {
  display: block;
}
.block.form .message .icon svg path {
  fill: black;
}
.block.form .message .text header {
  font-weight: 600;
}
.block.form .message .text p {
  margin: 0;
}
.block.form .message.error {
  background: rgba(220, 21, 21, 0.12);
  border: 1px solid rgba(220, 21, 21, 0.29);
}
.block.form .message.notice {
  background: rgba(255, 239, 189, 0.63);
  border: 1px solid #ffefbd;
}
.block.form .message.success {
  background: rgba(169, 233, 98, 0.13);
  border: 1px solid rgba(169, 233, 98, 0.41);
}
.block.form .freeform-form-has-errors {
  display: none;
}
.block.form .freeform-row .freeform-column .freeform-input {
  outline: none;
}
.block.form .freeform-row .freeform-column .freeform-input:invalid {
  border-color: #dc1515;
}
.block.form .freeform-row .freeform-column .errors {
  color: #dc1515;
  font-size: 0.875rem;
}
.block.form .freeform-row .freeform-column label {
  margin-bottom: 0.375rem;
  color: #525252;
  font-weight: 400;
  font-size: 1rem;
}
.block.form .freeform-row .freeform-column label.freeform-required:after {
  color: #dc1515;
}
.block.form .freeform-row .freeform-column input,
.block.form .freeform-row .freeform-column select,
.block.form .freeform-row .freeform-column textarea {
  font-size: 0.875rem;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 0;
}
.block.form .freeform-row .freeform-column input::-webkit-input-placeholder, .block.form .freeform-row .freeform-column select::-webkit-input-placeholder, .block.form .freeform-row .freeform-column textarea::-webkit-input-placeholder {
  color: #ccc;
}
.block.form .freeform-row .freeform-column input::-moz-placeholder, .block.form .freeform-row .freeform-column select::-moz-placeholder, .block.form .freeform-row .freeform-column textarea::-moz-placeholder {
  color: #ccc;
}
.block.form .freeform-row .freeform-column input::placeholder,
.block.form .freeform-row .freeform-column select::placeholder,
.block.form .freeform-row .freeform-column textarea::placeholder {
  color: #ccc;
}
.block.form .freeform-row .freeform-column input,
.block.form .freeform-row .freeform-column textarea {
  display: block;
  padding: 0.8125rem 0.75rem;
}
.block.form .freeform-row .freeform-column input[type=file] {
  padding: 1.25rem;
  border: 1px dashed #9b9b9b;
}
.block.form .freeform-row .freeform-column input[type=number] {
  padding-top: 0.875rem;
}
.block.form .freeform-row .freeform-column select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.8125rem 0.75rem;
  background-color: white;
  background-image: url(/dist/svgs/select-chevron.svg);
  background-position: calc(100% - .625rem) 50%;
  background-repeat: no-repeat;
}
.block.form .freeform-row .freeform-column .freeform-input-only-label,
.block.form .freeform-row .freeform-column label[for=form-input-checkboxGroup] ~ label,
.block.form .freeform-row .freeform-column label[for=form-input-radioGroup] ~ label {
  display: -webkit-box;
  display: flex;
}
.block.form .freeform-row .freeform-column .freeform-input-only-label .freeform-input,
.block.form .freeform-row .freeform-column label[for=form-input-checkboxGroup] ~ label .freeform-input,
.block.form .freeform-row .freeform-column label[for=form-input-radioGroup] ~ label .freeform-input {
  position: relative;
  top: 0.25rem;
  width: 1.1875rem;
  height: 1.1875rem;
  margin-right: 1rem;
  border: 2px solid black;
}
.block.form .freeform-row .freeform-column button {
  min-width: 12.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .block.form .freeform-row .freeform-column button {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.block.form.site-search form {
  display: -webkit-box;
  display: flex;
  width: 100%;
}
.block.form.site-search form input[type=search] {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 0.9375rem;
  margin-right: 0.375rem;
  border: 1px solid #ccc;
  border-radius: 0;
}
.block.form.site-search form button {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
}
.block.full-bleed {
  height: 37.5rem;
  position: relative;
}
.block.full-bleed .video {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 60em) {
  .block.full-bleed .video {
    display: block;
  }
}
.block.full-bleed .video video {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
}
.block.full-bleed figure,
.block.full-bleed picture {
  height: 100%;
  padding-bottom: 0;
}
.block.gallery {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.gallery .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.15625rem;
  margin-left: -0.15625rem;
  margin-top: 0.3125rem;
}
.block.gallery .wrapper > * {
  display: block;
  width: calc(100% - 0.3125rem);
  margin-right: 0.15625rem;
  margin-left: 0.15625rem;
  margin-bottom: 0.3125rem;
}
@media (min-width: 20em) {
  .block.gallery .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 0.625rem) / 2.0001);
    max-width: calc((100% - 0.625rem) / 2.0001);
  }
}
@media (min-width: 30em) {
  .block.gallery .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 0.9375rem) / 3.0001);
    max-width: calc((100% - 0.9375rem) / 3.0001);
  }
}
@media (min-width: 40em) {
  .block.gallery .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 1.25rem) / 4.0001);
    max-width: calc((100% - 1.25rem) / 4.0001);
  }
}
@supports (display: grid) {
  .block.gallery .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0.3125rem;
    grid-row-gap: 0.3125rem;
    margin-right: 0;
    margin-bottom: 0.3125rem;
    margin-left: 0;
  }
  @media (min-width: 20em) {
    .block.gallery .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 30em) {
    .block.gallery .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  @media (min-width: 40em) {
    .block.gallery .wrapper {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .block.gallery .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.block.gallery .wrapper > a {
  color: white;
  background-color: #151515;
  cursor: pointer;
}
.block.gallery .wrapper > a figure > img,
.block.gallery .wrapper > a picture > img {
  opacity: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .block.gallery .wrapper > a figure > img,
.block.gallery .wrapper > a picture > img {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.block.gallery .wrapper > a figure > svg,
.block.gallery .wrapper > a picture > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  max-width: 3.5rem;
  max-height: 3.5rem;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .block.gallery .wrapper > a figure > svg,
.block.gallery .wrapper > a picture > svg {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.block.gallery .wrapper > a figure > svg path,
.block.gallery .wrapper > a picture > svg path {
  fill: currentColor;
}
.block.gallery .wrapper > a:hover figure img,
.block.gallery .wrapper > a:hover picture img, .block.gallery .wrapper > a:focus-visible figure img,
.block.gallery .wrapper > a:focus-visible picture img {
  opacity: 0.45;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.block.gallery .wrapper > a:hover figure svg,
.block.gallery .wrapper > a:hover picture svg, .block.gallery .wrapper > a:focus-visible figure svg,
.block.gallery .wrapper > a:focus-visible picture svg {
  opacity: 1;
}
.block.grid {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.grid .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}
.block.grid .wrapper > * {
  display: block;
  width: calc(100% - 2.5rem);
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  margin-bottom: 3.75rem;
}
@media (min-width: 40rem) {
  .block.grid .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 5rem) / 2.0001);
    max-width: calc((100% - 5rem) / 2.0001);
  }
}
@media (min-width: 60rem) {
  .block.grid .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 7.5rem) / 3.0001);
    max-width: calc((100% - 7.5rem) / 3.0001);
  }
}
@supports (display: grid) {
  .block.grid .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.5rem;
    grid-row-gap: 3.75rem;
    margin-right: 0;
    margin-bottom: 3.75rem;
    margin-left: 0;
  }
  @media (min-width: 40rem) {
    .block.grid .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 60rem) {
    .block.grid .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .block.grid .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.block.image {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media print {
  .block.image {
    float: left;
    max-width: 40%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
.block.search-results {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.block.search-results .search-result {
  padding-bottom: 1.5rem;
}
.block.search-results .search-result:not(:last-of-type) {
  margin-bottom: 2rem;
  border-bottom: 1px solid #d5d5d5;
}
.block.search-results .search-result header {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.block.search-results .search-result p {
  margin: 0.5rem 0;
}
.block.text {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media print {
  .block.text {
    overflow-x: initial;
  }
}
.block.text img:not(.img-left):not(.img-right) {
  display: block;
  max-width: 90% !important;
  height: auto !important;
  margin: 2em auto;
}
.block.text .img-left {
  float: left;
  max-width: 35%;
  height: auto !important;
  margin-right: 3rem;
  margin-bottom: 1.5rem;
}
.block.text .img-right {
  float: right;
  max-width: 35%;
  height: auto !important;
  margin-bottom: 1.5rem;
  margin-left: 3rem;
}
.block.text .no-results {
  padding: 5rem 0;
  text-align: center;
}
.block.text [style*="text-align: center"] + .buttons {
  text-align: center;
}
.block.text [style*="text-align: right"] + .buttons {
  text-align: right;
}
.block.text-media {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 60em) {
  .block.text-media {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  .block.text-media.img-left .text header {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .block.text-media.img-left .text p {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .block.text-media.img-left .text .rd-button, .block.text-media.img-left .text .site-search button, .site-search .block.text-media.img-left .text button, .block.text-media.img-left .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media.img-left .text button {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .block.text-media.img-right .text-media-image {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .block.text-media.img-right .text {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .block.text-media.img-right .text header {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .block.text-media.img-right .text p {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .block.text-media.img-right .text .rd-button, .block.text-media.img-right .text .site-search button, .site-search .block.text-media.img-right .text button, .block.text-media.img-right .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media.img-right .text button {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.block.text-media .text-media-image {
  position: relative;
}
@media (min-width: 60em) {
  .block.text-media .text-media-image {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    max-width: 50%;
  }
}
.block.text-media .text {
  margin-top: 2.5rem;
}
@media (min-width: 60em) {
  .block.text-media .text {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    max-width: calc(50% - 7.5rem);
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media .text header {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.block.text-media .text p {
  line-height: 1.75;
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media .text p {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.block.text-media .text .rd-button, .block.text-media .text .site-search button, .site-search .block.text-media .text button, .block.text-media .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media .text button {
  margin-top: 0.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media .text .rd-button, .block.text-media .text .site-search button, .site-search .block.text-media .text button, .block.text-media .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media .text button {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.block.text-media.slide-in .text header {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media.slide-in .text header {
    -webkit-transition: all 1s ease-in-out 0.25s;
    transition: all 1s ease-in-out 0.25s;
  }
}
.block.text-media.slide-in .text p {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media.slide-in .text p {
    -webkit-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
  }
}
.block.text-media.slide-in .text .rd-button, .block.text-media.slide-in .text .site-search button, .site-search .block.text-media.slide-in .text button, .block.text-media.slide-in .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media.slide-in .text button {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .block.text-media.slide-in .text .rd-button, .block.text-media.slide-in .text .site-search button, .site-search .block.text-media.slide-in .text button, .block.text-media.slide-in .text .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .block.text-media.slide-in .text button {
    -webkit-transition: all 1s ease-in-out 1s;
    transition: all 1s ease-in-out 1s;
  }
}
.block.videos {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media print {
  .block.videos {
    display: none;
  }
}
.block.videos .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -1rem 0;
}
.block.videos .wrapper .video {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  margin: 1rem;
}
@media (min-width: 50rem) {
  .block.videos .wrapper .video {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    max-width: calc((100% - 4rem) / 2.0001);
  }
  .block.videos .wrapper .video:nth-child(1):nth-last-child(odd) {
    -webkit-box-flex: 1;
            flex: 1 1 100%;
    max-width: 100%;
  }
}
.block.videos .wrapper .video header {
  margin-top: 1.25rem;
}
.block.videos .wrapper .video header + .desc {
  margin-top: 0.25rem;
}
.block.videos .wrapper .video .desc {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.breadcrumbs {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 1.75rem;
  margin-bottom: 2.375rem;
}
@media print {
  .breadcrumbs {
    display: none !important;
  }
}
.breadcrumbs ul {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin: 0;
  padding: 0 0 1rem;
}
@media (min-width: 55rem) {
  .breadcrumbs ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.breadcrumbs ul::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.75rem;
  height: 0.1875rem;
  background-color: #25b2e4;
}
.breadcrumbs ul li {
  color: #696969;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: "  /  ";
}
.breadcrumbs ul li a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs ul li a:hover, .breadcrumbs ul li a:focus {
  color: #0f74a8;
}
.breadcrumbs ul li strong {
  color: #25b2e4;
  font-weight: 700;
}

#browser-update {
  background-color: rgba(199, 3, 30, 0.1);
  border-bottom: 1px solid rgba(199, 3, 30, 0.4);
  color: #c7031e;
  margin: 0;
  padding: 0;
}
#browser-update p {
  margin: 0 auto;
  padding: 1em;
  width: 90%;
}
#browser-update a {
  color: #c7031e;
}

.card.news a {
  color: #696969;
  text-decoration: none;
}
@media (min-width: 32rem) {
  .card.news a {
    display: -webkit-box;
    display: flex;
  }
}
.card.news a .img {
  position: relative;
  margin-bottom: 2rem;
}
.card.news a .img:empty {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
@supports (aspect-ratio: 4/3) {
  .card.news a .img:empty {
    aspect-ratio: 4/3;
    height: auto;
    padding-bottom: 0;
  }
}
.card.news a .img:empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
@supports (aspect-ratio: 4/3) {
  .card.news a .img:empty::before {
    aspect-ratio: 4/3;
    padding-bottom: 0;
  }
}
@media (min-width: 32rem) {
  .card.news a .img {
    -webkit-box-flex: 1;
            flex: 1 1 11.25rem;
    min-width: 11.25rem;
    max-width: 11.25rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
.card.news a .copy .category {
  display: inline-block;
  padding: 0.375rem 1rem;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.0083333333em;
  line-height: 1.1666666667;
  text-transform: uppercase;
  background-color: #a29061;
  border-radius: 2px;
}
.card.news a .copy .category + header {
  margin-top: 0.75rem;
}
.card.news a .copy header {
  margin: 0 0 0.75rem;
  color: #313131;
  font-size: 1.375rem;
  line-height: 1.2;
}
.card.news a .copy p {
  margin: 0;
}
.card.news a .copy time {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
.card.news a .copy time::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.75rem;
  height: 0.1875rem;
  background-color: #25b2e4;
}
.card.news-latest {
  position: relative;
  padding: 0.875rem 0.75rem;
  background: white;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: 4px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4px 5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media (prefers-reduced-motion: no-preference) {
  .card.news-latest {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.news-latest:hover, .card.news-latest:focus {
  -webkit-box-shadow: 6px 10px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 6px 10px 10px 0 rgba(0, 0, 0, 0.2);
}
.card.news-latest .img {
  position: relative;
  margin-bottom: 1rem;
}
.card.news-latest .img:empty {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
@supports (aspect-ratio: 4/3) {
  .card.news-latest .img:empty {
    aspect-ratio: 4/3;
    height: auto;
    padding-bottom: 0;
  }
}
.card.news-latest .img:empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 75%;
  background-color: #d8d8d8;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
@supports (aspect-ratio: 4/3) {
  .card.news-latest .img:empty::before {
    aspect-ratio: 4/3;
    padding-bottom: 0;
  }
}
.card.news-latest .copy {
  padding: 0 0.75rem 1.75rem;
}
.card.news-latest .copy .category {
  display: inline-block;
  padding: 0.375rem 1rem;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.0083333333em;
  line-height: 1.1666666667;
  text-transform: uppercase;
  background-color: #a29061;
  border-radius: 2px;
}
.card.news-latest .copy .category + header {
  margin-top: 0.75rem;
}
.card.news-latest .copy header {
  margin: 0 0 0.75rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
.card.news-latest .copy p {
  margin: 0;
}
.card.news-latest .copy time {
  position: relative;
  display: block;
  margin-top: 0.75rem;
  color: #979797;
  font-size: 0.875rem;
  line-height: 1.8571428571;
}
.card.news-latest .copy a {
  position: absolute;
  top: 100%;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.card.news-latest .copy a span {
  display: inline-block;
}
.card.news-latest .copy a span:first-child {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.4375);
          transform: scale(1.4375);
}
.card.news-latest .copy a span:last-child {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .card.news-latest .copy a span:last-child {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.news-latest .copy a:hover, .card.news-latest .copy a:focus {
  background-color: #0f74a8;
  border-color: white;
}
.card.news-latest .copy a:hover span:last-child, .card.news-latest .copy a:focus span:last-child {
  max-width: 6.75rem;
  margin-left: 1rem;
}
.card.podcast .img {
  position: relative;
  height: 0;
  padding-bottom: 62.5%;
  background-color: #d8d8d8;
}
@supports (aspect-ratio: 16/10) {
  .card.podcast .img {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.podcast .img:empty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
@supports (aspect-ratio: 16/10) {
  .card.podcast .img:empty::after {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.podcast header {
  margin-top: 1.5rem;
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.25rem;
}
.card.podcast .details {
  color: #696969;
  font-size: 0.875rem;
}
.card.podcast .details time + .categories::before {
  content: "  |   ";
}
.card.podcast p {
  margin: 1.5rem 0;
  color: #2d2d2d;
}
.card.podcast iframe {
  border: 1px solid #58585a;
}
.card.project .img {
  position: relative;
  display: block;
  height: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 62.5%;
}
@supports (aspect-ratio: 16/10) {
  .card.project .img {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.project .img .no-featured-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  background-color: #d8d8d8;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
@supports (aspect-ratio: 16/10) {
  .card.project .img .no-featured-img::before {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.project .img picture {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .card.project .img picture img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
.card.project .img .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .card.project .img .overlay {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.project .img .overlay .icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 4.125rem;
  height: 4.125rem;
  background-color: white;
  border-radius: 50%;
}
.card.project .img .overlay .icon svg {
  width: 45%;
  height: 45%;
}
.card.project .img .overlay .icon svg path {
  fill: #0f74a8;
}
.card.project .img .overlay header {
  margin-top: 0.5rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.card.project .img:hover picture img, .card.project .img:focus picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card.project .img:hover .overlay, .card.project .img:focus .overlay {
  opacity: 1;
}
.card.property .img {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 62.5%;
  background-color: #9e9e9e;
  z-index: 1;
}
@supports (aspect-ratio: 16/10) {
  .card.property .img {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.property .img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
  z-index: 1;
}
.card.property .img picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}
.card.property .img picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .card.property .img picture img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
.card.property .img .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 3;
}
@media (prefers-reduced-motion: no-preference) {
  .card.property .img .overlay {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.property .img .overlay .icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 4.125rem;
  height: 4.125rem;
  background-color: white;
  border-radius: 50%;
}
.card.property .img .overlay .icon svg {
  width: 45%;
  height: 45%;
}
.card.property .img .overlay .icon svg path {
  fill: #0f74a8;
}
.card.property .img .overlay header {
  margin-top: 0.5rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.card.property .img:hover picture img, .card.property .img:focus picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card.property .img:hover .overlay, .card.property .img:focus .overlay {
  opacity: 1;
}
.card.property header {
  margin-top: 1.25rem;
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1363636364;
}
.card.property p {
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.card.property-featured {
  padding: 2.625rem;
  border: 2px solid #e5e5e5;
}
@media (min-width: 75rem) {
  .card.property-featured {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.card.property-featured .img {
  margin-bottom: 2.625rem;
}
@media (min-width: 75rem) {
  .card.property-featured .img {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    max-width: 32.5rem;
    margin-right: 2.625rem;
    margin-bottom: 0;
  }
}
.card.property-featured .img a {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 62.5%;
  background-color: #9e9e9e;
  z-index: 1;
}
@supports (aspect-ratio: 16/10) {
  .card.property-featured .img a {
    aspect-ratio: 16/10;
    height: auto;
    padding-bottom: 0;
  }
}
.card.property-featured .img a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
  z-index: 1;
}
.card.property-featured .img a picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.card.property-featured .img a picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 75rem) {
  .card.property-featured .copy {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
  }
}
.card.property-featured .copy .tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.25rem 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: #a29061;
  border-radius: 2px;
}
.card.property-featured .copy .address {
  font-size: 1.5rem;
  font-size: 1.5rem;
  text-transform: none;
}
@media (min-width: 20rem) {
  .card.property-featured .copy .address {
    font-size: calc(1.5rem + 0.75 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .card.property-featured .copy .address {
    font-size: 2.25rem;
  }
}
@media (min-width: 60rem) {
  .card.property-featured .copy .address {
    font-size: calc(1.5rem + 0.75 * (100vw - 60rem) / 15);
  }
}
@media (min-width: 75rem) {
  .card.property-featured .copy .address {
    font-size: 2.25rem;
  }
}
.card.property-featured .copy .location {
  margin-top: 0.25rem;
}
.card.property-featured .copy .price {
  margin: 1rem 0;
  color: #2e2e2e;
  font-weight: 700;
  text-transform: uppercase;
}
.card.property-featured .copy .buttons {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem -0.625rem 0;
}
.card.property-featured .copy .buttons .rd-button, .card.property-featured .copy .buttons .site-search button, .site-search .card.property-featured .copy .buttons button, .card.property-featured .copy .buttons .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .card.property-featured .copy .buttons button {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  margin: 0.625rem;
}
.card.property-featured .copy .buttons .rd-button:first-child, .card.property-featured .copy .buttons .site-search button:first-child, .site-search .card.property-featured .copy .buttons button:first-child, .card.property-featured .copy .buttons .block.form .freeform-row .freeform-column button:first-child, .block.form .freeform-row .freeform-column .card.property-featured .copy .buttons button:first-child {
  max-width: 16rem;
  border-color: #0f74a8;
}
.card.property-featured .copy .buttons .rd-button:first-child:hover, .card.property-featured .copy .buttons .site-search button:first-child:hover, .site-search .card.property-featured .copy .buttons button:first-child:hover, .card.property-featured .copy .buttons .block.form .freeform-row .freeform-column button:first-child:hover, .block.form .freeform-row .freeform-column .card.property-featured .copy .buttons button:first-child:hover, .card.property-featured .copy .buttons .rd-button:first-child:focus, .card.property-featured .copy .buttons .site-search button:first-child:focus, .site-search .card.property-featured .copy .buttons button:first-child:focus, .card.property-featured .copy .buttons .block.form .freeform-row .freeform-column button:first-child:focus, .block.form .freeform-row .freeform-column .card.property-featured .copy .buttons button:first-child:focus {
  border-color: #053953;
}
.card.property-featured .copy .buttons .rd-button.a2a_dd, .card.property-featured .copy .buttons .site-search button.a2a_dd, .site-search .card.property-featured .copy .buttons button.a2a_dd, .card.property-featured .copy .buttons .block.form .freeform-row .freeform-column button.a2a_dd, .block.form .freeform-row .freeform-column .card.property-featured .copy .buttons button.a2a_dd {
  -webkit-box-flex: 0;
          flex-grow: 0;
}
.card.team {
  text-align: center;
}
.card.team .img-wrapper {
  width: 100%;
  max-width: 14.25rem;
  margin-right: auto;
  margin-left: auto;
}
.card.team .img-wrapper .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #d8d8d8;
  border-radius: 50%;
  overflow: hidden;
}
.card.team .img-wrapper .img picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.card.team .img-wrapper .img picture img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.card.team header {
  margin-top: 1.375rem;
}
.card.webcam > a {
  position: relative;
  display: block;
}
.card.webcam > a picture {
  position: relative;
  z-index: 1;
}
.card.webcam > a .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .card.webcam > a .overlay {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.webcam > a .overlay .icon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 4.125rem;
  height: 4.125rem;
  background-color: white;
  border-radius: 50%;
}
.card.webcam > a .overlay .icon svg {
  width: 45%;
  height: 45%;
}
.card.webcam > a .overlay .icon svg path {
  fill: #0f74a8;
}
.card.webcam > a .overlay header {
  margin-top: 0.5rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}
.card.webcam > a:hover .overlay, .card.webcam > a:focus .overlay {
  opacity: 1;
}
.card.webcam > header {
  margin-top: 1.25rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.375rem;
}
.card.webcam .webcam-modal {
  position: fixed;
  top: 50vh;
  left: 50vw;
  width: 0;
  max-width: 75rem;
  max-height: calc(100vh - 2rem);
  padding: 0;
  background-color: white;
  -webkit-box-shadow: 10px 15px 25px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 10px 15px 25px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 1000000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .card.webcam .webcam-modal {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.card.webcam .webcam-modal.is-shown {
  width: calc(100vw - 2rem);
  padding: 1rem;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 20rem) {
  .card.webcam .webcam-modal.is-shown {
    padding: calc(1rem + 1 * (100vw - 20rem) / 57);
  }
}
@media (min-width: 77rem) {
  .card.webcam .webcam-modal.is-shown {
    padding: 2rem;
  }
}
.card.webcam .webcam-modal .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  color: white;
  background-color: #2e2e2e;
  border: 2px solid white;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
}
.card.webcam .webcam-modal .close svg {
  width: 50%;
  height: 50%;
}
.card.webcam .webcam-modal .close svg path {
  fill: currentColor;
}
.card.webcam .webcam-modal > header {
  margin-bottom: 0.5rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.card.webcam .webcam-modal p {
  margin-bottom: 0;
  color: #2e2e2e;
}

.element.image-text a[data-lightbox] {
  position: relative;
  display: block;
}
.element.image-text a[data-lightbox] picture {
  position: relative;
  z-index: 1;
}
.element.image-text a[data-lightbox] > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.element.image-text a[data-lightbox] > svg path {
  fill: white;
}
.element.image-text header {
  margin-top: 1.25rem;
  color: black;
  font-weight: 700;
  font-size: 1.375rem;
}

.filter-bar {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.filter-bar form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.filter-bar form label {
  display: block;
  margin-bottom: 0.75rem;
}
@media (min-width: 45rem) {
  .filter-bar form label {
    margin-bottom: 0;
  }
  .filter-bar form label:not(:first-child) {
    margin-left: 0.75rem;
  }
}
.filter-bar form label input,
.filter-bar form label select {
  outline: none;
  display: block;
  width: 100%;
  color: #6a6a6a;
  border: 1px solid #d3d3d3;
}
.filter-bar form label.search {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
}
@media (min-width: 45rem) {
  .filter-bar form label.search {
    max-width: 20rem;
  }
}
.filter-bar form label.search input {
  padding: 0.625rem 0.625rem 0.625rem 2.5rem;
  background-image: url(/dist/svgs/search.svg);
  background-position: 0.625rem 50%;
  background-repeat: no-repeat;
}
.filter-bar form label.select {
  -webkit-box-flex: 0;
          flex: 0 1 100%;
  background-image: url(/dist/svgs/select-chevron.svg);
  background-position: calc(100% - .625rem) 50%;
  background-repeat: no-repeat;
}
@media (min-width: 45rem) {
  .filter-bar form label.select {
    -webkit-box-flex: 0;
            flex: 0 1 auto;
  }
}
.filter-bar form label.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  line-height: 1.375;
  background-color: transparent;
}
.filter-bar form .break {
  display: none;
}
@media (min-width: 45rem) {
  .filter-bar form .break {
    display: block;
    margin-left: auto;
  }
}

.lazy-load {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 4rem;
}
@supports (display: grid) {
  .lazy-load {
    grid-column: -1/1;
    text-align: center;
  }
}

.pdf-header {
  display: none;
}
@media print {
  .pdf-header {
    -webkit-print-color-adjust: exact !important;
            color-adjust: exact !important;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin: 0 0 2rem;
    padding: 0.5rem 1.5rem;
    color: white;
    background-color: #0f74a8;
  }
  .pdf-header svg {
    width: auto;
    height: 40px;
  }
  .pdf-header svg path {
    fill: white;
  }
  .pdf-header .contact {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .pdf-header .contact span + span::before {
    content: "  |  ";
  }
}

.rd-button, .site-search button, .block.form .freeform-row .freeform-column button {
  outline: none;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.875rem 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.1875;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #0f74a8;
  border: 1px solid currentColor;
}
.rd-button svg, .site-search button svg, .block.form .freeform-row .freeform-column button svg {
  width: 1rem;
  height: 1rem;
}
.rd-button svg:first-child, .site-search button svg:first-child, .block.form .freeform-row .freeform-column button svg:first-child {
  margin-right: 0.75rem;
}
.rd-button svg:last-child, .site-search button svg:last-child, .block.form .freeform-row .freeform-column button svg:last-child {
  margin-left: 0.75rem;
}
.rd-button svg path, .site-search button svg path, .block.form .freeform-row .freeform-column button svg path {
  fill: currentColor;
}
.rd-button:hover, .site-search button:hover, .block.form .freeform-row .freeform-column button:hover, .rd-button:focus, .site-search button:focus, .block.form .freeform-row .freeform-column button:focus {
  color: white;
  background-color: #053953;
  border-color: #053953;
}
.rd-button.outline, .site-search button.outline, .block.form .freeform-row .freeform-column button.outline {
  color: #383838;
  background-color: white;
}
.rd-button.outline:hover, .site-search button.outline:hover, .block.form .freeform-row .freeform-column button.outline:hover, .rd-button.outline:focus, .site-search button.outline:focus, .block.form .freeform-row .freeform-column button.outline:focus {
  color: white;
  background-color: #383838;
}
.rd-button.white, .site-search button.white, .block.form .freeform-row .freeform-column button.white {
  color: #0f74a8;
  background-color: white;
  border-color: white;
}
.rd-button.white:hover, .site-search button.white:hover, .block.form .freeform-row .freeform-column button.white:hover, .rd-button.white:focus, .site-search button.white:focus, .block.form .freeform-row .freeform-column button.white:focus {
  color: white;
  background-color: #a29061;
  border-color: #a29061;
}

.rd-lightbox {
  visibility: hidden;
  position: fixed;
  top: 50vh;
  left: 50vw;
  width: 0;
  height: 0;
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  opacity: 0;
  z-index: 999999;
}
@media (prefers-reduced-motion: no-preference) {
  .rd-lightbox {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.rd-lightbox[aria-hidden=false] {
  visibility: visible;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
}
.rd-lightbox .toolbar {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 1rem;
}
.rd-lightbox .toolbar .pages {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
}
.rd-lightbox .toolbar .pages .sep {
  padding: 0 0.3125rem 0 0.25rem;
}
.rd-lightbox .toolbar .links {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
}
.rd-lightbox .toolbar .links a {
  padding: 0.875rem;
  color: white;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .rd-lightbox .toolbar .links a {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.rd-lightbox .toolbar .links a svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.rd-lightbox .toolbar .links a svg path {
  fill: white;
}
.rd-lightbox .toolbar .links a:hover, .rd-lightbox .toolbar .links a:focus-visible {
  background-color: rgba(0, 0, 0, 0.6);
}
.rd-lightbox .content {
  display: -webkit-box;
  display: flex;
  height: calc(100% - 3rem);
}
.rd-lightbox .content .rd-lightbox-prev,
.rd-lightbox .content .rd-lightbox-next {
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.875rem;
  color: white;
  text-decoration: none;
}
@media (prefers-reduced-motion: no-preference) {
  .rd-lightbox .content .rd-lightbox-prev,
.rd-lightbox .content .rd-lightbox-next {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.rd-lightbox .content .rd-lightbox-prev svg,
.rd-lightbox .content .rd-lightbox-next svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}
.rd-lightbox .content .rd-lightbox-prev svg path,
.rd-lightbox .content .rd-lightbox-next svg path {
  fill: white;
}
.rd-lightbox .content .rd-lightbox-prev:hover, .rd-lightbox .content .rd-lightbox-prev:focus-visible,
.rd-lightbox .content .rd-lightbox-next:hover,
.rd-lightbox .content .rd-lightbox-next:focus-visible {
  background-color: rgba(0, 0, 0, 0.6);
}
.rd-lightbox .content .gallery {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  position: relative;
}
.rd-lightbox .content .gallery > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 80rem;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .rd-lightbox .content .gallery > div {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.rd-lightbox .content .gallery > div:not(.active) {
  opacity: 0;
  z-index: -1;
}
.rd-lightbox .content .gallery > div img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  margin: -3rem auto 0;
}
.rd-lightbox .content .gallery > div .caption {
  padding: 0.625rem 1rem;
  color: white;
  font-size: 0.875rem;
  text-align: center;
}
.rd-lightbox .content[data-count="1"] .rd-lightbox-prev,
.rd-lightbox .content[data-count="1"] .rd-lightbox-next {
  display: none;
}
.rd-lightbox .content[data-count="1"] .gallery {
  margin: 0 3rem;
}

.embed-container {
  position: relative;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
@supports (aspect-ratio: 16/9) {
  .embed-container {
    aspect-ratio: 16/9;
    height: auto;
    padding-bottom: 0;
  }
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-search {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.site-search input {
  outline: none;
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  margin-right: 0.625rem;
  padding: 0.5rem 1.125rem;
  color: #696969;
  font-size: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
}
.site-search input::-webkit-input-placeholder {
  font-style: italic;
}
.site-search input::-moz-placeholder {
  font-style: italic;
}
.site-search input::placeholder {
  font-style: italic;
}
.site-search button {
  -webkit-box-flex: 0;
          flex: 0 1 auto;
}
@media (prefers-reduced-motion: no-preference) {
  .site-search button {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.site-search .close {
  display: none;
}

.table-overflow {
  width: 100%;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.table-overflow table {
  min-width: 40rem;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #dbdbdb;
}
table thead tr {
  border-bottom: 1px solid #dbdbdb;
}
table thead tr th {
  padding: 0.75rem;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: inherit;
  text-align: left;
  background-color: #f4f4f4;
}
table tbody tr td {
  padding: 1rem 0.75rem;
}
table tbody tr td.no-results-message {
  padding: 4rem 0;
  text-align: center;
}
table tbody tr:nth-of-type(even) td {
  background-color: #f4f4f4;
}

/**************************************
 *		3RD PARTY
 *************************************/
.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */
main {
  margin: 0;
}
main > article,
main > section {
  width: 100%;
}
main > article > h1,
main > section > h1 {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
main > article > article,
main > article > section,
main > section > article,
main > section > section {
  margin: 5rem 0;
}

.site-footer {
  color: white;
  font-size: 0.875rem;
  background-color: #053953;
}
@media print {
  .site-footer {
    display: none !important;
  }
}
.site-footer .top {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
@media (min-width: 75rem) {
  .site-footer .top {
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
  }
}
.site-footer .top .logo {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 75rem) {
  .site-footer .top .logo {
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    width: auto;
    margin-bottom: 0;
  }
}
.site-footer .top .logo a {
  display: -webkit-box;
  display: flex;
  width: 18.125rem;
  max-width: 100%;
}
.site-footer .top .logo a svg {
  width: 100%;
  height: auto;
}
.site-footer .top .address,
.site-footer .top .contact {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 40rem) {
  .site-footer .top .address,
.site-footer .top .contact {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    width: auto;
    max-width: calc((100% - 4rem) / 2.0001);
  }
}
@media (min-width: 75rem) {
  .site-footer .top .address,
.site-footer .top .contact {
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    max-width: none;
    margin-bottom: 0;
  }
}
.site-footer .top .address {
  line-height: 1.875;
  text-align: center;
}
@media (min-width: 40rem) {
  .site-footer .top .address {
    margin-right: 4rem;
    text-align: right;
  }
}
@media (min-width: 75rem) {
  .site-footer .top .address {
    margin-right: 0;
    text-align: left;
  }
}
.site-footer .top .contact {
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 40rem) {
  .site-footer .top .contact {
    text-align: left;
  }
}
.site-footer .top .contact a {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}
.site-footer .top .contact a svg {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.75rem;
}
.site-footer .top .contact a svg path {
  fill: currentColor;
}
.site-footer .top .contact a:hover, .site-footer .top .contact a:focus {
  color: #00a4bd;
}
.site-footer .top .social {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  margin-right: -0.3125rem;
  margin-left: -0.3125rem;
}
@media (min-width: 75rem) {
  .site-footer .top .social {
    -webkit-box-flex: 0;
            flex: 0 1 auto;
    width: auto;
  }
}
.site-footer .top .social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  margin: 0.3125rem;
  color: white;
  border: 1px solid #00a4bd;
  border-radius: 50%;
}
.site-footer .top .social a svg {
  width: 40%;
  height: 40%;
}
.site-footer .top .social a svg path {
  fill: currentColor;
}
.site-footer .top .social a:hover, .site-footer .top .social a:focus {
  background-color: #00a4bd;
}
.site-footer .bottom {
  padding: 1.125rem 1rem;
  text-align: center;
  border-top: 1px solid white;
}
.site-footer .bottom a {
  color: inherit;
  text-decoration: none;
}
.site-footer .bottom a:hover, .site-footer .bottom a:focus {
  color: #00a4bd;
}

.news-detail .header {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 40rem) {
  .news-detail .header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
.news-detail .header h1 {
  font-size: 1.5rem;
}
@media (min-width: 20rem) {
  .news-detail .header h1 {
    font-size: calc(1.5rem + 0.75 * (100vw - 20rem) / 44);
  }
}
@media (min-width: 64rem) {
  .news-detail .header h1 {
    font-size: 2.25rem;
  }
}
.news-detail .header time {
  color: #a4a4a4;
}
.news-detail .header > div:last-child {
  margin-top: 3rem;
}
@media (min-width: 40rem) {
  .news-detail .header > div:last-child {
    margin-top: 0;
    margin-left: 3rem;
  }
}
.news-detail .prev-next {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 8rem;
}
@media (min-width: 32rem) {
  .news-detail .prev-next {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
.news-detail .prev-next .prev,
.news-detail .prev-next .next {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media (min-width: 32rem) {
  .news-detail .prev-next .prev,
.news-detail .prev-next .next {
    max-width: 44%;
  }
}
.news-detail .prev-next .prev header,
.news-detail .prev-next .next header {
  margin: 1.5rem 0 1.25rem;
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1363636364;
}
.news-detail .prev-next .prev time,
.news-detail .prev-next .next time {
  color: #989898;
}
.news-detail .prev-next .prev {
  -webkit-box-align: start;
          align-items: flex-start;
  text-align: left;
}
.news-detail .prev-next .next {
  margin-top: 2.5rem;
  -webkit-box-align: end;
          align-items: flex-end;
  text-align: right;
}
@media (min-width: 32rem) {
  .news-detail .prev-next .next {
    margin-top: 0;
  }
}

.leadership-team {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  overflow-x: hidden;
}
.leadership-team > header {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  text-align: center;
}
.leadership-team > header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 6px;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.leadership-team .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -3.125rem;
  margin-left: -3.125rem;
  -webkit-box-pack: center;
          justify-content: center;
}
.leadership-team .wrapper > * {
  display: block;
  width: calc(100% - 6.25rem);
  margin-right: 3.125rem;
  margin-left: 3.125rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 32rem) {
  .leadership-team .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 12.5rem) / 2.0001);
    max-width: calc((100% - 12.5rem) / 2.0001);
  }
}
@media (min-width: 48rem) {
  .leadership-team .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 18.75rem) / 3.0001);
    max-width: calc((100% - 18.75rem) / 3.0001);
  }
}
@media (min-width: 64rem) {
  .leadership-team .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 25rem) / 4.0001);
    max-width: calc((100% - 25rem) / 4.0001);
  }
}

.company-timeline {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  overflow-x: hidden;
}
.company-timeline > header {
  position: relative;
  text-align: center;
}
.company-timeline > header + p {
  margin-top: 0.25rem;
}
.company-timeline > p {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.company-timeline .wrapper {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 10rem;
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.company-timeline .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  width: 8px;
  background-color: #f1f2f3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(2rem, #f1f2f3), color-stop(#f1f2f3), to(white));
  background-image: linear-gradient(to bottom, white 0%, #f1f2f3 2rem, #f1f2f3 calc(100% - 2rem), white 100%);
  z-index: 1;
}
@media (min-width: 56.25rem) {
  .company-timeline .wrapper::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.company-timeline .wrapper .event {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  max-width: calc(100% - 46px);
  margin-bottom: 4rem;
  padding: 1.25rem;
  background-color: white;
  border: 1px solid #979797;
  border-radius: 4px;
  z-index: 2;
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .company-timeline .wrapper .event {
    -webkit-transition: all 1.25s ease-in-out;
    transition: all 1.25s ease-in-out;
  }
}
.company-timeline .wrapper .event:nth-child(odd) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.company-timeline .wrapper .event:nth-child(even) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.company-timeline .wrapper .event.slide {
  width: 100%;
  opacity: 1;
}
.company-timeline .wrapper .event.slide:nth-child(odd) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.company-timeline .wrapper .event.slide:nth-child(even) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 36rem) {
  .company-timeline .wrapper .event {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
@media (min-width: 56.25rem) {
  .company-timeline .wrapper .event {
    max-width: calc(50% - 34px);
  }
}
.company-timeline .wrapper .event .img {
  display: block;
  margin-bottom: 1.25rem;
}
@media (min-width: 36rem) {
  .company-timeline .wrapper .event .img {
    max-width: 8.5rem;
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
.company-timeline .wrapper .event .img + .copy {
  border-top: 1px solid #979797;
}
@media (min-width: 36rem) {
  .company-timeline .wrapper .event .img + .copy {
    border-top: 0;
    border-left: 1px solid #979797;
  }
}
.company-timeline .wrapper .event .copy {
  -webkit-box-ordinal-group: 3;
          order: 2;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  padding: 1rem 0.5rem 0.3125rem;
}
@media (min-width: 36rem) {
  .company-timeline .wrapper .event .copy {
    -webkit-box-ordinal-group: 2;
            order: 1;
    padding: 0.3125rem 1rem;
  }
}
.company-timeline .wrapper .event .copy .displayed-time {
  color: #a29061;
  font-size: 2.25rem;
  line-height: 1.1666666667;
}
.company-timeline .wrapper .event .copy header {
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1666666667;
}
.company-timeline .wrapper .event .copy p {
  margin: 0.25rem 0;
  color: #696969;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
.company-timeline .wrapper .event::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: white;
  border-top: 1px solid #979797;
  border-left: 1px solid #979797;
}
.company-timeline .wrapper .event::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #a29061;
  border: 3px solid white;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company-timeline .wrapper .event:nth-child(odd) {
  clear: both;
  float: right;
}
.company-timeline .wrapper .event:nth-child(odd)::before {
  right: calc(100% - 7px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.company-timeline .wrapper .event:nth-child(odd)::after {
  right: calc(100% + 25px);
}
@media (min-width: 56.25rem) {
  .company-timeline .wrapper .event:nth-child(odd) {
    float: left;
  }
  .company-timeline .wrapper .event:nth-child(odd)::before {
    right: auto;
    left: calc(100% - 7px);
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .company-timeline .wrapper .event:nth-child(odd)::after {
    right: auto;
    left: calc(100% + 25px);
  }
}
.company-timeline .wrapper .event:nth-child(even) {
  clear: both;
  float: right;
}
.company-timeline .wrapper .event:nth-child(even)::before {
  right: calc(100% - 7px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.company-timeline .wrapper .event:nth-child(even)::after {
  right: calc(100% + 25px);
}

.page-contact .content {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 60rem) {
  .page-contact .content {
    display: -webkit-box;
    display: flex;
  }
}
@media (min-width: 60rem) {
  .page-contact .content .text-form {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
  }
}
.page-contact .content .text-form .block {
  padding-right: 0;
  padding-left: 0;
}
.page-contact .content .text-form .block:first-child p:first-child {
  margin-top: 0;
}
.page-contact .content .sidebar {
  margin-top: 5rem;
  color: #2e2e2e;
  line-height: 1.875em;
}
@media (min-width: 60rem) {
  .page-contact .content .sidebar {
    -webkit-box-flex: 1;
            flex: 1 1 27.625rem;
    min-width: 27.625rem;
    max-width: 27.625rem;
    margin-top: 0;
    margin-left: 5rem;
  }
}
.page-contact .content .sidebar .block.google-map {
  margin-bottom: 0.8125rem;
}
.page-contact .content .sidebar strong {
  font-size: 1.375rem;
}
.page-contact .content .sidebar a {
  color: #0f74a8;
  font-weight: 700;
  text-decoration: none;
}

.iw-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  position: relative;
  overflow-x: initial;
}
.iw-listing .logo-mainContact {
  position: relative;
  z-index: 2;
}
.iw-listing .logo-mainContact .wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  max-width: 15rem;
  margin: 0 auto 4rem;
}
.iw-listing .logo-mainContact .wrapper svg {
  width: 100%;
  height: auto;
}
.iw-listing .logo-mainContact .wrapper svg + a {
  margin-top: 1rem;
}
.iw-listing .logo-mainContact .wrapper a {
  color: #0f74a8;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}
.iw-listing .map {
  position: relative;
  margin-bottom: 4rem;
  z-index: 1;
}
.iw-listing .map svg {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .iw-listing .map svg .state {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.iw-listing .map svg .state:hover, .iw-listing .map svg .state:focus {
  fill: #4880c2;
}
.iw-listing .map a {
  position: absolute;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #e5e5e5;
  border: 1px solid white;
  border-radius: 50%;
  -webkit-box-shadow: 5px 5px 14px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 14px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .iw-listing .map a:nth-of-type(1).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.05s;
            animation: easeInBounce 1s linear 0.05s;
  }
  .iw-listing .map a:nth-of-type(2).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.1s;
            animation: easeInBounce 1s linear 0.1s;
  }
  .iw-listing .map a:nth-of-type(3).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.15s;
            animation: easeInBounce 1s linear 0.15s;
  }
  .iw-listing .map a:nth-of-type(4).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.2s;
            animation: easeInBounce 1s linear 0.2s;
  }
  .iw-listing .map a:nth-of-type(5).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.25s;
            animation: easeInBounce 1s linear 0.25s;
  }
  .iw-listing .map a:nth-of-type(6).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.3s;
            animation: easeInBounce 1s linear 0.3s;
  }
  .iw-listing .map a:nth-of-type(7).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.35s;
            animation: easeInBounce 1s linear 0.35s;
  }
  .iw-listing .map a:nth-of-type(8).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.4s;
            animation: easeInBounce 1s linear 0.4s;
  }
  .iw-listing .map a:nth-of-type(9).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.45s;
            animation: easeInBounce 1s linear 0.45s;
  }
  .iw-listing .map a:nth-of-type(10).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.5s;
            animation: easeInBounce 1s linear 0.5s;
  }
  .iw-listing .map a:nth-of-type(11).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.55s;
            animation: easeInBounce 1s linear 0.55s;
  }
  .iw-listing .map a:nth-of-type(12).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.6s;
            animation: easeInBounce 1s linear 0.6s;
  }
  .iw-listing .map a:nth-of-type(13).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.65s;
            animation: easeInBounce 1s linear 0.65s;
  }
  .iw-listing .map a:nth-of-type(14).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.7s;
            animation: easeInBounce 1s linear 0.7s;
  }
  .iw-listing .map a:nth-of-type(15).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.75s;
            animation: easeInBounce 1s linear 0.75s;
  }
  .iw-listing .map a:nth-of-type(16).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.8s;
            animation: easeInBounce 1s linear 0.8s;
  }
  .iw-listing .map a:nth-of-type(17).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.85s;
            animation: easeInBounce 1s linear 0.85s;
  }
  .iw-listing .map a:nth-of-type(18).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.9s;
            animation: easeInBounce 1s linear 0.9s;
  }
  .iw-listing .map a:nth-of-type(19).bounce-in {
    -webkit-animation: easeInBounce 1s linear 0.95s;
            animation: easeInBounce 1s linear 0.95s;
  }
  .iw-listing .map a:nth-of-type(20).bounce-in {
    -webkit-animation: easeInBounce 1s linear 1s;
            animation: easeInBounce 1s linear 1s;
  }
}
.iw-listing .map a svg {
  width: 0.9375rem;
  height: 1.25rem;
}
.iw-listing .locations {
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  background: white;
  border: 1px solid #cfcfcf;
  -webkit-box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.11);
  z-index: 2;
}
.iw-listing .locations .location .toggle {
  font-size: 0.875rem;
  line-height: 1.5;
}
.iw-listing .locations .location .toggle a {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  color: #0f74a8;
  font-weight: 700;
  text-decoration: none;
}
.iw-listing .locations .location .toggle a:first-of-type {
  margin-top: 0.25rem;
}
.iw-listing .locations .location .toggle a svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.iw-listing .locations .location .toggle a svg path {
  fill: currentColor;
}
.iw-listing .locations .location .toggle a:hover, .iw-listing .locations .location .toggle a:focus {
  color: #09547b;
}

.featured-news {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.featured-news .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.8125rem;
  margin-left: -1.8125rem;
}
.featured-news .wrapper > * {
  display: block;
  width: calc(100% - 3.625rem);
  margin-right: 1.8125rem;
  margin-left: 1.8125rem;
  margin-bottom: 4.5rem;
}
@media (min-width: 60rem) {
  .featured-news .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 7.25rem) / 2.0001);
    max-width: calc((100% - 7.25rem) / 2.0001);
  }
}
@supports (display: grid) {
  .featured-news .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 3.625rem;
    grid-row-gap: 4.5rem;
    margin-right: 0;
    margin-bottom: 4.5rem;
    margin-left: 0;
  }
  @media (min-width: 60rem) {
    .featured-news .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  .featured-news .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.featured-news .wrapper > div:first-child .card.news a {
  display: block;
}
.featured-news .wrapper > div:first-child .card.news a .img {
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  min-width: 100%;
  width: 100%;
  max-width: none;
  margin-bottom: 2.375rem;
}
.featured-news .wrapper > div:first-child .card.news a .img:empty {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}
@supports (aspect-ratio: 4/3) {
  .featured-news .wrapper > div:first-child .card.news a .img:empty {
    aspect-ratio: 4/3;
    height: auto;
    padding-bottom: 0;
  }
}
.featured-news .wrapper > div:last-child .card.news {
  margin-bottom: 4.5rem;
}

.filter-bar.news {
  margin-bottom: 1.25rem;
}
.filter-bar.news + hr {
  margin-top: 1.25rem;
}

.news-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.news-listing .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.8125rem;
  margin-left: -1.8125rem;
}
.news-listing .wrapper > * {
  display: block;
  width: calc(100% - 3.625rem);
  margin-right: 1.8125rem;
  margin-left: 1.8125rem;
  margin-bottom: 4.5rem;
}
@media (min-width: 60rem) {
  .news-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 7.25rem) / 2.0001);
    max-width: calc((100% - 7.25rem) / 2.0001);
  }
}
@supports (display: grid) {
  .news-listing .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 3.625rem;
    grid-row-gap: 4.5rem;
    margin-right: 0;
    margin-bottom: 4.5rem;
    margin-left: 0;
  }
  @media (min-width: 60rem) {
    .news-listing .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  .news-listing .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.filter-bar.podcasts {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.podcast-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 2rem;
  overflow-x: hidden;
}
.podcast-listing .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -2.875rem;
  margin-left: -2.875rem;
}
.podcast-listing .wrapper > * {
  display: block;
  width: calc(100% - 5.75rem);
  margin-right: 2.875rem;
  margin-left: 2.875rem;
  margin-bottom: 4.5rem;
}
@media (min-width: 50rem) {
  .podcast-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 11.5rem) / 2.0001);
    max-width: calc((100% - 11.5rem) / 2.0001);
  }
}
@supports (display: grid) {
  .podcast-listing .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 5.75rem;
    grid-row-gap: 4.5rem;
    margin-right: 0;
    margin-bottom: 4.5rem;
    margin-left: 0;
  }
  @media (min-width: 50rem) {
    .podcast-listing .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  .podcast-listing .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.qfr-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.qfr-listing .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}
.qfr-listing .wrapper > * {
  display: block;
  width: calc(100% - 2.5rem);
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 42rem) {
  .qfr-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 5rem) / 2.0001);
    max-width: calc((100% - 5rem) / 2.0001);
  }
}
@supports (display: grid) {
  .qfr-listing .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.5rem;
    grid-row-gap: 3rem;
    margin-right: 0;
    margin-bottom: 3rem;
    margin-left: 0;
  }
  @media (min-width: 42rem) {
    .qfr-listing .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  .qfr-listing .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.tc-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.tc-listing .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}
.tc-listing .wrapper > * {
  display: block;
  width: calc(100% - 2.5rem);
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 42rem) {
  .tc-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 5rem) / 2.0001);
    max-width: calc((100% - 5rem) / 2.0001);
  }
}
@supports (display: grid) {
  .tc-listing .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.5rem;
    grid-row-gap: 3rem;
    margin-right: 0;
    margin-bottom: 3rem;
    margin-left: 0;
  }
  @media (min-width: 42rem) {
    .tc-listing .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  .tc-listing .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.webcam-listing .active,
.webcam-listing .completed {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
.webcam-listing .active .no-results,
.webcam-listing .completed .no-results {
  padding: 5rem 0;
  text-align: center;
}
.webcam-listing .active > header,
.webcam-listing .completed > header {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #d2d2d2;
}
.webcam-listing .active .wrapper,
.webcam-listing .completed .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.3125rem;
  margin-left: -1.3125rem;
}
.webcam-listing .active .wrapper > *,
.webcam-listing .completed .wrapper > * {
  display: block;
  width: calc(100% - 2.625rem);
  margin-right: 1.3125rem;
  margin-left: 1.3125rem;
  margin-bottom: 3rem;
}
@media (min-width: 40rem) {
  .webcam-listing .active .wrapper > *,
.webcam-listing .completed .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 5.25rem) / 2.0001);
    max-width: calc((100% - 5.25rem) / 2.0001);
  }
}
@media (min-width: 60rem) {
  .webcam-listing .active .wrapper > *,
.webcam-listing .completed .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 7.875rem) / 3.0001);
    max-width: calc((100% - 7.875rem) / 3.0001);
  }
}
@supports (display: grid) {
  .webcam-listing .active .wrapper,
.webcam-listing .completed .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.625rem;
    grid-row-gap: 3rem;
    margin-right: 0;
    margin-bottom: 3rem;
    margin-left: 0;
  }
  @media (min-width: 40rem) {
    .webcam-listing .active .wrapper,
.webcam-listing .completed .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 60rem) {
    .webcam-listing .active .wrapper,
.webcam-listing .completed .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .webcam-listing .active .wrapper > *,
.webcam-listing .completed .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.project-location-detail {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 60rem) {
  .project-location-detail {
    display: -webkit-box;
    display: flex;
  }
}
@media print {
  .project-location-detail {
    display: -webkit-box;
    display: flex;
    margin: 2rem 0 0;
  }
}
@media print {
  .project-location-detail .primary {
    -webkit-box-ordinal-group: 3;
            order: 2;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: 100%;
  }
}
@media (min-width: 60rem) {
  .project-location-detail .primary {
    -webkit-box-ordinal-group: 2;
            order: 1;
    -webkit-box-flex: 1;
            flex: 1 1 auto;
  }
}
.project-location-detail .primary .images {
  margin-bottom: 4.125rem;
}
@media print {
  .project-location-detail .primary .images {
    margin-bottom: 2rem;
  }
}
.project-location-detail .primary .images .featured {
  margin-bottom: 0.625rem;
}
.project-location-detail .primary .images .featured a:not(.active) {
  display: none;
}
.project-location-detail .primary .images .thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.625rem;
}
@media print {
  .project-location-detail .primary .images .thumbnails {
    display: none;
  }
}
.project-location-detail .primary .images .thumbnails a:hover, .project-location-detail .primary .images .thumbnails a:focus, .project-location-detail .primary .images .thumbnails a.active {
  outline: 2px solid #0f74a8;
}
.project-location-detail .primary .block {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-right: 0;
  padding-left: 0;
}
.project-location-detail .primary .block:first-child {
  margin-top: 0;
}
.project-location-detail .sidebar {
  margin-bottom: 6rem;
}
@media print {
  .project-location-detail .sidebar {
    -webkit-box-ordinal-group: 2;
            order: 1;
    -webkit-box-flex: 1;
            flex: 1 1 34%;
    min-width: 34%;
    max-width: 34%;
    margin-right: 1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 60rem) {
  .project-location-detail .sidebar {
    -webkit-box-ordinal-group: 3;
            order: 2;
    -webkit-box-flex: 1;
            flex: 1 1 20rem;
    min-width: 20rem;
    max-width: 20rem;
    margin-bottom: 0;
    margin-left: 6rem;
  }
}
.project-location-detail .sidebar .contact {
  padding: 1.5rem 2.5rem;
  text-align: center;
  border: 1px solid #e7e7e7;
}
.project-location-detail .sidebar .contact svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
}
.project-location-detail .sidebar .contact a {
  display: inline-block;
}
.project-location-detail .sidebar .contact a:first-of-type {
  margin-top: 0.75rem;
}
.project-location-detail .sidebar .contact a.rd-button {
  width: 12rem;
  margin-top: 2.5rem;
}
@media print {
  .project-location-detail .sidebar .contact a.rd-button {
    display: none;
  }
}
@media (min-width: 60rem) {
  .project-location-detail .sidebar .contact a.rd-button {
    width: 100%;
  }
}
.project-location-detail .sidebar .contact a.rd-button + .rd-button, .project-location-detail .sidebar .contact .block.form .freeform-row .freeform-column a.rd-button + button, .block.form .freeform-row .freeform-column .project-location-detail .sidebar .contact a.rd-button + button, .project-location-detail .sidebar .contact .site-search a.rd-button + button, .site-search .project-location-detail .sidebar .contact a.rd-button + button {
  margin-top: 1rem;
}
.project-location-detail .sidebar .contact + .facts {
  margin-top: 6rem;
}
@media print {
  .project-location-detail .sidebar .contact + .facts {
    margin-top: 2rem;
  }
}
.project-location-detail .sidebar .contact + .sqf-certified {
  margin-top: 3rem;
}
@media print {
  .project-location-detail .sidebar .contact + .sqf-certified {
    margin-top: 2rem;
  }
}
.project-location-detail .sidebar .sqf-certified {
  margin-bottom: 3rem;
}
@media print {
  .project-location-detail .sidebar .sqf-certified {
    margin-bottom: 1.5rem;
  }
}
.project-location-detail .sidebar .sqf-certified svg {
  display: block;
  width: 100%;
  max-width: 10rem;
  margin: 0 auto;
  height: auto;
}
.project-location-detail .sidebar .facts .fact {
  color: #2e2e2e;
  text-align: center;
}
@media print {
  .project-location-detail .sidebar .facts .fact {
    font-size: 8pt;
    text-align: left;
  }
}
.project-location-detail .sidebar .facts .fact:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media print {
  .project-location-detail .sidebar .facts .fact:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.project-location-detail .sidebar .facts .fact header {
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.125rem;
}
@media print {
  .project-location-detail .sidebar .facts .fact header {
    font-size: 11pt;
  }
}
.project-location-detail .sidebar .facts .fact header + p,
.project-location-detail .sidebar .facts .fact header + ul {
  margin-top: 0.25rem;
}
.project-location-detail .sidebar .facts .fact ul {
  list-style-position: inside;
  margin: 1em 0;
  padding: 0;
}
@media print {
  .project-location-detail .sidebar .facts .fact ul {
    list-style-position: outside;
    padding-left: 1rem;
  }
}

.project-case-study-detail {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 2rem;
}
@media print {
  .project-case-study-detail {
    margin-top: 0;
    margin-bottom: 0;
  }
  .project-case-study-detail ~ section {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 40rem) {
  .project-case-study-detail header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.project-case-study-detail header .copy h1 {
  margin-bottom: 2rem;
}
@media print {
  .project-case-study-detail header .copy h1 {
    margin-bottom: 0;
    font-size: 14pt;
  }
}
@media (min-width: 40rem) {
  .project-case-study-detail header .copy h1 {
    margin-right: 4rem;
    margin-bottom: 0;
  }
}
.project-case-study-detail header .share-download {
  display: -webkit-box;
  display: flex;
}
@media print {
  .project-case-study-detail header .share-download {
    display: none !important;
  }
}
.project-case-study-detail header .share-download .download {
  margin-left: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.project-case-study-detail header .share-download .download svg {
  margin: 0;
}
.project-case-study-detail ~ .prev-next {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 8rem;
}
@media print {
  .project-case-study-detail ~ .prev-next {
    display: none !important;
  }
}
@media (min-width: 32rem) {
  .project-case-study-detail ~ .prev-next {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
.project-case-study-detail ~ .prev-next .prev,
.project-case-study-detail ~ .prev-next .next {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media (min-width: 32rem) {
  .project-case-study-detail ~ .prev-next .prev,
.project-case-study-detail ~ .prev-next .next {
    max-width: 44%;
  }
}
.project-case-study-detail ~ .prev-next .prev header,
.project-case-study-detail ~ .prev-next .next header {
  margin: 1.5rem 0 0.25rem;
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.1363636364;
}
.project-case-study-detail ~ .prev-next .prev .location,
.project-case-study-detail ~ .prev-next .next .location {
  color: #989898;
}
.project-case-study-detail ~ .prev-next .prev {
  -webkit-box-align: start;
          align-items: flex-start;
  text-align: left;
}
.project-case-study-detail ~ .prev-next .next {
  margin-top: 2.5rem;
  -webkit-box-align: end;
          align-items: flex-end;
  text-align: right;
}
@media (min-width: 32rem) {
  .project-case-study-detail ~ .prev-next .next {
    margin-top: 0;
  }
}

.featured-properties {
  position: relative;
  margin-top: 2.375rem;
}
.featured-properties.initialized {
  padding-bottom: 3rem;
}
.featured-properties .slide {
  pointer-events: none;
  opacity: 0.4;
}
@media (max-width: 59.9375rem) {
  .featured-properties .slide.tns-slide-active + .tns-slide-active {
    pointer-events: auto;
    opacity: 1;
  }
  .featured-properties .slide.tns-slide-active + .tns-slide-active + .tns-slide-active {
    pointer-events: none;
    opacity: 0.4;
  }
}
@media (min-width: 60rem) and (max-width: 74.9375rem) {
  .featured-properties .slide.tns-slide-active + .tns-slide-active {
    pointer-events: auto;
    opacity: 1;
  }
  .featured-properties .slide.tns-slide-active + .tns-slide-active + .tns-slide-active {
    pointer-events: auto;
    opacity: 1;
  }
  .featured-properties .slide.tns-slide-active + .tns-slide-active + .tns-slide-active + .tns-slide-active {
    pointer-events: none;
    opacity: 0.4;
  }
}
@media (min-width: 75rem) {
  .featured-properties .slide.tns-slide-active + .tns-slide-active {
    pointer-events: auto;
    opacity: 1;
  }
  .featured-properties .slide.tns-slide-active + .tns-slide-active + .tns-slide-active {
    pointer-events: none;
    opacity: 0.4;
  }
}
.featured-properties:not(.initialized) .slider {
  width: 100% !important;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
}
.featured-properties:not(.initialized) .slider .slide {
  display: block !important;
  width: 100% !important;
  max-width: 77rem;
  margin: 0 auto;
  padding-left: 16px;
}
.featured-properties:not(.initialized) .slider .slide.tns-slide-cloned {
  display: none !important;
}
.featured-properties .tns-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 0 1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.featured-properties .tns-nav button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 3.375rem;
  height: 0.25rem;
  margin: 0.25rem;
  padding: 0;
  background-color: #ccc;
  border: 0;
  border-radius: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .featured-properties .tns-nav button {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.featured-properties .tns-nav button.tns-nav-active, .featured-properties .tns-nav button:hover, .featured-properties .tns-nav button:focus {
  background-color: #0f74a8;
}
.featured-properties .controls .prev,
.featured-properties .controls .next {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 3rem);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #0f74a8;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.featured-properties .controls .prev svg,
.featured-properties .controls .next svg {
  width: 50%;
  height: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.featured-properties .controls .prev svg path,
.featured-properties .controls .next svg path {
  fill: white;
}
.featured-properties .controls .prev {
  left: 1rem;
}
.featured-properties .controls .prev svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.featured-properties .controls .next {
  right: 1rem;
}
.featured-properties .controls .next svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.property-listing {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 2.375rem;
  overflow-x: hidden;
}
.property-listing .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.3125rem;
  margin-left: -1.3125rem;
}
.property-listing .wrapper > * {
  display: block;
  width: calc(100% - 2.625rem);
  margin-right: 1.3125rem;
  margin-left: 1.3125rem;
  margin-bottom: 3rem;
}
@media (min-width: 40rem) {
  .property-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 5.25rem) / 2.0001);
    max-width: calc((100% - 5.25rem) / 2.0001);
  }
}
@media (min-width: 60rem) {
  .property-listing .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 7.875rem) / 3.0001);
    max-width: calc((100% - 7.875rem) / 3.0001);
  }
}
@supports (display: grid) {
  .property-listing .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.625rem;
    grid-row-gap: 3rem;
    margin-right: 0;
    margin-bottom: 3rem;
    margin-left: 0;
  }
  @media (min-width: 40rem) {
    .property-listing .wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (min-width: 60rem) {
    .property-listing .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .property-listing .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.property-detail {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  margin-top: 2.375rem;
}
@media print {
  .property-detail .gallery-overview {
    float: left;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    width: 50%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 54rem) {
  .property-detail .gallery-overview {
    display: -webkit-box;
    display: flex;
  }
}
.property-detail .gallery-overview .images {
  margin-bottom: 4.125rem;
}
@media print {
  .property-detail .gallery-overview .images {
    margin: 1rem 0;
  }
}
@media (min-width: 54rem) {
  .property-detail .gallery-overview .images {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    margin-right: 3rem;
    margin-bottom: 0;
  }
}
.property-detail .gallery-overview .images .empty {
  position: relative;
  height: 0;
  padding-bottom: 62.5%;
  background-color: #d8d8d8;
}
@supports (aspect-ratio: 16/10) {
  .property-detail .gallery-overview .images .empty {
    aspect-ratio: 16/10;
    height: 0;
    padding-bottom: 0;
  }
}
.property-detail .gallery-overview .images .empty::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(/dist/svgs/tippmann-group-icon.svg);
  background-position: center;
  background-size: 75%;
  background-repeat: no-repeat;
}
.property-detail .gallery-overview .images .featured {
  margin-bottom: 0.625rem;
}
.property-detail .gallery-overview .images .featured a:not(.active) {
  display: none;
}
.property-detail .gallery-overview .images .thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.625rem;
}
@media print {
  .property-detail .gallery-overview .images .thumbnails {
    display: none !important;
  }
}
.property-detail .gallery-overview .images .thumbnails a:hover, .property-detail .gallery-overview .images .thumbnails a:focus, .property-detail .gallery-overview .images .thumbnails a.active {
  outline: 2px solid #0f74a8;
}
@media (min-width: 54rem) {
  .property-detail .gallery-overview .overview {
    -webkit-box-flex: 1;
            flex: 1 1 23.75rem;
    min-width: 23.75rem;
    max-width: 23.75rem;
  }
}
@media print {
  .property-detail .gallery-overview .overview {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    margin-right: 3rem;
  }
}
.property-detail .gallery-overview .overview .address {
  text-transform: none;
}
@media print {
  .property-detail .gallery-overview .overview .address {
    font-size: 14pt;
    font-weight: 700;
  }
}
.property-detail .gallery-overview .overview .location {
  margin-top: 0.25rem;
}
.property-detail .gallery-overview .overview .price {
  margin: 1rem 0;
  color: #2e2e2e;
  font-weight: 700;
  text-transform: uppercase;
}
.property-detail .gallery-overview .overview .buttons {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem -0.625rem 2rem;
}
@media print {
  .property-detail .gallery-overview .overview .buttons {
    display: none !important;
  }
}
.property-detail .gallery-overview .overview .buttons .rd-button, .property-detail .gallery-overview .overview .buttons .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .buttons button, .property-detail .gallery-overview .overview .buttons .site-search button, .site-search .property-detail .gallery-overview .overview .buttons button {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  margin: 0.625rem;
}
.property-detail .gallery-overview .overview .buttons .rd-button.crexi, .property-detail .gallery-overview .overview .buttons .block.form .freeform-row .freeform-column button.crexi, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .buttons button.crexi, .property-detail .gallery-overview .overview .buttons .site-search button.crexi, .site-search .property-detail .gallery-overview .overview .buttons button.crexi {
  border-color: #0f74a8;
}
.property-detail .gallery-overview .overview .buttons .rd-button.crexi:hover, .property-detail .gallery-overview .overview .buttons .block.form .freeform-row .freeform-column button.crexi:hover, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .buttons button.crexi:hover, .property-detail .gallery-overview .overview .buttons .site-search button.crexi:hover, .site-search .property-detail .gallery-overview .overview .buttons button.crexi:hover, .property-detail .gallery-overview .overview .buttons .rd-button.crexi:focus, .property-detail .gallery-overview .overview .buttons .block.form .freeform-row .freeform-column button.crexi:focus, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .buttons button.crexi:focus, .property-detail .gallery-overview .overview .buttons .site-search button.crexi:focus, .site-search .property-detail .gallery-overview .overview .buttons button.crexi:focus {
  border-color: #053953;
}
.property-detail .gallery-overview .overview .buttons .rd-button.a2a_dd, .property-detail .gallery-overview .overview .buttons .block.form .freeform-row .freeform-column button.a2a_dd, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .buttons button.a2a_dd, .property-detail .gallery-overview .overview .buttons .site-search button.a2a_dd, .site-search .property-detail .gallery-overview .overview .buttons button.a2a_dd {
  -webkit-box-flex: 0;
          flex-grow: 0;
}
.property-detail .gallery-overview .overview .agent {
  position: relative;
  margin: 2rem 0;
  padding: 1.375rem 2rem;
  text-align: center;
  border: 3px solid #0f74a8;
}
@media print {
  .property-detail .gallery-overview .overview .agent {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    margin-bottom: 0;
    text-align: left;
  }
}
.property-detail .gallery-overview .overview .agent.has-photo {
  margin-top: 6.1875rem;
}
@media print {
  .property-detail .gallery-overview .overview .agent.has-photo {
    margin-top: 2rem;
  }
}
.property-detail .gallery-overview .overview .agent.has-photo .img {
  position: relative;
  width: 8.375rem;
  height: 8.375rem;
  margin: -5.5625rem auto 0.8125rem;
  background-color: #d8d8d8;
  border-radius: 50%;
  overflow: hidden;
}
@media print {
  .property-detail .gallery-overview .overview .agent.has-photo .img {
    -webkit-box-flex: 1;
            flex: 1 1 8.375rem;
    min-width: 8.375rem;
    max-width: 8.375rem;
    margin: 0 2rem 0 0;
  }
}
.property-detail .gallery-overview .overview .agent.has-photo .img picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.property-detail .gallery-overview .overview .agent.has-photo .img picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.property-detail .gallery-overview .overview .agent header {
  color: #2e2e2e;
  font-size: 1.25rem;
}
.property-detail .gallery-overview .overview .agent .rd-button, .property-detail .gallery-overview .overview .agent .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .agent button, .property-detail .gallery-overview .overview .agent .site-search button, .site-search .property-detail .gallery-overview .overview .agent button {
  margin-top: 1rem;
}
@media print {
  .property-detail .gallery-overview .overview .agent .rd-button, .property-detail .gallery-overview .overview .agent .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .agent button, .property-detail .gallery-overview .overview .agent .site-search button, .site-search .property-detail .gallery-overview .overview .agent button {
    display: block;
    margin-top: 0;
    padding: 0;
    color: white;
    text-transform: none;
    background-color: transparent !important;
    border: 0;
  }
  .property-detail .gallery-overview .overview .agent .rd-button span, .property-detail .gallery-overview .overview .agent .block.form .freeform-row .freeform-column button span, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .agent button span, .property-detail .gallery-overview .overview .agent .site-search button span, .site-search .property-detail .gallery-overview .overview .agent button span {
    display: none;
  }
  .property-detail .gallery-overview .overview .agent .rd-button::after, .property-detail .gallery-overview .overview .agent .block.form .freeform-row .freeform-column button::after, .block.form .freeform-row .freeform-column .property-detail .gallery-overview .overview .agent button::after, .property-detail .gallery-overview .overview .agent .site-search button::after, .site-search .property-detail .gallery-overview .overview .agent button::after {
    content: "Email: " attr(data-email);
    display: block;
    color: #0f74a8;
  }
}
.property-detail .specs-details .specifications,
.property-detail .specs-details .description {
  margin: 5rem 0 1rem;
}
.property-detail .specs-details .specifications header,
.property-detail .specs-details .description header {
  margin-bottom: 1.25rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}
body[data-fonts-loaded=true] .property-detail .specs-details .specifications header,
body[data-fonts-loaded=true] .property-detail .specs-details .description header {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media print {
  .property-detail .specs-details .specifications header,
.property-detail .specs-details .description header {
    display: none;
  }
}
.property-detail .specs-details .specifications .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
@supports (display: grid) {
  .property-detail .specs-details .specifications .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 8rem);
    grid-column-gap: 1rem;
  }
  @media (min-width: 20em) {
    .property-detail .specs-details .specifications .wrapper {
      grid-column-gap: calc(1rem + 2 * (100vw - 20em) / 60);
    }
  }
  @media (min-width: 80em) {
    .property-detail .specs-details .specifications .wrapper {
      grid-column-gap: 3rem;
    }
  }
}
.property-detail .specs-details .specifications .wrapper > div {
  margin-bottom: 3rem;
}
.property-detail .specs-details .specifications .wrapper > div .svg {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  width: 1.6875rem;
  height: 1.6875rem;
}
.property-detail .specs-details .specifications .wrapper > div .svg svg path {
  fill: black;
}
.property-detail .specs-details .specifications .wrapper > div .label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  max-width: 100%;
  margin: 0.25rem 0;
  height: 1.75rem;
  color: #949494;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
}
.property-detail .specs-details .specifications .wrapper > div .value {
  max-width: 100%;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.property-detail .specs-details .specifications .wrapper > div .value span:not(:last-of-type)::after {
  content: ", ";
}
@media print {
  .property-detail .specs-details .embed-container {
    display: none !important;
  }
}
.property-detail .specs-details .google-map {
  width: 100%;
  height: 21.875rem;
  margin: 3rem 0;
}
@media print {
  .property-detail .specs-details .google-map {
    clear: both;
    margin: 3rem 0 1rem;
  }
}
.property-detail .specs-details .google-map iframe {
  width: 100%;
  height: 100%;
}
.property-detail .specs-details .buttons {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.property-detail .specs-details .buttons .rd-button, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button, .property-detail .specs-details .buttons .site-search button, .site-search .property-detail .specs-details .buttons button {
  -webkit-box-flex: 0;
          flex: 0 1 auto;
  margin: 0.625rem;
}
@media print {
  .property-detail .specs-details .buttons .rd-button.info-sheet, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.info-sheet, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.info-sheet, .property-detail .specs-details .buttons .site-search button.info-sheet, .site-search .property-detail .specs-details .buttons button.info-sheet {
    display: none !important;
  }
}
.property-detail .specs-details .buttons .rd-button.crexi, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi, .property-detail .specs-details .buttons .site-search button.crexi, .site-search .property-detail .specs-details .buttons button.crexi {
  border-color: #0f74a8;
}
@media print {
  .property-detail .specs-details .buttons .rd-button.crexi, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi, .property-detail .specs-details .buttons .site-search button.crexi, .site-search .property-detail .specs-details .buttons button.crexi {
    display: block;
    padding: 0;
    color: white;
    text-transform: none;
    background-color: transparent !important;
    border: 0;
  }
  .property-detail .specs-details .buttons .rd-button.crexi span, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi span, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi span, .property-detail .specs-details .buttons .site-search button.crexi span, .site-search .property-detail .specs-details .buttons button.crexi span {
    display: none;
  }
  .property-detail .specs-details .buttons .rd-button.crexi::after, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi::after, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi::after, .property-detail .specs-details .buttons .site-search button.crexi::after, .site-search .property-detail .specs-details .buttons button.crexi::after {
    content: "Crexi URL: " attr(href);
    display: block;
    color: #0f74a8;
  }
}
.property-detail .specs-details .buttons .rd-button.crexi:hover, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi:hover, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi:hover, .property-detail .specs-details .buttons .site-search button.crexi:hover, .site-search .property-detail .specs-details .buttons button.crexi:hover, .property-detail .specs-details .buttons .rd-button.crexi:focus, .property-detail .specs-details .buttons .block.form .freeform-row .freeform-column button.crexi:focus, .block.form .freeform-row .freeform-column .property-detail .specs-details .buttons button.crexi:focus, .property-detail .specs-details .buttons .site-search button.crexi:focus, .site-search .property-detail .specs-details .buttons button.crexi:focus {
  border-color: #053953;
}

.search-results .header {
  margin-bottom: 2rem;
}
.search-results .header + .site-search {
  margin-top: 2rem;
}
.search-results .search-result header .business-unit {
  color: #2e2e2e;
  font-weight: 400;
  font-size: 0.75rem;
}
body[data-fonts-loaded=true] .search-results .search-result header .business-unit {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .block.countdownTimer {
  margin-top: 1px;
  margin-bottom: 1px;
}
.homepage .company-statistic {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 2;
}
@media (min-width: 60rem) {
  .homepage .company-statistic {
    display: -webkit-box;
    display: flex;
  }
}
.homepage .company-statistic .left {
  position: relative;
  padding-top: 8.1875rem;
  padding-bottom: 19.8125rem;
}
@media (min-width: 60rem) {
  .homepage .company-statistic .left {
    -webkit-box-flex: 1;
            flex: 1 1 57%;
  }
}
.homepage .company-statistic .left > picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  z-index: 1;
}
.homepage .company-statistic .left > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.homepage .company-statistic .left .wrapper {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 60rem) {
  .homepage .company-statistic .left .wrapper {
    max-width: 43.875rem;
    padding-right: 3rem;
  }
}
.homepage .company-statistic .left .wrapper .copy {
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (min-width: 60rem) {
  .homepage .company-statistic .left .wrapper .copy {
    max-width: 33.75rem;
    text-align: left;
  }
}
.homepage .company-statistic .left .wrapper .copy .byline {
  margin-bottom: 0.5rem;
  color: #0f74a8;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy .byline {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .company-statistic .left .wrapper .copy .byline.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy .byline.slide-in {
    -webkit-transition: all 1s ease-in-out 0.25s;
    transition: all 1s ease-in-out 0.25s;
  }
}
.homepage .company-statistic .left .wrapper .copy header {
  margin-bottom: 2.25rem;
  color: #2e2e2e;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (min-width: 20rem) {
  .homepage .company-statistic .left .wrapper .copy header {
    font-size: calc(1.75rem + 1.375 * (100vw - 20rem) / 44);
  }
}
@media (min-width: 64rem) {
  .homepage .company-statistic .left .wrapper .copy header {
    font-size: 3.125rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy header {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
body[data-fonts-loaded=true] .homepage .company-statistic .left .wrapper .copy header {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .company-statistic .left .wrapper .copy header.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy header.slide-in {
    -webkit-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
  }
}
.homepage .company-statistic .left .wrapper .copy p {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy p {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .company-statistic .left .wrapper .copy p.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy p.slide-in {
    -webkit-transition: all 1s ease-in-out 0.75s;
    transition: all 1s ease-in-out 0.75s;
  }
}
.homepage .company-statistic .left .wrapper .copy .rd-button, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button, .homepage .company-statistic .left .wrapper .copy .site-search button, .site-search .homepage .company-statistic .left .wrapper .copy button {
  margin-top: 2.25rem;
  border-color: #0f74a8;
  -webkit-box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy .rd-button, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button, .homepage .company-statistic .left .wrapper .copy .site-search button, .site-search .homepage .company-statistic .left .wrapper .copy button {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .company-statistic .left .wrapper .copy .rd-button.slide-in, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button.slide-in, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button.slide-in, .homepage .company-statistic .left .wrapper .copy .site-search button.slide-in, .site-search .homepage .company-statistic .left .wrapper .copy button.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .company-statistic .left .wrapper .copy .rd-button.slide-in, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button.slide-in, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button.slide-in, .homepage .company-statistic .left .wrapper .copy .site-search button.slide-in, .site-search .homepage .company-statistic .left .wrapper .copy button.slide-in {
    -webkit-transition: all 1s ease-in-out 1s;
    transition: all 1s ease-in-out 1s;
  }
}
.homepage .company-statistic .left .wrapper .copy .rd-button:hover, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button:hover, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button:hover, .homepage .company-statistic .left .wrapper .copy .site-search button:hover, .site-search .homepage .company-statistic .left .wrapper .copy button:hover, .homepage .company-statistic .left .wrapper .copy .rd-button:focus, .homepage .company-statistic .left .wrapper .copy .block.form .freeform-row .freeform-column button:focus, .block.form .freeform-row .freeform-column .homepage .company-statistic .left .wrapper .copy button:focus, .homepage .company-statistic .left .wrapper .copy .site-search button:focus, .site-search .homepage .company-statistic .left .wrapper .copy button:focus {
  border-color: #053953;
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right {
    -webkit-box-flex: 1;
            flex: 1 1 43%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .homepage .company-statistic .right > picture {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
  }
  .homepage .company-statistic .right > picture img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.homepage .company-statistic .right .copy {
  position: relative;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3.25rem;
  color: white;
  background-color: #a29061;
}
@media (min-width: 20rem) {
  .homepage .company-statistic .right .copy {
    padding-left: calc(3.25rem + 3 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy {
    padding-left: 6.25rem;
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy {
    padding-bottom: 0.625rem;
  }
  .homepage .company-statistic .right .copy::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 2.375rem;
    background-color: #a29061;
  }
}
.homepage .company-statistic .right .copy::before {
  content: "";
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 0.875rem;
  width: 0;
  border-left: 4px solid white;
}
@media (min-width: 20rem) {
  .homepage .company-statistic .right .copy::before {
    left: calc(0.875rem + 3 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy::before {
    left: 3.875rem;
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy::before {
    bottom: 0.625rem;
  }
}
.homepage .company-statistic .right .copy .stat-wrapper {
  display: -webkit-box;
  display: flex;
  font-size: 4.625rem;
  font-size: 4.625rem;
  line-height: 1;
  text-shadow: 5px 8px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .homepage .company-statistic .right .copy .stat-wrapper {
    font-size: calc(4.625rem + 4.625 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy .stat-wrapper {
    font-size: 9.25rem;
  }
}
@media (min-width: 60rem) {
  .homepage .company-statistic .right .copy .stat-wrapper {
    font-size: calc(4.625rem + 4.625 * (100vw - 60rem) / 20);
  }
}
@media (min-width: 80rem) {
  .homepage .company-statistic .right .copy .stat-wrapper {
    font-size: 9.25rem;
  }
}
body[data-fonts-loaded=true] .homepage .company-statistic .right .copy .stat-wrapper {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .company-statistic .right .copy .desc {
  font-size: 1.3125rem;
  line-height: 1.1428571429;
}
.homepage .product-highlight {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11.5rem;
  padding-bottom: 16.5rem;
  z-index: 1;
}
.homepage .product-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #003366;
  z-index: 1;
}
.homepage .product-highlight > picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.25;
  z-index: 2;
}
.homepage .product-highlight > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.homepage .product-highlight .wrapper {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  z-index: 3;
}
.homepage .product-highlight .wrapper .copy {
  color: white;
  text-align: center;
}
@media (min-width: 48rem) {
  .homepage .product-highlight .wrapper .copy {
    max-width: 31.25rem;
    text-align: right;
  }
}
.homepage .product-highlight .wrapper .copy .byline {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy .byline {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .product-highlight .wrapper .copy .byline.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy .byline.slide-in {
    -webkit-transition: all 1s ease-in-out 0.25s;
    transition: all 1s ease-in-out 0.25s;
  }
}
.homepage .product-highlight .wrapper .copy header {
  margin-bottom: 2.25rem;
  color: inherit;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (min-width: 20rem) {
  .homepage .product-highlight .wrapper .copy header {
    font-size: calc(1.75rem + 1.375 * (100vw - 20rem) / 44);
  }
}
@media (min-width: 64rem) {
  .homepage .product-highlight .wrapper .copy header {
    font-size: 3.125rem;
  }
}
body[data-fonts-loaded=true] .homepage .product-highlight .wrapper .copy header {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy header {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .product-highlight .wrapper .copy header.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy header.slide-in {
    -webkit-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
  }
}
.homepage .product-highlight .wrapper .copy p {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy p {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .product-highlight .wrapper .copy p.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy p.slide-in {
    -webkit-transition: all 1s ease-in-out 0.75s;
    transition: all 1s ease-in-out 0.75s;
  }
}
.homepage .product-highlight .wrapper .copy .rd-button, .homepage .product-highlight .wrapper .copy .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .homepage .product-highlight .wrapper .copy button, .homepage .product-highlight .wrapper .copy .site-search button, .site-search .homepage .product-highlight .wrapper .copy button {
  margin-top: 2.25rem;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy .rd-button, .homepage .product-highlight .wrapper .copy .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .homepage .product-highlight .wrapper .copy button, .homepage .product-highlight .wrapper .copy .site-search button, .site-search .homepage .product-highlight .wrapper .copy button {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .product-highlight .wrapper .copy .rd-button.slide-in, .homepage .product-highlight .wrapper .copy .block.form .freeform-row .freeform-column button.slide-in, .block.form .freeform-row .freeform-column .homepage .product-highlight .wrapper .copy button.slide-in, .homepage .product-highlight .wrapper .copy .site-search button.slide-in, .site-search .homepage .product-highlight .wrapper .copy button.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .product-highlight .wrapper .copy .rd-button.slide-in, .homepage .product-highlight .wrapper .copy .block.form .freeform-row .freeform-column button.slide-in, .block.form .freeform-row .freeform-column .homepage .product-highlight .wrapper .copy button.slide-in, .homepage .product-highlight .wrapper .copy .site-search button.slide-in, .site-search .homepage .product-highlight .wrapper .copy button.slide-in {
    -webkit-transition: all 1s ease-in-out 1s;
    transition: all 1s ease-in-out 1s;
  }
}
.homepage .business-units {
  max-width: 81.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  position: relative;
  margin-top: -3rem;
  margin-bottom: -10.8125rem;
  padding-right: 0;
  padding-left: 3.125rem;
  z-index: 2;
}
@media (min-width: 60rem) {
  .homepage .business-units {
    display: -webkit-box;
    display: flex;
    margin-bottom: -2.625rem;
  }
}
.homepage .business-units .left {
  position: relative;
  padding: 3.75rem;
  text-align: center;
  background: white;
  -webkit-box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 12px 24px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (min-width: 60rem) {
  .homepage .business-units .left {
    -webkit-box-flex: 1;
            flex: 1 1 48%;
    text-align: left;
  }
}
.homepage .business-units .left header {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  color: #2e2e2e;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 20rem) {
  .homepage .business-units .left header {
    font-size: calc(1.75rem + 1.375 * (100vw - 20rem) / 61.25);
  }
}
@media (min-width: 81.25rem) {
  .homepage .business-units .left header {
    font-size: 3.125rem;
  }
}
body[data-fonts-loaded=true] .homepage .business-units .left header {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .business-units .left header::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 6px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.homepage .business-units .left .business-unit {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .business-units .left .business-unit {
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
}
.homepage .business-units .left .business-unit:not(:last-child) {
  margin-bottom: 2.5rem;
}
.homepage .business-units .left .business-unit.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .business-units .left .business-unit.slide-in:nth-of-type(1) {
    -webkit-transition: all 1s ease-in-out 0.125s;
    transition: all 1s ease-in-out 0.125s;
  }
  .homepage .business-units .left .business-unit.slide-in:nth-of-type(2) {
    -webkit-transition: all 1s ease-in-out 0.25s;
    transition: all 1s ease-in-out 0.25s;
  }
  .homepage .business-units .left .business-unit.slide-in:nth-of-type(3) {
    -webkit-transition: all 1s ease-in-out 0.375s;
    transition: all 1s ease-in-out 0.375s;
  }
  .homepage .business-units .left .business-unit.slide-in:nth-of-type(4) {
    -webkit-transition: all 1s ease-in-out 0.5s;
    transition: all 1s ease-in-out 0.5s;
  }
  .homepage .business-units .left .business-unit.slide-in:nth-of-type(5) {
    -webkit-transition: all 1s ease-in-out 0.625s;
    transition: all 1s ease-in-out 0.625s;
  }
}
.homepage .business-units .left .business-unit a {
  display: block;
}
.homepage .business-units .left .business-unit a svg,
.homepage .business-units .left .business-unit a img {
  display: block;
  width: 100%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 60rem) {
  .homepage .business-units .left .business-unit a svg,
.homepage .business-units .left .business-unit a img {
    margin-left: 0;
  }
}
.homepage .business-units .left .business-unit p {
  color: #666;
}
.homepage .business-units .right {
  position: relative;
  z-index: 1;
}
@media (min-width: 60rem) {
  .homepage .business-units .right {
    -webkit-box-flex: 1;
            flex: 1 1 52%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .homepage .business-units .right > picture {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
  }
  .homepage .business-units .right > picture img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.homepage .business-units .right .copy {
  position: relative;
  top: -1rem;
  max-width: 100%;
  margin-bottom: 7.1875rem;
  margin-left: -3.125rem;
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3.25rem;
  color: white;
  background-color: #a29061;
}
@media (min-width: 20rem) {
  .homepage .business-units .right .copy {
    padding-left: calc(3.25rem + 3 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .business-units .right .copy {
    padding-left: 6.25rem;
  }
}
@media (min-width: 60rem) {
  .homepage .business-units .right .copy {
    top: -3.5rem;
    max-width: 80%;
    margin-bottom: 4.6875rem;
    margin-left: 0;
  }
}
.homepage .business-units .right .copy::before {
  content: "";
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 0.875rem;
  width: 0;
  border-left: 4px solid white;
}
@media (min-width: 20rem) {
  .homepage .business-units .right .copy::before {
    left: calc(0.875rem + 3 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .business-units .right .copy::before {
    left: 3.875rem;
  }
}
.homepage .business-units .right .copy .stat-wrapper {
  display: -webkit-box;
  display: flex;
  font-size: 4.625rem;
  font-size: 4.625rem;
  line-height: 1;
  text-shadow: 5px 8px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .homepage .business-units .right .copy .stat-wrapper {
    font-size: calc(4.625rem + 4.625 * (100vw - 20rem) / 40);
  }
}
@media (min-width: 60rem) {
  .homepage .business-units .right .copy .stat-wrapper {
    font-size: 9.25rem;
  }
}
@media (min-width: 60rem) {
  .homepage .business-units .right .copy .stat-wrapper {
    font-size: calc(4.625rem + 4.625 * (100vw - 60rem) / 21.25);
  }
}
@media (min-width: 81.25rem) {
  .homepage .business-units .right .copy .stat-wrapper {
    font-size: 9.25rem;
  }
}
body[data-fonts-loaded=true] .homepage .business-units .right .copy .stat-wrapper {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .business-units .right .copy .desc {
  font-size: 1.3125rem;
  line-height: 1.1428571429;
}
.homepage .competitive-advantages {
  max-width: 81.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  position: relative;
  margin-top: 0;
  margin-bottom: 6.5rem;
  padding: 0;
  z-index: 1;
  overflow-x: initial;
}
.homepage .competitive-advantages .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}
.homepage .competitive-advantages .wrapper > * {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}
@media (min-width: 60rem) {
  .homepage .competitive-advantages .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc(100% / 3.0001);
    max-width: calc(100% / 3.0001);
  }
}
@supports (display: grid) {
  .homepage .competitive-advantages .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  @media (min-width: 60rem) {
    .homepage .competitive-advantages .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .homepage .competitive-advantages .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.homepage .competitive-advantages .wrapper .advantage {
  position: relative;
  padding: 5.9375rem 3.125rem 11.25rem;
  background-color: #4c4c4c;
}
.homepage .competitive-advantages .wrapper .advantage:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (min-width: 60rem) {
  .homepage .competitive-advantages .wrapper .advantage:not(:last-child) {
    margin-bottom: 0;
  }
}
.homepage .competitive-advantages .wrapper .advantage > picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.16;
  z-index: 1;
  overflow: hidden;
}
.homepage .competitive-advantages .wrapper .advantage > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .competitive-advantages .wrapper .advantage > picture img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
.homepage .competitive-advantages .wrapper .advantage .copy {
  position: relative;
  color: white;
  z-index: 2;
}
.homepage .competitive-advantages .wrapper .advantage .copy .count {
  color: #a29061;
  font-weight: 700;
  font-size: 6.25rem;
  line-height: 1;
}
.homepage .competitive-advantages .wrapper .advantage .copy header {
  font-size: 2rem;
  line-height: 1.1875;
  text-transform: uppercase;
}
body[data-fonts-loaded=true] .homepage .competitive-advantages .wrapper .advantage .copy header {
  font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.homepage .competitive-advantages .wrapper .advantage .rd-button, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button, .homepage .competitive-advantages .wrapper .advantage .site-search button, .site-search .homepage .competitive-advantages .wrapper .advantage button {
  position: absolute;
  top: 100%;
  left: 50%;
  white-space: nowrap;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.homepage .competitive-advantages .wrapper .advantage .rd-button span, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button span, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button span, .homepage .competitive-advantages .wrapper .advantage .site-search button span, .site-search .homepage .competitive-advantages .wrapper .advantage button span {
  display: inline-block;
}
.homepage .competitive-advantages .wrapper .advantage .rd-button span:first-child, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button span:first-child, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button span:first-child, .homepage .competitive-advantages .wrapper .advantage .site-search button span:first-child, .site-search .homepage .competitive-advantages .wrapper .advantage button span:first-child {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.4375);
          transform: scale(1.4375);
}
.homepage .competitive-advantages .wrapper .advantage .rd-button span:last-child, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button span:last-child, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button span:last-child, .homepage .competitive-advantages .wrapper .advantage .site-search button span:last-child, .site-search .homepage .competitive-advantages .wrapper .advantage button span:last-child {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .homepage .competitive-advantages .wrapper .advantage .rd-button span:last-child, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button span:last-child, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button span:last-child, .homepage .competitive-advantages .wrapper .advantage .site-search button span:last-child, .site-search .homepage .competitive-advantages .wrapper .advantage button span:last-child {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
}
.homepage .competitive-advantages .wrapper .advantage .rd-button:hover, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button:hover, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button:hover, .homepage .competitive-advantages .wrapper .advantage .site-search button:hover, .site-search .homepage .competitive-advantages .wrapper .advantage button:hover, .homepage .competitive-advantages .wrapper .advantage .rd-button:focus, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button:focus, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button:focus, .homepage .competitive-advantages .wrapper .advantage .site-search button:focus, .site-search .homepage .competitive-advantages .wrapper .advantage button:focus {
  background-color: #0f74a8;
  border-color: white;
}
.homepage .competitive-advantages .wrapper .advantage .rd-button:hover span:last-child, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button:hover span:last-child, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button:hover span:last-child, .homepage .competitive-advantages .wrapper .advantage .site-search button:hover span:last-child, .site-search .homepage .competitive-advantages .wrapper .advantage button:hover span:last-child, .homepage .competitive-advantages .wrapper .advantage .rd-button:focus span:last-child, .homepage .competitive-advantages .wrapper .advantage .block.form .freeform-row .freeform-column button:focus span:last-child, .block.form .freeform-row .freeform-column .homepage .competitive-advantages .wrapper .advantage button:focus span:last-child, .homepage .competitive-advantages .wrapper .advantage .site-search button:focus span:last-child, .site-search .homepage .competitive-advantages .wrapper .advantage button:focus span:last-child {
  max-width: 6.75rem;
  margin-left: 1rem;
}
.homepage .competitive-advantages .wrapper .advantage:hover picture img, .homepage .competitive-advantages .wrapper .advantage:focus picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.homepage .latest-news {
  max-width: 77rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1rem;
  overflow-x: hidden;
  overflow-x: hidden;
}
.homepage .latest-news > header {
  margin-bottom: 2rem;
  text-align: center;
}
.homepage .latest-news .wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.125rem;
  margin-left: -1.125rem;
}
.homepage .latest-news .wrapper > * {
  display: block;
  width: calc(100% - 2.25rem);
  margin-right: 1.125rem;
  margin-left: 1.125rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 60rem) {
  .homepage .latest-news .wrapper > * {
    -webkit-box-flex: 1;
            flex: 1 1 auto;
    width: calc((100% - 6.75rem) / 3.0001);
    max-width: calc((100% - 6.75rem) / 3.0001);
  }
}
@supports (display: grid) {
  .homepage .latest-news .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 2.25rem;
    grid-row-gap: 2.25rem;
    margin-right: 0;
    margin-bottom: 2.25rem;
    margin-left: 0;
  }
  @media (min-width: 60rem) {
    .homepage .latest-news .wrapper {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .homepage .latest-news .wrapper > * {
    min-width: 0;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

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