@charset "UTF-8";
/* Colors */
.lightgray {
  background-color: #FAFAFA;
}

.gray {
  background-color: #E8E8E8;
}

.darkgray {
  background-color: #333;
}

.black {
  background-color: #000;
}

.white {
  background-color: #fff;
}

.blue {
  background-color: #004D7D;
}

.green {
  background-color: #90C400;
}

.basic-text-wrap, .text-block-wrap, .contact-form {
  padding: 1.5rem 1.5rem;
}

@media (min-width: 48em) {
  .basic-text-wrap, .text-block-wrap, .contact-form {
    padding: 1.5rem 1.5rem;
  }
}

@media (min-width: 75em) {
  .basic-text-wrap, .text-block-wrap, .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 112.5em) {
  .basic-text-wrap, .text-block-wrap, .contact-form {
    padding: 2rem 0rem;
  }
}

.two-col .basic-text-wrap {
  padding: 1.5rem;
}

@media (min-width: 75em) {
  .two-col .basic-text-wrap {
    padding: 2rem 1rem;
  }
}

.top-margin {
  margin-top: 1rem;
}

@media (min-width: 48em) {
  .top-margin {
    margin-top: 2rem;
  }
}

@media (min-width: 75em) {
  .top-margin {
    margin-top: 3rem;
  }
}

@media (min-width: 100em) {
  .top-margin {
    margin-top: 4rem;
  }
}

.bottom-margin {
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .bottom-margin {
    margin-bottom: 2rem;
  }
}

@media (min-width: 75em) {
  .bottom-margin {
    margin-bottom: 3rem;
  }
}

@media (min-width: 100em) {
  .bottom-margin {
    margin-bottom: 4rem;
  }
}

.text-block-container-grid {
  margin: 1rem auto;
}

@media (min-width: 75em) {
  .text-block-container-grid {
    margin: 2rem auto;
  }
}

.basic-text-wrap {
  line-height: 1.8;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
}

.basic-text-wrap p {
  margin-bottom: 1rem;
}

