:root {
  --black: #000000;
  --white: #FFFFFF;
  --grey: #D0D1D3;
  --light-grey: #D9D9D9;
  --dark-grey: #6B6C6E;
  --darker-grey: #434242;
  --yellow: #FAB500;
  --orange: #EA8A07;
  --red: #E54A06;
  --blue: #1A47C1;
  --teal: #02CBE0;
  --green: #2FC346;
  --pale-grey: #F7F7F7;
  --paleblue: #E0E6F6;
  --lime: #81C042;
  --black-rgb: 0,0,0;
  --white-rgb: 255,255,255;
  --grey-rgb: 208,209,211;
  --light-grey-rgb: 217,217,217;
  --dark-grey-rgb: 107,108,110;
  --darker-grey-rgb: 67,66,66;
  --yellow-rgb: 250,181,0;
  --orange-rgb: 234,138,7;
  --red-rgb: 229,74,6;
  --blue-rgb: 26,71,193;
  --teal-rgb: 2,203,224;
  --green-rgb: 47,195,70;
  --pale-grey-rgb: 247,247,247;
  --paleblue-rgb: 224,230,246;
  --lime-rgb: 129,192,66;
  --black-button-text: #FFFFFF;
  --white-button-text: #6B6C6E;
  --grey-button-text: #000000;
  --pale-grey-button-text: #000000;
  --light-grey-button-text: #000000;
  --dark-grey-button-text: #FFFFFF;
  --darker-grey-button-text: #FFFFFF;
  --yellow-button-text: #FFFFFF;
  --orange-button-text: #FFFFFF;
  --red-button-text: #FFFFFF;
  --blue-button-text: #FFFFFF;
  --teal-button-text: #FFFFFF;
  --green-button-text: #FFFFFF;
  --lime-button-text: #FFFFFF;
  --paleblue-button-text: #000000;
  --black-button-border: #FFFFFF;
  --white-button-border: #6B6C6E;
  --grey-button-border: #000000;
  --pale-grey-button-border: #F7F7F7;
  --light-grey-button-border: #000000;
  --dark-grey-button-border: #FFFFFF;
  --darker-grey-button-border: #FFFFFF;
  --yellow-button-border: #FAB500;
  --orange-button-border: #EA8A07;
  --red-button-border: #E54A06;
  --blue-button-border: #1A47C1;
  --teal-button-border: #02CBE0;
  --green-button-border: #2FC346;
  --lime-button-border: #81C042;
  --paleblue-button-border: #E0E6F6;
}

* {
  box-sizing: border-box;
  margin-bottom: 0;
}

* + * {
  margin-top: 1em;
}

html {
  font-size: 16px;
}
html.fixedheader body {
  transition: none;
}
html.fixedheader header {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  height: auto;
}
html.fixedheader .breakpoint header {
  background-color: #1A47C1;
  background-color: var(--blue);
}

body {
  color: #000000;
  color: var(--black);
  font-size: 1rem;
  margin: 0;
}
h1 + *, h2 + *, h4 + *, h4 + *, h5 + *, p, ul, li {
  margin-top: 1em;
  margin-bottom: 0;
}

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

h1 {
  font-size: 2.5em;
}
h1 .text--smaller {
  font-size: 0.7em;
  line-height: 0.7em;
}

h2 {
  font-size: 2.5em;
  font-weight: 600;
}

h3 {
  font-size: 2em;
  font-weight: 500;
}

br {
  margin-top: 0;
}

.img-responsive {
  display: inline-block;
}

.background--black {
  background-color: #000000;
  background-color: var(--black);
}

.text--black {
  color: #000000;
  color: var(--black);
}
.text--black h1, .text--black h2, .text--black h3, .text--black h4, .text--black p {
  color: #000000;
  color: var(--black);
}

.background--white {
  background-color: #FFFFFF;
  background-color: var(--white);
}

.text--white {
  color: #FFFFFF;
  color: var(--white);
}
.text--white h1, .text--white h2, .text--white h3, .text--white h4, .text--white p {
  color: #FFFFFF;
  color: var(--white);
}

.background--grey {
  background-color: #D0D1D3;
  background-color: var(--grey);
}

.text--grey {
  color: #D0D1D3;
  color: var(--grey);
}
.text--grey h1, .text--grey h2, .text--grey h3, .text--grey h4, .text--grey p {
  color: #D0D1D3;
  color: var(--grey);
}

.background--light-grey {
  background-color: #D9D9D9;
  background-color: var(--light-grey);
}

.text--light-grey {
  color: #D9D9D9;
  color: var(--light-grey);
}
.text--light-grey h1, .text--light-grey h2, .text--light-grey h3, .text--light-grey h4, .text--light-grey p {
  color: #D9D9D9;
  color: var(--light-grey);
}

.background--dark-grey {
  background-color: #6B6C6E;
  background-color: var(--dark-grey);
}

.text--dark-grey {
  color: #6B6C6E;
  color: var(--dark-grey);
}
.text--dark-grey h1, .text--dark-grey h2, .text--dark-grey h3, .text--dark-grey h4, .text--dark-grey p {
  color: #6B6C6E;
  color: var(--dark-grey);
}

.background--darker-grey {
  background-color: #434242;
  background-color: var(--darker-grey);
}

.text--darker-grey {
  color: #434242;
  color: var(--darker-grey);
}
.text--darker-grey h1, .text--darker-grey h2, .text--darker-grey h3, .text--darker-grey h4, .text--darker-grey p {
  color: #434242;
  color: var(--darker-grey);
}

.background--yellow {
  background-color: #FAB500;
  background-color: var(--yellow);
}

.text--yellow {
  color: #FAB500;
  color: var(--yellow);
}
.text--yellow h1, .text--yellow h2, .text--yellow h3, .text--yellow h4, .text--yellow p {
  color: #FAB500;
  color: var(--yellow);
}

.background--orange {
  background-color: #EA8A07;
  background-color: var(--orange);
}

.text--orange {
  color: #EA8A07;
  color: var(--orange);
}
.text--orange h1, .text--orange h2, .text--orange h3, .text--orange h4, .text--orange p {
  color: #EA8A07;
  color: var(--orange);
}

.background--red {
  background-color: #E54A06;
  background-color: var(--red);
}

.text--red {
  color: #E54A06;
  color: var(--red);
}
.text--red h1, .text--red h2, .text--red h3, .text--red h4, .text--red p {
  color: #E54A06;
  color: var(--red);
}

.background--blue {
  background-color: #1A47C1;
  background-color: var(--blue);
}

.text--blue {
  color: #1A47C1;
  color: var(--blue);
}
.text--blue h1, .text--blue h2, .text--blue h3, .text--blue h4, .text--blue p {
  color: #1A47C1;
  color: var(--blue);
}

.background--teal {
  background-color: #02CBE0;
  background-color: var(--teal);
}

.text--teal {
  color: #02CBE0;
  color: var(--teal);
}
.text--teal h1, .text--teal h2, .text--teal h3, .text--teal h4, .text--teal p {
  color: #02CBE0;
  color: var(--teal);
}

.background--green {
  background-color: #2FC346;
  background-color: var(--green);
}

.text--green {
  color: #2FC346;
  color: var(--green);
}
.text--green h1, .text--green h2, .text--green h3, .text--green h4, .text--green p {
  color: #2FC346;
  color: var(--green);
}

.background--pale-grey {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
}

.text--pale-grey {
  color: #F7F7F7;
  color: var(--pale-grey);
}
.text--pale-grey h1, .text--pale-grey h2, .text--pale-grey h3, .text--pale-grey h4, .text--pale-grey p {
  color: #F7F7F7;
  color: var(--pale-grey);
}

.background--paleblue {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
}

.text--paleblue {
  color: #E0E6F6;
  color: var(--paleblue);
}
.text--paleblue h1, .text--paleblue h2, .text--paleblue h3, .text--paleblue h4, .text--paleblue p {
  color: #E0E6F6;
  color: var(--paleblue);
}

.background--lime {
  background-color: #81C042;
  background-color: var(--lime);
}

.text--lime {
  color: #81C042;
  color: var(--lime);
}
.text--lime h1, .text--lime h2, .text--lime h3, .text--lime h4, .text--lime p {
  color: #81C042;
  color: var(--lime);
}

.button--black span {
  background-color: #000000;
  background-color: var(--black);
  color: #FFFFFF;
  color: var(--black-button-text);
  border-color: #FFFFFF;
  border-color: var(--black-button-border);
}

.button--white span {
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #6B6C6E;
  color: var(--white-button-text);
  border-color: #6B6C6E;
  border-color: var(--white-button-border);
}

.button--grey span {
  background-color: #D0D1D3;
  background-color: var(--grey);
  color: #000000;
  color: var(--grey-button-text);
  border-color: #000000;
  border-color: var(--grey-button-border);
}

.button--light-grey span {
  background-color: #D9D9D9;
  background-color: var(--light-grey);
  color: #000000;
  color: var(--light-grey-button-text);
  border-color: #000000;
  border-color: var(--light-grey-button-border);
}

.button--dark-grey span {
  background-color: #6B6C6E;
  background-color: var(--dark-grey);
  color: #FFFFFF;
  color: var(--dark-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--dark-grey-button-border);
}

.button--darker-grey span {
  background-color: #434242;
  background-color: var(--darker-grey);
  color: #FFFFFF;
  color: var(--darker-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--darker-grey-button-border);
}

.button--yellow span {
  background-color: #FAB500;
  background-color: var(--yellow);
  color: #FFFFFF;
  color: var(--yellow-button-text);
  border-color: #FAB500;
  border-color: var(--yellow-button-border);
}

.button--orange span {
  background-color: #EA8A07;
  background-color: var(--orange);
  color: #FFFFFF;
  color: var(--orange-button-text);
  border-color: #EA8A07;
  border-color: var(--orange-button-border);
}

.button--red span {
  background-color: #E54A06;
  background-color: var(--red);
  color: #FFFFFF;
  color: var(--red-button-text);
  border-color: #E54A06;
  border-color: var(--red-button-border);
}

.button--blue span {
  background-color: #1A47C1;
  background-color: var(--blue);
  color: #FFFFFF;
  color: var(--blue-button-text);
  border-color: #1A47C1;
  border-color: var(--blue-button-border);
}

.button--teal span {
  background-color: #02CBE0;
  background-color: var(--teal);
  color: #FFFFFF;
  color: var(--teal-button-text);
  border-color: #02CBE0;
  border-color: var(--teal-button-border);
}

.button--green span {
  background-color: #2FC346;
  background-color: var(--green);
  color: #FFFFFF;
  color: var(--green-button-text);
  border-color: #2FC346;
  border-color: var(--green-button-border);
}

.button--pale-grey span {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
  color: #000000;
  color: var(--pale-grey-button-text);
  border-color: #F7F7F7;
  border-color: var(--pale-grey-button-border);
}

.button--paleblue span {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
  color: #000000;
  color: var(--paleblue-button-text);
  border-color: #E0E6F6;
  border-color: var(--paleblue-button-border);
}

.button--lime span {
  background-color: #81C042;
  background-color: var(--lime);
  color: #FFFFFF;
  color: var(--lime-button-text);
  border-color: #81C042;
  border-color: var(--lime-button-border);
}

.drift-conductor-item {
  display: none;
}

header {
  margin-top: 0;
  padding-top: 2rem;
}
header.text--black .header__imagery__text {
  text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
}
header.text--white .header__imagery__text {
  text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}
header.text--grey .header__imagery__text {
  text-shadow: -1px -1px 0 #D0D1D3, 1px -1px 0 #D0D1D3, -1px 1px 0 #D0D1D3, 1px 1px 0 #D0D1D3;
}
header.text--light-grey .header__imagery__text {
  text-shadow: -1px -1px 0 #D9D9D9, 1px -1px 0 #D9D9D9, -1px 1px 0 #D9D9D9, 1px 1px 0 #D9D9D9;
}
header.text--dark-grey .header__imagery__text {
  text-shadow: -1px -1px 0 #6B6C6E, 1px -1px 0 #6B6C6E, -1px 1px 0 #6B6C6E, 1px 1px 0 #6B6C6E;
}
header.text--darker-grey .header__imagery__text {
  text-shadow: -1px -1px 0 #434242, 1px -1px 0 #434242, -1px 1px 0 #434242, 1px 1px 0 #434242;
}
header.text--yellow .header__imagery__text {
  text-shadow: -1px -1px 0 #FAB500, 1px -1px 0 #FAB500, -1px 1px 0 #FAB500, 1px 1px 0 #FAB500;
}
header.text--orange .header__imagery__text {
  text-shadow: -1px -1px 0 #EA8A07, 1px -1px 0 #EA8A07, -1px 1px 0 #EA8A07, 1px 1px 0 #EA8A07;
}
header.text--red .header__imagery__text {
  text-shadow: -1px -1px 0 #E54A06, 1px -1px 0 #E54A06, -1px 1px 0 #E54A06, 1px 1px 0 #E54A06;
}
header.text--blue .header__imagery__text {
  text-shadow: -1px -1px 0 #1A47C1, 1px -1px 0 #1A47C1, -1px 1px 0 #1A47C1, 1px 1px 0 #1A47C1;
}
header.text--teal .header__imagery__text {
  text-shadow: -1px -1px 0 #02CBE0, 1px -1px 0 #02CBE0, -1px 1px 0 #02CBE0, 1px 1px 0 #02CBE0;
}
header.text--green .header__imagery__text {
  text-shadow: -1px -1px 0 #2FC346, 1px -1px 0 #2FC346, -1px 1px 0 #2FC346, 1px 1px 0 #2FC346;
}
header.text--pale-grey .header__imagery__text {
  text-shadow: -1px -1px 0 #F7F7F7, 1px -1px 0 #F7F7F7, -1px 1px 0 #F7F7F7, 1px 1px 0 #F7F7F7;
}
header.text--paleblue .header__imagery__text {
  text-shadow: -1px -1px 0 #E0E6F6, 1px -1px 0 #E0E6F6, -1px 1px 0 #E0E6F6, 1px 1px 0 #E0E6F6;
}
header.text--lime .header__imagery__text {
  text-shadow: -1px -1px 0 #81C042, 1px -1px 0 #81C042, -1px 1px 0 #81C042, 1px 1px 0 #81C042;
}
header.with--image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
header .container {
  position: relative;
  padding-bottom: 3rem;
}
header.with--indicator .container {
  padding-bottom: 0;
}
header .header__logo-area {
  margin-bottom: 2rem;
}
header .header__logo-area__logo {
  max-width: 200px;
  float: left;
}
header .header__logo-area__socials {
  float: right;
  margin-top: 0;
}
header .header__logo-area__socials a {
  color: #FFFFFF;
  color: var(--white);
  text-decoration: none;
}
header .header__logo-area__socials a + a {
  margin-left: 10px;
}
header .header__logo-area__socials a:hover {
  outline: 0;
}
header .header__logo-area__socials a:focus {
  outline: 1px;
}
header .header__text {
  position: relative;
}
header .header__text__title {
  font-weight: 600;
  padding-bottom: 0.2em;
  margin-top: 0;
  font-size: 2.8em;
  color: #FFFFFF;
  color: var(--white);
  border-bottom: 2px solid #FFFFFF;
  border-bottom: 2px solid var(--white);
}
header .header__text__title .text--smaller {
  display: block;
}
header .header__text__intro {
  font-size: 0.8em;
}
header .header__text__ctas {
  text-align: center;
}
header .header__text__ctas .header__ctas__button {
  display: inline-block;
  padding: 2px;
  background-color: #FFFFFF;
  background-color: var(--white);
  border-radius: 2em;
  text-decoration: none;
}
header .header__text__ctas .header__ctas__button span {
  display: block;
  padding: 0.8em 1.6em;
  font-size: 0.8em;
  border-radius: 2em;
  border-width: 1px;
  border-style: solid;
}
header .header__text__ctas .header__ctas__button:hover span, header .header__text__ctas .header__ctas__button:focus span {
  background-color: #6B6C6E;
  background-color: var(--dark-grey);
  border-color: #FFFFFF;
  border-color: var(--white);
  color: #FFFFFF;
  color: var(--white);
}
header .header__imagery {
  display: none;
}
header .header__scroll-indicator {
  margin-top: 3rem;
  text-align: center;
}
header .header__scroll-indicator__text {
  font-weight: 400;
}
header .header__scroll-indicator__icon {
  margin-top: 1rem;
  padding-bottom: 1rem;
}
header .header__scroll-indicator__icon img {
  max-height: 60px;
}