.basic-text-wrap p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 48em) {
  .basic-text-wrap p {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 75em) {
  .basic-text-wrap {
    font-size: 1.125rem;
  }
  .basic-text-wrap p {
    margin-bottom: 1.4rem;
  }
}

@media (min-width: 100em) {
  .basic-text-wrap p {
    margin-bottom: 1.6rem;
  }
}

@media (min-width: 112.5em) {
  .basic-text-wrap p {
    margin-bottom: 1.8rem;
  }
}

.contact-form-wrapper-text h2 {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (min-width: 48em) {
  .contact-form-wrapper-text h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 75em) {
  .contact-form-wrapper-text h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 100em) {
  .contact-form-wrapper-text h2 {
    font-size: 2.75rem;
  }
}

.text-block-text-sub, .text-block-text, .sectors-item-link-headline {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (min-width: 48em) {
  .text-block-text-sub, .text-block-text, .sectors-item-link-headline {
    font-size: 1.35rem;
  }
}

@media (min-width: 75em) {
  .text-block-text-sub, .text-block-text, .sectors-item-link-headline {
    font-size: 1.45rem;
  }
}

@media (min-width: 100em) {
  .text-block-text-sub, .text-block-text, .sectors-item-link-headline {
    font-size: 1.55rem;
  }
}

@media (min-width: 112.5em) {
  .text-block-text-sub, .text-block-text, .sectors-item-link-headline {
    font-size: 1.9rem;
  }
}

.interior .sectors-item-link-headline {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

@media (min-width: 48em) {
  .interior .sectors-item-link-headline {
    font-size: 1.1rem;
  }
}

@media (min-width: 75em) {
  .interior .sectors-item-link-headline {
    font-size: 1.35rem;
  }
}

@media (min-width: 100em) {
  .interior .sectors-item-link-headline {
    font-size: 1.4rem;
  }
}

@media (min-width: 112.5em) {
  .interior .sectors-item-link-headline {
    font-size: 1.5rem;
  }
}

.button {
  color: #fff;
  background: #004D7D;
  padding: 1rem 2rem;
  display: block;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.button:hover {
  background-color: #90C400;
  color: #fff;
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.button:hover .button-text {
  color: #fff;
}

.button.outline {
  background-color: transparent;
  border: 2px solid #fff;
}

.button.outline:hover .button-text {
  color: #fff;
}

.button.outline .button-text {
  color: #fff;
}

.button.green {
  background-color: #90C400;
}

.button.green:hover {
  background-color: #fff;
}

.button.green:hover .button-text {
  color: #90C400;
}

.button.green .button-text {
  color: #fff;
}

.button.white-hover:before {
  background-color: #fff;
}

.button.white-hover:hover .button-text {
  color: #90C400;
}

.button-text {
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  z-index: 100;
  font-weight: 700;
  font-size: 120%;
  transition: 0.3s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.button.white {
  background: #fff;
  color: #90C400;
}

.button.small {
  padding: .55rem .75rem .6rem;
}

@media (min-width: 75em) {
  .button.small {
    padding: .5rem 1rem .6rem;
  }
}

.button.small .button-text {
  letter-spacing: 1px;
  font-size: .8rem;
  line-height: .8rem;
}

@media (min-width: 75em) {
  .button.small .button-text {
    font-size: .85rem;
    letter-spacing: 2px;
  }
}

.button.md {
  padding: .55rem 1.5rem .65rem;
}

@media (min-width: 75em) {
  .button.md {
    padding: .65rem 1.5rem .75rem;
  }
}

.contact-form {
  background: #004D7D;
  position: relative;
}

.contact-form-wrapper {
  max-width: 64em;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

@media (min-width: 48em) {
  .contact-form-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-column-gap: 6rem;
    align-items: center;
  }
}

.contact-form-wrapper-text {
  text-align: center;
  color: #fff;
}

@media (min-width: 48em) {
  .contact-form-wrapper-text {
    text-align: left;
  }
}

.contact-form-wrapper-text h2 {
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
}

.contact-form-wrapper-text p {
  display: block;
  margin-top: 1rem;
  font-size: 100%;
  line-height: 1.5;
}

@media (min-width: 48em) {
  .contact-form-wrapper-text p {
    font-size: 120%;
  }
}

.contact-form-wrapper-form {
  text-align: left;
}

.logo-block {
  width: 100%;
  display: block;
}

.logo-block-wrap {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: initial;
  column-gap: 1rem;
  row-gap: 1rem;
}

@media (min-width: 48em) {
  .logo-block-wrap {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
  }
}

@media (min-width: 75em) {
  .logo-block-wrap {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 3rem;
    row-gap: 3rem;
  }
}

.logo-item {
  padding: 1rem;
  display: grid;
  align-items: center;
  align-content: center;
  flex: 0 0 calc(33.33% - 1rem);
  mix-blend-mode: multiply;
}

@media (min-width: 48em) {
  .logo-item {
    flex: 0 0 calc(25% - 2rem);
  }
}

@media (min-width: 75em) {
  .logo-item {
    flex: 0 0 calc(16.66% - 3rem);
  }
}

.logo-item a {
  display: block;
}

.logo-item img {
  width: 100%;
  height: auto;
  min-height: 1px;
}

.photo-gallery {
  margin: 0;
}

.photo-gallery-headline {
  margin: 0;
}

.photo-gallery-list {
  position: relative;
  max-height: 300px;
}

@media (min-width: 48em) {
  .photo-gallery-list {
    max-height: 600px;
  }
}

.photo-gallery-item.slide {
  padding: 35% 0 0 0;
}

.photo-gallery-link {
  width: 100%;
  text-decoration: none !important;
}

.photo-gallery-img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 48em) {
  .photo-gallery-img {
    max-height: 600px;
  }
}

/* -------- Slide Controls -------- */
.slide-controls {
  cursor: pointer;
  font-size: 1.8em;
  position: absolute;
  top: 45%;
  transform: scale(1.5);
  z-index: 101;
  color: #fff;
  opacity: 1;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 48em) {
  .slide-controls {
    font-size: 1.4em;
    top: 45%;
    opacity: .8;
  }
}

.slide-controls:hover {
  opacity: 1;
}

.prev-slide {
  left: 0;
  fill: #fff;
}

.next-slide {
  right: 0;
  fill: #fff;
}

.quote-item {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 48em) {
  .quote-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 0px;
    align-items: center;
    text-align: left;
    margin-bottom: 3rem;
  }
}

@media (min-width: 75em) {
  .quote-item {
    grid-template-columns: 1fr 5fr;
  }
}

.quote-item-figure {
  mix-blend-mode: multiply;
  text-align: center;
}

.quote-item-figure img {
  max-width: 160px;
  height: auto;
  max-height: 80px;
}

.quote-item-text {
  font-size: 1.25rem;
  text-align: center;
  color: #004D7D;
  font-style: italic;
}

@media (min-width: 48em) {
  .quote-item-text {
    text-align: left;
  }
}

.quote-item-text-mark {
  position: relative;
  display: inline-block;
  margin: 0;
}

.quote-item-text p {
  position: relative;
  display: inline-block;
  margin: 0;
}

.sectors {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 3fr;
  grid-column-gap: 0;
  grid-row-gap: 3rem;
  align-items: center;
  padding: 3rem;
}

@media (min-width: 48em) {
  .sectors {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 0px;
    padding: 2.5rem 0;
  }
}

@media (min-width: 75em) {
  .sectors {
    grid-column-gap: 3rem;
    padding: 3rem;
  }
}

.sectors-item {
  text-align: center;
  padding: 1.5rem;
  margin: 0 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

@media (min-width: 48em) {
  .sectors-item {
    margin: 0 0.5rem;
  }
}

@media (min-width: 75em) {
  .sectors-item {
    margin: 0 1.5rem;
  }
}

.sectors-item-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.sectors-item-link-figure {
  border-radius: 50%;
  position: relative;
  margin: -3rem auto 1rem;
  object-fit: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 200px;
  height: 200px;
  background-color: #004D7D;
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

@media (min-width: 48em) {
  .sectors-item-link-figure {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 75em) {
  .sectors-item-link-figure {
    width: 200px;
    height: 200px;
  }
}

.sectors-item-link-headline {
  text-align: center;
  font-weight: 700;
  color: #004D7D;
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.sectors-item:hover {
  background: #004D7D;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sectors-item:hover .sectors-item-link-figure {
  background-size: 125%;
}

.sectors-item:hover .sectors-item-link-headline {
  color: #fff;
}

.interior .sectors {
  padding: 1.5rem;
}

.interior .sectors-item {
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.interior .sectors-item-link {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  align-items: center;
  text-align: left;
  position: relative;
  width: 100%;
  height: 100%;
}

.interior .sectors-item-link-figure {
  margin: 0 auto;
  width: 120px;
  height: 120px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
}

.interior .sectors-item-link-headline {
  text-align: left;
  color: #fff;
  text-shadow: 0 0 15px #000000;
}

.interior .sectors-item:hover {
  -moz-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -o-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.text-block {
  background-color: #fff;
  color: #000;
}

.text-block.white {
  background-color: #fff;
  color: #000;
}

.text-block.lightgray {
  background-color: #FAFAFA;
  color: #000;
}

.text-block.gray {
  background-color: #E8E8E8;
  color: #000;
}

.text-block.darkgray {
  background-color: #333;
  color: #fff;
}

.text-block.green {
  background-color: #90C400;
  color: #fff;
}

.text-block.blue {
  background-color: #004D7D;
  color: #fff;
}

.text-block.black {
  background-color: #000;
  color: #fff;
}

.text-block-wrap {
  max-width: 75em;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.text-block-container {
  display: block;
  text-align: left;
}

@media (min-width: 48em) {
  .text-block-container-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: initial;
    column-gap: 4rem;
  }
  .text-block-container-grid.five {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 2rem;
    text-align: center;
  }
  .text-block-container-grid.five .text-block-container-grid-col {
    display: grid;
    align-items: center;
  }
}

.text-block-container-grid.single {
  display: block;
}

.text-block-container-grid-col-container {
  display: block;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  column-gap: 2rem;
}

.text-block-container-grid-col-container.right {
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .text-block-container-grid-col-container.right {
    display: grid;
    margin-bottom: 0;
  }
}

.text-block-container-grid-col-container.right figure {
  order: 2;
}

.text-block-container-grid-col-container.center {
  display: block;
  margin-bottom: 1rem;
}

.text-block-container-grid-col-container.center .item-photo {
  margin-bottom: 1.5rem;
}

.text-block-container-grid-col-container.left {
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .text-block-container-grid-col-container.left {
    display: grid;
    margin-bottom: 0;
  }
}

.text-block-text {
  display: inline-block;
  margin-bottom: 0;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: #fff;
  background: #004D7D;
  padding: .5rem 1rem .25rem 1rem;
}

@media (min-width: 48em) {
  .text-block-text {
    margin-bottom: 0;
  }
}

.text-block-text-sub {
  text-align: center;
  color: #90C400;
  display: block;
  font-weight: 700;
  background: none;
  padding: 0;
}

.item-photo {
  position: relative;
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .item-photo {
    margin-bottom: 0;
  }
}

.item-photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: .7rem;
  padding: .25rem .5rem;
  color: #fff;
}

.item-photo img {
  max-width: 100%;
  display: block;
}

.box-shadow {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

@media (min-width: 48em) {
  .box-shadow {
    margin-bottom: 0;
    padding: 2rem;
    border-radius: 2rem;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  }
}

.basic-text {
  max-width: 75em;
  margin: 0 auto;
}

.basic-text-wrap p {
  margin-bottom: 1rem;
}

.basic-text-flex {
  margin: 0 0 1.5rem 0;
}

@media (min-width: 48em) {
  .basic-text-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: stretch;
    justify-content: center;
  }
}

.basic-text-flex-col {
  flex: 1 1 calc(50% - 3rem);
  margin: 1.5rem;
}

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

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

.anchor-link {
  display: block;
  margin-top: -100px;
  position: absolute;
  height: 1px;
  width: 100%;
  z-index: -1;
  background: transparent;
}