footer {
  margin-top: 0;
  height: auto;
  padding: 0;
  position: relative;
}
footer .container {
  background-color: #D9D9D9;
  background-color: var(--light-grey);
  color: #6B6C6E;
  color: var(--dark-grey);
  padding-top: 3rem;
  padding-bottom: 2rem;
}
footer .footer__logo {
  text-align: center;
}
footer .footer__social-links {
  text-align: center;
  margin-top: 0.5rem;
}
footer .footer__social-links__container {
  margin-top: 2rem;
}
footer .footer__social-links__title {
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
  color: #6B6C6E;
  color: var(--dark-grey);
}
footer .footer__social-links a {
  margin-top: 0;
}
footer .footer__social-links a:nth-of-type(2) {
  margin: 0 1em;
}
footer .footer__contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  font-size: 0.7rem;
  margin-top: 4rem;
}
footer .footer__contact__address {
  padding-left: 1rem;
}
footer .footer__contact__links {
  text-align: right;
  padding-right: 1rem;
}

section {
  padding: 3rem 0;
  margin-top: 0;
}

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

.in {
  opacity: 1;
}

.animate--observer {
  overflow-x: hidden;
}
.animate--observer.animated {
  overflow-x: visible;
}
.animate--observer.animated.animate--left.animate__target, .animate--observer.animated.animate--left .animate__target, .animate--observer.animated .animate--left.animate__target, .animate--observer.animated .animate--left .animate__target {
  opacity: 1;
  transform: translateX(0);
}
.animate--observer.animated.animate--right.animate__target, .animate--observer.animated.animate--right .animate__target, .animate--observer.animated .animate--right.animate__target, .animate--observer.animated .animate--right .animate__target {
  opacity: 1;
  transform: translateX(0);
}
.animate--observer.animated.animate--top.animate__target, .animate--observer.animated.animate--top .animate__target, .animate--observer.animated .animate--top.animate__target, .animate--observer.animated .animate--top .animate__target {
  opacity: 1;
  transform: translateY(0);
}
.animate--observer.animated.animate--bottom.animate__target, .animate--observer.animated.animate--bottom .animate__target, .animate--observer.animated .animate--bottom.animate__target, .animate--observer.animated .animate--bottom .animate__target {
  opacity: 1;
  transform: translateY(0);
}
.animate--observer.animated.animate--fadein.animate__target, .animate--observer.animated.animate--fadein .animate__target, .animate--observer.animated .animate--fadein.animate__target, .animate--observer.animated .animate--fadein .animate__target {
  opacity: 1;
}
.animate--observer.animated .animate-artefacts .artifact__main {
  opacity: 1;
}
.animate--observer.animated .animate-artefacts .artifact__items {
  opacity: 1;
  transform: rotate(0);
  transform-origin: 29% 33%;
}

.animate-artefacts .artifact__main {
  opacity: 0;
  transition: all 1s;
  animation-delay: 1s;
}
.animate-artefacts .artifact__items {
  opacity: 0;
  transform: rotate(-180deg);
  transform-origin: 29% 33%;
  transition: all 1s;
  animation-delay: 2s;
}

.animate--left.animate__target, .animate--left .animate__target {
  transform: translateX(-100vw);
  opacity: 0;
  transition: all 1s;
}

.animate--right.animate__target, .animate--right .animate__target {
  transform: translateX(100vw);
  opacity: 0;
  transition: all 1s;
}

.animate--top.animate__target, .animate--top .animate__target {
  transform: translateY(-100vh);
  opacity: 0;
  transition: all 1s;
}

.animate--bottom.animate__target, .animate--bottom .animate__target {
  transform: translateY(100vh);
  opacity: 0;
  transition: all 1s;
}

.animate--fadein.animate__target, .animate--fadein .animate__target {
  opacity: 0;
  transition: opacity 1s;
}

.modal-window {
  margin-top: 0;
}
.modal-window * {
  margin-top: 0;
}
.modal-window.popupgalleryinner-window .swiper-pagination, .modal-window.popupslideshowinner-window .swiper-pagination {
  bottom: -4px;
}
.modal-window.popupgallery .swiper-container, .modal-window.popupslideshow .swiper-container {
  padding-bottom: 20px;
}
.modal-window.popupgallery .swiper-container.swiper-container-horizontal > .swiper-pagination-bullets, .modal-window.popupslideshow .swiper-container.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.modal-window.popupgallery .summary, .modal-window.popupslideshow .summary {
  padding: 1em 0;
  text-align: center;
  font-size: 1.5em;
  color: #6B6C6E;
  color: var(--dark-grey);
}

.section__main__title {
  font-size: 2em;
  padding-bottom: 0.5em;
  display: inline-block;
  border-bottom: 2px solid #000000;
  border-bottom: 2px solid var(--black);
  line-height: 1.2em;
}
.section__main__content {
  margin-top: 0;
}
.section__main__content .main__content__image {
  text-align: center;
}
.section__main__content .main__content__image a:hover {
  text-decoration: none;
}
.section__main__content .main__content__image__label {
  font-weight: 600;
  color: #D9D9D9;
  color: var(--light-grey);
}
.section__split-content {
  padding: 0 0 1rem;
}
.section__split-content__text {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section__split-content__text .split-content__text__title {
  font-size: 2em;
  padding-bottom: 0.5em;
  margin-top: 0;
  border-bottom: 2px solid #FFFFFF;
  border-bottom: 2px solid var(--white);
}
.section__split-content__text .split-content__text__subtitle {
  font-size: 1.2em;
  padding-bottom: 0.5em;
  margin-top: 0;
  border-bottom: 2px solid #FFFFFF;
  border-bottom: 2px solid var(--white);
}
.section__split-content__text--with-subtitle .split-content__text__title {
  border: 0;
  padding-bottom: 0;
}
.section__split-content__image {
  min-height: 500px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
}
.section__contact-form .contact-form__title {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1em;
}
.section__contact-form .contact-form__subtitle {
  margin-top: 0;
  font-weight: 600;
  font-size: 2em;
}
.section__contact-form .contact-form__intro {
  font-size: 1.3em;
  margin-top: 0;
}
.section__contact-form .contact-form__spacer {
  display: none;
  height: 0;
  margin: 0;
}
.section__contact-form .contact-form__mobile_emailmessage {
  display: block;
  margin-top: 0;
  font-size: 12px;
  color: #999;
  margin-bottom: 0.5rem;
}
.section__contact-form .contact-form__emailmessage {
  display: none;
}
.section__contact-form .contact-form__submit {
  border: 1px solid #1A47C1;
  border: 1px solid var(--blue);
  color: #FFFFFF;
  color: var(--white);
  background-color: #1A47C1;
  background-color: var(--blue);
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.8rem 0;
  font-weight: 600;
}
.section__contact-form .contact-form__submit:focus {
  color: #1A47C1;
  color: var(--blue);
  background-color: #FFFFFF;
  background-color: var(--white);
  border-color: #1A47C1;
  border-color: var(--blue);
}
.section__contact-form .contact-form__grid {
  margin: 1rem 0 0;
}
.section__contact-form .contact-form__grid input, .section__contact-form .contact-form__grid select, .section__contact-form .contact-form__grid textarea {
  display: block;
  width: 100%;
  border: 1px solid #6B6C6E;
  border: 1px solid var(--dark-grey);
  color: #6B6C6E;
  color: var(--dark-grey);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
}
.section__contact-form .contact-form__grid input:focus, .section__contact-form .contact-form__grid select:focus, .section__contact-form .contact-form__grid textarea:focus {
  box-shadow: 0px 0px 4px 0px rgba(26, 71, 193, 0.8);
  box-shadow: 0px 0px 4px 0px rgba(var(--blue-rgb), 0.8);
}
.section__contact-form .contact-form__grid input.errored, .section__contact-form .contact-form__grid select.errored, .section__contact-form .contact-form__grid textarea.errored {
  box-shadow: 0px 0px 4px 0px rgba(229, 74, 6, 0.8);
  box-shadow: 0px 0px 4px 0px rgba(var(--red-rgb), 0.8);
}
.section__contact-form .contact-form__grid input[type=text] {
  padding: 0.2rem 0.5rem;
}
.section__grid-boxes {
  padding-top: 0;
}
.section__grid-boxes__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  border: 1px solid #6B6C6E;
  border: 1px solid var(--dark-grey);
}
.section__grid-boxes__box {
  border: 1px solid #6B6C6E;
  border: 1px solid var(--dark-grey);
  margin-top: 0;
  display: -ms-grid;
  display: grid;
  transition: all 0.5s;
}
.section__grid-boxes__box:hover {
  transform: scale(1.05);
  background-color: #FFFFFF;
  background-color: var(--white);
}
.section__grid-boxes__box a {
  display: block;
  padding: 1rem 2rem;
  text-align: center;
  margin: auto;
  font-weight: 600;
  color: #6B6C6E;
  color: var(--dark-grey);
}
.section__grid-boxes__box a:hover {
  text-decoration: none;
}
.section__artifacts__title {
  line-height: 1em;
}
.section__artifacts__subtitle {
  margin-top: 0;
}
.section__artifacts__content .artifact {
  margin-top: 0;
  text-align: center;
  padding-bottom: 20px;
}
.section__artifacts__content .artifact--circle {
  border-radius: 50%;
  margin-top: 0;
  width: 140px;
  height: 140px;
  font-size: 0.7em;
}
.section__artifacts__content .artifact__main {
  text-align: center;
  display: inline-block;
}
.section__artifacts__content .artifact__main.artifact--circle {
  width: 220px;
  height: 220px;
  padding-top: 70px;
  font-size: 1rem;
}
.section__artifacts__content .artifact__title {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 0;
  display: inline-block;
  width: 70%;
}
.section__artifacts__content .artifact__subtitle {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  margin-top: 0;
  display: inline-block;
  width: 70%;
}
.section__artifacts__content .artifact__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}
.section__artifacts__content .artifact__item {
  margin-top: 0;
}
.section__artifacts__content .artifact__item__link {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s;
}
.section__artifacts__content .artifact__item__link .item__inner {
  display: -ms-grid;
  display: grid;
  height: 100%;
  width: 100%;
}
.section__artifacts__content .artifact__item__link .item__inner .item__text {
  margin: auto;
  padding: 10%;
}
.section__artifacts__content .artifact__item__link:hover {
  text-decoration: none;
  transform: scale(1.1);
}
.section__artifacts__content .artifact--black .artifact__item__link {
  background-color: #000000;
  background-color: var(--black);
  color: #FFFFFF;
  color: var(--black-button-text);
  border-color: #FFFFFF;
  border-color: var(--black-button-border);
}
.section__artifacts__content .artifact--white .artifact__item__link {
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #6B6C6E;
  color: var(--white-button-text);
  border-color: #6B6C6E;
  border-color: var(--white-button-border);
}
.section__artifacts__content .artifact--grey .artifact__item__link {
  background-color: #D0D1D3;
  background-color: var(--grey);
  color: #000000;
  color: var(--grey-button-text);
  border-color: #000000;
  border-color: var(--grey-button-border);
}
.section__artifacts__content .artifact--light-grey .artifact__item__link {
  background-color: #D9D9D9;
  background-color: var(--light-grey);
  color: #000000;
  color: var(--light-grey-button-text);
  border-color: #000000;
  border-color: var(--light-grey-button-border);
}
.section__artifacts__content .artifact--dark-grey .artifact__item__link {
  background-color: #6B6C6E;
  background-color: var(--dark-grey);
  color: #FFFFFF;
  color: var(--dark-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--dark-grey-button-border);
}
.section__artifacts__content .artifact--darker-grey .artifact__item__link {
  background-color: #434242;
  background-color: var(--darker-grey);
  color: #FFFFFF;
  color: var(--darker-grey-button-text);
  border-color: #FFFFFF;
  border-color: var(--darker-grey-button-border);
}
.section__artifacts__content .artifact--yellow .artifact__item__link {
  background-color: #FAB500;
  background-color: var(--yellow);
  color: #FFFFFF;
  color: var(--yellow-button-text);
  border-color: #FAB500;
  border-color: var(--yellow-button-border);
}
.section__artifacts__content .artifact--orange .artifact__item__link {
  background-color: #EA8A07;
  background-color: var(--orange);
  color: #FFFFFF;
  color: var(--orange-button-text);
  border-color: #EA8A07;
  border-color: var(--orange-button-border);
}
.section__artifacts__content .artifact--red .artifact__item__link {
  background-color: #E54A06;
  background-color: var(--red);
  color: #FFFFFF;
  color: var(--red-button-text);
  border-color: #E54A06;
  border-color: var(--red-button-border);
}
.section__artifacts__content .artifact--blue .artifact__item__link {
  background-color: #1A47C1;
  background-color: var(--blue);
  color: #FFFFFF;
  color: var(--blue-button-text);
  border-color: #1A47C1;
  border-color: var(--blue-button-border);
}
.section__artifacts__content .artifact--teal .artifact__item__link {
  background-color: #02CBE0;
  background-color: var(--teal);
  color: #FFFFFF;
  color: var(--teal-button-text);
  border-color: #02CBE0;
  border-color: var(--teal-button-border);
}
.section__artifacts__content .artifact--green .artifact__item__link {
  background-color: #2FC346;
  background-color: var(--green);
  color: #FFFFFF;
  color: var(--green-button-text);
  border-color: #2FC346;
  border-color: var(--green-button-border);
}
.section__artifacts__content .artifact--pale-grey .artifact__item__link {
  background-color: #F7F7F7;
  background-color: var(--pale-grey);
  color: #000000;
  color: var(--pale-grey-button-text);
  border-color: #F7F7F7;
  border-color: var(--pale-grey-button-border);
}
.section__artifacts__content .artifact--paleblue .artifact__item__link {
  background-color: #E0E6F6;
  background-color: var(--paleblue);
  color: #000000;
  color: var(--paleblue-button-text);
  border-color: #E0E6F6;
  border-color: var(--paleblue-button-border);
}
.section__artifacts__content .artifact--lime .artifact__item__link {
  background-color: #81C042;
  background-color: var(--lime);
  color: #FFFFFF;
  color: var(--lime-button-text);
  border-color: #81C042;
  border-color: var(--lime-button-border);
}
.section__testimonial__text {
  font-size: 2em;
  text-align: left;
}
.section__testimonial__person {
  text-align: right;
}
.section__streamlined__title {
  font-weight: 600;
}
.section__streamlined__subtitle {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.5em;
}
.section__streamlined__intro {
  margin-top: 1.5rem;
}
.section__streamlined__items {
  margin-top: 2rem;
  position: relative;
}
.section__streamlined__items .streamlined__header {
  text-align: center;
  font-weight: 600;
  font-size: 1.5em;
  margin-bottom: 1em;
}
.section__streamlined__items .streamlined__acrossarrow {
  margin-top: calc(10% + 8px);
  position: absolute;
  left: 0;
  right: 0;
}
.section__streamlined__items .streamlined__acrossarrow .streamlined__line {
  height: 1px;
  border-bottom: 8px dashed #000000;
  border-bottom: 8px dashed var(--black);
}
.section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--left {
  right: 30%;
}
.section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--right {
  left: 28%;
}
.section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--righter {
  left: 70%;
}
.section__streamlined__items .streamlined__downarrow {
  margin-top: 10%;
  position: absolute;
  height: 31%;
  width: 1px;
}
.section__streamlined__items .streamlined__downarrow .streamlined__line {
  width: 1px;
  height: 100%;
  border-left: 8px dashed #000000;
  border-left: 8px dashed var(--black);
}
.section__streamlined__items .streamlined__downarrow .streamlined__arrow {
  margin-top: 0;
  top: 70%;
  margin-left: -20px;
}
.section__streamlined__items .streamlined__downarrow--right {
  right: calc(10% + 12px);
}
.section__streamlined__items .streamlined__downarrow--left {
  left: calc(10% + 4px);
}
.section__streamlined__items .streamlined__item {
  position: relative;
  margin-top: 0;
  padding-bottom: 50%;
}
.section__streamlined__items .streamlined__item:nth-of-type(2) {
  text-align: center;
}
.section__streamlined__items .streamlined__item:nth-of-type(3) {
  text-align: right;
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text {
  padding: 0.5rem;
  height: auto;
  border-radius: 0;
  text-align: left;
  font-size: 0.7em;
  background-color: #2FC346;
  background-color: var(--green);
  color: #FFFFFF;
  color: var(--white);
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text strong {
  font-weight: 600;
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text p + P {
  margin-top: 1em;
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text ul {
  margin-top: 3em;
  list-style: none;
  padding-left: 0;
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text ul li {
  padding-left: 2em;
}
.section__streamlined__items .streamlined__item--end .streamlined__item__text ul li::before {
  content: "-";
  margin-left: -2em;
  margin-right: 0.5em;
}
.section__streamlined__items .streamlined__item__link {
  position: relative;
  z-index: 2;
  margin-top: -65% !important;
  display: inline-block;
  width: 65%;
  border-radius: 50%;
  padding-top: 65%;
  height: 0;
  background-color: #6B6C6E;
  background-color: var(--dark-grey);
  color: #FFFFFF;
  color: var(--white);
  font-weight: 600;
  overflow: hidden;
  font-size: 0.8em;
  vertical-align: top;
  transition: all 0.5s;
}
.section__streamlined__items .streamlined__item__link:hover, .section__streamlined__items .streamlined__item__link:focus {
  transform: scale(1.1);
}
.section__streamlined__items .streamlined__item__text {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: inline-block;
  width: 65%;
  border-radius: 50%;
  padding-top: 65%;
  height: 0;
  overflow: hidden;
  font-size: 0.7em;
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #6B6C6E;
  color: var(--dark-grey);
  vertical-align: top;
  transition: all 0.5s;
}
.section__streamlined__items .streamlined__item__text.open {
  transform: translateY(85%);
}
.section__streamlined__items .streamlined__item__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-grid;
  display: grid;
  text-align: center;
  padding: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.section__streamlined__items .streamlined__item__content {
  margin: auto !important;
  display: inline-block;
}
.section__streamlined__items .streamlined__item__content span {
  display: block;
  position: absolute;
  bottom: 1.5rem;
  left: 30%;
  right: 30%;
  background-color: #FFFFFF;
  background-color: var(--white);
  color: #6B6C6E;
  color: var(--dark-grey);
  font-weight: 400;
  border-radius: 0.5rem;
}
.section__streamlined__items .streamlined__line {
  display: block;
}
.section__streamlined__items .streamlined__arrow {
  display: block;
  position: absolute;
  margin-top: -28px;
}
.section__streamlined__items .streamlined__arrow--right {
  width: 0;
  height: 0;
  border-top: 24px solid transparent !important;
  border-bottom: 24px solid transparent !important;
  border-left: 40px solid #000000;
  border-left: 40px solid var(--black);
}
.section__streamlined__items .streamlined__arrow--left {
  width: 0;
  height: 0;
  border-top: 24px solid transparent !important;
  border-bottom: 24px solid transparent !important;
  border-right: 40px solid #000000;
  border-right: 40px solid var(--black);
}
.section__streamlined__items .streamlined__arrow--down {
  width: 0;
  height: 0;
  border-left: 24px solid transparent !important;
  border-right: 24px solid transparent !important;
  border-top: 40px solid #000000;
  border-top: 40px solid var(--black);
}
.section__streamlined__items .streamlined__items__buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
}
.section__streamlined__items .streamlined__items__buttons * {
  margin-top: 0;
}
.section__streamlined__items .streamlined__items--red .streamlined__header {
  color: #E54A06;
  color: var(--red);
}
.section__streamlined__items .streamlined__items--red .streamlined__line {
  border-color: #E54A06;
  border-color: var(--red);
}
.section__streamlined__items .streamlined__items--red .streamlined__arrow {
  border-color: #E54A06;
  border-color: var(--red);
}
.section__streamlined__items .streamlined__items--blue .streamlined__header {
  color: #1A47C1;
  color: var(--blue);
}
.section__streamlined__items .streamlined__items--blue .streamlined__line {
  border-color: #1A47C1;
  border-color: var(--blue);
}
.section__streamlined__items .streamlined__items--blue .streamlined__arrow {
  border-color: #1A47C1;
  border-color: var(--blue);
}
.section__streamlined__items .streamlined__items--green .streamlined__header {
  color: #2FC346;
  color: var(--green);
}
.section__streamlined__items .streamlined__items--green .streamlined__line {
  border-color: #2FC346;
  border-color: var(--green);
}
.section__streamlined__items .streamlined__items--green .streamlined__arrow {
  border-color: #2FC346;
  border-color: var(--green);
}
.section__streamlined__items .streamlined__items__ssa .streamlined__item {
  padding-bottom: 25%;
}
.section__downloads__title {
  line-height: 1em;
}
.section__downloads__subtitle {
  margin-top: 1em;
  line-height: 1em;
  font-size: 1.5em;
}
.section__downloads__text {
  font-weight: 600;
}
.section__downloads__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 50%);
  grid-auto-rows: 1fr;
  margin-top: 2rem;
}
.section__downloads__content .download__item {
  text-align: center;
  padding: 0 1rem;
  margin-top: 0;
}
.section__downloads__content .download__item a {
  display: inline-block;
  max-width: 100%;
}
.section__downloads__content .download__item a img {
  margin-bottom: 10px;
}
.section__downloads__content .download__item a span {
  margin-top: 0;
  display: block;
  padding: 0.5em 2em;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7em;
  border-radius: 0.2em;
}
.section__downloads__content .download__item a:hover {
  text-decoration: none;
}
.section__downloads__content .download__item a:focus {
  text-decoration: none;
  box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 4px 0px rgba(var(--white-rgb), 0.8);
}

@media (max-width: 767px) {
  .section__streamlined__items {
    max-width: 570px;
    margin: 2rem auto 0;
  }
  .section__streamlined__items .streamlined__arrow {
    margin-top: -16px;
  }
  .section__streamlined__items .streamlined__arrow--right {
    border-top-width: 15px !important;
    border-bottom-width: 15px !important;
    border-left-width: 30px;
  }
  .section__streamlined__items .streamlined__arrow--left {
    border-top-width: 15px !important;
    border-bottom-width: 15px !important;
    border-right-width: 30px;
  }
  .section__streamlined__items .streamlined__downarrow {
    margin-top: 60px;
  }
  .section__streamlined__items .streamlined__downarrow--right {
    right: 80px;
  }
  .section__streamlined__items .streamlined__downarrow--left {
    left: 76px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__line {
    border-left-width: 5px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow {
    top: 72%;
    margin-left: -12px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow--down {
    border-left-width: 15px !important;
    border-right-width: 15px !important;
    border-top-width: 30px;
  }
  .section__streamlined__items .streamlined__acrossarrow {
    margin-top: 75px;
    left: 20px;
    right: 20px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__line {
    border-bottom-width: 5px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow {
    top: 72%;
    margin-left: -12px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--right {
    left: 30%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--righter {
    left: 70%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--left {
    right: 28%;
  }
  .section__streamlined__items .streamlined__acrossarrow--left {
    margin-top: 90px;
  }
  .section__streamlined__items .streamlined__header {
    max-width: 60%;
    margin: 0 auto 10px;
  }
  .section__streamlined__items .streamlined__item__link {
    margin-top: -80% !important;
    width: 80%;
    padding-top: 80%;
  }
  .section__streamlined__items .streamlined__item__text {
    width: 80%;
    padding-top: 80%;
  }
  .section__streamlined__items .streamlined__item__text.open {
    transform: translateY(95%);
  }
  .section__streamlined__items .streamlined__item__content span {
    bottom: 1rem;
  }
}
@media (max-width: 599px) {
  .section__streamlined__items {
    max-width: 460px;
    margin: 2rem auto 0;
  }
  .section__streamlined__items .streamlined__arrow {
    display: none;
  }
  .section__streamlined__items .streamlined__downarrow {
    margin-top: 60px;
  }
  .section__streamlined__items .streamlined__downarrow--left {
    left: 67px;
  }
  .section__streamlined__items .streamlined__downarrow--right {
    right: 69px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__line {
    border-left-width: 5px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow {
    display: none;
  }
  .section__streamlined__items .streamlined__acrossarrow {
    margin-top: 75px;
    left: 10px;
    right: 10px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__line {
    border-bottom-width: 5px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow {
    display: none;
  }
  .section__streamlined__items .streamlined__acrossarrow--left {
    margin-top: 86px;
  }
  .section__streamlined__items .streamlined__item__inner {
    padding: 1rem;
  }
  .section__streamlined__items .streamlined__item__link {
    margin-top: -92% !important;
    width: 92%;
    padding-top: 92%;
    font-size: 12px;
  }
  .section__streamlined__items .streamlined__item__text {
    width: 92%;
    padding-top: 92%;
    font-size: 12px;
  }
  .section__streamlined__items .streamlined__item__text.open {
    transform: translateY(95%);
  }
  .section__streamlined__items .streamlined__item__text .streamlined__item__inner {
    padding: 23px 1rem;
  }
  .section__streamlined__items .streamlined__item__content span {
    bottom: 1rem;
  }
}
@media (max-width: 479px) {
  .section__streamlined__items {
    max-width: 300px;
    margin: 2rem auto 0;
  }
  .section__streamlined__items .streamlined__arrow {
    display: none;
  }
  .section__streamlined__items .streamlined__downarrow {
    margin-top: 60px;
    height: 86%;
  }
  .section__streamlined__items .streamlined__downarrow--left {
    left: calc(50% - 2px);
  }
  .section__streamlined__items .streamlined__downarrow--right {
    right: calc(50% + 2px);
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__line {
    border-left-width: 5px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow {
    top: 100%;
    display: block;
  }
  .section__streamlined__items .streamlined__acrossarrow {
    display: none;
  }
  .section__streamlined__items .streamlined__item {
    padding-bottom: 90%;
  }
  .section__streamlined__items .streamlined__item__inner {
    padding: 1rem;
  }
  .section__streamlined__items .streamlined__item__link {
    margin-top: -100% !important;
    width: 100%;
    padding-top: 100%;
    font-size: 1rem;
  }
  .section__streamlined__items .streamlined__item__text {
    width: 100%;
    padding-top: 100%;
    font-size: 12px;
  }
  .section__streamlined__items .streamlined__item__text.open {
    transform: translateY(95%);
  }
  .section__streamlined__items .streamlined__item__text .streamlined__item__inner {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
  .section__streamlined__items .streamlined__item__content span {
    bottom: 1.5rem;
  }
  .section__streamlined__items .streamlined__item--end {
    margin: 0 -28%;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text {
    font-size: 1rem;
  }
  .section__streamlined__items .streamlined__items {
    position: relative;
  }
  .section__streamlined__items .streamlined__items__buttons {
    display: block;
    grid-template-columns: none;
    max-width: 180px;
    margin: 2rem auto 0;
  }
  .section__streamlined__items .streamlined__items__ssa .streamlined__item {
    padding-bottom: 90%;
  }
  .section__streamlined__items .streamlined__items__ssa .streamlined__item--end {
    padding-bottom: 0;
  }
  .section__streamlined__items .streamlined__items__ssa .streamlined__acrossarrow {
    display: block;
    left: calc(50% - 2px);
    margin-top: 60px;
    width: auto;
    height: 58%;
  }
  .section__streamlined__items .streamlined__items__ssa .streamlined__acrossarrow .streamlined__arrow--righter {
    display: block;
    left: 0;
    top: 100%;
    border-left: 15px solid transparent !important;
    border-right: 15px solid transparent !important;
    border-top: 30px solid #2FC346 !important;
    border-top: 30px solid var(--green) !important;
    border-bottom: 0 !important;
  }
  .section__streamlined__items .streamlined__items__ssa .streamlined__acrossarrow .streamlined__line {
    width: auto;
    height: 100%;
    border-bottom: 0;
    border-left: 5px dashed;
    border-color: #2FC346;
    border-color: var(--green);
  }
  .section__streamlined__items .streamlined__header {
    max-width: 100%;
    margin: 0 auto 10px;
  }
}
@media (min-width: 380px) {
  header .header__text__ctas {
    text-align: left;
  }
  header .header__text__ctas .header__ctas__button + .header__ctas__button {
    margin-left: 1em;
  }
}
@media (min-width: 420px) {
  .section__artifacts__content .artifact--circle {
    width: 180px;
    height: 180px;
    font-size: 1em;
  }
  .section__artifacts__content .artifact__main.artifact--circle {
    width: 320px;
    height: 320px;
    padding-top: 120px;
    font-size: 1.5rem;
  }
}
@media (min-width: 560px) {
  .section__artifacts__content .artifact--circle {
    width: 220px;
    height: 220px;
    font-size: 1.2em;
  }
  .section__artifacts__content .artifact__main.artifact--circle {
    width: 320px;
    height: 320px;
    padding-top: 120px;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }

  header .container {
    padding-bottom: 10rem;
  }
  header .header__text {
    max-width: 50%;
    z-index: 2;
  }
  header .header__text__title {
    padding-right: 3rem;
    display: inline-block;
    padding-bottom: 0.2em;
    font-size: 2.8em;
  }
  header .header__text__intro {
    font-size: 0.8em;
  }
  header .header__text__ctas .header__ctas__button {
    padding: 2px;
  }
  header .header__text__ctas .header__ctas__button + .header__ctas__button {
    margin-left: 1em;
  }
  header .header__text__ctas .header__ctas__button span {
    padding: 0.4em 1.3em;
    font-size: 0.7em;
    border-width: 1px;
  }
  header .header__imagery {
    z-index: 1;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8rem;
    text-align: center;
    pointer-events: none;
    margin: 0;
  }
  header .header__imagery__text {
    color: transparent;
    font-size: 5.5em;
    line-height: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: justify;
    display: inline-block;
    margin: 0 auto;
  }
  header .header__imagery__image {
    position: absolute;
    transform: rotate(-30deg);
    top: -110%;
    right: 0;
    width: 75%;
  }
  header .header__imagery__image img {
    max-width: 100%;
  }
  header .header__scroll-indicator {
    margin-top: 7rem;
  }

  footer .footer__contact__address {
    padding-left: 2rem;
  }
  .section__contact-form .contact-form__mobile_emailmessage {
    display: none;
  }
  .section__contact-form .contact-form__emailmessage {
    display: none;
  }
  .section__contact-form .contact-form__submit {
    width: 25%;
    margin: 0.5rem 0.5rem 0;
    float: left;
    width: auto;
    padding: 0.2rem 0.5rem;
  }
  .section__contact-form .contact-form__grid {
    margin: 0.5rem -0.5rem 0;
  }
  .section__contact-form .contact-form__grid input, .section__contact-form .contact-form__grid select, .section__contact-form .contact-form__grid textarea {
    margin: 0.5rem 0.5rem 0;
    float: left;
    width: calc(50% - 1rem);
  }
  .section__main__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
    grid-auto-rows: 1fr;
  }
  .section__main__content .main__content__text {
    padding-right: 0rem;
    text-align: justify;
  }
  .section__main__content .main__content__image {
    padding-left: 2rem;
    padding-top: 1rem;
    text-align: center;
  }
  .section__main__content .main__content__image a:hover {
    text-decoration: none;
  }
  .section__main__content .main__content__image__label {
    font-weight: 600;
    color: #D9D9D9;
    color: var(--light-grey);
  }
  .section__split-content {
    padding: 0;
  }
  .section__split-content__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    grid-auto-rows: 1fr;
  }
  .section__split-content__text {
    padding-right: 3rem;
  }
  .section__split-content__text .split-content__text__title, .section__split-content__text .split-content__text__subtitle {
    display: inline-block;
  }
  .section__grid-boxes__grid {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .section__grid-boxes__box:hover {
    transform: scale(1.1);
  }
  .section__grid-boxes__box a {
    padding: 1rem 1.5rem;
  }
  .section__artifacts__text {
    max-width: 80%;
  }
  .section__artifacts__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
  .section__artifacts__content .artifact {
    position: relative;
    padding-bottom: 90px;
    margin-bottom: 3rem;
  }
  .section__artifacts__content .artifact--circle {
    width: 110px;
    height: 110px;
    font-size: 0.7em;
  }
  .section__artifacts__content .artifact__items {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
  .section__artifacts__content .artifact__item {
    position: absolute;
  }
  .section__artifacts__content .artifact__item:nth-of-type(1) {
    left: calc(220px - 0px);
    top: 10px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(2) {
    left: calc(220px - 8px);
    top: 128px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(3) {
    left: calc(220px - 96px);
    bottom: -12px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(4) {
    left: 0;
    bottom: -19px;
  }
  .section__artifacts__content .artifact__item__link {
    display: block;
    font-size: 0.65em;
  }
  .section__artifacts__content .artifact__main {
    display: block;
  }
  .section__artifacts__content .artifact__main.artifact--circle {
    width: 220px;
    height: 220px;
    padding-top: 70px;
    font-size: 1rem;
  }
  .section__streamlined__subtitle {
    font-size: 1.5em;
  }
  .section__streamlined__intro {
    margin-top: 1.5rem;
  }
  .section__streamlined__items {
    margin-top: 2rem;
  }
  .section__streamlined__items .streamlined__header {
    font-size: 1.3em;
    margin-bottom: 1em;
  }
  .section__streamlined__items .streamlined__acrossarrow {
    margin-top: calc(10% + 8px);
    left: 0;
    right: 0;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__line {
    border-width: 6px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--left {
    right: 30%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--right {
    left: 28%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--righter {
    left: 70%;
  }
  .section__streamlined__items .streamlined__downarrow {
    margin-top: 10%;
    height: 31%;
    width: 1px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__line {
    border-width: 6px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow {
    margin-top: 0;
    top: 70%;
    margin-left: -21px;
  }
  .section__streamlined__items .streamlined__downarrow--right {
    right: calc(10% + 12px);
  }
  .section__streamlined__items .streamlined__downarrow--left {
    left: calc(10% + 4px);
  }
  .section__streamlined__items .streamlined__item {
    padding-bottom: 55%;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text {
    padding: 0.5rem;
    font-size: 0.7em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul {
    margin-top: 3em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul li {
    padding-left: 2em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul li::before {
    margin-left: -2em;
    margin-right: 0.5em;
  }
  .section__streamlined__items .streamlined__item__link {
    margin-top: -70% !important;
    width: 70%;
    padding-top: 70%;
    font-size: 0.9em;
  }
  .section__streamlined__items .streamlined__item__text {
    width: 70%;
    padding-top: 70%;
    font-size: 0.8em;
  }
  .section__streamlined__items .streamlined__item__text.open {
    transform: translateY(95%);
  }
  .section__streamlined__items .streamlined__item__inner {
    padding: 0.8rem 1.2rem;
  }
  .section__streamlined__items .streamlined__item__content span {
    bottom: 0.7rem;
    left: 30%;
    right: 30%;
    border-radius: 0.4rem;
    font-size: 0.8em;
  }
  .section__streamlined__items .streamlined__arrow {
    margin-top: -27px;
  }
  .section__streamlined__items .streamlined__arrow--right {
    border-top: 24px solid transparent !important;
    border-bottom: 24px solid transparent !important;
    border-left: 40px solid #000000;
    border-left: 40px solid var(--black);
  }
  .section__streamlined__items .streamlined__arrow--left {
    border-top: 24px solid transparent !important;
    border-bottom: 24px solid transparent !important;
    border-right: 40px solid #000000;
    border-right: 40px solid var(--black);
  }
  .section__streamlined__items .streamlined__arrow--down {
    border-left: 24px solid transparent !important;
    border-right: 24px solid transparent !important;
    border-top: 40px solid #000000;
    border-top: 40px solid var(--black);
  }
  .section__testimonial__text {
    font-size: 2em;
    text-align: left;
  }
  .section__testimonial__person {
    padding-right: 5rem;
  }
  .section__downloads__subtitle {
    font-size: 1.5em;
  }
  .section__downloads__content .download__item {
    padding: 0 1rem;
  }
  .section__downloads__content .download__item a {
    max-width: 100%;
  }
  .section__downloads__content .download__item a span {
    padding: 0.5em 2em;
    font-size: 0.9em;
    border-radius: 0.3em;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 20px;
  }
  html.fixedheader header {
    background-color: #1A47C1;
    background-color: var(--blue);
  }

  header .container {
    padding-bottom: 10rem;
  }
  header .header__text__ctas .header__ctas__button span {
    padding: 0.4em 1.3em;
    font-size: 0.7em;
  }
  header .header__imagery {
    bottom: 10rem;
  }
  header .header__imagery__text {
    font-size: 5.5em;
  }
  header .header__imagery__image {
    transform: rotate(-30deg);
    top: -140%;
    width: 80%;
  }
  header .header__scroll-indicator {
    margin-top: 10rem;
  }

  .section__main__content .main__content__text {
    padding-right: 2rem;
  }
  .section__main__content .main__content__image {
    padding-left: 2rem;
  }
  .section__artifacts__content .artifact {
    padding-bottom: 110px;
    margin-bottom: 3rem;
  }
  .section__artifacts__content .artifact--circle {
    width: 140px;
    height: 140px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(1) {
    left: calc(300px - 0px);
    top: 20px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(2) {
    left: calc(300px - 10px);
    top: 170px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(3) {
    left: calc(300px - 113px);
    bottom: -10px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(4) {
    left: 37px;
    bottom: -33px;
  }
  .section__artifacts__content .artifact__main.artifact--circle {
    width: 300px;
    height: 300px;
    padding-top: 100px;
  }
  .section__grid-boxes__box a {
    padding: 1.5rem 2rem;
  }
  .section__split-content__grid {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
  .section__split-content__text {
    padding-right: 3rem;
  }
  .section__testimonial__text {
    font-size: 2em;
    text-align: justify;
  }
  .section__testimonial__person {
    padding-right: 5rem;
  }
  .section__streamlined__subtitle {
    font-size: 1.5em;
  }
  .section__streamlined__intro {
    margin-top: 1.5rem;
  }
  .section__streamlined__items {
    margin-top: 2rem;
  }
  .section__streamlined__items .streamlined__header {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
  .section__streamlined__items .streamlined__acrossarrow {
    margin-top: calc(10% + 8px);
    left: 0;
    right: 0;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__line {
    border-width: 8px;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--left {
    right: 30%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--right {
    left: 28%;
  }
  .section__streamlined__items .streamlined__acrossarrow .streamlined__arrow--righter {
    left: 70%;
  }
  .section__streamlined__items .streamlined__downarrow {
    margin-top: 10%;
    height: 31%;
    width: 1px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__line {
    border-width: 8px;
  }
  .section__streamlined__items .streamlined__downarrow .streamlined__arrow {
    margin-top: 0;
    top: 70%;
    margin-left: -20px;
  }
  .section__streamlined__items .streamlined__downarrow--right {
    right: calc(10% + 12px);
  }
  .section__streamlined__items .streamlined__downarrow--left {
    left: calc(10% + 4px);
  }
  .section__streamlined__items .streamlined__item {
    padding-bottom: 50%;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text {
    padding: 0.5rem;
    font-size: 0.7em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul {
    margin-top: 3em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul li {
    padding-left: 2em;
  }
  .section__streamlined__items .streamlined__item--end .streamlined__item__text ul li::before {
    margin-left: -2em;
    margin-right: 0.5em;
  }
  .section__streamlined__items .streamlined__item__link {
    margin-top: -65% !important;
    width: 65%;
    padding-top: 65%;
    font-size: 0.8em;
  }
  .section__streamlined__items .streamlined__item__text {
    width: 65%;
    padding-top: 65%;
    font-size: 0.7em;
  }
  .section__streamlined__items .streamlined__item__text.open {
    transform: translateY(85%);
  }
  .section__streamlined__items .streamlined__item__inner {
    padding: 1.5rem;
  }
  .section__streamlined__items .streamlined__item__content span {
    bottom: 1.5rem;
    left: 30%;
    right: 30%;
    border-radius: 0.5rem;
    font-size: 1em;
  }
  .section__streamlined__items .streamlined__arrow {
    margin-top: -28px;
  }
  .section__streamlined__items .streamlined__arrow--right {
    border-top: 24px solid transparent !important;
    border-bottom: 24px solid transparent !important;
    border-left: 40px solid #000000;
    border-left: 40px solid var(--black);
  }
  .section__streamlined__items .streamlined__arrow--left {
    border-top: 24px solid transparent !important;
    border-bottom: 24px solid transparent !important;
    border-right: 40px solid #000000;
    border-right: 40px solid var(--black);
  }
  .section__streamlined__items .streamlined__arrow--down {
    border-left: 24px solid transparent !important;
    border-right: 24px solid transparent !important;
    border-top: 40px solid #000000;
    border-top: 40px solid var(--black);
  }
  .section__downloads__subtitle {
    font-size: 1.5em;
  }
  .section__downloads__content {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat(4, minmax(25%, 50%));
  }
  .section__downloads__content .download__item {
    padding: 0 0.5rem;
  }
  .section__downloads__content .download__item a {
    max-width: 100%;
  }
  .section__downloads__content .download__item a span {
    padding: 0.5em 2em;
    font-size: 0.8em;
    border-radius: 0.2em;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 24px;
  }

  .container {
    width: 1170px;
  }

  header .container {
    padding-bottom: 10rem;
  }
  header .header__text__ctas .header__ctas__button span {
    padding: 0.4em 1.3em;
    font-size: 0.7em;
  }
  header .header__imagery {
    bottom: 10rem;
  }
  header .header__imagery__text {
    font-size: 5.5em;
  }
  header .header__imagery__image {
    transform: rotate(-30deg);
    top: -140%;
    width: 80%;
  }
  header .header__scroll-indicator {
    margin-top: 10rem;
  }

  .section__artifacts__content .artifact {
    padding-bottom: 140px;
    margin-bottom: 3rem;
  }
  .section__artifacts__content .artifact--circle {
    width: 140px;
    height: 140px;
    font-size: 0.6em;
  }
  .section__artifacts__content .artifact__item:nth-of-type(1) {
    left: calc(360px - 10px);
    top: 20px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(2) {
    left: calc(360px - 10px);
    top: 190px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(3) {
    left: calc(360px - 121px);
    bottom: 15px;
  }
  .section__artifacts__content .artifact__item:nth-of-type(4) {
    left: 60px;
    bottom: -14px;
  }
  .section__artifacts__content .artifact__main.artifact--circle {
    width: 350px;
    height: 350px;
    padding-top: 120px;
  }
  .section__grid-boxes__box a {
    padding: 2rem 3rem;
  }
  .section__split-content__grid {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
  .section__split-content__text {
    padding-right: 3rem;
  }
  .section__testimonial__person {
    padding-right: 5rem;
  }
  .section__downloads__subtitle {
    font-size: 1.5em;
  }
  .section__downloads__content .download__item {
    padding: 0 1rem;
  }
  .section__downloads__content .download__item a {
    max-width: 100%;
  }
  .section__downloads__content .download__item a span {
    padding: 0.5em 2em;
    font-size: 0.7em;
    border-radius: 0.2em;
  }
}
@supports (-webkit-text-stroke-color: #666) {
  header.text--black .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  header.text--white .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFFFFF;
  }
  header.text--grey .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #D0D1D3;
  }
  header.text--light-grey .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #D9D9D9;
  }
  header.text--dark-grey .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #6B6C6E;
  }
  header.text--darker-grey .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #434242;
  }
  header.text--yellow .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FAB500;
  }
  header.text--orange .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #EA8A07;
  }
  header.text--red .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #E54A06;
  }
  header.text--blue .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #1A47C1;
  }
  header.text--teal .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #02CBE0;
  }
  header.text--green .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #2FC346;
  }
  header.text--pale-grey .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #F7F7F7;
  }
  header.text--paleblue .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #E0E6F6;
  }
  header.text--lime .header__imagery__text {
    text-shadow: none;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #81C042;
  }
}
@supports (grid-gap: 1px) {
  @media (min-width: 768px) {
    .section__contact-form .contact-form__spacer {
      display: block;
    }
    .section__contact-form .contact-form__emailmessage {
      display: block;
      margin-top: 0;
      font-size: 12px;
      color: #999;
    }
    .section__contact-form .contact-form__submit {
      width: 50%;
      margin: -2.4rem 0 2.4rem 50%;
    }
    .section__contact-form .contact-form__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 0.5rem;
      margin: 1rem 0 0;
    }
    .section__contact-form .contact-form__grid input, .section__contact-form .contact-form__grid select, .section__contact-form .contact-form__grid textarea {
      margin: 0;
      float: none;
      width: 100%;
    }
    .section__contact-form .contact-form__grid button {
      float: none;
    }
  }
}

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