/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@charset "UTF-8";
/* Slider */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@font-face {
  font-family: 'ica';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icomoon/ica.ttf?gvwoy1") format("truetype"), url("../fonts/icomoon/ica.woff?gvwoy1") format("woff"), url("../fonts/icomoon/ica.svg?gvwoy1#ica") format("svg");
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #f1f3f1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes moveOnLeftOdd {
  0% {
    animation-timing-function: ease-in-out;
    transform: translate(0);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(vw-calc(-615));
  }
}

@keyframes moveOnRightOdd {
  0% {
    animation-timing-function: ease-in-out;
    transform: translate(0px);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(vw-calc(560));
  }
}

@keyframes moveOnLeftEven {
  0% {
    animation-timing-function: ease-in-out;
    transform: translate(0px);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(vw-calc(-560));
  }
}

@keyframes moveOnRightEven {
  0% {
    animation-timing-function: ease-in-out;
    transform: translate(0px);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate(vw-calc(615));
  }
}

@keyframes flip {
  0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) rotateY(0);
  }
  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
  }
  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  }
  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateY(360deg) scale(0.95);
  }
  100% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scale(1);
  }
}

@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipOutX {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes flipOutY {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@keyframes border-dance {
  0% {
    background-position: 0 0, 300px 116px, 0 150px, 216px 0;
  }
  100% {
    background-position: 300px 0, 0 116px, 0 0, 216px 150px;
  }
}

.hide-element {
  visibility: hidden;
}

.hide-accessible {
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.pulse {
  animation-name: pulse;
}

.typing {
  animation-name: typing;
}

.blink-caret {
  animation-name: blink-caret;
}

.fade-in {
  animation-name: fadeIn;
}

.fade-out {
  animation-name: fadeOut;
}

.fade-in-up {
  animation-name: fadeInUp;
}

.fade-in-down {
  animation-name: fadeInDown;
}

.fade-in-left {
  animation-name: fadeInLeft;
}

.fade-in-right {
  animation-name: fadeInRight;
}

.fade-in-up-big {
  animation-name: fadeInUpBig;
}

.fade-in-down-big {
  animation-name: fadeInDownBig;
}

.fade-in-left-big {
  animation-name: fadeInLeftBig;
}

.fade-in-right-big {
  animation-name: fadeInRightBig;
}

.fade-out-down {
  animation-name: fadeOutDown;
}

.fade-out-up {
  animation-name: fadeOutUp;
}

.fade-out-left {
  animation-name: fadeOutLeft;
}

.fade-out-right {
  animation-name: fadeOutRight;
}

.fade-out-up-big {
  animation-name: fadeOutUpBig;
}

.fade-out-down-big {
  animation-name: fadeOutDownBig;
}

.fade-out-left-big {
  animation-name: fadeOutLeftBig;
}

.fade-out-right-big {
  animation-name: fadeOutRightBig;
}

.flip {
  animation-name: flip;
  backface-visibility: visible !important;
}

.flip-in-x {
  animation-name: flipInX;
  backface-visibility: visible !important;
}

.flip-out-x {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

.flip-in-y {
  animation-name: flipInY;
  backface-visibility: visible !important;
}

.flip-out-y {
  animation-name: flipOutY;
  backface-visibility: visible !important;
}

.bounce {
  animation-name: bounce;
}

.border-dance {
  animation-name: border-dance;
}

.remove-text {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -9999px;
}

.info-title {
  font-size: 22px;
  display: block;
  font-weight: normal;
  margin: 15px 0;
}

@media (min-width: 768px) {
  .info-title {
    font-size: 28px;
    margin: 20px 0;
  }
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

main,
details,
summary {
  display: block;
}

pre,
textarea {
  overflow: auto;
}

html,
input,
textarea,
button {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

table {
  border-collapse: 0;
  border-spacing: 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
input,
button {
  -ms-touch-action: none !important;
  touch-action: none !important;
}

html {
  box-sizing: border-box;
  font-family: "Open Sans", "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.6;
  background-color: #313131;
}

body {
  margin: 0;
  background-color: #fff;
  color: #141414;
}

body.toolbar-fixed {
  margin-top: 82px;
}

@media (max-width: 65.5625rem) {
  body.has-menu {
    overflow: hidden;
  }
}

*,
*:after,
*:before {
  box-sizing: inherit;
  line-height: inherit;
}

::-moz-selection {
  background: #141414;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #141414;
  color: #fff;
  text-shadow: none;
}

.footer ::-moz-selection {
  background: purple;
}

.footer ::selection {
  background: purple;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
ul,
ol {
  margin: 0 0 1em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", "Open Sans", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  word-break: break-word;
}

h1 {
  font-weight: 300;
}

ul,
ol {
  padding: 0 0 0 1.5rem;
}

p,
li {
  line-height: 1.75;
}

blockquote {
  padding-left: 1.4em;
  border-left: 0.625rem solid rgba(255, 255, 255, 0.15);
}

a {
  color: currentColor;
}

small {
  font-size: small;
}

fieldset {
  border: none;
}

input,
textarea,
select {
  margin: 0;
  border: 0;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

hr {
  border-width: 0 0 1px 0;
  border-color: rgba(255, 255, 255, 0.1);
  border-style: solid;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.border {
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
}

.border-fat {
  border-style: solid;
  border-width: .18em;
}

.border-top {
  border-top-style: solid;
  border-top-width: 1px;
}

.border-top-fat {
  border-top-style: solid;
  border-top-width: .18em;
}

.border-right {
  border-right-style: solid;
  border-right-width: 1px;
}

.border-right-fat {
  border-right-style: solid;
  border-right-width: .18em;
}

.border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.border-bottom-fat {
  border-bottom-style: solid;
  border-bottom-width: .18em;
}

.border-left {
  border-left-style: solid;
  border-left-width: 1px;
}

.border-left-fat {
  border-left-style: solid;
  border-left-width: .18em;
}

.border-white {
  border-color: #fff;
}

.border-purple {
  border-color: #906;
}

.border-orange {
  border-color: #ff974f;
}

.border-blue {
  border-color: #199ed9;
}

.border-teal {
  border-color: #0092a2;
}

.border-green {
  border-color: #77933c;
}

.border-light-gray {
  border-color: #f4f5f6;
}

.border-gray {
  border-color: #ebeced;
}

.border-medium-gray {
  border-color: #b1b1b1;
}

.border-dark-gray {
  border-color: #313131;
}

.border-black-gray {
  border-color: #1B1B1B;
}

.border-black {
  border-color: #141414;
}

.border-tinted {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-shaded {
  border-color: rgba(20, 20, 20, 0.3);
}

.border-none {
  border: 0;
}

.rounded {
  border-radius: 3px;
}

.circle {
  border-radius: 50%;
}

.pill {
  border-radius: 4rem;
}

.rounded-top {
  border-radius: 3px 3px 0 0;
}

.rounded-right {
  border-radius: 0 3px 3px 0;
}

.rounded-bottom {
  border-radius: 0 0 3px 3px;
}

.rounded-left {
  border-radius: 3px 0 0 3px;
}

.not-rounded {
  border-radius: 0;
}

@media screen and (min-width: 33.125rem) {
  .xxs-border {
    border-style: solid;
    border-width: 1px;
  }
  .xxs-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .xxs-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .xxs-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .xxs-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .xxs-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .xxs-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .xxs-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .xxs-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .xxs-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-border {
    border-style: solid;
    border-width: 1px;
  }
  .xs-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .xs-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .xs-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .xs-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .xs-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .xs-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .xs-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .xs-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .xs-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-border {
    border-style: solid;
    border-width: 1px;
  }
  .s-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .s-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .s-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .s-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .s-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .s-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .s-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .s-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .s-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-border {
    border-style: solid;
    border-width: 1px;
  }
  .m-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .m-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .m-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .m-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .m-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .m-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .m-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .m-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .m-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-border {
    border-style: solid;
    border-width: 1px;
  }
  .l-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .l-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .l-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .l-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .l-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .l-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .l-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .l-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .l-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

@media screen and (min-width: 1194px) {
  .xl-border {
    border-style: solid;
    border-width: 1px;
  }
  .xl-border-fat {
    border-style: solid;
    border-width: .18em;
  }
  .xl-border-top {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .xl-border-top-fat {
    border-top-style: solid;
    border-top-width: .18em;
  }
  .xl-border-right {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .xl-border-right-fat {
    border-right-style: solid;
    border-right-width: .18em;
  }
  .xl-border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .xl-border-bottom-fat {
    border-bottom-style: solid;
    border-bottom-width: .18em;
  }
  .xl-border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .xl-border-left-fat {
    border-left-style: solid;
    border-left-width: .18em;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 33.125rem) {
  .xxs-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1194px) {
  .xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.self-center {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.self-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.self-stretch {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

.content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

.content-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-last {
  -webkit-box-ordinal-group: 100000;
  -ms-flex-order: 99999;
  order: 99999;
}

.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

@media screen and (min-width: 33.125rem) {
  .xxs-col-1 {
    width: 8.33333%;
  }
  .xxs-col-2 {
    width: 16.66667%;
  }
  .xxs-col-3 {
    width: 25%;
  }
  .xxs-col-4 {
    width: 33.33333%;
  }
  .xxs-col-5 {
    width: 41.66667%;
  }
  .xxs-col-6 {
    width: 50%;
  }
  .xxs-col-7 {
    width: 58.33333%;
  }
  .xxs-col-8 {
    width: 66.66667%;
  }
  .xxs-col-9 {
    width: 75%;
  }
  .xxs-col-10 {
    width: 83.33333%;
  }
  .xxs-col-11 {
    width: 91.66667%;
  }
  .xxs-col-12 {
    width: 100%;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-col-1 {
    width: 8.33333%;
  }
  .xs-col-2 {
    width: 16.66667%;
  }
  .xs-col-3 {
    width: 25%;
  }
  .xs-col-4 {
    width: 33.33333%;
  }
  .xs-col-5 {
    width: 41.66667%;
  }
  .xs-col-6 {
    width: 50%;
  }
  .xs-col-7 {
    width: 58.33333%;
  }
  .xs-col-8 {
    width: 66.66667%;
  }
  .xs-col-9 {
    width: 75%;
  }
  .xs-col-10 {
    width: 83.33333%;
  }
  .xs-col-11 {
    width: 91.66667%;
  }
  .xs-col-12 {
    width: 100%;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-col-1 {
    width: 8.33333%;
  }
  .s-col-2 {
    width: 16.66667%;
  }
  .s-col-3 {
    width: 25%;
  }
  .s-col-4 {
    width: 33.33333%;
  }
  .s-col-5 {
    width: 41.66667%;
  }
  .s-col-6 {
    width: 50%;
  }
  .s-col-7 {
    width: 58.33333%;
  }
  .s-col-8 {
    width: 66.66667%;
  }
  .s-col-9 {
    width: 75%;
  }
  .s-col-10 {
    width: 83.33333%;
  }
  .s-col-11 {
    width: 91.66667%;
  }
  .s-col-12 {
    width: 100%;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-col-1 {
    width: 8.33333%;
  }
  .m-col-2 {
    width: 16.66667%;
  }
  .m-col-3 {
    width: 25%;
  }
  .m-col-4 {
    width: 33.33333%;
  }
  .m-col-5 {
    width: 41.66667%;
  }
  .m-col-6 {
    width: 50%;
  }
  .m-col-7 {
    width: 58.33333%;
  }
  .m-col-8 {
    width: 66.66667%;
  }
  .m-col-9 {
    width: 75%;
  }
  .m-col-10 {
    width: 83.33333%;
  }
  .m-col-11 {
    width: 91.66667%;
  }
  .m-col-12 {
    width: 100%;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-col-1 {
    width: 8.33333%;
  }
  .l-col-2 {
    width: 16.66667%;
  }
  .l-col-3 {
    width: 25%;
  }
  .l-col-4 {
    width: 33.33333%;
  }
  .l-col-5 {
    width: 41.66667%;
  }
  .l-col-6 {
    width: 50%;
  }
  .l-col-7 {
    width: 58.33333%;
  }
  .l-col-8 {
    width: 66.66667%;
  }
  .l-col-9 {
    width: 75%;
  }
  .l-col-10 {
    width: 83.33333%;
  }
  .l-col-11 {
    width: 91.66667%;
  }
  .l-col-12 {
    width: 100%;
  }
}

@media screen and (min-width: 1194px) {
  .xl-col-1 {
    width: 8.33333%;
  }
  .xl-col-2 {
    width: 16.66667%;
  }
  .xl-col-3 {
    width: 25%;
  }
  .xl-col-4 {
    width: 33.33333%;
  }
  .xl-col-5 {
    width: 41.66667%;
  }
  .xl-col-6 {
    width: 50%;
  }
  .xl-col-7 {
    width: 58.33333%;
  }
  .xl-col-8 {
    width: 66.66667%;
  }
  .xl-col-9 {
    width: 75%;
  }
  .xl-col-10 {
    width: 83.33333%;
  }
  .xl-col-11 {
    width: 91.66667%;
  }
  .xl-col-12 {
    width: 100%;
  }
}

.hide,
.block--type,
.element-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.display-none {
  display: none;
}

@media screen and (min-width: 33.125rem) {
  .xxs-display-none {
    display: none !important;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-display-none {
    display: none !important;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-display-none {
    display: none !important;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-display-none {
    display: none !important;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-display-none {
    display: none !important;
  }
}

@media screen and (min-width: 1194px) {
  .xl-display-none {
    display: none !important;
  }
}

.show-on-mobile {
  display: block;
}

.show-on-mobile--flex {
  display: flex;
}

@media (min-width: 1194px) {
  .show-on-mobile {
    display: none !important;
  }
  .show-on-mobile--flex {
    display: flex !important;
  }
}

.show-on-desktop {
  display: none !important;
}

.show-on-desktop--flex {
  display: none !important;
}

@media (min-width: 1194px) {
  .show-on-desktop {
    display: block !important;
  }
  .show-on-desktop--flex {
    display: flex !important;
  }
}

.inline {
  display: inline;
}

.block,
.form-item label,
legend {
  display: block;
}

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

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.table-column {
  display: table-column;
}

.table-row {
  display: table-row;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-visible {
  overflow-x: visible;
}

.overflow-y-visible {
  overflow-y: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-auto {
  overflow: auto;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.clearfix:before,
.exposed-filter:before,
.page--search .views-exposed-form:before,
.user-login-form:before,
.member-search-form:before,
.contextual-region:before,
.views-row:before,
.not-front .page-content .views-row:before,
.search-page-form details:before,
.blocks:before,
.row:before,
.page-edit-menu ul:before,
.clearfix:after,
.exposed-filter:after,
.page--search .views-exposed-form:after,
.user-login-form:after,
.member-search-form:after,
.contextual-region:after,
.views-row:after,
.not-front .page-content .views-row:after,
.search-page-form details:after,
.blocks:after,
.row:after,
.page-edit-menu ul:after {
  content: "";
  display: table;
}

.clearfix:after,
.exposed-filter:after,
.page--search .views-exposed-form:after,
.user-login-form:after,
.member-search-form:after,
.contextual-region:after,
.views-row:after,
.not-front .page-content .views-row:after,
.search-page-form details:after,
.blocks:after,
.row:after,
.page-edit-menu ul:after {
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

@media screen and (min-width: 33.125rem) {
  .xxs-inline {
    display: inline;
  }
  .xxs-block {
    display: block;
  }
  .xxs-inline-block {
    display: inline-block;
  }
  .xxs-table {
    display: table;
  }
  .xxs-table-cell {
    display: table-cell;
  }
  .xxs-table-column {
    display: table-column;
  }
  .xxs-table-row {
    display: table-row;
  }
  .xxs-overflow-hidden {
    overflow: hidden;
  }
  .xxs-overflow-visible {
    overflow: visible;
  }
  .xxs-overflow-scroll {
    overflow: scroll;
  }
  .xxs-overflow-auto {
    overflow: auto;
  }
  .xxs-float-left {
    float: left;
  }
  .xxs-float-right {
    float: right;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-inline {
    display: inline;
  }
  .xs-block {
    display: block;
  }
  .xs-inline-block {
    display: inline-block;
  }
  .xs-table {
    display: table;
  }
  .xs-table-cell {
    display: table-cell;
  }
  .xs-table-column {
    display: table-column;
  }
  .xs-table-row {
    display: table-row;
  }
  .xs-overflow-hidden {
    overflow: hidden;
  }
  .xs-overflow-visible {
    overflow: visible;
  }
  .xs-overflow-scroll {
    overflow: scroll;
  }
  .xs-overflow-auto {
    overflow: auto;
  }
  .xs-float-left {
    float: left;
  }
  .xs-float-right {
    float: right;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-inline {
    display: inline;
  }
  .s-block {
    display: block;
  }
  .s-inline-block {
    display: inline-block;
  }
  .s-table {
    display: table;
  }
  .s-table-cell {
    display: table-cell;
  }
  .s-table-column {
    display: table-column;
  }
  .s-table-row {
    display: table-row;
  }
  .s-overflow-hidden {
    overflow: hidden;
  }
  .s-overflow-visible {
    overflow: visible;
  }
  .s-overflow-scroll {
    overflow: scroll;
  }
  .s-overflow-auto {
    overflow: auto;
  }
  .s-float-left {
    float: left;
  }
  .s-float-right {
    float: right;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-inline {
    display: inline;
  }
  .m-block {
    display: block;
  }
  .m-inline-block {
    display: inline-block;
  }
  .m-table {
    display: table;
  }
  .m-table-cell {
    display: table-cell;
  }
  .m-table-column {
    display: table-column;
  }
  .m-table-row {
    display: table-row;
  }
  .m-overflow-hidden {
    overflow: hidden;
  }
  .m-overflow-visible {
    overflow: visible;
  }
  .m-overflow-scroll {
    overflow: scroll;
  }
  .m-overflow-auto {
    overflow: auto;
  }
  .m-float-left {
    float: left;
  }
  .m-float-right {
    float: right;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-inline {
    display: inline;
  }
  .l-block {
    display: block;
  }
  .l-inline-block {
    display: inline-block;
  }
  .l-table {
    display: table;
  }
  .l-table-cell {
    display: table-cell;
  }
  .l-table-column {
    display: table-column;
  }
  .l-table-row {
    display: table-row;
  }
  .l-overflow-hidden {
    overflow: hidden;
  }
  .l-overflow-visible {
    overflow: visible;
  }
  .l-overflow-scroll {
    overflow: scroll;
  }
  .l-overflow-auto {
    overflow: auto;
  }
  .l-float-left {
    float: left;
  }
  .l-float-right {
    float: right;
  }
}

@media screen and (min-width: 1194px) {
  .xl-inline {
    display: inline;
  }
  .xl-block {
    display: block;
  }
  .xl-inline-block {
    display: inline-block;
  }
  .xl-table {
    display: table;
  }
  .xl-table-cell {
    display: table-cell;
  }
  .xl-table-column {
    display: table-column;
  }
  .xl-table-row {
    display: table-row;
  }
  .xl-overflow-hidden {
    overflow: hidden;
  }
  .xl-overflow-visible {
    overflow: visible;
  }
  .xl-overflow-scroll {
    overflow: scroll;
  }
  .xl-overflow-auto {
    overflow: auto;
  }
  .xl-float-left {
    float: left;
  }
  .xl-float-right {
    float: right;
  }
}

.m0 {
  margin: 0;
}

.mt0,
.sidebar nav {
  margin-top: 0;
}

.mr0 {
  margin-right: 0;
}

.mb0 {
  margin-bottom: 0;
}

.ml0 {
  margin-left: 0;
}

.mx0 {
  margin-left: 0;
  margin-right: 0;
}

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

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.m0 {
  margin: 0;
}

.mt0,
.sidebar nav {
  margin-top: 0;
}

.mnt0 {
  margin-top: 0;
}

.mr0 {
  margin-right: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mnb0 {
  margin-bottom: 0;
}

.ml0 {
  margin-left: 0;
}

.mx0 {
  margin-left: 0;
  margin-right: 0;
}

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

.mnx0 {
  margin-left: 0;
  margin-right: 0;
}

.mh {
  margin: .5rem;
}

.mth {
  margin-top: .5rem;
}

.mnth {
  margin-top: -.5rem;
}

.mrh {
  margin-right: .5rem;
}

.mbh {
  margin-bottom: .5rem;
}

.mnbh {
  margin-bottom: -.5rem;
}

.mlh {
  margin-left: .5rem;
}

.mxh {
  margin-left: .5rem;
  margin-right: .5rem;
}

.myh {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.mnxh {
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.m1 {
  margin: 1rem;
}

.mt1 {
  margin-top: 1rem;
}

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

.mr1 {
  margin-right: 1rem;
}

.mb1,
.sidebar nav {
  margin-bottom: 1rem;
}

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

.ml1 {
  margin-left: 1rem;
}

.mx1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

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

.mnx1 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.m2 {
  margin: 2rem;
}

.mt2 {
  margin-top: 2rem;
}

.mnt2 {
  margin-top: -2rem;
}

.mr2 {
  margin-right: 2rem;
}

.mb2,
.page-top-image {
  margin-bottom: 2rem;
}

.mnb2 {
  margin-bottom: -2rem;
}

.ml2 {
  margin-left: 2rem;
}

.mx2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mnx2 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.m3 {
  margin: 3rem;
}

.mt3 {
  margin-top: 3rem;
}

.mnt3 {
  margin-top: -3rem;
}

.mr3 {
  margin-right: 3rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mnb3 {
  margin-bottom: -3rem;
}

.ml3 {
  margin-left: 3rem;
}

.mx3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mnx3 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.m4 {
  margin: 4rem;
}

.mt4 {
  margin-top: 4rem;
}

.mnt4 {
  margin-top: -4rem;
}

.mr4 {
  margin-right: 4rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mnb4 {
  margin-bottom: -4rem;
}

.ml4 {
  margin-left: 4rem;
}

.mx4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mnx4 {
  margin-left: -4rem;
  margin-right: -4rem;
}

.m5 {
  margin: 5rem;
}

.mt5 {
  margin-top: 5rem;
}

.mnt5 {
  margin-top: -5rem;
}

.mr5 {
  margin-right: 5rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.mnb5 {
  margin-bottom: -5rem;
}

.ml5 {
  margin-left: 5rem;
}

.mx5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mnx5 {
  margin-left: -5rem;
  margin-right: -5rem;
}

@media screen and (min-width: 33.125rem) {
  .xxs-m0 {
    margin: 0;
  }
  .xxs-mt0 {
    margin-top: 0;
  }
  .xxs-mr0 {
    margin-right: 0;
  }
  .xxs-mb0 {
    margin-bottom: 0;
  }
  .xxs-ml0 {
    margin-left: 0;
  }
  .xxs-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xxs-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xxs-ml-auto {
    margin-left: auto;
  }
  .xxs-mr-auto {
    margin-right: auto;
  }
  .xxs-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xxs-m0 {
    margin: 0;
  }
  .xxs-mt0 {
    margin-top: 0;
  }
  .xxs-mnt0 {
    margin-top: 0;
  }
  .xxs-mr0 {
    margin-right: 0;
  }
  .xxs-mnr0 {
    margin-right: 0;
  }
  .xxs-mb0 {
    margin-bottom: 0;
  }
  .xxs-mnb0 {
    margin-bottom: 0;
  }
  .xxs-ml0 {
    margin-left: 0;
  }
  .xxs-mnl0 {
    margin-left: 0;
  }
  .xxs-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xxs-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xxs-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xxs-mh {
    margin: .5rem;
  }
  .xxs-mth {
    margin-top: .5rem;
  }
  .xxs-mnth {
    margin-top: -.5rem;
  }
  .xxs-mrh {
    margin-right: .5rem;
  }
  .xxs-mnrh {
    margin-right: -.5rem;
  }
  .xxs-mbh {
    margin-bottom: .5rem;
  }
  .xxs-mnbh {
    margin-bottom: -.5rem;
  }
  .xxs-mlh {
    margin-left: .5rem;
  }
  .xxs-mnlh {
    margin-left: -.5rem;
  }
  .xxs-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .xxs-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .xxs-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .xxs-m1 {
    margin: 1rem;
  }
  .xxs-mt1 {
    margin-top: 1rem;
  }
  .xxs-mnt1 {
    margin-top: -1rem;
  }
  .xxs-mr1 {
    margin-right: 1rem;
  }
  .xxs-mnr1 {
    margin-right: -1rem;
  }
  .xxs-mb1 {
    margin-bottom: 1rem;
  }
  .xxs-mnb1 {
    margin-bottom: -1rem;
  }
  .xxs-ml1 {
    margin-left: 1rem;
  }
  .xxs-mnl1 {
    margin-left: -1rem;
  }
  .xxs-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .xxs-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .xxs-mnx1 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .xxs-m2 {
    margin: 2rem;
  }
  .xxs-mt2 {
    margin-top: 2rem;
  }
  .xxs-mnt2 {
    margin-top: -2rem;
  }
  .xxs-mr2 {
    margin-right: 2rem;
  }
  .xxs-mnr2 {
    margin-right: -2rem;
  }
  .xxs-mb2 {
    margin-bottom: 2rem;
  }
  .xxs-mnb2 {
    margin-bottom: -2rem;
  }
  .xxs-ml2 {
    margin-left: 2rem;
  }
  .xxs-mnl2 {
    margin-left: -2rem;
  }
  .xxs-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .xxs-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .xxs-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .xxs-m3 {
    margin: 3rem;
  }
  .xxs-mt3 {
    margin-top: 3rem;
  }
  .xxs-mnt3 {
    margin-top: -3rem;
  }
  .xxs-mr3 {
    margin-right: 3rem;
  }
  .xxs-mnr3 {
    margin-right: -3rem;
  }
  .xxs-mb3 {
    margin-bottom: 3rem;
  }
  .xxs-mnb3 {
    margin-bottom: -3rem;
  }
  .xxs-ml3 {
    margin-left: 3rem;
  }
  .xxs-mnl3 {
    margin-left: -3rem;
  }
  .xxs-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .xxs-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .xxs-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .xxs-m4 {
    margin: 4rem;
  }
  .xxs-mt4 {
    margin-top: 4rem;
  }
  .xxs-mnt4 {
    margin-top: -4rem;
  }
  .xxs-mr4 {
    margin-right: 4rem;
  }
  .xxs-mnr4 {
    margin-right: -4rem;
  }
  .xxs-mb4 {
    margin-bottom: 4rem;
  }
  .xxs-mnb4 {
    margin-bottom: -4rem;
  }
  .xxs-ml4 {
    margin-left: 4rem;
  }
  .xxs-mnl4 {
    margin-left: -4rem;
  }
  .xxs-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .xxs-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .xxs-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .xxs-m5 {
    margin: 5rem;
  }
  .xxs-mt5 {
    margin-top: 5rem;
  }
  .xxs-mnt5 {
    margin-top: -5rem;
  }
  .xxs-mr5 {
    margin-right: 5rem;
  }
  .xxs-mnr5 {
    margin-right: -5rem;
  }
  .xxs-mb5 {
    margin-bottom: 5rem;
  }
  .xxs-mnb5 {
    margin-bottom: -5rem;
  }
  .xxs-ml5 {
    margin-left: 5rem;
  }
  .xxs-mnl5 {
    margin-left: -5rem;
  }
  .xxs-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .xxs-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .xxs-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-m0 {
    margin: 0;
  }
  .xs-mt0 {
    margin-top: 0;
  }
  .xs-mr0 {
    margin-right: 0;
  }
  .xs-mb0 {
    margin-bottom: 0;
  }
  .xs-ml0 {
    margin-left: 0;
  }
  .xs-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xs-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xs-ml-auto {
    margin-left: auto;
  }
  .xs-mr-auto {
    margin-right: auto;
  }
  .xs-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xs-m0 {
    margin: 0;
  }
  .xs-mt0 {
    margin-top: 0;
  }
  .xs-mnt0 {
    margin-top: 0;
  }
  .xs-mr0 {
    margin-right: 0;
  }
  .xs-mnr0 {
    margin-right: 0;
  }
  .xs-mb0 {
    margin-bottom: 0;
  }
  .xs-mnb0 {
    margin-bottom: 0;
  }
  .xs-ml0 {
    margin-left: 0;
  }
  .xs-mnl0 {
    margin-left: 0;
  }
  .xs-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xs-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xs-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xs-mh {
    margin: .5rem;
  }
  .xs-mth {
    margin-top: .5rem;
  }
  .xs-mnth {
    margin-top: -.5rem;
  }
  .xs-mrh {
    margin-right: .5rem;
  }
  .xs-mnrh {
    margin-right: -.5rem;
  }
  .xs-mbh {
    margin-bottom: .5rem;
  }
  .xs-mnbh {
    margin-bottom: -.5rem;
  }
  .xs-mlh {
    margin-left: .5rem;
  }
  .xs-mnlh {
    margin-left: -.5rem;
  }
  .xs-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .xs-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .xs-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .xs-m1 {
    margin: 1rem;
  }
  .xs-mt1 {
    margin-top: 1rem;
  }
  .xs-mnt1 {
    margin-top: -1rem;
  }
  .xs-mr1 {
    margin-right: 1rem;
  }
  .xs-mnr1 {
    margin-right: -1rem;
  }
  .xs-mb1 {
    margin-bottom: 1rem;
  }
  .xs-mnb1 {
    margin-bottom: -1rem;
  }
  .xs-ml1 {
    margin-left: 1rem;
  }
  .xs-mnl1 {
    margin-left: -1rem;
  }
  .xs-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .xs-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .xs-mnx1 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .xs-m2 {
    margin: 2rem;
  }
  .xs-mt2 {
    margin-top: 2rem;
  }
  .xs-mnt2 {
    margin-top: -2rem;
  }
  .xs-mr2 {
    margin-right: 2rem;
  }
  .xs-mnr2 {
    margin-right: -2rem;
  }
  .xs-mb2 {
    margin-bottom: 2rem;
  }
  .xs-mnb2 {
    margin-bottom: -2rem;
  }
  .xs-ml2 {
    margin-left: 2rem;
  }
  .xs-mnl2 {
    margin-left: -2rem;
  }
  .xs-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .xs-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .xs-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .xs-m3 {
    margin: 3rem;
  }
  .xs-mt3 {
    margin-top: 3rem;
  }
  .xs-mnt3 {
    margin-top: -3rem;
  }
  .xs-mr3 {
    margin-right: 3rem;
  }
  .xs-mnr3 {
    margin-right: -3rem;
  }
  .xs-mb3 {
    margin-bottom: 3rem;
  }
  .xs-mnb3 {
    margin-bottom: -3rem;
  }
  .xs-ml3 {
    margin-left: 3rem;
  }
  .xs-mnl3 {
    margin-left: -3rem;
  }
  .xs-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .xs-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .xs-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .xs-m4 {
    margin: 4rem;
  }
  .xs-mt4 {
    margin-top: 4rem;
  }
  .xs-mnt4 {
    margin-top: -4rem;
  }
  .xs-mr4 {
    margin-right: 4rem;
  }
  .xs-mnr4 {
    margin-right: -4rem;
  }
  .xs-mb4 {
    margin-bottom: 4rem;
  }
  .xs-mnb4 {
    margin-bottom: -4rem;
  }
  .xs-ml4 {
    margin-left: 4rem;
  }
  .xs-mnl4 {
    margin-left: -4rem;
  }
  .xs-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .xs-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .xs-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .xs-m5 {
    margin: 5rem;
  }
  .xs-mt5 {
    margin-top: 5rem;
  }
  .xs-mnt5 {
    margin-top: -5rem;
  }
  .xs-mr5 {
    margin-right: 5rem;
  }
  .xs-mnr5 {
    margin-right: -5rem;
  }
  .xs-mb5 {
    margin-bottom: 5rem;
  }
  .xs-mnb5 {
    margin-bottom: -5rem;
  }
  .xs-ml5 {
    margin-left: 5rem;
  }
  .xs-mnl5 {
    margin-left: -5rem;
  }
  .xs-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .xs-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .xs-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-m0 {
    margin: 0;
  }
  .s-mt0 {
    margin-top: 0;
  }
  .s-mr0 {
    margin-right: 0;
  }
  .s-mb0 {
    margin-bottom: 0;
  }
  .s-ml0 {
    margin-left: 0;
  }
  .s-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .s-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .s-ml-auto {
    margin-left: auto;
  }
  .s-mr-auto {
    margin-right: auto;
  }
  .s-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .s-m0 {
    margin: 0;
  }
  .s-mt0 {
    margin-top: 0;
  }
  .s-mnt0 {
    margin-top: 0;
  }
  .s-mr0 {
    margin-right: 0;
  }
  .s-mnr0 {
    margin-right: 0;
  }
  .s-mb0 {
    margin-bottom: 0;
  }
  .s-mnb0 {
    margin-bottom: 0;
  }
  .s-ml0 {
    margin-left: 0;
  }
  .s-mnl0 {
    margin-left: 0;
  }
  .s-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .s-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .s-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .s-mh {
    margin: .5rem;
  }
  .s-mth {
    margin-top: .5rem;
  }
  .s-mnth {
    margin-top: -.5rem;
  }
  .s-mrh {
    margin-right: .5rem;
  }
  .s-mnrh {
    margin-right: -.5rem;
  }
  .s-mbh {
    margin-bottom: .5rem;
  }
  .s-mnbh {
    margin-bottom: -.5rem;
  }
  .s-mlh {
    margin-left: .5rem;
  }
  .s-mnlh {
    margin-left: -.5rem;
  }
  .s-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .s-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .s-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .s-m1 {
    margin: 1rem;
  }
  .s-mt1 {
    margin-top: 1rem;
  }
  .s-mnt1 {
    margin-top: -1rem;
  }
  .s-mr1 {
    margin-right: 1rem;
  }
  .s-mnr1 {
    margin-right: -1rem;
  }
  .s-mb1 {
    margin-bottom: 1rem;
  }
  .s-mnb1 {
    margin-bottom: -1rem;
  }
  .s-ml1 {
    margin-left: 1rem;
  }
  .s-mnl1 {
    margin-left: -1rem;
  }
  .s-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .s-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .s-mnx1 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .s-m2 {
    margin: 2rem;
  }
  .s-mt2 {
    margin-top: 2rem;
  }
  .s-mnt2 {
    margin-top: -2rem;
  }
  .s-mr2 {
    margin-right: 2rem;
  }
  .s-mnr2 {
    margin-right: -2rem;
  }
  .s-mb2 {
    margin-bottom: 2rem;
  }
  .s-mnb2 {
    margin-bottom: -2rem;
  }
  .s-ml2 {
    margin-left: 2rem;
  }
  .s-mnl2 {
    margin-left: -2rem;
  }
  .s-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .s-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .s-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .s-m3 {
    margin: 3rem;
  }
  .s-mt3 {
    margin-top: 3rem;
  }
  .s-mnt3 {
    margin-top: -3rem;
  }
  .s-mr3 {
    margin-right: 3rem;
  }
  .s-mnr3 {
    margin-right: -3rem;
  }
  .s-mb3 {
    margin-bottom: 3rem;
  }
  .s-mnb3 {
    margin-bottom: -3rem;
  }
  .s-ml3 {
    margin-left: 3rem;
  }
  .s-mnl3 {
    margin-left: -3rem;
  }
  .s-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .s-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .s-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .s-m4 {
    margin: 4rem;
  }
  .s-mt4 {
    margin-top: 4rem;
  }
  .s-mnt4 {
    margin-top: -4rem;
  }
  .s-mr4 {
    margin-right: 4rem;
  }
  .s-mnr4 {
    margin-right: -4rem;
  }
  .s-mb4 {
    margin-bottom: 4rem;
  }
  .s-mnb4 {
    margin-bottom: -4rem;
  }
  .s-ml4 {
    margin-left: 4rem;
  }
  .s-mnl4 {
    margin-left: -4rem;
  }
  .s-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .s-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .s-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .s-m5 {
    margin: 5rem;
  }
  .s-mt5 {
    margin-top: 5rem;
  }
  .s-mnt5 {
    margin-top: -5rem;
  }
  .s-mr5 {
    margin-right: 5rem;
  }
  .s-mnr5 {
    margin-right: -5rem;
  }
  .s-mb5 {
    margin-bottom: 5rem;
  }
  .s-mnb5 {
    margin-bottom: -5rem;
  }
  .s-ml5 {
    margin-left: 5rem;
  }
  .s-mnl5 {
    margin-left: -5rem;
  }
  .s-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .s-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .s-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-m0 {
    margin: 0;
  }
  .m-mt0 {
    margin-top: 0;
  }
  .m-mr0 {
    margin-right: 0;
  }
  .m-mb0 {
    margin-bottom: 0;
  }
  .m-ml0 {
    margin-left: 0;
  }
  .m-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .m-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .m-ml-auto {
    margin-left: auto;
  }
  .m-mr-auto {
    margin-right: auto;
  }
  .m-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .m-m0 {
    margin: 0;
  }
  .m-mt0 {
    margin-top: 0;
  }
  .m-mnt0 {
    margin-top: 0;
  }
  .m-mr0 {
    margin-right: 0;
  }
  .m-mnr0 {
    margin-right: 0;
  }
  .m-mb0 {
    margin-bottom: 0;
  }
  .m-mnb0 {
    margin-bottom: 0;
  }
  .m-ml0 {
    margin-left: 0;
  }
  .m-mnl0 {
    margin-left: 0;
  }
  .m-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .m-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .m-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .m-mh {
    margin: .5rem;
  }
  .m-mth {
    margin-top: .5rem;
  }
  .m-mnth {
    margin-top: -.5rem;
  }
  .m-mrh {
    margin-right: .5rem;
  }
  .m-mnrh {
    margin-right: -.5rem;
  }
  .m-mbh {
    margin-bottom: .5rem;
  }
  .m-mnbh {
    margin-bottom: -.5rem;
  }
  .m-mlh {
    margin-left: .5rem;
  }
  .m-mnlh {
    margin-left: -.5rem;
  }
  .m-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .m-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .m-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .m-m1 {
    margin: 1rem;
  }
  .m-mt1 {
    margin-top: 1rem;
  }
  .m-mnt1 {
    margin-top: -1rem;
  }
  .m-mr1 {
    margin-right: 1rem;
  }
  .m-mnr1 {
    margin-right: -1rem;
  }
  .m-mb1 {
    margin-bottom: 1rem;
  }
  .m-mnb1 {
    margin-bottom: -1rem;
  }
  .m-ml1 {
    margin-left: 1rem;
  }
  .m-mnl1 {
    margin-left: -1rem;
  }
  .m-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .m-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .m-mnx1 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .m-m2 {
    margin: 2rem;
  }
  .m-mt2 {
    margin-top: 2rem;
  }
  .m-mnt2 {
    margin-top: -2rem;
  }
  .m-mr2 {
    margin-right: 2rem;
  }
  .m-mnr2 {
    margin-right: -2rem;
  }
  .m-mb2 {
    margin-bottom: 2rem;
  }
  .m-mnb2 {
    margin-bottom: -2rem;
  }
  .m-ml2 {
    margin-left: 2rem;
  }
  .m-mnl2 {
    margin-left: -2rem;
  }
  .m-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .m-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .m-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .m-m3 {
    margin: 3rem;
  }
  .m-mt3 {
    margin-top: 3rem;
  }
  .m-mnt3 {
    margin-top: -3rem;
  }
  .m-mr3 {
    margin-right: 3rem;
  }
  .m-mnr3 {
    margin-right: -3rem;
  }
  .m-mb3 {
    margin-bottom: 3rem;
  }
  .m-mnb3 {
    margin-bottom: -3rem;
  }
  .m-ml3 {
    margin-left: 3rem;
  }
  .m-mnl3 {
    margin-left: -3rem;
  }
  .m-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .m-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .m-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .m-m4 {
    margin: 4rem;
  }
  .m-mt4 {
    margin-top: 4rem;
  }
  .m-mnt4 {
    margin-top: -4rem;
  }
  .m-mr4 {
    margin-right: 4rem;
  }
  .m-mnr4 {
    margin-right: -4rem;
  }
  .m-mb4 {
    margin-bottom: 4rem;
  }
  .m-mnb4 {
    margin-bottom: -4rem;
  }
  .m-ml4 {
    margin-left: 4rem;
  }
  .m-mnl4 {
    margin-left: -4rem;
  }
  .m-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .m-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .m-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .m-m5 {
    margin: 5rem;
  }
  .m-mt5 {
    margin-top: 5rem;
  }
  .m-mnt5 {
    margin-top: -5rem;
  }
  .m-mr5 {
    margin-right: 5rem;
  }
  .m-mnr5 {
    margin-right: -5rem;
  }
  .m-mb5 {
    margin-bottom: 5rem;
  }
  .m-mnb5 {
    margin-bottom: -5rem;
  }
  .m-ml5 {
    margin-left: 5rem;
  }
  .m-mnl5 {
    margin-left: -5rem;
  }
  .m-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .m-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .m-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-m0 {
    margin: 0;
  }
  .l-mt0 {
    margin-top: 0;
  }
  .l-mr0 {
    margin-right: 0;
  }
  .l-mb0 {
    margin-bottom: 0;
  }
  .l-ml0 {
    margin-left: 0;
  }
  .l-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .l-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .l-ml-auto {
    margin-left: auto;
  }
  .l-mr-auto {
    margin-right: auto;
  }
  .l-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .l-m0 {
    margin: 0;
  }
  .l-mt0 {
    margin-top: 0;
  }
  .l-mnt0 {
    margin-top: 0;
  }
  .l-mr0 {
    margin-right: 0;
  }
  .l-mnr0 {
    margin-right: 0;
  }
  .l-mb0 {
    margin-bottom: 0;
  }
  .l-mnb0 {
    margin-bottom: 0;
  }
  .l-ml0 {
    margin-left: 0;
  }
  .l-mnl0 {
    margin-left: 0;
  }
  .l-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .l-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .l-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .l-mh {
    margin: .5rem;
  }
  .l-mth {
    margin-top: .5rem;
  }
  .l-mnth {
    margin-top: -.5rem;
  }
  .l-mrh {
    margin-right: .5rem;
  }
  .l-mnrh {
    margin-right: -.5rem;
  }
  .l-mbh {
    margin-bottom: .5rem;
  }
  .l-mnbh {
    margin-bottom: -.5rem;
  }
  .l-mlh {
    margin-left: .5rem;
  }
  .l-mnlh {
    margin-left: -.5rem;
  }
  .l-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .l-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .l-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .l-m1 {
    margin: 1rem;
  }
  .l-mt1 {
    margin-top: 1rem;
  }
  .l-mnt1 {
    margin-top: -1rem;
  }
  .l-mr1 {
    margin-right: 1rem;
  }
  .l-mnr1 {
    margin-right: -1rem;
  }
  .l-mb1 {
    margin-bottom: 1rem;
  }
  .l-mnb1 {
    margin-bottom: -1rem;
  }
  .l-ml1 {
    margin-left: 1rem;
  }
  .l-mnl1 {
    margin-left: -1rem;
  }
  .l-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .l-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .l-mnx1 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .l-m2 {
    margin: 2rem;
  }
  .l-mt2 {
    margin-top: 2rem;
  }
  .l-mnt2 {
    margin-top: -2rem;
  }
  .l-mr2 {
    margin-right: 2rem;
  }
  .l-mnr2 {
    margin-right: -2rem;
  }
  .l-mb2 {
    margin-bottom: 2rem;
  }
  .l-mnb2 {
    margin-bottom: -2rem;
  }
  .l-ml2 {
    margin-left: 2rem;
  }
  .l-mnl2 {
    margin-left: -2rem;
  }
  .l-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .l-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .l-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .l-m3 {
    margin: 3rem;
  }
  .l-mt3 {
    margin-top: 3rem;
  }
  .l-mnt3 {
    margin-top: -3rem;
  }
  .l-mr3 {
    margin-right: 3rem;
  }
  .l-mnr3 {
    margin-right: -3rem;
  }
  .l-mb3 {
    margin-bottom: 3rem;
  }
  .l-mnb3 {
    margin-bottom: -3rem;
  }
  .l-ml3 {
    margin-left: 3rem;
  }
  .l-mnl3 {
    margin-left: -3rem;
  }
  .l-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .l-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .l-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .l-m4 {
    margin: 4rem;
  }
  .l-mt4 {
    margin-top: 4rem;
  }
  .l-mnt4 {
    margin-top: -4rem;
  }
  .l-mr4 {
    margin-right: 4rem;
  }
  .l-mnr4 {
    margin-right: -4rem;
  }
  .l-mb4 {
    margin-bottom: 4rem;
  }
  .l-mnb4 {
    margin-bottom: -4rem;
  }
  .l-ml4 {
    margin-left: 4rem;
  }
  .l-mnl4 {
    margin-left: -4rem;
  }
  .l-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .l-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .l-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .l-m5 {
    margin: 5rem;
  }
  .l-mt5 {
    margin-top: 5rem;
  }
  .l-mnt5 {
    margin-top: -5rem;
  }
  .l-mr5 {
    margin-right: 5rem;
  }
  .l-mnr5 {
    margin-right: -5rem;
  }
  .l-mb5 {
    margin-bottom: 5rem;
  }
  .l-mnb5 {
    margin-bottom: -5rem;
  }
  .l-ml5 {
    margin-left: 5rem;
  }
  .l-mnl5 {
    margin-left: -5rem;
  }
  .l-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .l-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .l-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media screen and (min-width: 1194px) {
  .xl-m0 {
    margin: 0;
  }
  .xl-mt0 {
    margin-top: 0;
  }
  .xl-mr0 {
    margin-right: 0;
  }
  .xl-mb0 {
    margin-bottom: 0;
  }
  .xl-ml0 {
    margin-left: 0;
  }
  .xl-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xl-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xl-ml-auto {
    margin-left: auto;
  }
  .xl-mr-auto {
    margin-right: auto;
  }
  .xl-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .xl-m0 {
    margin: 0;
  }
  .xl-mt0 {
    margin-top: 0;
  }
  .xl-mnt0 {
    margin-top: 0;
  }
  .xl-mr0 {
    margin-right: 0;
  }
  .xl-mnr0 {
    margin-right: 0;
  }
  .xl-mb0 {
    margin-bottom: 0;
  }
  .xl-mnb0 {
    margin-bottom: 0;
  }
  .xl-ml0 {
    margin-left: 0;
  }
  .xl-mnl0 {
    margin-left: 0;
  }
  .xl-mx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xl-my0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .xl-mnx0 {
    margin-left: 0;
    margin-right: 0;
  }
  .xl-mh {
    margin: .5rem;
  }
  .xl-mth {
    margin-top: .5rem;
  }
  .xl-mnth {
    margin-top: -.5rem;
  }
  .xl-mrh {
    margin-right: .5rem;
  }
  .xl-mnrh {
    margin-right: -.5rem;
  }
  .xl-mbh {
    margin-bottom: .5rem;
  }
  .xl-mnbh {
    margin-bottom: -.5rem;
  }
  .xl-mlh {
    margin-left: .5rem;
  }
  .xl-mnlh {
    margin-left: -.5rem;
  }
  .xl-mxh {
    margin-left: .5rem;
    margin-right: .5rem;
  }
  .xl-myh {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .xl-mnxh {
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .xl-m1 {
    margin: 1rem;
  }
  .xl-mt1 {
    margin-top: 1rem;
  }
  .xl-mnt1 {
    margin-top: -1rem;
  }
  .xl-mr1 {
    margin-right: 1rem;
  }
  .xl-mnr1 {
    margin-right: -1rem;
  }
  .xl-mb1 {
    margin-bottom: 1rem;
  }
  .xl-mnb1 {
    margin-bottom: -1rem;
  }
  .xl-ml1 {
    margin-left: 1rem;
  }
  .xl-mnl1 {
    margin-left: -1rem;
  }
  .xl-mx1 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .xl-my1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .xl-m2 {
    margin: 2rem;
  }
  .xl-mt2 {
    margin-top: 2rem;
  }
  .xl-mnt2 {
    margin-top: -2rem;
  }
  .xl-mr2 {
    margin-right: 2rem;
  }
  .xl-mnr2 {
    margin-right: -2rem;
  }
  .xl-mb2 {
    margin-bottom: 2rem;
  }
  .xl-mnb2 {
    margin-bottom: -2rem;
  }
  .xl-ml2 {
    margin-left: 2rem;
  }
  .xl-mnl2 {
    margin-left: -2rem;
  }
  .xl-mx2 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .xl-my2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .xl-mnx2 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .xl-m3 {
    margin: 3rem;
  }
  .xl-mt3 {
    margin-top: 3rem;
  }
  .xl-mnt3 {
    margin-top: -3rem;
  }
  .xl-mr3 {
    margin-right: 3rem;
  }
  .xl-mnr3 {
    margin-right: -3rem;
  }
  .xl-mb3 {
    margin-bottom: 3rem;
  }
  .xl-mnb3 {
    margin-bottom: -3rem;
  }
  .xl-ml3 {
    margin-left: 3rem;
  }
  .xl-mnl3 {
    margin-left: -3rem;
  }
  .xl-mx3 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .xl-my3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .xl-mnx3 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .xl-m4 {
    margin: 4rem;
  }
  .xl-mt4 {
    margin-top: 4rem;
  }
  .xl-mnt4 {
    margin-top: -4rem;
  }
  .xl-mr4 {
    margin-right: 4rem;
  }
  .xl-mnr4 {
    margin-right: -4rem;
  }
  .xl-mb4 {
    margin-bottom: 4rem;
  }
  .xl-mnb4 {
    margin-bottom: -4rem;
  }
  .xl-ml4 {
    margin-left: 4rem;
  }
  .xl-mnl4 {
    margin-left: -4rem;
  }
  .xl-mx4 {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .xl-my4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .xl-mnx4 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .xl-m5 {
    margin: 5rem;
  }
  .xl-mt5 {
    margin-top: 5rem;
  }
  .xl-mnt5 {
    margin-top: -5rem;
  }
  .xl-mr5 {
    margin-right: 5rem;
  }
  .xl-mnr5 {
    margin-right: -5rem;
  }
  .xl-mb5 {
    margin-bottom: 5rem;
  }
  .xl-mnb5 {
    margin-bottom: -5rem;
  }
  .xl-ml5 {
    margin-left: 5rem;
  }
  .xl-mnl5 {
    margin-left: -5rem;
  }
  .xl-mx5 {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .xl-my5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .xl-mnx5 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
}

@media (min-width: 58.75rem) {
  .mt0--desktop {
    margin-top: 0;
  }
  .mb0--desktop {
    margin-bottom: 0;
  }
  .mth--desktop {
    margin-top: .5rem;
  }
  .mbh--desktop {
    margin-bottom: .5rem;
  }
  .mt1--desktop {
    margin-top: 1rem;
  }
  .mb1--desktop {
    margin-bottom: 1rem;
  }
  .mt2--desktop {
    margin-top: 2rem;
  }
  .mb2--desktop {
    margin-bottom: 2rem;
  }
  .mt3--desktop {
    margin-top: 3rem;
  }
  .mb3--desktop {
    margin-bottom: 3rem;
  }
  .mt4--desktop {
    margin-top: 4rem;
  }
  .mb4--desktop {
    margin-bottom: 4rem;
  }
  .mt5--desktop {
    margin-top: 5rem;
  }
  .mb5--desktop {
    margin-bottom: 5rem;
  }
}

.p0 {
  padding: 0;
}

.pt0 {
  padding-top: 0;
}

.pr0 {
  padding-right: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pl0 {
  padding-left: 0;
}

.px0 {
  padding-left: 0;
  padding-right: 0;
}

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

.pl-auto {
  padding-left: auto;
}

.pr-auto {
  padding-right: auto;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.p0 {
  padding: 0;
}

.pt0 {
  padding-top: 0;
}

.pr0 {
  padding-right: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pl0 {
  padding-left: 0;
}

.px0 {
  padding-left: 0;
  padding-right: 0;
}

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

.pxn0 {
  padding-left: 0;
  padding-right: 0;
}

.ph {
  padding: .5rem;
}

.pth {
  padding-top: .5rem;
}

.prh {
  padding-right: .5rem;
}

.pbh {
  padding-bottom: .5rem;
}

.plh {
  padding-left: .5rem;
}

.pxh {
  padding-left: .5rem;
  padding-right: .5rem;
}

.pyh {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.pxnh {
  padding-left: -.5rem;
  padding-right: -.5rem;
}

.p1 {
  padding: 1rem;
}

.pt1 {
  padding-top: 1rem;
}

.pr1 {
  padding-right: 1rem;
}

.pb1 {
  padding-bottom: 1rem;
}

.pl1 {
  padding-left: 1rem;
}

.px1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pxn1 {
  padding-left: -1rem;
  padding-right: -1rem;
}

.p2 {
  padding: 2rem;
}

.pt2 {
  padding-top: 2rem;
}

.pr2 {
  padding-right: 2rem;
}

.pb2 {
  padding-bottom: 2rem;
}

.pl2 {
  padding-left: 2rem;
}

.px2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pxn2 {
  padding-left: -2rem;
  padding-right: -2rem;
}

.p3 {
  padding: 3rem;
}

.pt3 {
  padding-top: 3rem;
}

.pr3 {
  padding-right: 3rem;
}

.pb3 {
  padding-bottom: 3rem;
}

.pl3 {
  padding-left: 3rem;
}

.px3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pxn3 {
  padding-left: -3rem;
  padding-right: -3rem;
}

.p4 {
  padding: 4rem;
}

.pt4 {
  padding-top: 4rem;
}

.pr4 {
  padding-right: 4rem;
}

.pb4 {
  padding-bottom: 4rem;
}

.pl4 {
  padding-left: 4rem;
}

.px4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pxn4 {
  padding-left: -4rem;
  padding-right: -4rem;
}

.p5 {
  padding: 5rem;
}

.pt5 {
  padding-top: 5rem;
}

.pr5 {
  padding-right: 5rem;
}

.pb5 {
  padding-bottom: 5rem;
}

.pl5 {
  padding-left: 5rem;
}

.px5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pxn5 {
  padding-left: -5rem;
  padding-right: -5rem;
}

.m-px1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 33.125rem) {
  .xxs-p0 {
    padding: 0;
  }
  .xxs-pt0 {
    padding-top: 0;
  }
  .xxs-pr0 {
    padding-right: 0;
  }
  .xxs-pb0 {
    padding-bottom: 0;
  }
  .xxs-pl0 {
    padding-left: 0;
  }
  .xxs-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xxs-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xxs-pl-auto {
    padding-left: auto;
  }
  .xxs-pr-auto {
    padding-right: auto;
  }
  .xxs-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .xxs-p0 {
    padding: 0;
  }
  .xxs-pt0 {
    padding-top: 0;
  }
  .xxs-pr0 {
    padding-right: 0;
  }
  .xxs-pb0 {
    padding-bottom: 0;
  }
  .xxs-pl0 {
    padding-left: 0;
  }
  .xxs-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xxs-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xxs-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xxs-ph {
    padding: .5rem;
  }
  .xxs-pth {
    padding-top: .5rem;
  }
  .xxs-prh {
    padding-right: .5rem;
  }
  .xxs-pbh {
    padding-bottom: .5rem;
  }
  .xxs-plh {
    padding-left: .5rem;
  }
  .xxs-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .xxs-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .xxs-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .xxs-p1 {
    padding: 1rem;
  }
  .xxs-pt1 {
    padding-top: 1rem;
  }
  .xxs-pr1 {
    padding-right: 1rem;
  }
  .xxs-pb1 {
    padding-bottom: 1rem;
  }
  .xxs-pl1 {
    padding-left: 1rem;
  }
  .xxs-px1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xxs-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .xxs-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .xxs-p2 {
    padding: 2rem;
  }
  .xxs-pt2 {
    padding-top: 2rem;
  }
  .xxs-pr2 {
    padding-right: 2rem;
  }
  .xxs-pb2 {
    padding-bottom: 2rem;
  }
  .xxs-pl2 {
    padding-left: 2rem;
  }
  .xxs-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xxs-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .xxs-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .xxs-p3 {
    padding: 3rem;
  }
  .xxs-pt3 {
    padding-top: 3rem;
  }
  .xxs-pr3 {
    padding-right: 3rem;
  }
  .xxs-pb3 {
    padding-bottom: 3rem;
  }
  .xxs-pl3 {
    padding-left: 3rem;
  }
  .xxs-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .xxs-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .xxs-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .xxs-p4 {
    padding: 4rem;
  }
  .xxs-pt4 {
    padding-top: 4rem;
  }
  .xxs-pr4 {
    padding-right: 4rem;
  }
  .xxs-pb4 {
    padding-bottom: 4rem;
  }
  .xxs-pl4 {
    padding-left: 4rem;
  }
  .xxs-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .xxs-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .xxs-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .xxs-p5 {
    padding: 5rem;
  }
  .xxs-pt5 {
    padding-top: 5rem;
  }
  .xxs-pr5 {
    padding-right: 5rem;
  }
  .xxs-pb5 {
    padding-bottom: 5rem;
  }
  .xxs-pl5 {
    padding-left: 5rem;
  }
  .xxs-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xxs-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .xxs-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-p0 {
    padding: 0;
  }
  .xs-pt0 {
    padding-top: 0;
  }
  .xs-pr0 {
    padding-right: 0;
  }
  .xs-pb0 {
    padding-bottom: 0;
  }
  .xs-pl0 {
    padding-left: 0;
  }
  .xs-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xs-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xs-pl-auto {
    padding-left: auto;
  }
  .xs-pr-auto {
    padding-right: auto;
  }
  .xs-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .xs-p0 {
    padding: 0;
  }
  .xs-pt0 {
    padding-top: 0;
  }
  .xs-pr0 {
    padding-right: 0;
  }
  .xs-pb0 {
    padding-bottom: 0;
  }
  .xs-pl0 {
    padding-left: 0;
  }
  .xs-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xs-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xs-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xs-ph {
    padding: .5rem;
  }
  .xs-pth {
    padding-top: .5rem;
  }
  .xs-prh {
    padding-right: .5rem;
  }
  .xs-pbh {
    padding-bottom: .5rem;
  }
  .xs-plh {
    padding-left: .5rem;
  }
  .xs-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .xs-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .xs-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .xs-p1 {
    padding: 1rem;
  }
  .xs-pt1 {
    padding-top: 1rem;
  }
  .xs-pr1 {
    padding-right: 1rem;
  }
  .xs-pb1 {
    padding-bottom: 1rem;
  }
  .xs-pl1 {
    padding-left: 1rem;
  }
  .xs-px1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xs-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .xs-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .xs-p2 {
    padding: 2rem;
  }
  .xs-pt2 {
    padding-top: 2rem;
  }
  .xs-pr2 {
    padding-right: 2rem;
  }
  .xs-pb2 {
    padding-bottom: 2rem;
  }
  .xs-pl2 {
    padding-left: 2rem;
  }
  .xs-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xs-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .xs-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .xs-p3 {
    padding: 3rem;
  }
  .xs-pt3 {
    padding-top: 3rem;
  }
  .xs-pr3 {
    padding-right: 3rem;
  }
  .xs-pb3 {
    padding-bottom: 3rem;
  }
  .xs-pl3 {
    padding-left: 3rem;
  }
  .xs-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .xs-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .xs-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .xs-p4 {
    padding: 4rem;
  }
  .xs-pt4 {
    padding-top: 4rem;
  }
  .xs-pr4 {
    padding-right: 4rem;
  }
  .xs-pb4 {
    padding-bottom: 4rem;
  }
  .xs-pl4 {
    padding-left: 4rem;
  }
  .xs-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .xs-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .xs-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .xs-p5 {
    padding: 5rem;
  }
  .xs-pt5 {
    padding-top: 5rem;
  }
  .xs-pr5 {
    padding-right: 5rem;
  }
  .xs-pb5 {
    padding-bottom: 5rem;
  }
  .xs-pl5 {
    padding-left: 5rem;
  }
  .xs-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xs-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .xs-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-p0 {
    padding: 0;
  }
  .s-pt0 {
    padding-top: 0;
  }
  .s-pr0 {
    padding-right: 0;
  }
  .s-pb0 {
    padding-bottom: 0;
  }
  .s-pl0 {
    padding-left: 0;
  }
  .s-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .s-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .s-pl-auto {
    padding-left: auto;
  }
  .s-pr-auto {
    padding-right: auto;
  }
  .s-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .s-p0 {
    padding: 0;
  }
  .s-pt0 {
    padding-top: 0;
  }
  .s-pr0 {
    padding-right: 0;
  }
  .s-pb0 {
    padding-bottom: 0;
  }
  .s-pl0 {
    padding-left: 0;
  }
  .s-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .s-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .s-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .s-ph {
    padding: .5rem;
  }
  .s-pth {
    padding-top: .5rem;
  }
  .s-prh {
    padding-right: .5rem;
  }
  .s-pbh {
    padding-bottom: .5rem;
  }
  .s-plh {
    padding-left: .5rem;
  }
  .s-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .s-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .s-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .s-p1 {
    padding: 1rem;
  }
  .s-pt1 {
    padding-top: 1rem;
  }
  .s-pr1 {
    padding-right: 1rem;
  }
  .s-pb1 {
    padding-bottom: 1rem;
  }
  .s-pl1 {
    padding-left: 1rem;
  }
  .s-px1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .s-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .s-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .s-p2 {
    padding: 2rem;
  }
  .s-pt2 {
    padding-top: 2rem;
  }
  .s-pr2 {
    padding-right: 2rem;
  }
  .s-pb2 {
    padding-bottom: 2rem;
  }
  .s-pl2 {
    padding-left: 2rem;
  }
  .s-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .s-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .s-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .s-p3 {
    padding: 3rem;
  }
  .s-pt3 {
    padding-top: 3rem;
  }
  .s-pr3 {
    padding-right: 3rem;
  }
  .s-pb3 {
    padding-bottom: 3rem;
  }
  .s-pl3 {
    padding-left: 3rem;
  }
  .s-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .s-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .s-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .s-p4 {
    padding: 4rem;
  }
  .s-pt4 {
    padding-top: 4rem;
  }
  .s-pr4 {
    padding-right: 4rem;
  }
  .s-pb4 {
    padding-bottom: 4rem;
  }
  .s-pl4 {
    padding-left: 4rem;
  }
  .s-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .s-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .s-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .s-p5 {
    padding: 5rem;
  }
  .s-pt5 {
    padding-top: 5rem;
  }
  .s-pr5 {
    padding-right: 5rem;
  }
  .s-pb5 {
    padding-bottom: 5rem;
  }
  .s-pl5 {
    padding-left: 5rem;
  }
  .s-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .s-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .s-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-p0 {
    padding: 0;
  }
  .m-pt0 {
    padding-top: 0;
  }
  .m-pr0 {
    padding-right: 0;
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pl0 {
    padding-left: 0;
  }
  .m-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .m-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .m-pl-auto {
    padding-left: auto;
  }
  .m-pr-auto {
    padding-right: auto;
  }
  .m-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .m-p0 {
    padding: 0;
  }
  .m-pt0 {
    padding-top: 0;
  }
  .m-pr0 {
    padding-right: 0;
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pl0 {
    padding-left: 0;
  }
  .m-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .m-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .m-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .m-ph {
    padding: .5rem;
  }
  .m-pth {
    padding-top: .5rem;
  }
  .m-prh {
    padding-right: .5rem;
  }
  .m-pbh {
    padding-bottom: .5rem;
  }
  .m-plh {
    padding-left: .5rem;
  }
  .m-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .m-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .m-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .m-p1 {
    padding: 1rem;
  }
  .m-pt1 {
    padding-top: 1rem;
  }
  .m-pr1 {
    padding-right: 1rem;
  }
  .m-pb1 {
    padding-bottom: 1rem;
  }
  .m-pl1 {
    padding-left: 1rem;
  }
  .m-px1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .m-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .m-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .m-p2 {
    padding: 2rem;
  }
  .m-pt2 {
    padding-top: 2rem;
  }
  .m-pr2 {
    padding-right: 2rem;
  }
  .m-pb2 {
    padding-bottom: 2rem;
  }
  .m-pl2 {
    padding-left: 2rem;
  }
  .m-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .m-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .m-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .m-p3 {
    padding: 3rem;
  }
  .m-pt3 {
    padding-top: 3rem;
  }
  .m-pr3 {
    padding-right: 3rem;
  }
  .m-pb3 {
    padding-bottom: 3rem;
  }
  .m-pl3 {
    padding-left: 3rem;
  }
  .m-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .m-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .m-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .m-p4 {
    padding: 4rem;
  }
  .m-pt4 {
    padding-top: 4rem;
  }
  .m-pr4 {
    padding-right: 4rem;
  }
  .m-pb4 {
    padding-bottom: 4rem;
  }
  .m-pl4 {
    padding-left: 4rem;
  }
  .m-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .m-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .m-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .m-p5 {
    padding: 5rem;
  }
  .m-pt5 {
    padding-top: 5rem;
  }
  .m-pr5 {
    padding-right: 5rem;
  }
  .m-pb5 {
    padding-bottom: 5rem;
  }
  .m-pl5 {
    padding-left: 5rem;
  }
  .m-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .m-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .m-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-p0 {
    padding: 0;
  }
  .l-pt0 {
    padding-top: 0;
  }
  .l-pr0 {
    padding-right: 0;
  }
  .l-pb0 {
    padding-bottom: 0;
  }
  .l-pl0 {
    padding-left: 0;
  }
  .l-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .l-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .l-pl-auto {
    padding-left: auto;
  }
  .l-pr-auto {
    padding-right: auto;
  }
  .l-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .l-p0 {
    padding: 0;
  }
  .l-pt0 {
    padding-top: 0;
  }
  .l-pr0 {
    padding-right: 0;
  }
  .l-pb0 {
    padding-bottom: 0;
  }
  .l-pl0 {
    padding-left: 0;
  }
  .l-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .l-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .l-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .l-ph {
    padding: .5rem;
  }
  .l-pth {
    padding-top: .5rem;
  }
  .l-prh {
    padding-right: .5rem;
  }
  .l-pbh {
    padding-bottom: .5rem;
  }
  .l-plh {
    padding-left: .5rem;
  }
  .l-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .l-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .l-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .l-p1 {
    padding: 1rem;
  }
  .l-pt1 {
    padding-top: 1rem;
  }
  .l-pr1 {
    padding-right: 1rem;
  }
  .l-pb1 {
    padding-bottom: 1rem;
  }
  .l-pl1 {
    padding-left: 1rem;
  }
  .l-px1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .l-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .l-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .l-p2 {
    padding: 2rem;
  }
  .l-pt2 {
    padding-top: 2rem;
  }
  .l-pr2 {
    padding-right: 2rem;
  }
  .l-pb2 {
    padding-bottom: 2rem;
  }
  .l-pl2 {
    padding-left: 2rem;
  }
  .l-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .l-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .l-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .l-p3 {
    padding: 3rem;
  }
  .l-pt3 {
    padding-top: 3rem;
  }
  .l-pr3 {
    padding-right: 3rem;
  }
  .l-pb3 {
    padding-bottom: 3rem;
  }
  .l-pl3 {
    padding-left: 3rem;
  }
  .l-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .l-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .l-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .l-p4 {
    padding: 4rem;
  }
  .l-pt4 {
    padding-top: 4rem;
  }
  .l-pr4 {
    padding-right: 4rem;
  }
  .l-pb4 {
    padding-bottom: 4rem;
  }
  .l-pl4 {
    padding-left: 4rem;
  }
  .l-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .l-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .l-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .l-p5 {
    padding: 5rem;
  }
  .l-pt5 {
    padding-top: 5rem;
  }
  .l-pr5 {
    padding-right: 5rem;
  }
  .l-pb5 {
    padding-bottom: 5rem;
  }
  .l-pl5 {
    padding-left: 5rem;
  }
  .l-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .l-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .l-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

@media screen and (min-width: 1194px) {
  .xl-p0 {
    padding: 0;
  }
  .xl-pt0 {
    padding-top: 0;
  }
  .xl-pr0 {
    padding-right: 0;
  }
  .xl-pb0 {
    padding-bottom: 0;
  }
  .xl-pl0 {
    padding-left: 0;
  }
  .xl-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xl-pl-auto {
    padding-left: auto;
  }
  .xl-pr-auto {
    padding-right: auto;
  }
  .xl-px-auto {
    padding-left: auto;
    padding-right: auto;
  }
  .xl-p0 {
    padding: 0;
  }
  .xl-pt0 {
    padding-top: 0;
  }
  .xl-pr0 {
    padding-right: 0;
  }
  .xl-pb0 {
    padding-bottom: 0;
  }
  .xl-pl0 {
    padding-left: 0;
  }
  .xl-px0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-py0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xl-pxn0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-ph {
    padding: .5rem;
  }
  .xl-pth {
    padding-top: .5rem;
  }
  .xl-prh {
    padding-right: .5rem;
  }
  .xl-pbh {
    padding-bottom: .5rem;
  }
  .xl-plh {
    padding-left: .5rem;
  }
  .xl-pxh {
    padding-left: .5rem;
    padding-right: .5rem;
  }
  .xl-pyh {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .xl-pxnh {
    padding-left: -.5rem;
    padding-right: -.5rem;
  }
  .xl-p1 {
    padding: 1rem;
  }
  .xl-pt1 {
    padding-top: 1rem;
  }
  .xl-pr1 {
    padding-right: 1rem;
  }
  .xl-pb1 {
    padding-bottom: 1rem;
  }
  .xl-pl1 {
    padding-left: 1rem;
  }
  .xl-py1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .xl-pxn1 {
    padding-left: -1rem;
    padding-right: -1rem;
  }
  .xl-p2 {
    padding: 2rem;
  }
  .xl-pt2 {
    padding-top: 2rem;
  }
  .xl-pr2 {
    padding-right: 2rem;
  }
  .xl-pb2 {
    padding-bottom: 2rem;
  }
  .xl-pl2 {
    padding-left: 2rem;
  }
  .xl-px2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .xl-py2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .xl-pxn2 {
    padding-left: -2rem;
    padding-right: -2rem;
  }
  .xl-p3 {
    padding: 3rem;
  }
  .xl-pt3 {
    padding-top: 3rem;
  }
  .xl-pr3 {
    padding-right: 3rem;
  }
  .xl-pb3 {
    padding-bottom: 3rem;
  }
  .xl-pl3 {
    padding-left: 3rem;
  }
  .xl-px3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .xl-py3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .xl-pxn3 {
    padding-left: -3rem;
    padding-right: -3rem;
  }
  .xl-p4 {
    padding: 4rem;
  }
  .xl-pt4 {
    padding-top: 4rem;
  }
  .xl-pr4 {
    padding-right: 4rem;
  }
  .xl-pb4 {
    padding-bottom: 4rem;
  }
  .xl-pl4 {
    padding-left: 4rem;
  }
  .xl-px4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .xl-py4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .xl-pxn4 {
    padding-left: -4rem;
    padding-right: -4rem;
  }
  .xl-p5 {
    padding: 5rem;
  }
  .xl-pt5 {
    padding-top: 5rem;
  }
  .xl-pr5 {
    padding-right: 5rem;
  }
  .xl-pb5 {
    padding-bottom: 5rem;
  }
  .xl-pl5 {
    padding-left: 5rem;
  }
  .xl-px5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .xl-py5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .xl-pxn5 {
    padding-left: -5rem;
    padding-right: -5rem;
  }
}

.relative,
.form-item label,
legend {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.static {
  position: static;
}

.top-0 {
  top: 0;
}

.top-auto {
  top: auto;
}

.right-0 {
  right: 0;
}

.right-auto {
  right: auto;
}

.bottom-0 {
  bottom: 0;
}

.bottom-auto {
  bottom: auto;
}

.left-0 {
  left: 0;
}

.left-auto {
  left: auto;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-h {
  top: .5rem;
}

.right-h {
  right: .5rem;
}

.bottom-h {
  bottom: .5rem;
}

.left-h {
  left: .5rem;
}

.top-1 {
  top: 1rem;
}

.right-1 {
  right: 1rem;
}

.bottom-1 {
  bottom: 1rem;
}

.left-1 {
  left: 1rem;
}

.top-2 {
  top: 2rem;
}

.right-2 {
  right: 2rem;
}

.bottom-2 {
  bottom: 2rem;
}

.left-2 {
  left: 2rem;
}

.top-3 {
  top: 3rem;
}

.right-3 {
  right: 3rem;
}

.bottom-3 {
  bottom: 3rem;
}

.left-3 {
  left: 3rem;
}

.top-4 {
  top: 4rem;
}

.right-4 {
  right: 4rem;
}

.bottom-4 {
  bottom: 4rem;
}

.left-4 {
  left: 4rem;
}

.top-5 {
  top: 5rem;
}

.right-5 {
  right: 5rem;
}

.bottom-5 {
  bottom: 5rem;
}

.left-5 {
  left: 5rem;
}

.center-x {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.center-y {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.center-xy {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

@media screen and (min-width: 33.125rem) {
  .xxs-relative {
    position: relative;
  }
  .xxs-absolute {
    position: absolute;
  }
  .xxs-fixed {
    position: fixed;
  }
  .xxs-static {
    position: static;
  }
  .xxs-top-0 {
    top: 0;
  }
  .xxs-right-0 {
    right: 0;
  }
  .xxs-bottom-0 {
    bottom: 0;
  }
  .xxs-left-0 {
    left: 0;
  }
  .xxs-top-auto {
    top: auto;
  }
  .xxs-right-auto {
    right: auto;
  }
  .xxs-bottom-auto {
    bottom: auto;
  }
  .xxs-left-auto {
    left: auto;
  }
  .xxs-top-0 {
    top: 0;
  }
  .xxs-right-0 {
    right: 0;
  }
  .xxs-bottom-0 {
    bottom: 0;
  }
  .xxs-left-0 {
    left: 0;
  }
  .xxs-top-h {
    top: .5rem;
  }
  .xxs-right-h {
    right: .5rem;
  }
  .xxs-bottom-h {
    bottom: .5rem;
  }
  .xxs-left-h {
    left: .5rem;
  }
  .xxs-top-1 {
    top: 1rem;
  }
  .xxs-right-1 {
    right: 1rem;
  }
  .xxs-bottom-1 {
    bottom: 1rem;
  }
  .xxs-left-1 {
    left: 1rem;
  }
  .xxs-top-2 {
    top: 2rem;
  }
  .xxs-right-2 {
    right: 2rem;
  }
  .xxs-bottom-2 {
    bottom: 2rem;
  }
  .xxs-left-2 {
    left: 2rem;
  }
  .xxs-top-3 {
    top: 3rem;
  }
  .xxs-right-3 {
    right: 3rem;
  }
  .xxs-bottom-3 {
    bottom: 3rem;
  }
  .xxs-left-3 {
    left: 3rem;
  }
  .xxs-top-4 {
    top: 4rem;
  }
  .xxs-right-4 {
    right: 4rem;
  }
  .xxs-bottom-4 {
    bottom: 4rem;
  }
  .xxs-left-4 {
    left: 4rem;
  }
  .xxs-top-5 {
    top: 5rem;
  }
  .xxs-right-5 {
    right: 5rem;
  }
  .xxs-bottom-5 {
    bottom: 5rem;
  }
  .xxs-left-5 {
    left: 5rem;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-relative {
    position: relative;
  }
  .xs-absolute {
    position: absolute;
  }
  .xs-fixed {
    position: fixed;
  }
  .xs-static {
    position: static;
  }
  .xs-top-0 {
    top: 0;
  }
  .xs-right-0 {
    right: 0;
  }
  .xs-bottom-0 {
    bottom: 0;
  }
  .xs-left-0 {
    left: 0;
  }
  .xs-top-auto {
    top: auto;
  }
  .xs-right-auto {
    right: auto;
  }
  .xs-bottom-auto {
    bottom: auto;
  }
  .xs-left-auto {
    left: auto;
  }
  .xs-top-0 {
    top: 0;
  }
  .xs-right-0 {
    right: 0;
  }
  .xs-bottom-0 {
    bottom: 0;
  }
  .xs-left-0 {
    left: 0;
  }
  .xs-top-h {
    top: .5rem;
  }
  .xs-right-h {
    right: .5rem;
  }
  .xs-bottom-h {
    bottom: .5rem;
  }
  .xs-left-h {
    left: .5rem;
  }
  .xs-top-1 {
    top: 1rem;
  }
  .xs-right-1 {
    right: 1rem;
  }
  .xs-bottom-1 {
    bottom: 1rem;
  }
  .xs-left-1 {
    left: 1rem;
  }
  .xs-top-2 {
    top: 2rem;
  }
  .xs-right-2 {
    right: 2rem;
  }
  .xs-bottom-2 {
    bottom: 2rem;
  }
  .xs-left-2 {
    left: 2rem;
  }
  .xs-top-3 {
    top: 3rem;
  }
  .xs-right-3 {
    right: 3rem;
  }
  .xs-bottom-3 {
    bottom: 3rem;
  }
  .xs-left-3 {
    left: 3rem;
  }
  .xs-top-4 {
    top: 4rem;
  }
  .xs-right-4 {
    right: 4rem;
  }
  .xs-bottom-4 {
    bottom: 4rem;
  }
  .xs-left-4 {
    left: 4rem;
  }
  .xs-top-5 {
    top: 5rem;
  }
  .xs-right-5 {
    right: 5rem;
  }
  .xs-bottom-5 {
    bottom: 5rem;
  }
  .xs-left-5 {
    left: 5rem;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-relative {
    position: relative;
  }
  .s-absolute {
    position: absolute;
  }
  .s-fixed {
    position: fixed;
  }
  .s-static {
    position: static;
  }
  .s-top-0 {
    top: 0;
  }
  .s-right-0 {
    right: 0;
  }
  .s-bottom-0 {
    bottom: 0;
  }
  .s-left-0 {
    left: 0;
  }
  .s-top-auto {
    top: auto;
  }
  .s-right-auto {
    right: auto;
  }
  .s-bottom-auto {
    bottom: auto;
  }
  .s-left-auto {
    left: auto;
  }
  .s-top-0 {
    top: 0;
  }
  .s-right-0 {
    right: 0;
  }
  .s-bottom-0 {
    bottom: 0;
  }
  .s-left-0 {
    left: 0;
  }
  .s-top-h {
    top: .5rem;
  }
  .s-right-h {
    right: .5rem;
  }
  .s-bottom-h {
    bottom: .5rem;
  }
  .s-left-h {
    left: .5rem;
  }
  .s-top-1 {
    top: 1rem;
  }
  .s-right-1 {
    right: 1rem;
  }
  .s-bottom-1 {
    bottom: 1rem;
  }
  .s-left-1 {
    left: 1rem;
  }
  .s-top-2 {
    top: 2rem;
  }
  .s-right-2 {
    right: 2rem;
  }
  .s-bottom-2 {
    bottom: 2rem;
  }
  .s-left-2 {
    left: 2rem;
  }
  .s-top-3 {
    top: 3rem;
  }
  .s-right-3 {
    right: 3rem;
  }
  .s-bottom-3 {
    bottom: 3rem;
  }
  .s-left-3 {
    left: 3rem;
  }
  .s-top-4 {
    top: 4rem;
  }
  .s-right-4 {
    right: 4rem;
  }
  .s-bottom-4 {
    bottom: 4rem;
  }
  .s-left-4 {
    left: 4rem;
  }
  .s-top-5 {
    top: 5rem;
  }
  .s-right-5 {
    right: 5rem;
  }
  .s-bottom-5 {
    bottom: 5rem;
  }
  .s-left-5 {
    left: 5rem;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-relative {
    position: relative;
  }
  .m-absolute {
    position: absolute;
  }
  .m-fixed {
    position: fixed;
  }
  .m-static {
    position: static;
  }
  .m-top-0 {
    top: 0;
  }
  .m-right-0 {
    right: 0;
  }
  .m-bottom-0 {
    bottom: 0;
  }
  .m-left-0 {
    left: 0;
  }
  .m-top-auto {
    top: auto;
  }
  .m-right-auto {
    right: auto;
  }
  .m-bottom-auto {
    bottom: auto;
  }
  .m-left-auto {
    left: auto;
  }
  .m-top-0 {
    top: 0;
  }
  .m-right-0 {
    right: 0;
  }
  .m-bottom-0 {
    bottom: 0;
  }
  .m-left-0 {
    left: 0;
  }
  .m-top-h {
    top: .5rem;
  }
  .m-right-h {
    right: .5rem;
  }
  .m-bottom-h {
    bottom: .5rem;
  }
  .m-left-h {
    left: .5rem;
  }
  .m-top-1 {
    top: 1rem;
  }
  .m-right-1 {
    right: 1rem;
  }
  .m-bottom-1 {
    bottom: 1rem;
  }
  .m-left-1 {
    left: 1rem;
  }
  .m-top-2 {
    top: 2rem;
  }
  .m-right-2 {
    right: 2rem;
  }
  .m-bottom-2 {
    bottom: 2rem;
  }
  .m-left-2 {
    left: 2rem;
  }
  .m-top-3 {
    top: 3rem;
  }
  .m-right-3 {
    right: 3rem;
  }
  .m-bottom-3 {
    bottom: 3rem;
  }
  .m-left-3 {
    left: 3rem;
  }
  .m-top-4 {
    top: 4rem;
  }
  .m-right-4 {
    right: 4rem;
  }
  .m-bottom-4 {
    bottom: 4rem;
  }
  .m-left-4 {
    left: 4rem;
  }
  .m-top-5 {
    top: 5rem;
  }
  .m-right-5 {
    right: 5rem;
  }
  .m-bottom-5 {
    bottom: 5rem;
  }
  .m-left-5 {
    left: 5rem;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-relative {
    position: relative;
  }
  .l-absolute {
    position: absolute;
  }
  .l-fixed {
    position: fixed;
  }
  .l-static {
    position: static;
  }
  .l-top-0 {
    top: 0;
  }
  .l-right-0 {
    right: 0;
  }
  .l-bottom-0 {
    bottom: 0;
  }
  .l-left-0 {
    left: 0;
  }
  .l-top-auto {
    top: auto;
  }
  .l-right-auto {
    right: auto;
  }
  .l-bottom-auto {
    bottom: auto;
  }
  .l-left-auto {
    left: auto;
  }
  .l-top-0 {
    top: 0;
  }
  .l-right-0 {
    right: 0;
  }
  .l-bottom-0 {
    bottom: 0;
  }
  .l-left-0 {
    left: 0;
  }
  .l-top-h {
    top: .5rem;
  }
  .l-right-h {
    right: .5rem;
  }
  .l-bottom-h {
    bottom: .5rem;
  }
  .l-left-h {
    left: .5rem;
  }
  .l-top-1 {
    top: 1rem;
  }
  .l-right-1 {
    right: 1rem;
  }
  .l-bottom-1 {
    bottom: 1rem;
  }
  .l-left-1 {
    left: 1rem;
  }
  .l-top-2 {
    top: 2rem;
  }
  .l-right-2 {
    right: 2rem;
  }
  .l-bottom-2 {
    bottom: 2rem;
  }
  .l-left-2 {
    left: 2rem;
  }
  .l-top-3 {
    top: 3rem;
  }
  .l-right-3 {
    right: 3rem;
  }
  .l-bottom-3 {
    bottom: 3rem;
  }
  .l-left-3 {
    left: 3rem;
  }
  .l-top-4 {
    top: 4rem;
  }
  .l-right-4 {
    right: 4rem;
  }
  .l-bottom-4 {
    bottom: 4rem;
  }
  .l-left-4 {
    left: 4rem;
  }
  .l-top-5 {
    top: 5rem;
  }
  .l-right-5 {
    right: 5rem;
  }
  .l-bottom-5 {
    bottom: 5rem;
  }
  .l-left-5 {
    left: 5rem;
  }
}

@media screen and (min-width: 1194px) {
  .xl-relative {
    position: relative;
  }
  .xl-absolute {
    position: absolute;
  }
  .xl-fixed {
    position: fixed;
  }
  .xl-static {
    position: static;
  }
  .xl-top-0 {
    top: 0;
  }
  .xl-right-0 {
    right: 0;
  }
  .xl-bottom-0 {
    bottom: 0;
  }
  .xl-left-0 {
    left: 0;
  }
  .xl-top-auto {
    top: auto;
  }
  .xl-right-auto {
    right: auto;
  }
  .xl-bottom-auto {
    bottom: auto;
  }
  .xl-left-auto {
    left: auto;
  }
  .xl-top-0 {
    top: 0;
  }
  .xl-right-0 {
    right: 0;
  }
  .xl-bottom-0 {
    bottom: 0;
  }
  .xl-left-0 {
    left: 0;
  }
  .xl-top-h {
    top: .5rem;
  }
  .xl-right-h {
    right: .5rem;
  }
  .xl-bottom-h {
    bottom: .5rem;
  }
  .xl-left-h {
    left: .5rem;
  }
  .xl-top-1 {
    top: 1rem;
  }
  .xl-right-1 {
    right: 1rem;
  }
  .xl-bottom-1 {
    bottom: 1rem;
  }
  .xl-left-1 {
    left: 1rem;
  }
  .xl-top-2 {
    top: 2rem;
  }
  .xl-right-2 {
    right: 2rem;
  }
  .xl-bottom-2 {
    bottom: 2rem;
  }
  .xl-left-2 {
    left: 2rem;
  }
  .xl-top-3 {
    top: 3rem;
  }
  .xl-right-3 {
    right: 3rem;
  }
  .xl-bottom-3 {
    bottom: 3rem;
  }
  .xl-left-3 {
    left: 3rem;
  }
  .xl-top-4 {
    top: 4rem;
  }
  .xl-right-4 {
    right: 4rem;
  }
  .xl-bottom-4 {
    bottom: 4rem;
  }
  .xl-left-4 {
    left: 4rem;
  }
  .xl-top-5 {
    top: 5rem;
  }
  .xl-right-5 {
    right: 5rem;
  }
  .xl-bottom-5 {
    bottom: 5rem;
  }
  .xl-left-5 {
    left: 5rem;
  }
}

.width-100 {
  width: 100%;
}

.height-100 {
  height: 100%;
}

.width-gs {
  width: 38.2%;
}

.width-gl {
  width: 61.8%;
}

.width-a {
  width: auto;
}

.height-a {
  height: auto;
}

.min-height-1 {
  min-height: 1rem;
}

.min-height-2 {
  min-height: 2rem;
}

.min-height-3 {
  min-height: 3rem;
}

.min-height-4 {
  min-height: 4rem;
}

.min-height-5 {
  min-height: 5rem;
}

.min-height-6 {
  min-height: 6rem;
}

.min-height-7 {
  min-height: 7rem;
}

.min-height-8 {
  min-height: 8rem;
}

.min-height-9 {
  min-height: 9rem;
}

.min-height-10 {
  min-height: 10rem;
}

.min-height-11 {
  min-height: 11rem;
}

.min-height-12 {
  min-height: 12rem;
}

.min-height-13 {
  min-height: 13rem;
}

.min-height-14 {
  min-height: 14rem;
}

.min-height-15 {
  min-height: 15rem;
}

@media screen and (min-width: 33.125rem) {
  .xxs-width-100 {
    width: 100%;
  }
  .xxs-height-100 {
    height: 100%;
  }
  .xxs-width-gs {
    width: 38.2%;
  }
  .xxs-width-gl {
    width: 61.8%;
  }
  .xxs-width-a {
    width: auto;
  }
  .xxs-height-a {
    height: auto;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-width-100 {
    width: 100%;
  }
  .xs-height-100 {
    height: 100%;
  }
  .xs-width-gs {
    width: 38.2%;
  }
  .xs-width-gl {
    width: 61.8%;
  }
  .xs-width-a {
    width: auto;
  }
  .xs-height-a {
    height: auto;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-width-100 {
    width: 100%;
  }
  .s-height-100 {
    height: 100%;
  }
  .s-width-gs {
    width: 38.2%;
  }
  .s-width-gl {
    width: 61.8%;
  }
  .s-width-a {
    width: auto;
  }
  .s-height-a {
    height: auto;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-width-100 {
    width: 100%;
  }
  .m-height-100 {
    height: 100%;
  }
  .m-width-gs {
    width: 38.2%;
  }
  .m-width-gl {
    width: 61.8%;
  }
  .m-width-a {
    width: auto;
  }
  .m-height-a {
    height: auto;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-width-100 {
    width: 100%;
  }
  .l-height-100 {
    height: 100%;
  }
  .l-width-gs {
    width: 38.2%;
  }
  .l-width-gl {
    width: 61.8%;
  }
  .l-width-a {
    width: auto;
  }
  .l-height-a {
    height: auto;
  }
}

@media screen and (min-width: 1194px) {
  .xl-width-100 {
    width: 100%;
  }
  .xl-height-100 {
    height: 100%;
  }
  .xl-width-gs {
    width: 38.2%;
  }
  .xl-width-gl {
    width: 61.8%;
  }
  .xl-width-a {
    width: auto;
  }
  .xl-height-a {
    height: auto;
  }
}

.font-family-inherit {
  font-family: inherit;
}

.font-family-sans {
  font-family: "Open Sans", sans-serif;
}

.font-family-serif {
  font-family: Georgia, serif;
}

.h0 {
  font-size: 3rem;
}

.h1,
h1 {
  font-size: 2rem;
}

.h2,
h2 {
  font-size: 1.75rem;
}

.h3,
.spotlight-news .views-row > div:nth-child(2) a,
.latest-news .views-row > div:nth-child(2) a,
.events-wrapper .views-row > div:nth-child(2) a,
.not-front .page-content .views-row .views-field-title a,
.views-exposed-form ~ .views-row div:nth-child(2),
h3 {
  font-size: 1.375rem;
}

.h4,
h4 {
  font-size: 1rem;
}

.h5,
h5 {
  font-size: .875rem;
}

.h6,
h6 {
  font-size: .75rem;
}

.h0,
.h1,
.h2,
.h3,
.spotlight-news .views-row > div:nth-child(2) a,
.latest-news .views-row > div:nth-child(2) a,
.events-wrapper .views-row > div:nth-child(2) a,
.not-front .page-content .views-row .views-field-title a,
.views-exposed-form ~ .views-row div:nth-child(2),
.h4,
.h5 {
  font-family: "Open Sans", "Open Sans", sans-serif;
}

.h0,
.h1 {
  font-weight: 300;
}

.font-size-inherit {
  font-size: inherit;
}

.small,
.spotlight-news .views-row > div:last-child,
.latest-news .views-row > div:last-child,
.events-wrapper .views-row > div:last-child,
.views-exposed-form ~ .views-row div:last-child,
.not-front .page-content .views-row .views-field-created,
.search-page-form details button,
.search-page-form legend {
  font-size: small;
}

.smaller {
  font-size: smaller;
}

.x-small {
  font-size: x-small;
}

.xx-small {
  font-size: xx-small;
}

.light,
.spotlight-news .views-row > div:nth-child(2) a,
.latest-news .views-row > div:nth-child(2) a,
.events-wrapper .views-row > div:nth-child(2) a,
.not-front .page-content .views-row .views-field-title a,
.views-exposed-form ~ .views-row div:nth-child(2),
.link-tile {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.spaced,
.spotlight-news .views-row > div:last-child,
.latest-news .views-row > div:last-child,
.events-wrapper .views-row > div:last-child,
.views-exposed-form ~ .views-row div:last-child,
.not-front .page-content .views-row .views-field-created,
.search-page-form details button,
.search-page-form legend {
  letter-spacing: 0.05em;
}

.left,
table td,
table th,
.qoute-highlighted,
.footer-bottom nav a {
  text-align: left;
}

.center,
.main-header--social,
.menu-aside a,
.pagination ul > .pagination-number > a,
.pagination .pager__item--first > a,
.pagination .pager__item--last > a,
.pagination--link {
  text-align: center;
}

.right {
  text-align: right;
}

.justify {
  text-align: justify;
}

.nowrap {
  white-space: nowrap;
}

.break-word {
  word-wrap: break-word;
}

.line-height-1 {
  line-height: 1;
}

.line-height-2 {
  line-height: 1.125;
}

.line-height-3 {
  line-height: 1.25;
}

.line-height-4 {
  line-height: 1.5;
}

.decoration-underline {
  text-decoration: underline;
}

.decoration-none {
  text-decoration: none;
}

.list-style-none,
.main-header--social {
  list-style: none;
}

.list-reset {
  list-style: none;
  padding-left: 0;
}

@media screen and (min-width: 33.125rem) {
  .xxs-h0 {
    font-size: 3rem;
  }
  .xxs-h1 {
    font-size: 2rem;
  }
  .xxs-h2 {
    font-size: 1.5rem;
  }
  .xxs-h3 {
    font-size: 1.25rem;
  }
  .xxs-h4 {
    font-size: 1rem;
  }
  .xxs-h5 {
    font-size: .875rem;
  }
  .xxs-h6 {
    font-size: .75rem;
  }
  .xxs-left {
    text-align: left;
  }
  .xxs-center {
    text-align: center;
  }
  .xxs-right {
    text-align: right;
  }
  .xxs-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 38.75rem) {
  .xs-h0 {
    font-size: 3rem;
  }
  .xs-h1 {
    font-size: 2rem;
  }
  .xs-h2 {
    font-size: 1.5rem;
  }
  .xs-h3 {
    font-size: 1.25rem;
  }
  .xs-h4 {
    font-size: 1rem;
  }
  .xs-h5 {
    font-size: .875rem;
  }
  .xs-h6 {
    font-size: .75rem;
  }
  .xs-left {
    text-align: left;
  }
  .xs-center {
    text-align: center;
  }
  .xs-right {
    text-align: right;
  }
  .xs-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 52.5rem) {
  .s-h0 {
    font-size: 3rem;
  }
  .s-h1 {
    font-size: 2rem;
  }
  .s-h2 {
    font-size: 1.5rem;
  }
  .s-h3 {
    font-size: 1.25rem;
  }
  .s-h4 {
    font-size: 1rem;
  }
  .s-h5 {
    font-size: .875rem;
  }
  .s-h6 {
    font-size: .75rem;
  }
  .s-left {
    text-align: left;
  }
  .s-center {
    text-align: center;
  }
  .s-right {
    text-align: right;
  }
  .s-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 58.75rem) {
  .m-h0 {
    font-size: 3rem;
  }
  .m-h1 {
    font-size: 2rem;
  }
  .m-h2 {
    font-size: 1.5rem;
  }
  .m-h3 {
    font-size: 1.25rem;
  }
  .m-h4 {
    font-size: 1rem;
  }
  .m-h5 {
    font-size: .875rem;
  }
  .m-h6 {
    font-size: .75rem;
  }
  .m-left {
    text-align: left;
  }
  .m-center {
    text-align: center;
  }
  .m-right {
    text-align: right;
  }
  .m-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 65.625rem) {
  .l-h0 {
    font-size: 3rem;
  }
  .l-h1 {
    font-size: 2rem;
  }
  .l-h2 {
    font-size: 1.5rem;
  }
  .l-h3 {
    font-size: 1.25rem;
  }
  .l-h4 {
    font-size: 1rem;
  }
  .l-h5 {
    font-size: .875rem;
  }
  .l-h6 {
    font-size: .75rem;
  }
  .l-left {
    text-align: left;
  }
  .l-center {
    text-align: center;
  }
  .l-right {
    text-align: right;
  }
  .l-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 1194px) {
  .xl-h0 {
    font-size: 3rem;
  }
  .xl-h1 {
    font-size: 2rem;
  }
  .xl-h2 {
    font-size: 1.5rem;
  }
  .xl-h3 {
    font-size: 1.25rem;
  }
  .xl-h4 {
    font-size: 1rem;
  }
  .xl-h5 {
    font-size: .875rem;
  }
  .xl-h6 {
    font-size: .75rem;
  }
  .xl-left {
    text-align: left;
  }
  .xl-center {
    text-align: center;
  }
  .xl-right {
    text-align: right;
  }
  .xl-justify {
    text-align: justify;
  }
}

.text-vertical-fix > :first-child,
.messages > :first-child,
.webform-confirmation__message > :first-child,
.spotlight--content > :first-child,
.page--fields .col > :first-child,
.qoute-highlighted > :first-child {
  margin-top: 0 !important;
}

.text-vertical-fix > :last-child,
.messages > :last-child,
.webform-confirmation__message > :last-child,
.spotlight--content > :last-child,
.page--fields .col > :last-child,
.qoute-highlighted > :last-child {
  margin-bottom: 0 !important;
}

.text-columns {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

.font-awesome,
.webform-submission-form button[type="submit"]:after,
.page-edit-menu h2:before {
  font: normal normal normal 1.1em/1 FontAwesome;
}

.background-white {
  background-color: #fff;
}

a.background-white:hover,
a.background-white:focus,
button.background-white:hover,
button.background-white:focus {
  background-color: #f5f5f5;
}

.color-white {
  color: #fff;
}

.fill-white {
  fill: #fff;
}

.border-white {
  border-color: #fff;
}

.background-purple,
.page--teaser .links a {
  background-color: #906;
}

a.background-purple:hover,
.page--teaser .links a:hover,
.pager__item.pager__item--next > a:hover,
.pager__item.pager__item--previous > a:hover,
a.background-purple:focus,
.page--teaser .links a:focus,
.pager__item.pager__item--next > a:focus,
.pager__item.pager__item--previous > a:focus,
button.background-purple:hover,
button.background-purple:focus {
  background-color: #850058;
}

.color-purple {
  color: #906;
}

.fill-purple {
  fill: #906;
}

.border-purple {
  border-color: #906;
}

.background-orange {
  background-color: #ff974f;
}

a.background-orange:hover,
a.background-orange:focus,
button.background-orange:hover,
button.background-orange:focus {
  background-color: #ff8b3b;
}

.color-orange {
  color: #ff974f;
}

.fill-orange {
  fill: #ff974f;
}

.border-orange {
  border-color: #ff974f;
}

.background-blue {
  background-color: #199ed9;
}

a.background-blue:hover,
a.background-blue:focus,
button.background-blue:hover,
button.background-blue:focus {
  background-color: #1791c7;
}

.color-blue {
  color: #199ed9;
}

.fill-blue {
  fill: #199ed9;
}

.border-blue {
  border-color: #199ed9;
}

.background-teal {
  background-color: #0092a2;
}

a.background-teal:hover,
a.background-teal:focus,
button.background-teal:hover,
button.background-teal:focus {
  background-color: #00808e;
}

.color-teal {
  color: #0092a2;
}

.fill-teal {
  fill: #0092a2;
}

.border-teal {
  border-color: #0092a2;
}

.background-green {
  background-color: #77933c;
}

a.background-green:hover,
a.background-green:focus,
button.background-green:hover,
button.background-green:focus {
  background-color: #6b8536;
}

.color-green {
  color: #77933c;
}

.fill-green {
  fill: #77933c;
}

.border-green {
  border-color: #77933c;
}

.background-light-gray {
  background-color: #f4f5f6;
}

a.background-light-gray:hover,
a.background-light-gray:focus,
button.background-light-gray:hover,
button.background-light-gray:focus {
  background-color: #e9ebed;
}

.color-light-gray {
  color: #f4f5f6;
}

.fill-light-gray {
  fill: #f4f5f6;
}

.border-light-gray {
  border-color: #f4f5f6;
}

.background-gray,
.pager__item > a,
.pagination--link {
  background-color: #ebeced;
}

a.background-gray:hover,
.pager__item > a:hover,
a.pagination--link:hover,
a.background-gray:focus,
.pager__item > a:focus,
a.pagination--link:focus,
button.background-gray:hover,
button.pagination--link:hover,
button.background-gray:focus,
button.pagination--link:focus {
  background-color: #e0e2e3;
}

.color-gray {
  color: #ebeced;
}

.fill-gray {
  fill: #ebeced;
}

.border-gray {
  border-color: #ebeced;
}

.background-medium-gray {
  background-color: #b1b1b1;
}

a.background-medium-gray:hover,
a.background-medium-gray:focus,
button.background-medium-gray:hover,
button.background-medium-gray:focus {
  background-color: #a7a7a7;
}

.color-medium-gray {
  color: #b1b1b1;
}

.fill-medium-gray {
  fill: #b1b1b1;
}

.border-medium-gray {
  border-color: #b1b1b1;
}

.background-dark-gray {
  background-color: #313131;
}

a.background-dark-gray:hover,
a.background-dark-gray:focus,
button.background-dark-gray:hover,
button.background-dark-gray:focus {
  background-color: #272727;
}

.color-dark-gray {
  color: #313131;
}

.fill-dark-gray {
  fill: #313131;
}

.border-dark-gray {
  border-color: #313131;
}

.background-black-gray {
  background-color: #1B1B1B;
}

a.background-black-gray:hover,
a.background-black-gray:focus,
button.background-black-gray:hover,
button.background-black-gray:focus {
  background-color: #111;
}

.color-black-gray {
  color: #1B1B1B;
}

.fill-black-gray {
  fill: #1B1B1B;
}

.border-black-gray {
  border-color: #1B1B1B;
}

.background-black {
  background-color: #141414;
}

a.background-black:hover,
a.background-black:focus,
button.background-black:hover,
button.background-black:focus {
  background-color: #0a0a0a;
}

.color-black {
  color: #141414;
}

.fill-black {
  fill: #141414;
}

.border-black {
  border-color: #141414;
}

.background-white {
  color: #141414;
}

.background-none {
  background: none;
}

.background-error {
  background-color: #BE3C20;
}

.color-error {
  color: #BE3C20;
}

.fill-error {
  fill: #BE3C20;
}

.background-warning {
  background-color: #DEBF39;
}

.color-warning {
  color: #DEBF39;
}

.fill-warning {
  fill: #DEBF39;
}

.background-success {
  background-color: #4eb649;
}

.color-success {
  color: #4eb649;
}

.fill-success {
  fill: #4eb649;
}

.background-info {
  background-color: #51A1F0;
}

.color-info {
  color: #51A1F0;
}

.fill-info {
  fill: #51A1F0;
}

.color-shaded,
.spotlight-news .views-row > div:last-child,
.latest-news .views-row > div:last-child,
.events-wrapper .views-row > div:last-child,
.views-exposed-form ~ .views-row div:last-child,
.not-front .page-content .views-row .views-field-created {
  color: rgba(20, 20, 20, 0.3);
}

.background-shaded {
  background-color: rgba(20, 20, 20, 0.3);
}

.fill-shaded {
  fill: rgba(20, 20, 20, 0.3);
}

.color-tinted {
  color: rgba(255, 255, 255, 0.2);
}

.background-tinted {
  background-color: rgba(255, 255, 255, 0.2);
}

.fill-tinted {
  fill: rgba(255, 255, 255, 0.2);
}

.text-shadow {
  text-shadow: 0 0.05em 0.05em rgba(20, 20, 20, 0.3);
}

[type="submit"],
.button,
.main-header .menu--root a,
.link-tile,
.page--teaser .links a,
.pager__item > a,
.webform-confirmation__back a,
.pagination--link {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  padding: .5rem .75rem;
  text-decoration: none;
  display: inline-block;
}

[type="submit"]::-moz-focus-inner,
.button::-moz-focus-inner,
.main-header .menu--root a::-moz-focus-inner,
.link-tile::-moz-focus-inner,
.page--teaser .links a::-moz-focus-inner,
.pager__item > a::-moz-focus-inner,
.webform-confirmation__back a::-moz-focus-inner,
.pagination--link::-moz-focus-inner {
  padding: 0;
  border: 0;
}

[type="submit"] svg,
.button svg,
.main-header .menu--root a svg,
.link-tile svg,
.page--teaser .links a svg,
.pager__item > a svg,
.webform-confirmation__back a svg,
.pagination--link svg {
  width: 1em;
  height: 1em;
}

[type="submit"]:hover,
[type="submit"]:focus,
.button:hover,
.main-header .menu--root a:hover,
.link-tile:hover,
.page--teaser .links a:hover,
.pager__item > a:hover,
.webform-confirmation__back a:hover,
.pagination--link:hover,
.button:focus,
.main-header .menu--root a:focus,
.link-tile:focus,
.page--teaser .links a:focus,
.pager__item > a:focus,
.webform-confirmation__back a:focus,
.pagination--link:focus {
  box-shadow: inset 0 0 0 99999px rgba(255, 255, 255, 0.1);
  transition-duration: .15s;
}

[type="submit"]:active,
.button:active,
.main-header .menu--root a:active,
.link-tile:active,
.page--teaser .links a:active,
.pager__item > a:active,
.webform-confirmation__back a:active,
.pagination--link:active {
  color: #fff;
  box-shadow: inset 0 0 0 99999px rgba(20, 20, 20, 0.2);
  transition-duration: 0s;
}

.button.small,
.main-header .menu--root a.small,
.main-header .menu--root .not-front .page-content .views-row a.views-field-created,
.not-front .page-content .views-row .main-header .menu--root a.views-field-created,
.spotlight-news .views-row > div.button:last-child,
.spotlight-news .views-row > div.link-tile:last-child,
.spotlight-news .views-row > div.pagination--link:last-child,
.latest-news .views-row > div.button:last-child,
.latest-news .views-row > div.link-tile:last-child,
.latest-news .views-row > div.pagination--link:last-child,
.events-wrapper .views-row > div.button:last-child,
.events-wrapper .views-row > div.link-tile:last-child,
.events-wrapper .views-row > div.pagination--link:last-child,
.views-exposed-form ~ .views-row div.button:last-child,
.views-exposed-form ~ .views-row div.link-tile:last-child,
.views-exposed-form ~ .views-row div.pagination--link:last-child,
.not-front .page-content .views-row .button.views-field-created,
.not-front .page-content .views-row .views-field-created.link-tile,
.not-front .page-content .views-row .page--teaser .links a.views-field-created,
.page--teaser .links .not-front .page-content .views-row a.views-field-created,
.not-front .page-content .views-row .pager__item > a.views-field-created,
.not-front .page-content .views-row .webform-confirmation__back a.views-field-created,
.webform-confirmation__back .not-front .page-content .views-row a.views-field-created,
.not-front .page-content .views-row .views-field-created.pagination--link,
.small.link-tile,
.search-page-form details button.link-tile,
.search-page-form legend.link-tile,
.search-page-form details button.button,
.search-page-form details button.pagination--link,
.search-page-form legend.button,
.search-page-form legend.pagination--link,
.page--teaser .links a.small,
.pager__item > a.small,
.webform-confirmation__back a.small,
.small.pagination--link {
  font-size: 0.875em;
  padding: .375rem .625rem;
}

.button.white,
.main-header .menu--root a.white,
.white.link-tile,
.page--teaser .links a.white,
.pager__item > a.white,
.webform-confirmation__back a.white,
.white.pagination--link {
  color: #fff;
  background-color: #fff;
}

.button.white:hover,
.main-header .menu--root a.white:hover,
.white.link-tile:hover,
.page--teaser .links a.white:hover,
.pager__item > a.white:hover,
.webform-confirmation__back a.white:hover,
.white.pagination--link:hover {
  background-color: #fafafa;
}

.button.white:focus,
.main-header .menu--root a.white:focus,
.white.link-tile:focus,
.page--teaser .links a.white:focus,
.pager__item > a.white:focus,
.webform-confirmation__back a.white:focus,
.white.pagination--link:focus {
  background-color: #f7f7f7;
}

.button.purple,
.main-header .menu--root a.purple,
.purple.link-tile,
.page--teaser .links a.purple,
.pager__item > a.purple,
.webform-confirmation__back a,
.purple.pagination--link {
  color: #fff;
  background-color: #906;
}

.button.purple:hover,
.main-header .menu--root a.purple:hover,
.purple.link-tile:hover,
.page--teaser .links a.purple:hover,
.pager__item > a.purple:hover,
.webform-confirmation__back a:hover,
.purple.pagination--link:hover {
  background-color: #8f005f;
}

.button.purple:focus,
.main-header .menu--root a.purple:focus,
.purple.link-tile:focus,
.page--teaser .links a.purple:focus,
.pager__item > a.purple:focus,
.webform-confirmation__back a:focus,
.purple.pagination--link:focus {
  background-color: #8a005c;
}

.button.orange,
.main-header .menu--root a.orange,
.orange.link-tile,
.page--teaser .links a.orange,
.pager__item > a.orange,
.webform-confirmation__back a.orange,
.orange.pagination--link {
  color: #fff;
  background-color: #ff974f;
}

.button.orange:hover,
.main-header .menu--root a.orange:hover,
.orange.link-tile:hover,
.page--teaser .links a.orange:hover,
.pager__item > a.orange:hover,
.webform-confirmation__back a.orange:hover,
.orange.pagination--link:hover {
  background-color: #ff9145;
}

.button.orange:focus,
.main-header .menu--root a.orange:focus,
.orange.link-tile:focus,
.page--teaser .links a.orange:focus,
.pager__item > a.orange:focus,
.webform-confirmation__back a.orange:focus,
.orange.pagination--link:focus {
  background-color: #ff8e40;
}

.button.blue,
.main-header .menu--root a.blue,
.blue.link-tile,
.page--teaser .links a.blue,
.pager__item > a.blue,
.webform-confirmation__back a.blue,
.blue.pagination--link {
  color: #fff;
  background-color: #199ed9;
}

.button.blue:hover,
.main-header .menu--root a.blue:hover,
.blue.link-tile:hover,
.page--teaser .links a.blue:hover,
.pager__item > a.blue:hover,
.webform-confirmation__back a.blue:hover,
.blue.pagination--link:hover {
  background-color: #1897d0;
}

.button.blue:focus,
.main-header .menu--root a.blue:focus,
.blue.link-tile:focus,
.page--teaser .links a.blue:focus,
.pager__item > a.blue:focus,
.webform-confirmation__back a.blue:focus,
.blue.pagination--link:focus {
  background-color: #1794cb;
}

.button.teal,
.main-header .menu--root a.teal,
.teal.link-tile,
.page--teaser .links a.teal,
.pager__item > a.teal,
.webform-confirmation__back a.teal,
.teal.pagination--link {
  color: #fff;
  background-color: #0092a2;
}

.button.teal:hover,
.main-header .menu--root a.teal:hover,
.teal.link-tile:hover,
.page--teaser .links a.teal:hover,
.pager__item > a.teal:hover,
.webform-confirmation__back a.teal:hover,
.teal.pagination--link:hover {
  background-color: #008998;
}

.button.teal:focus,
.main-header .menu--root a.teal:focus,
.teal.link-tile:focus,
.page--teaser .links a.teal:focus,
.pager__item > a.teal:focus,
.webform-confirmation__back a.teal:focus,
.teal.pagination--link:focus {
  background-color: #008493;
}

.button.green,
.main-header .menu--root a.green,
.green.link-tile,
.page--teaser .links a.green,
.pager__item > a.green,
.webform-confirmation__back a.green,
.green.pagination--link {
  color: #fff;
  background-color: #77933c;
}

.button.green:hover,
.main-header .menu--root a.green:hover,
.green.link-tile:hover,
.page--teaser .links a.green:hover,
.pager__item > a.green:hover,
.webform-confirmation__back a.green:hover,
.green.pagination--link:hover {
  background-color: #718c39;
}

.button.green:focus,
.main-header .menu--root a.green:focus,
.green.link-tile:focus,
.page--teaser .links a.green:focus,
.pager__item > a.green:focus,
.webform-confirmation__back a.green:focus,
.green.pagination--link:focus {
  background-color: #6e8838;
}

.button.light-gray,
.main-header .menu--root a.light-gray,
.light-gray.link-tile,
.page--teaser .links a.light-gray,
.pager__item > a.light-gray,
.webform-confirmation__back a.light-gray,
.light-gray.pagination--link {
  color: #fff;
  background-color: #f4f5f6;
}

.button.light-gray:hover,
.main-header .menu--root a.light-gray:hover,
.light-gray.link-tile:hover,
.page--teaser .links a.light-gray:hover,
.pager__item > a.light-gray:hover,
.webform-confirmation__back a.light-gray:hover,
.light-gray.pagination--link:hover {
  background-color: #eef0f1;
}

.button.light-gray:focus,
.main-header .menu--root a.light-gray:focus,
.light-gray.link-tile:focus,
.page--teaser .links a.light-gray:focus,
.pager__item > a.light-gray:focus,
.webform-confirmation__back a.light-gray:focus,
.light-gray.pagination--link:focus {
  background-color: #ecedef;
}

.button.gray,
.main-header .menu--root a.gray,
.gray.link-tile,
.page--teaser .links a.gray,
.pager__item > a.gray,
.webform-confirmation__back a.gray,
.gray.pagination--link {
  color: #fff;
  background-color: #ebeced;
}

.button.gray:hover,
.main-header .menu--root a.gray:hover,
.gray.link-tile:hover,
.page--teaser .links a.gray:hover,
.pager__item > a.gray:hover,
.webform-confirmation__back a.gray:hover,
.gray.pagination--link:hover {
  background-color: #e6e7e8;
}

.button.gray:focus,
.main-header .menu--root a.gray:focus,
.gray.link-tile:focus,
.page--teaser .links a.gray:focus,
.pager__item > a.gray:focus,
.webform-confirmation__back a.gray:focus,
.gray.pagination--link:focus {
  background-color: #e3e4e6;
}

.button.medium-gray,
.main-header .menu--root a.medium-gray,
.medium-gray.link-tile,
.page--teaser .links a.medium-gray,
.pager__item > a.medium-gray,
.webform-confirmation__back a.medium-gray,
.medium-gray.pagination--link {
  color: #fff;
  background-color: #b1b1b1;
}

.button.medium-gray:hover,
.main-header .menu--root a.medium-gray:hover,
.medium-gray.link-tile:hover,
.page--teaser .links a.medium-gray:hover,
.pager__item > a.medium-gray:hover,
.webform-confirmation__back a.medium-gray:hover,
.medium-gray.pagination--link:hover {
  background-color: #acacac;
}

.button.medium-gray:focus,
.main-header .menu--root a.medium-gray:focus,
.medium-gray.link-tile:focus,
.page--teaser .links a.medium-gray:focus,
.pager__item > a.medium-gray:focus,
.webform-confirmation__back a.medium-gray:focus,
.medium-gray.pagination--link:focus {
  background-color: #a9a9a9;
}

.button.dark-gray,
.main-header .menu--root a.dark-gray,
.dark-gray.link-tile,
.page--teaser .links a.dark-gray,
.pager__item > a.dark-gray,
.webform-confirmation__back a.dark-gray,
.dark-gray.pagination--link {
  color: #fff;
  background-color: #313131;
}

.button.dark-gray:hover,
.main-header .menu--root a.dark-gray:hover,
.dark-gray.link-tile:hover,
.page--teaser .links a.dark-gray:hover,
.pager__item > a.dark-gray:hover,
.webform-confirmation__back a.dark-gray:hover,
.dark-gray.pagination--link:hover {
  background-color: #2c2c2c;
}

.button.dark-gray:focus,
.main-header .menu--root a.dark-gray:focus,
.dark-gray.link-tile:focus,
.page--teaser .links a.dark-gray:focus,
.pager__item > a.dark-gray:focus,
.webform-confirmation__back a.dark-gray:focus,
.dark-gray.pagination--link:focus {
  background-color: #292929;
}

.button.black-gray,
.main-header .menu--root a.black-gray,
.black-gray.link-tile,
.page--teaser .links a.black-gray,
.pager__item > a.black-gray,
.webform-confirmation__back a.black-gray,
.black-gray.pagination--link {
  color: #fff;
  background-color: #1B1B1B;
}

.button.black-gray:hover,
.main-header .menu--root a.black-gray:hover,
.black-gray.link-tile:hover,
.page--teaser .links a.black-gray:hover,
.pager__item > a.black-gray:hover,
.webform-confirmation__back a.black-gray:hover,
.black-gray.pagination--link:hover {
  background-color: #161616;
}

.button.black-gray:focus,
.main-header .menu--root a.black-gray:focus,
.black-gray.link-tile:focus,
.page--teaser .links a.black-gray:focus,
.pager__item > a.black-gray:focus,
.webform-confirmation__back a.black-gray:focus,
.black-gray.pagination--link:focus {
  background-color: #131313;
}

.button.black,
.main-header .menu--root a.black,
.black.link-tile,
.page--teaser .links a.black,
.pager__item > a.black,
.webform-confirmation__back a.black,
.black.pagination--link {
  color: #fff;
  background-color: #141414;
}

.button.black:hover,
.main-header .menu--root a.black:hover,
.black.link-tile:hover,
.page--teaser .links a.black:hover,
.pager__item > a.black:hover,
.webform-confirmation__back a.black:hover,
.black.pagination--link:hover {
  background-color: #0f0f0f;
}

.button.black:focus,
.main-header .menu--root a.black:focus,
.black.link-tile:focus,
.page--teaser .links a.black:focus,
.pager__item > a.black:focus,
.webform-confirmation__back a.black:focus,
.black.pagination--link:focus {
  background-color: #0c0c0c;
}

.button-large {
  font-size: 1.125em;
  padding: .8125rem .9375rem;
}

.button-block {
  text-align: center;
  display: block;
}

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

.button-purple {
  color: #fff;
  background-color: #906;
}

.button-orange {
  color: #fff;
  background-color: #ff974f;
}

.button-blue {
  color: #fff;
  background-color: #199ed9;
}

.button-teal {
  color: #fff;
  background-color: #0092a2;
}

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

.button-light-gray {
  color: #fff;
  background-color: #f4f5f6;
}

.button-gray {
  color: #fff;
  background-color: #ebeced;
}

.button-medium-gray {
  color: #fff;
  background-color: #b1b1b1;
}

.button-dark-gray {
  color: #fff;
  background-color: #313131;
}

.button-black-gray {
  color: #fff;
  background-color: #1B1B1B;
}

.button-black {
  color: #fff;
  background-color: #141414;
}

.messages,
.webform-confirmation__message {
  padding: 1rem 1rem;
  border-top: solid 4px currentColor;
  color: #313131;
}

.messages h2,
.webform-confirmation__message h2 {
  font-size: 1.375em;
  margin: 1.25rem 0;
}

.messages.success,
.webform-confirmation__message {
  border-top-color: #4eb649;
  background: #e4f4e4;
}

.messages.info,
.info.webform-confirmation__message,
.messages.status,
.status.webform-confirmation__message {
  border-top-color: #51A1F0;
  background: #e5f1fd;
}

.messages.warning,
.warning.webform-confirmation__message {
  border-top-color: #DEBF39;
  background: #faf5e1;
}

.messages.error,
.error.webform-confirmation__message {
  border-top-color: #BE3C20;
  background: #f5e2de;
}

.messages.white,
.white.webform-confirmation__message {
  border-color: #fff;
  background-color: #fff;
}

.messages.purple,
.purple.webform-confirmation__message {
  border-color: #906;
  background-color: #c08;
}

.messages.orange,
.orange.webform-confirmation__message {
  border-color: #ff974f;
  background-color: #ffb582;
}

.messages.blue,
.blue.webform-confirmation__message {
  border-color: #199ed9;
  background-color: #3cb4e9;
}

.messages.teal,
.teal.webform-confirmation__message {
  border-color: #0092a2;
  background-color: #00c0d5;
}

.messages.green,
.green.webform-confirmation__message {
  border-color: #77933c;
  background-color: #94b64c;
}

.messages.light-gray,
.light-gray.webform-confirmation__message {
  border-color: #f4f5f6;
  background-color: #fff;
}

.messages.gray,
.gray.webform-confirmation__message {
  border-color: #ebeced;
  background-color: #fff;
}

.messages.medium-gray,
.medium-gray.webform-confirmation__message {
  border-color: #b1b1b1;
  background-color: #cbcbcb;
}

.messages.dark-gray,
.dark-gray.webform-confirmation__message {
  border-color: #313131;
  background-color: #4b4b4b;
}

.messages.black-gray,
.black-gray.webform-confirmation__message {
  border-color: #1B1B1B;
  background-color: #353535;
}

.messages.black,
.black.webform-confirmation__message {
  border-color: #141414;
  background-color: #2e2e2e;
}

.messages.purple,
.purple.webform-confirmation__message {
  border-top-color: #860b59;
  background: #990C65;
  color: #fff;
}

.wrapper {
  max-width: 1170px;
}

.wrapper--wide {
  max-width: 1600px;
}

.wrapper--narrow {
  max-width: 960px;
}

.wrapper--form {
  max-width: 450px;
}

.wrapper--elastic {
  padding-left: 5%;
  padding-right: 5%;
}

/*.wrapper--page{padding-top:3.125rem} */
.user-login-form,
.member-search-form {
  background-color: #fcfcfc;
  padding: 1.0625rem 1.125rem 2.875rem;
  margin: 1.5625rem 3px 0;
  box-shadow: 0 0 0.4375rem rgba(177, 177, 177, 0.35);
}

.exposed-filter h3,
.page--search .views-exposed-form h3,
.user-login-form h3,
.member-search-form h3 {
  font-size: 1.25rem;
  line-height: 23/20;
  margin: 0 0 1.75rem;
}

.exposed-filter p,
.page--search .views-exposed-form p,
.user-login-form p,
.member-search-form p {
  color: #848484;
  margin: 1.125rem 0;
}

.exposed-filter .js-form-item,
.page--search .views-exposed-form .js-form-item,
.user-login-form .js-form-item,
.member-search-form .js-form-item {
  margin-top: .375rem;
  margin-bottom: .375rem;
}

@media (min-width: 65.625rem) {
  .exposed-filter .js-form-item,
  .page--search .views-exposed-form .js-form-item,
  .user-login-form .js-form-item,
  .member-search-form .js-form-item {
    padding-right: .46875rem;
    padding-left: .46875rem;
    width: 25%;
    float: left;
  }
  .exposed-filter .js-form-item:nth-child(4n+5),
  .page--search .views-exposed-form .js-form-item:nth-child(4n+5),
  .user-login-form .js-form-item:nth-child(4n+5),
  .member-search-form .js-form-item:nth-child(4n+5) {
    clear: left;
  }
  .exposed-filter .js-form-item.js-form-item--full,
  .page--search .views-exposed-form .js-form-item.js-form-item--full,
  .user-login-form .js-form-item.js-form-item--full,
  .member-search-form .js-form-item.js-form-item--full {
    width: 100%;
  }
  .exposed-filter .js-form-item.js-form-item--half,
  .page--search .views-exposed-form .js-form-item.js-form-item--half,
  .user-login-form .js-form-item.js-form-item--half,
  .member-search-form .js-form-item.js-form-item--half {
    width: 50%;
  }
}

.exposed-filter .js-form-item.js-form-type-textfield:nth-last-of-type(:last-child),
.page--search .views-exposed-form .js-form-item.js-form-type-textfield:nth-last-of-type(:last-child),
.user-login-form .js-form-item.js-form-type-textfield:nth-last-of-type(:last-child),
.member-search-form .js-form-item.js-form-type-textfield:nth-last-of-type(:last-child) {
  margin-bottom: 1.25rem;
}

.exposed-filter .js-form-item label,
.page--search .views-exposed-form .js-form-item label,
.user-login-form .js-form-item label,
.member-search-form .js-form-item label {
  font-size: .75rem;
  display: block;
  margin: 0 0 6px 0;
}

.exposed-filter input.form-text,
.exposed-filter select.form-select,
.page--search .views-exposed-form input.form-text,
.page--search .views-exposed-form select.form-select,
.user-login-form input.form-text,
.user-login-form select.form-select,
.member-search-form input.form-text,
.member-search-form select.form-select {
  font-size: .75rem;
  color: #9b9b9b;
  background: #fff;
  border: 0;
  width: 100%;
  height: 2.125rem;
  padding: 0 .5rem;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 65.625rem) {
  .exposed-filter input.form-text,
  .exposed-filter select.form-select,
  .page--search .views-exposed-form input.form-text,
  .page--search .views-exposed-form select.form-select,
  .user-login-form input.form-text,
  .user-login-form select.form-select,
  .member-search-form input.form-text,
  .member-search-form select.form-select {
    font-size: 1rem;
    height: 2.875rem;
  }
}

.exposed-filter button,
.page--search .views-exposed-form button,
.user-login-form button,
.member-search-form button {
  font-size: .75rem;
  font-weight: normal;
  color: #fff;
  background: #4eb649;
  border: solid 1px #b1b1b1;
  display: block;
  padding: 0 .625rem;
  height: 2.125rem;
  line-height: 2.125rem;
  margin: 1.875rem 0 0 .9375rem;
}

@media (min-width: 65.625rem) {
  .exposed-filter button,
  .page--search .views-exposed-form button,
  .user-login-form button,
  .member-search-form button {
    float: right;
    clear: left;
    margin: 0 .46875rem;
    width: 25%;
  }
}

@media (max-width: 65.625rem) {
  .exposed-filter button,
  .page--search .views-exposed-form button,
  .user-login-form button,
  .member-search-form button {
    width: 100%;
    margin: 1.25rem 0;
    font-size: 1.125rem;
    height: 2.875rem;
    line-height: 2.875rem;
  }
}

.exposed-filter.exposed-filter--compact,
.page--search .views-exposed-form.exposed-filter--compact,
.user-login-form.exposed-filter--compact,
.member-search-form.exposed-filter--compact {
  padding-bottom: 1.875rem;
}

@media (min-width: 65.625rem) {
  .exposed-filter form {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
  }
}

.user-login-form .js-form-item {
  width: 100% !important;
  float: none !important;
}

.page--search .views-exposed-form,
.member-search-form {
  padding-bottom: 2.625rem;
}

@media (min-width: 65.625rem) {
  .page--search .views-exposed-form .js-form-item,
  .member-search-form .js-form-item {
    width: 50%;
  }
  .page--search .views-exposed-form .js-form-item.js-form-type-entity-autocomplete,
  .member-search-form .js-form-item.js-form-type-entity-autocomplete {
    width: 100%;
  }
}

/*! fancyBox 3.0.0 Beta 1 fancyapps.com | fancyapps.com/fancybox/#license */
#fancybox-loading,
#fancybox-lock,
.fancybox-wrap,
.fancybox-skin,
.fancybox-inner,
.fancybox-error,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-wrap embed,
a.fancybox-close,
a.fancybox-expand,
a.fancybox-nav,
a.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: none;
  text-shadow: none;
}

#fancybox-lock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8020;
  overflow-y: scroll;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateX(0px);
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-skin {
  border-style: solid;
  border-color: #fff;
  background: #fff;
  color: #444;
}

.fancybox-inner {
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.fancybox-spacer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 1px;
}

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
  zoom: 1;
}

a.fancybox-close {
  position: absolute;
  top: -23px;
  right: -23px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background-position: 0 0;
  z-index: 8040;
}

a.fancybox-nav {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
  overflow: hidden;
}

.fancybox-type-iframe a.fancybox-nav,
.fancybox-type-inline a.fancybox-nav,
.fancybox-type-html a.fancybox-nav {
  width: 70px;
}

a.fancybox-prev {
  left: -70px;
}

a.fancybox-next {
  right: -70px;
}

a.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  cursor: pointer;
  z-index: 8040;
}

a.fancybox-prev span {
  left: 0;
  background-position: 0 -50px;
}

a.fancybox-next span {
  right: 0;
  background-position: 0 -100px;
}

.fancybox-mobile a.fancybox-nav {
  max-width: 80px;
}

.fancybox-desktop a.fancybox-nav {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.fancybox-desktop a.fancybox-nav:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

a.fancybox-expand {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46px;
  height: 46px;
  z-index: 8050;
  opacity: 0;
  filter: alpha(opacity=0);
  background-position: 0 -150px;
  zoom: 1;
  transition: opacity .5s ease;
}

.fancybox-wrap:hover a.fancybox-expand {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.fancybox-wrap a.fancybox-expand:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background-color: #111;
  background-image: url(data:image/gif;base64,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);
  background-position: center center;
  opacity: 0.85;
  filter: alpha(opacity=85);
  cursor: pointer;
  z-index: 8060;
  border-radius: 8px;
}

.fancybox-tmp {
  position: absolute !important;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.fancybox-title {
  font: normal 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  position: relative;
  text-shadow: none;
  z-index: 8050;
  display: block;
  visibility: hidden;
}

.fancybox-title-float-wrap {
  position: relative;
  margin-top: 10px;
  text-align: center;
  zoom: 1;
  left: -9999px;
}

.fancybox-title-float-wrap > div {
  display: inline-block;
  padding: 7px 20px;
  font-weight: bold;
  color: #FFF;
  text-shadow: 0 1px 2px #222;
  background: transparent;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.5);
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 15px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  max-height: 50%;
  overflow: auto;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 8010;
}

.fancybox-overlay-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.fancybox-default-skin {
  border-color: #f9f9f9;
  background: #f9f9f9;
}

.fancybox-default-skin-open {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-default-overlay {
  background: #333;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.fancybox-default a.fancybox-close,
.fancybox-default a.fancybox-expand,
.fancybox-default a.fancybox-nav span {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAADICAYAAACXpNOoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1RkZERjA4NTZBNEMxMUUyOTFGMkY4MEVGREQ0MkRDNCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1RkZERjA4NDZBNEMxMUUyOTFGMkY4MEVGREQ0MkRDNCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2OUM1RDBBNEI2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  .fancybox-default a.fancybox-close,
  .fancybox-default a.fancybox-expand,
  .fancybox-default a.fancybox-nav span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFwAAAGQCAYAAAAjsgcjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCMTg4NzhCQTZBNEYxMUUyQTQ2NEQ0Nzc1M0U1REU1MSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCMTg4NzhCOTZBNEYxMUUyQTQ2NEQ0Nzc1M0U1REU1MSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE0QzZBQjVDNEU2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
    background-size: 46px auto;
  }
}

.fancybox-dark a.fancybox-close,
.fancybox-dark a.fancybox-expand,
.fancybox-dark a.fancybox-nav span {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAADICAYAAACXpNOoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OTJGQjgwRDZBNEQxMUUyOEJDREM1NUU4QUUxNjBFMCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OTJGQjgwQzZBNEQxMUUyOEJDREM1NUU4QUUxNjBFMCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU2OUM1RDBBNEI2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
}

.fancybox-dark-skin {
  background: #2A2A2A;
  border-color: #2A2A2A;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset !important;
}

.fancybox-dark-overlay {
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .fancybox-dark a.fancybox-close,
  .fancybox-dark a.fancybox-expand,
  .fancybox-dark a.fancybox-nav span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFwAAAGQCAYAAAAjsgcjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMzAwM0E4MDZBNEQxMUUyQUMyMDg1MkQ4RkQxRDJCNCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMzAwM0E3RjZBNEQxMUUyQUMyMDg1MkQ4RkQxRDJCNCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU4OUM1RDBBNEI2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
    background-size: 46px auto;
  }
}

.fancybox-light a.fancybox-close,
.fancybox-light a.fancybox-expand,
.fancybox-light a.fancybox-nav span {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAADICAYAAACXpNOoAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1NjIzNzFGMDZBNTUxMUUyQkVBRUY3ODU0RDc4OTlCQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1NjIzNzFFRjZBNTUxMUUyQkVBRUY3ODU0RDc4OTlCQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE5QzZBQjVDNEU2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
}

.fancybox-light-skin-open {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  .fancybox-light a.fancybox-close,
  .fancybox-light a.fancybox-expand,
  .fancybox-light a.fancybox-nav span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFwAAAGQCAYAAAAjsgcjAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzRGRjc2NzEwNERFMjExQTc0M0U0NzZGQkE0MTM5RSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEMEQwOUQ1MjZBNEUxMUUyQjJGNkY3NDBEMEE5NDY5NyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEMEQwOUQ1MTZBNEUxMUUyQjJGNkY3NDBEMEE5NDY5NyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE0QzZBQjVDNEU2QUUyMTE5NTdDREVCQjFFNDc0RjQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3NEZGNzY3MTA0REUyMTFBNzQzRTQ3NkZCQTQxMzlFIi8+IDwvcmRmOkRlc2NyaXB0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);
    background-size: 46px auto;
  }
}

.fancybox-light-overlay {
  opacity: 0.9;
  filter: alpha(opacity=90);
  background: #555555;
  background: radial-gradient(ellipse at center, #999 0%, #555 100%);
}

img {
  outline: none;
  border: none;
}

@media (max-width: 1049px) and (min-width: 765px) {
  html,
  body {
    font-size: 15px;
  }
}

@media (max-width: 764px) {
  html,
  body {
    font-size: 14px;
  }
}

[role="contentinfo"][aria-label="Status message"] {
  display: none !important;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5.625rem 0 0 0 !important;
}

.toolbar-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
}

.page-wrapper {
  position: relative;
}

body:not(.has-menu) .page-wrapper {
  min-height: 100vh;
}

.main-header--row {
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: solid 1px #e6e6e6;
}

.main-header--row > * {
  margin-left: -1px;
}

.main-header--col {
  padding-right: .625rem;
  padding-left: .625rem;
}

.main-header--row .main-header--col:last-child {
  padding-left: .9375rem;
  padding-right: 1.25rem;
}

.main-header--offset {
  padding-left: .9375rem;
}

.main-header--split {
  width: 1px;
  background-color: currentColor;
  opacity: 0.2;
  height: 1.875rem;
  margin-right: 6px;
  margin-left: 6px;
}

.main-header--col_1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.main-header--social {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  height: 2.1875rem;
}

.main--menu .main-header--social {
  height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-header--social > li {
  display: inline-block;
  margin: 0 2px;
  padding: 0;
}

.main-header--social > li:first-child {
  margin-left: 0;
}

.main-header--social > li:last-child {
  margin-right: 0;
}

.main-header--social a,
.main-header--social svg {
  padding: 0;
  margin: 0;
}

.main-header--social a {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  width: 2.1875rem;
  height: 2.1875rem;
  line-height: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.main-header__logo {
  white-space: nowrap;
  line-height: 1;
  position: relative;
  top: 0.05em;
}

.main-header__logo svg {
  font-size: 1rem;
  display: inline-block;
  height: 3.8125em;
  width: 15em;
}

.main-header__logo img {
  width: 135px;
}

.main-header__subsite_logo {
  font-size: 1rem;
  display: inline-block;
  height: 3.8125em;
  width: auto;
}

@media (max-width: 74.625rem) {
  .main-header__logo svg,
  .main-header__subsite_logo {
    font-size: 0.8rem;
  }
}

@media (max-width: 58.6875rem) {
  .main-header__logo svg {
    font-size: 0.5rem;
  }
  .main-header__subsite_logo {
    font-size: 0.7rem;
  }
}

.main-header__logo--arrow {
  width: .625rem;
  height: 1.75rem;
  position: relative;
  display: inline-block;
  margin-right: 1.875rem;
  margin-left: .9375rem;
}

.main-header__logo--arrow:before,
.main-header__logo--arrow:after {
  content: '';
  width: .625rem;
  height: 2px;
  left: 0rem;
  position: absolute;
  margin-left: -.3125rem;
  background-color: currentColor;
  display: inline-block;
}

.main-header__logo--arrow:before {
  top: .625rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main-header__logo--arrow:after {
  bottom: .625rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 58.6875rem) {
  .main-header__logo--arrow {
    margin-right: .9375rem;
  }
}

.main-header__slogan {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55556;
  margin-left: 1.5625rem;
  position: relative;
  max-width: 31.25rem;
  -webkit-box-flex: 1;
}

.main-header__slogan__region {
  margin-right: 2rem;
}

.main-header__slogan-big {
  font-size: 1.75rem;
  line-height: 1.6875rem;
  font-weight: 400;
}

.main-header__slogan-border {
  margin-left: 1.3125rem;
  padding-left: 1.3125rem;
}

.main-header__slogan-border:before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 1px;
  left: 0;
  width: 1px;
  background-color: #d8d8d8;
}

@media (max-width: 600px) {
  .main-header__slogan-border {
    display: none;
  }
}

.main-header--brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 65.625rem) {
  body.toolbar-horizontal.toolbar-fixed .main-header,
  body.toolbar-vertical .main-header {
    top: 39px;
  }
  body.toolbar-horizontal.toolbar-tray-open.toolbar-fixed .main-header {
    top: 82px;
  }
}

@media (max-width: 65.5625rem) {
  body,
  body.toolbar-fixed {
    padding-top: 5.625rem !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  #toolbar-administration {
    display: none !important;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
  z-index: 100;
}

@media (max-width: 74.625rem) {
  .main-header {
    padding-left: 6.25rem;
  }
}

.main-header__menu {
  background-color: #990c65;
  position: fixed;
  top: 5.625rem;
  left: 0;
}

.toolbar-horizontal.toolbar-fixed .main-header__menu,
.toolbar-vertical .main-header__menu {
  top: calc(39px + 5.625rem);
  height: calc(100vh - 39px - 5.625rem);
}

.toolbar-fixed .main-header__menu {
  top: 80px;
  height: calc(100vh - 80px - 5.625rem);
}

.toolbar-horizontal.toolbar-tray-open.toolbar-fixed .main-header__menu {
  top: calc(80px + 5.625rem);
  height: calc(100vh - 80px - 5.625rem);
}

@media (min-width: 1194px) {
  .main-header__menu {
    width: 333px;
  }
}

@media (max-width: 74.625rem) {
  .toolbar-horizontal.toolbar-fixed .main-header__menu,
  .toolbar-vertical .main-header__menu {
    top: 5.625rem;
  }
}

@media (max-width: 74.625rem) {
  .has-menu .main-header__menu {
    display: block;
    z-index: 200;
  }
}

@media (max-width: 74.625rem) {
  .main-header__menu {
    display: none;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    bottom: 0;
    -webkit-overflow-scrolling: touch;
  }
}

.main-header .menu--root,
.main-header .menu--sub {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-header .menu--sub a:hover,
.main-header .menu--sub a:focus {
  box-shadow: none;
}

.main-header .menu--root > li {
  border-bottom: solid 1px #8b0b5c;
}

.main-header .menu--sub > li {
  border-bottom: solid 1px #cacaca;
}

.main-header .menu--root > li:last-child,
.main-header .menu--sub > li:last-child {
  border-bottom: none;
}

.main-header .menu--root a {
  font-size: .875rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding: .875rem .8rem .8125rem .8rem;
  color: #fff;
  display: block;
}

@media screen and (min-width: 1194px) {
  .main-header .menu--root > li > a {
    text-align: center;
  }
}

.main-header .menu--root > .has-submenu a {
  padding-right: 1.8rem;
}

@media (max-width: 58.6875rem) {
  .main-header .menu--root a {
    padding-top: .625rem;
    padding-bottom: .625rem;
  }
}

.main-header .is-active + .menu--sub > li:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 4px;
  background-color: #a5a5a5;
  z-index: 4;
}

.main-header .menu--sub li {
  position: relative;
}

.main-header .menu--sub li a {
  font-size: .75rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 1.875rem;
  text-align: left;
}

.main-header .menu--sub li a.is-active {
  padding-left: 1.625rem;
}

.main-header .menu--sub li a:before {
  content: '-';
  position: absolute;
  top: .75rem;
  left: .9375rem;
  opacity: 0.8;
}

.main-header .menu--sub li a.is-active:before {
  left: .6875rem;
}

.main-header .menu--sub li li a {
  padding-left: 2.6875rem;
}

.main-header .menu--sub li li a:before {
  left: 1.75rem;
}

.main-header .menu--sub li li a.is-active {
  padding-left: 2.4375rem;
}

.main-header .menu--sub li li a.is-active:before {
  left: 1.5rem;
}

.main-header .menu--sub li li li a {
  padding-left: 3.3125rem;
}

.main-header .menu--sub li li li a:before {
  left: 2.375rem;
}

.main-header .menu--sub li li li a.is-active {
  padding-left: 3.0625rem;
}

.main-header .menu--sub li li li a.is-active:before {
  left: 2.125rem;
}

.main-header .menu--sub a {
  color: #000;
  background-color: #f4f4f4;
}

.main-header .menu--sub a:hover,
.main-header .menu--sub a:focus {
  color: #000;
  background-color: #ececec;
}

.main-header .in-trail > .is-active ~ ul {
  border-bottom: solid 1px #dbdbdb;
}

.main-header .in-trail > .is-active ~ ul a {
  background-color: #e2e2e2;
}

.main-header .menu--sub .is-active {
  background-color: #1c1c1c;
}

.main-header .menu--sub a:after {
  color: #906;
}

.main-header .menu--sub a:after:hover,
.main-header .menu--sub a:after:focus {
  color: #800055;
}

@media (min-width: 65.625rem) {
  .main-header .menu--root .has-submenu:not(.in-trail) > .menu--sub {
    display: none;
  }
}

.main-header__menu-toggle {
  text-align: center;
  color: #fff;
  background-color: #141414;
  border-right: 1px solid #313131;
  fill: #fff;
  width: 5.625rem;
  height: 5.625rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 33.0625rem) {
  .main-header__menu-toggle {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
}

svg.main-header__menu-toggle__menu-icon,
svg.main-header__menu-toggle__cross-icon {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}

svg.main-header__menu-toggle__menu-icon {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}

@media (min-width: 33.125rem) {
  svg.main-header__menu-toggle__menu-icon {
    height: 2rem;
    width: 2rem;
  }
}

.has-menu svg.main-header__menu-toggle__menu-icon {
  display: none;
}

svg.main-header__menu-toggle__cross-icon {
  display: none;
  height: 1rem;
  width: 1rem;
}

@media (min-width: 33.125rem) {
  svg.main-header__menu-toggle__cross-icon {
    width: 1.5rem;
  }
}

.has-menu svg.main-header__menu-toggle__cross-icon {
  display: block;
}

@media (max-width: 74.625rem) {
  h2[style*="opacity: 0"] {
    display: none;
  }
}

.js-form-item label {
  font-size: 1.125rem;
  font-weight: 600;
}

.main-header .form--search label {
  display: none !important;
}

main {
  min-height: 100%;
}

.views-row img {
  display: block;
  width: 100%;
  height: auto;
}

.spotlight-news .views-row > div:not(:first-child),
.latest-news .views-row > div:not(:first-child),
.events-wrapper .views-row > div:not(:first-child) {
  background-color: #f4f5f6;
  padding: 1rem 1rem 0;
}

.spotlight-news .views-row > div:last-child,
.latest-news .views-row > div:last-child,
.events-wrapper .views-row > div:last-child {
  padding-bottom: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.spotlight-news .views-row > div:nth-child(2) a,
.latest-news .views-row > div:nth-child(2) a,
.events-wrapper .views-row > div:nth-child(2) a {
  line-height: 1.25;
}

.spotlight-news .views-row a,
.latest-news .views-row a,
.events-wrapper .views-row a {
  display: block;
  font-weight: 300;
  text-decoration: none;
}

.spotlight-news .views-row div:nth-child(2) a {
  font-size: 1.5rem;
  line-height: 1.25;
}

.spotlight--content h3 a {
  text-decoration: none;
}

#block-twitterblock-2 iframe {
  border: 1px solid #b1b1b1 !important;
}

.blocks--news .block--column a,
.blocks--news .block--column a:hover,
.blocks--news .block--column a:focus {
  text-decoration: none;
}

.blocks--news .block--column:not(:last-child) {
  margin-bottom: 2rem;
}

.latest-news .views-row,
.events-wrapper .views-row {
  padding: 0 1rem;
}

@media (min-width: 58.75rem) {
  .latest-news .views-row,
  .events-wrapper .views-row {
    float: left;
    width: 33.33%;
  }
}

.latest-news .views-row div:nth-child(2) a,
.events-wrapper .views-row div:nth-child(2) a {
  font-size: 1.2rem;
}

.latest-news .views-row a,
.events-wrapper .views-row a {
  display: block;
  background-color: #f4f5f6;
}

.sidebar h2,
.page--bottom h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.3125;
  margin-top: 0;
  margin-bottom: 1em;
}

.is-front .sidebar h2,
.is-front .page--bottom h2 {
  font-size: 1.625rem;
}

@media (max-width: 74.625rem) and (min-width: 65.625rem) {
  .is-front .sidebar h2,
  .is-front .page--bottom h2 {
    font-size: 1.5rem;
  }
}

.sidebar > * {
  margin-bottom: 1.5rem;
}

.sidebar > :first-child {
  margin-top: 0 !important;
}

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

.event-block {
  background-color: #fafafa;
  margin: 0;
  padding: 0;
}

.event-block a {
  display: block;
  text-decoration: none;
}

.event-block a:hover,
.event-block a:focus {
  color: #906;
}

.event-block h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.375rem;
}

.event-block p {
  font-size: .8125rem;
}

.event--figure {
  margin: 0;
}

.event--figure img {
  width: 100%;
}

.event--body {
  padding: 1.25rem 1.25rem 1.25rem;
}

.views-exposed-form ~ .views-row div:last-child {
  text-transform: uppercase;
  font-weight: bold;
}

@media (min-width: 38.75rem) {
  .views-exposed-form ~ .views-row div:last-child {
    float: right;
    width: 66.67%;
    padding-left: 1rem;
  }
}

@media (min-width: 52.5rem) {
  .not-front .page-content .views-row .views-field-field-event-fullimage {
    float: left;
    width: 33.33%;
  }
}

@media (min-width: 52.5rem) {
  .not-front .page-content .views-row .views-field-field-event-fullimage ~ .views-field-title,
  .not-front .page-content .views-row .views-field-field-event-fullimage ~ .views-field-created {
    float: right;
    width: 66.67%;
  }
}

.not-front .page-content .views-row .views-field-title,
.not-front .page-content .views-row .views-field-created {
  padding: 1rem 1rem 0;
}

.not-front .page-content .views-row .views-field-title a {
  line-height: 1.25;
}

.not-front .page-content .views-row .views-field-created {
  padding-bottom: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.views-exposed-form ~ .views-row div:nth-child(2) {
  line-height: 1.25;
  padding: 1rem 1rem 0;
}

.views-exposed-form ~ .views-row div:nth-child(2) a {
  margin-bottom: 1rem;
}

.views-exposed-form ~ .views-row div:nth-child(2) + div {
  padding-bottom: 1rem;
}

.block--head {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 .625rem;
  padding-top: 1rem;
}

.block--item {
  background-color: #fafafa;
  position: relative;
}

.block--item:hover {
  text-decoration: none;
}

.block--item .block--figure {
  margin: 0;
  border-bottom: solid 1px #f2f2f2;
}

.block--item {
  text-decoration: none !important;
}

.block--item:hover {
  box-shadow: 0 0 5px rgba(20, 20, 20, 0.5);
}

a.block--item:hover .block--head {
  text-decoration: underline;
}

.block--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.block--overlay:hover ~ .block--body h3 {
  text-decoration: underline;
}

.wrapper--middle .block--item {
  background-color: #fff;
}

.block--body {
  padding: 1.0625rem 1.25rem 1.125rem;
}

.link-tiles {
  margin: 1.25rem 0;
  padding: 0 !important;
  list-style: none;
}

.link-tiles > li {
  margin: 0 0 1.25rem;
  padding: 0;
}

.link-tile {
  font-size: 2rem;
  line-height: 1.25;
  display: block;
  padding: 2.5rem 1.75rem 2.5rem 1.75rem;
  margin: 0 0 1.3125rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.link-tile span {
  position: relative;
  z-index: 5;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: repeat-x;
  background-size: 1px 1px;
  background-position: 0 1.2em;
}

.link-tile svg {
  height: 6.6875rem;
  width: auto;
  position: absolute;
  top: 50%;
  right: -1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-tile img {
  display: none !important;
}

.link-tile.background-gray,
.pager__item > a.link-tile,
.link-tile.pagination--link {
  background-color: #8b8b8b;
}

.link-tile.background-gray:hover,
.pager__item > a.link-tile:hover,
.link-tile.pagination--link:hover,
.link-tile.background-gray:focus,
.pager__item > a.link-tile:focus,
.link-tile.pagination--link:focus {
  background-color: #818181;
}

.link-tile.background-blue svg path {
  fill: #00b3ff !important;
}

.link-tile[style*="background-image"] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 1194px) {
  .content .link-tiles {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .content .link-tiles:before,
  .content .link-tiles:after {
    content: "";
    display: table;
  }
  .content .link-tiles:after {
    clear: both;
  }
  .content .link-tiles > li {
    margin-left: -1px;
    float: left;
    padding-right: .9375rem;
    padding-left: .9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .content .link-tiles > li > .link-tile {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .content .link-tiles > li + li {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .content .link-tiles > li + li > .link-tile {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 74.625rem) and (min-width: 38.75rem) {
  .link-tiles {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .link-tiles:before,
  .link-tiles:after {
    content: "";
    display: table;
  }
  .link-tiles:after {
    clear: both;
  }
  .link-tiles > li {
    margin-left: -1px;
    float: left;
    padding-right: .9375rem;
    padding-left: .9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .link-tiles > li > .link-tile {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .link-tiles > li + li {
    width: 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .link-tiles > li + li > .link-tile {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .link-tile {
    font-size: 2.5rem;
  }
}

.search-page-form {
  margin-bottom: 2rem;
}

.search-page-form > .form-item label {
  display: block;
  margin-bottom: .5rem;
}

.search-page-form input,
.search-page-form details,
.search-page-form fieldset {
  border: 1px solid #f4f5f6;
}

.search-page-form .search-help-link {
  margin: .5rem 0;
}

.search-page-form details,
.search-page-form fieldset {
  padding: 1rem;
}

.search-page-form fieldset + fieldset {
  margin-top: 1rem;
}

.search-page-form summary + * {
  margin-top: 1rem;
}

.search-page-form details input:first-child {
  margin-right: 1rem;
}

.search-page-form details input:last-child {
  margin-left: 1rem;
}

.search-page-form details button {
  padding: .5rem 1rem;
  margin-top: 1rem;
  line-height: 1;
  text-transform: uppercase;
  background-color: #0092a2;
  color: #fff;
  float: right;
}

.search-page-form legend {
  padding: 0 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

.search-page-form .js-form-item:not(.js-form-type-checkbox) {
  margin-bottom: 1rem;
}

.search-page-form ~ ol li:not(:last-child) {
  margin-bottom: 1rem;
}

@media (min-width: 65.625rem) {
  .page-wrapper > footer {
    padding-left: 333px;
  }
}

@media (max-width: 65.5625rem) {
  .has-menu .page-wrapper > footer {
    display: none;
  }
}

.page-wrapper > footer .wrapper {
  background: url(../images/footer-texture.png) no-repeat center center;
}

.page-line {
  height: 1px;
  background: rgba(20, 20, 20, 0.2);
  margin: 3.25rem 0;
  display: block;
  clear: both;
  width: 100%;
}

.video-bg-wrapper {
  background: #fff no-repeat top center / cover;
  overflow: hidden;
  position: relative;
}

.video-bg-wrapper h1 {
  margin-bottom: 3rem;
}

.video-bg-wrapper .wrapper--narrow img {
  max-width: 8.125rem;
}

.video-bg-wrapper video::-webkit-media-controls-panel {
  display: none !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.video-bg-wrapper video::--webkit-media-controls-play-button {
  display: none !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.video-bg-wrapper video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

@media (min-aspect-ratio: 16 / 9) {
  .video-bg-wrapper .video-bg-wrapper__cover {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .video-bg-wrapper .video-bg-wrapper__cover {
    width: 300%;
    left: -100%;
  }
}

@supports (-o-object-fit: cover) or (object-fit: cover) {
  .video-bg-wrapper .video-bg-wrapper__cover {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 74.625rem) {
  .video-bg-wrapper h1 {
    margin-bottom: 1.875rem;
  }
  .video-bg-wrapper h3,
  .video-bg-wrapper .h3,
  .video-bg-wrapper .spotlight-news .views-row > div:nth-child(2) a,
  .spotlight-news .views-row > div:nth-child(2) .video-bg-wrapper a,
  .video-bg-wrapper .latest-news .views-row > div:nth-child(2) a,
  .latest-news .views-row > div:nth-child(2) .video-bg-wrapper a,
  .video-bg-wrapper .events-wrapper .views-row > div:nth-child(2) a,
  .events-wrapper .views-row > div:nth-child(2) .video-bg-wrapper a,
  .video-bg-wrapper .not-front .page-content .views-row .views-field-title a,
  .not-front .page-content .views-row .views-field-title .video-bg-wrapper a,
  .video-bg-wrapper .views-exposed-form ~ .views-row div:nth-child(2),
  .views-exposed-form ~ .views-row .video-bg-wrapper div:nth-child(2) {
    font-size: 1.75rem;
  }
  .video-bg-wrapper .wrapper--narrow img {
    max-width: 6.25rem;
  }
}

.social-link--facebook {
  background-color: #3a5998;
}

.social-link--twitter {
  background-color: #50abf1;
}

.social-link--youtube {
  background-color: #dd4b39;
}

.social-link--linkedin {
  background-color: #0077b5;
}

.social-link--white {
  color: #141414;
  background-color: #fff;
}

.social-link--white.diff {
  font-weight: 600;
  background-color: #c5c5c5;
}

.video-aspect {
  padding-top: 56.25%;
  margin: 0 0 3.25rem;
}

.video-trigger {
  background-repeat: no-repeat;
  background-size: cover;
}

.color-block-link:nth-child(1) {
  background-color: #ff974f;
}

.color-block-link:nth-child(2) {
  background-color: #199ed9;
}

.color-block-link:nth-child(3) {
  background-color: #0092a2;
}

.color-block-link span {
  background-image: linear-gradient(#fff, #fff);
  background-repeat: repeat-x;
  background-size: 1px 1px;
  background-position: 0 1.2em;
}

.color-block-link:hover span,
.color-block-link:focus span {
  background: none;
}

.front-hero-content .wrapper > div:first-child {
  margin-bottom: .5rem;
}

.link-descriptions-block h3 {
  margin-top: 2rem;
}

@media (max-width: 52.4375rem) {
  .link-descriptions-block {
    text-align: center;
  }
}

.background-darkerder-gray {
  background-color: rgba(49, 49, 49, 0.6);
}

.blocks {
  margin: 0 0 1.25rem;
  position: relative;
}

.blocks > a {
  font-size: .875rem;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: block;
  border: solid 1px #000;
  padding: 0 1rem;
  line-height: 2.8125rem;
}

.wrapper--middle .blocks {
  margin-top: 1.25rem;
}

.wrapper--bottom .blocks {
  margin-top: 2.5rem;
}

.block--label > time {
  margin: 0 !important;
}

@media (min-width: 1194px) {
  .blocks--2 .block--column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .blocks--4 .block--column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 65.625rem) {
  .blocks {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .blocks .block--column:first-child {
    margin-left: -1px;
  }
  .blocks .block--column .block--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .blocks .block--column .block--body {
    padding-bottom: 1.875rem;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .blocks .block--column .block--labels {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1194px), (-ms-high-contrast: none) and (min-width: 1194px) {
  .blocks .block--column {
    width: 25%;
    float: left;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 1194px), (-ms-high-contrast: none) and (min-width: 1194px) {
  .blocks--2 {
    width: 50%;
  }
  .blocks--2 .block--column:nth-child(even) {
    clear: right;
  }
  .blocks--2 {
    width: 33.33333%;
  }
  .blocks--3 .block--column:nth-child(3n+1) {
    clear: right;
  }
  .blocks--2 {
    width: 25%;
  }
  .blocks--4 .block--column:nth-child(4n+1) {
    clear: right;
  }
}

@media (max-width: 74.625rem) and (min-width: 65.625rem) {
  .blocks {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .blocks .block--column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-right: .9375rem;
    padding-left: .9375rem;
    margin-left: -1px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (-ms-high-contrast: active) and (max-width: 74.625rem) and (min-width: 65.625rem), (-ms-high-contrast: none) and (max-width: 74.625rem) and (min-width: 65.625rem) {
  .blocks--2 .block--column:nth-child(even) {
    clear: right;
  }
  .blocks--3 .block--column:nth-child(3n+1) {
    clear: right;
  }
  .blocks--4 .block--column:nth-child(4n+1) {
    clear: right;
  }
}

.blocks .block--column {
  color: #141414;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  margin-bottom: 1.1875rem;
}

.blocks .block--column p {
  font-size: .75rem;
  line-height: 2.16667;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.blocks--white .block--column,
.blocks--white .block--item,
.blocks--white .block--body {
  background-color: #fff;
}

.block--wrapper {
  background-color: #fff;
  box-shadow: 0 0 0.4375rem rgba(177, 177, 177, 0.35);
}

.block--body {
  padding: 0 1rem 1rem;
}

.blocks .block--column a {
  text-decoration: none;
}

.blocks .block--column a:hover {
  text-decoration: underline;
}

.block--label {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2b2b2;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}

.block--label span {
  display: inline-block;
}

.block--label span + span {
  margin-left: 0.5em;
}

.block--label a {
  color: inherit;
  text-decoration: none;
}

.block--label a:hover,
.block--label a:focus {
  text-decoration: underline;
}

.block--label + .block--label {
  margin-left: 1.5625rem;
}

.block--label + .block--label:before {
  content: '';
  display: block;
  width: .375rem;
  height: .375rem;
  position: absolute;
  top: 50%;
  left: -.8125rem;
  margin: -.1875rem 0 0 -.1875rem;
  border-radius: 50%;
  background-color: currentColor;
}

.block--figure {
  background-color: #fff;
  margin: 0;
  position: relative;
}

.block--figure a {
  display: block;
}

.block--figure img {
  width: 100%;
  margin: 0 !important;
  height: auto !important;
}

.page-figure {
  margin: 0 0 1.875rem 0;
}

.page-figure img {
  min-width: 50%;
  height: auto;
  width: auto;
  margin: 0;
}

.page-figure hr {
  border: none;
  height: 1px;
  background-color: currentColor;
  opacity: 0.3;
}

.block--figure-title {
  font-size: .875rem;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  top: 2.1875rem;
  left: 0;
  color: #fff;
  background-color: #141414;
  border-style: solid;
  border-width: 0 0 0 3px !important;
  line-height: 1.875rem;
  height: 1.875rem;
  padding: 0 .625rem 0 .75rem;
  display: block;
  overflow: hidden;
  max-width: calc(100% - 10);
}

.blocks .block--figure-title {
  top: 1.25rem;
  padding-right: 1.25rem;
  padding-left: 1.375rem;
}

.block--figure-title-small {
  font-size: .6875em;
}

@media (max-width: 58.75rem) {
  .blocks .block--column {
    margin-bottom: .625rem;
  }
}

hide__label .field__label {
  display: none !important;
}

.icon {
  font-size: 1.66667em;
  width: 1em;
  height: 1em;
  background: transparent no-repeat center center / contain;
  display: inline-block;
}

.page--banner {
  margin: 0;
  padding: 0;
}

.page--bottom {
  padding: 1.75rem 1.25rem;
}

.page--bottom__be-gray .page--bottom {
  background-color: #eee;
}

.page--bottom div + .page--bottom_bottom {
  margin-top: .8125rem;
}

.page--banner img {
  width: 100%;
}

.page--title {
  font-size: 2.25rem;
  margin: 5px 0 1.875rem 0;
}

@media (max-width: 58.6875rem) {
  .page--title {
    font-size: 1.75rem;
  }
}

.page--line {
  height: 1px;
  background-color: #acafb1;
  clear: both;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.page--line + h2,
.page--line + h3,
.page--line + h4,
.page--line + h5 {
  margin-top: 1.125rem;
}

.page--news_item h2 {
  margin-bottom: 6px;
}

.page--headline {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  color: #3c3c3c;
  margin: -1.625rem 0 1.1875rem;
}

.page--fields .field__label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.page--fields img {
  max-width: 100%;
  height: auto !important;
}

.page--fields time {
  font-style: italic;
  margin-bottom: 1.25rem;
  display: block;
}

.page--fields p {
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

@media (max-width: 74.625rem) {
  .page--fields img {
    margin-top: .625rem;
    margin-bottom: .625rem;
  }
  .page--fields p {
    margin-top: .9375rem;
    margin-bottom: .9375rem;
  }
  .block--figure {
    margin-top: .75rem;
  }
}

.page--more,
.sidebar-wrapper > a {
  font-size: .875rem;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  border: solid 1px #000;
  padding: 0 1rem;
  line-height: 2.375rem;
  margin-top: 1.25rem;
  margin-bottom: .625rem;
}

.page--more__full,
.sidebar .page--more,
.sidebar .sidebar-wrapper > a {
  text-align: center;
  display: block;
}

.page--header {
  position: relative;
}

@media (min-width: 58.75rem) {
  .page--header {
    padding-right: 33.33333%;
  }
  .page--header .page--more,
  .page--header .sidebar-wrapper > a {
    width: calc(33.33333% - .9375rem);
    top: -.5rem;
    position: absolute;
    right: 0;
  }
}

.page--teaser {
  padding: 0 0 1.25rem;
  margin: 0 0 1.25rem;
  border-bottom: solid 1px #ebeced;
}

.page--teaser h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}

.page--teaser p {
  font-size: .75rem;
  margin: .9375rem 0;
  padding: 0;
}

.page--teaser .links,
.page--teaser .links > li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.page--teaser .links a {
  color: #fff;
  display: inline-block;
}

.page--links {
  padding-left: 1.5em !important;
}

.page--info {
  margin: 1rem 0;
  padding: 0 !important;
  list-style: none;
}

.page--info,
.page--info a {
  color: #acafb1;
}

.page--info a {
  text-decoration: none;
}

.page--info > li {
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.page--info > li div {
  display: inline;
}

.page--info > li + li {
  margin-top: 1rem;
}

.icon--calendar {
  background-image: url("../images/img-calendar.png");
}

.icon--location {
  background-image: url("../images/img-location.png");
}

.icon--contact {
  background-image: url("../images/img-contact.png");
}

.icon--world {
  background-image: url("../images/img-world.png");
}

.icon--target {
  background-image: url("../images/img-target.png");
}

.header-info {
  padding: .625rem;
  color: #fff;
  background-color: #906;
}

.header-info--label {
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.75;
  white-space: nowrap;
  position: relative;
  padding-left: 2.125rem;
  min-height: 1.375rem;
}

.header-info--label a {
  text-decoration: none;
}

.header-info--label .icon {
  margin-right: .6875rem;
  position: absolute;
  top: 0;
  left: 0;
}

.header-info--label .field__label {
  padding-right: 0.2em;
}

.header-info--label .field__label:after {
  content: ':';
}

.header-info--label div,
.header-info--label .field__label,
.header-info--label .field__value {
  display: inline;
}

.header-info--label + .header-info--label {
  margin-top: .6875rem;
}

.header-info--col {
  padding: .625rem;
}

@media (min-width: 58.75rem) {
  .header-info:before,
  .header-info:after {
    content: "";
    display: table;
  }
  .header-info:after {
    clear: both;
  }
  .header-info--col {
    float: left;
  }
  .header-info--col + .header-info--col {
    margin-left: 3.375rem;
  }
}

.tags--list {
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.content .tags--list {
  margin-bottom: 1.875rem;
}

.tags--list > li {
  margin: 0 .75rem .75rem 0;
  padding: 0;
  display: inline-block;
}

.tag--item a {
  font-size: .75rem;
  text-decoration: none;
  font-weight: 600;
  color: #1B1B1B;
  background-color: #fff;
  border: solid 1px #89898a;
  border-radius: 2px;
  padding: .375rem .625rem;
  display: inline-block;
}

.tag--item a:hover,
.tag--item a:focus {
  color: #1B1B1B;
  background-color: #f8f8f8;
}

.tag--item_big a {
  font-size: 1rem;
  padding: .25rem 1.25rem;
}

.tag--item_white a {
  background-color: #fff;
  border: none;
}

.tag--item_white a:hover,
.tag--item_white a:focus {
  background-color: #f5f5f5;
}

.tag--item_purple a {
  background-color: #906;
  border: none;
}

.tag--item_purple a:hover,
.tag--item_purple a:focus {
  background-color: #850058;
}

.tag--item_orange a {
  background-color: #ff974f;
  border: none;
}

.tag--item_orange a:hover,
.tag--item_orange a:focus {
  background-color: #ff8b3b;
}

.tag--item_blue a {
  background-color: #199ed9;
  border: none;
}

.tag--item_blue a:hover,
.tag--item_blue a:focus {
  background-color: #1791c7;
}

.tag--item_teal a {
  background-color: #0092a2;
  border: none;
}

.tag--item_teal a:hover,
.tag--item_teal a:focus {
  background-color: #00808e;
}

.tag--item_green a {
  background-color: #77933c;
  border: none;
}

.tag--item_green a:hover,
.tag--item_green a:focus {
  background-color: #6b8536;
}

.tag--item_light-gray a {
  background-color: #f4f5f6;
  border: none;
}

.tag--item_light-gray a:hover,
.tag--item_light-gray a:focus {
  background-color: #e9ebed;
}

.tag--item_gray a {
  background-color: #ebeced;
  border: none;
}

.tag--item_gray a:hover,
.tag--item_gray a:focus {
  background-color: #e0e2e3;
}

.tag--item_medium-gray a {
  background-color: #b1b1b1;
  border: none;
}

.tag--item_medium-gray a:hover,
.tag--item_medium-gray a:focus {
  background-color: #a7a7a7;
}

.tag--item_dark-gray a {
  background-color: #313131;
  border: none;
}

.tag--item_dark-gray a:hover,
.tag--item_dark-gray a:focus {
  background-color: #272727;
}

.tag--item_black-gray a {
  background-color: #1B1B1B;
  border: none;
}

.tag--item_black-gray a:hover,
.tag--item_black-gray a:focus {
  background-color: #111;
}

.tag--item_black a {
  background-color: #141414;
  border: none;
}

.tag--item_black a:hover,
.tag--item_black a:focus {
  background-color: #0a0a0a;
}

.tag--item_teal a {
  color: #fff;
  background-color: #83bbd2;
}

.tag--item_teal a:hover,
.tag--item_teal a:focus {
  color: #fff;
  background-color: #74b3cd;
}

.tag--item_gray a {
  color: #444;
  background-color: #ccc;
}

.tag--item_gray a:hover,
.tag--item_gray a:focus {
  color: #444;
  background-color: #c2c2c2;
}

.blueprint--list {
  padding: 0 !important;
  margin: 0;
  list-style: none;
}

.blueprint--list > li {
  margin: 0;
  padding: 0;
}

.blueprint--list > li + li {
  margin-top: 3rem;
}

.blueprint--button {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: none;
  text-decoration: none !important;
  color: #fff;
  display: inline-block;
  padding: 0 .875rem;
  height: 2.375rem;
  line-height: 2.375rem;
}

.blueprint--figure {
  margin: .6875rem 0 1.25rem 0;
}

.blueprint--figure a {
  display: block;
}

.blueprint--figure img {
  width: 100%;
}

.blueprint--body {
  margin: 1.25rem 0;
}

.blueprint--body > :first-child {
  margin-top: 0 !important;
}

.blueprint--body > :last-child {
  margin-bottom: 0 !important;
}

.blueprint--body p {
  font-size: .8125rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.blueprint--footer {
  margin: 1.875rem 0;
}

.blueprint--footer a {
  color: #199ed9;
  text-decoration: underline;
  font-weight: 700;
}

.wrapper--banner .video-aspect {
  margin: 0;
}

/*.wrapper--page{padding:3.25rem .9375rem 2rem}*/
.wrapper--page.mx-auto {
  max-width: 1200px;
}

.wrapper--filter {
  background-color: #eee;
  padding: 3.625rem 1.25rem .9375rem;
  position: relative;
}

.wrapper--filter h2 {
  font-size: 1.5rem;
}

/*
@media (min-width: 1194px){.wrapper--filter:before{content:'';height:4.6875rem;width:100%;position:absolute;bottom:0;left:0;background-color:#fff}
}
*/
@media (max-width: 74.625rem) {
  .wrapper--filter {
    padding-top: 1.5625rem;
  }
  .wrapper--filter .sidebar {
    margin-top: 1.875rem;
  }
}

@media (max-width: 74.625rem) {
  .wrapper--page {
    padding: 1.25rem;
  }
}

.wrapper--filter .wrapper {
  position: relative;
  z-index: 5;
}

.wrapper--filter .tags--list > li {
  max-width: 45%;
}

.wrapper--filter .tags--list > li .tag--item a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.wrapper--top {
  background: #fff;
  padding-top: .9375rem;
  padding-bottom: 3rem;
}

.wrapper--top-region {
  background-color: #eee;
}

.wrapper--middle {
  background-color: #eee;
  padding-top: 4.0625rem;
  padding-bottom: 3.125rem;
}

.wrapper--middle-region {
  background-color: #fff;
}

.wrapper--bottom {
  background: #fff;
  margin-top: 0;
  padding-top: 3.3125rem;
  padding-bottom: 1rem;
}

@media (max-width: 74.625rem) {
  .wrapper--page {
    padding-top: .9375rem;
    padding-bottom: .9375rem;
  }
}

.hero--block {
  color: #fff;
}

.hero--block a {
  text-decoration: none;
}

.hero--block .button,
.hero--block .main-header .menu--root a,
.main-header .menu--root .hero--block a,
.hero--block .link-tile,
.hero--block .page--teaser .links a,
.page--teaser .links .hero--block a,
.hero--block .pager__item > a,
.hero--block .webform-confirmation__back a,
.webform-confirmation__back .hero--block a,
.hero--block .pagination--link {
  margin-top: 1.25rem;
}

.hero--body {
  padding: 1.75rem 1.875rem;
}

.hero--body > :first-child {
  margin-top: 0 !important;
}

.hero--body > :last-child {
  margin-bottom: 0 !important;
}

.hero--body h2 {
  font-weight: 700;
}

.partners--wrapper {
  background-color: #eee;
  padding: 2.3125rem 1.25rem;
}

.partners--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  margin-right: -.625rem;
  margin-left: -.625rem;
}

@media (max-width: 58.6875rem) {
  .partners--list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 0;
    padding-left: 0;
  }
}

.partners--list a {
  text-decoration: none !important;
  display: block;
  margin: 0 0 0 -1px;
  padding: 0 .625rem;
  min-width: 6.25rem;
}

@media (max-width: 58.6875rem) {
  .partners--list a {
    text-align: center;
    padding-right: 4px;
    padding-left: 4px;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .partners--list a:nth-child(odd) {
    text-align: left;
  }
  .partners--list a:nth-child(even) {
    text-align: right;
  }
}

.monitor--button {
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 2.8125rem;
  display: inline-block;
  padding: 0 1.0625rem;
  color: #000;
  background-color: #fff;
}

.monitor--button:hover,
.monitor--button:focus {
  color: #000;
  background-color: #906;
}

.list--items {
  margin-bottom: 1.75rem;
}

.list--items > a {
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none !important;
  color: #6f6f6f;
  background-color: #f1f1f1;
  display: inline-block !important;
  padding: 0 3rem;
  line-height: 3.125rem;
  height: 3.125rem;
  border-radius: 3px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.list--items > a:hover,
.list--items > a:focus {
  color: #6a6a6a;
  background-color: #e9e9e9;
}

.list--item {
  background-color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 3.125rem 0;
}

.list--item:first-child {
  margin-left: -1px;
}

.list--item a {
  text-decoration: none;
  color: #000;
}

.list--item a:hover {
  color: #906;
}

.list--item h3 {
  font-size: 1.5rem;
  margin: 0;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 5px;
  text-overflow: ellipsis;
}

.page--fields .list--item h3 {
  font-size: 1.5rem;
}

.list--figure {
  max-width: 12.5rem;
  min-width: 6.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26.59574%;
  flex: 0 0 26.59574%;
  margin: 0;
}

.list--figure a {
  display: block;
}

.list--figure img {
  width: 100%;
}

.list--figure * {
  margin: 0 !important;
}

.list--content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5625rem 1.375rem 1.25rem 1.875rem;
}

.list--header,
.list--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list--header {
  padding-bottom: .9375rem;
}

.list--bottom {
  padding-top: .9375rem;
}

.list--middle {
  padding-top: .625rem;
  padding-bottom: .625rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 74.625rem) {
  .list--item {
    margin-bottom: 1.25rem;
  }
  .list--content {
    padding: .625rem;
  }
  .list--header {
    padding-bottom: 10px;
  }
  .list--bottom {
    padding-top: 5px;
  }
  .list--middle {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

@media (max-width: 38.6875rem) {
  .list--item .list--content h3 {
    font-size: .875rem;
  }
}

.list--label {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2b2b2;
  white-space: nowrap;
  display: inline-block;
  padding-top: 3px;
  padding-bottom: 3px;
}

.newsletter--form {
  color: #fff;
  padding: 1.875rem 1.6875rem 1.5625rem;
}

.newsletter--form h2 {
  color: #fcfcfc;
  font-size: 1.75rem;
  font-weight: 300;
  margin: 0;
}

.newsletter--form form {
  text-align: left;
  padding: 1.125rem 0 0;
  margin: 1.125rem 0 0;
  border-top: solid 1px #02daf2;
}

.newsletter--form label {
  font-weight: 300;
  margin: 0 0 .6875rem;
  display: block;
}

.newsletter--form label span {
  margin-bottom: 8px;
}

.newsletter--form label input {
  color: #5c5c5c;
  background-color: #fff;
  border: solid 2px #00d4ec;
  height: 3.125rem;
  box-shadow: inset 0 2px 3px 3px rgba(0, 0, 0, 0.02), 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  width: 100%;
}

.newsletter--form fieldset {
  margin: 0 0 8px 0;
  padding: 0;
  border: none;
}

.newsletter--form button[type="submit"] {
  color: #fff;
  background-color: #02daf2;
  text-align: center;
  height: 3.5rem;
  line-height: 3.125rem;
  padding: 0 1.25rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.02);
  border: solid 3px #02daf2;
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.newsletter--form button[type="submit"]:hover,
.newsletter--form button[type="submit"]:focus {
  color: #fff;
  background-color: #02c8de;
}

.sidebar--list {
  margin: 0;
  padding: 0;
  padding-left: 0 !important;
  list-style: none;
}

.sidebar--list > li {
  margin: 0;
  padding: 0;
}

.sidebar--list > li + li {
  margin-top: .9375rem;
}

@media (max-width: 65.5625rem) and (min-width: 52.5rem) {
  body.not-front .sidebar--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -.9375rem;
    margin-left: -.9375rem;
  }
  body.not-front .sidebar--list > li {
    margin-left: -1px;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-right: .9375rem;
    padding-left: .9375rem;
  }
}

.sidebar--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar--item a {
  text-decoration: none;
  color: #906;
}

.sidebar--item h3 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 .375rem;
  max-height: 3.1rem;
  overflow: hidden;
}

.sidebar--item p {
  font-size: .75rem;
  color: #141414;
  margin: .375rem 0;
}

.sidebar--figure {
  width: 8.875rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.875rem;
  flex: 0 0 8.875rem;
  max-width: 8.875rem;
  margin: 0;
  float: left;
}

.sidebar--figure a {
  display: block;
}

.sidebar--figure img {
  width: 100%;
  max-height: 100%;
}

.sidebar--content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sidebar--figure + .sidebar--content {
  max-width: calc(100% - 8.875rem);
  padding-left: .9375rem;
}

.search--list {
  margin: 1.25rem 0;
  padding: 0 !important;
  list-style: none;
}

.search--list > li {
  padding: .5rem 0;
  margin: .1875rem 0;
}

.search--list > li + li {
  border-top: solid 1px #eee;
}

.search--head {
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}

.buttons--share {
  margin: 1.5625rem 0;
  padding: 0 !important;
  list-style: none;
}

.buttons--share:before,
.buttons--share:after {
  content: "";
  display: table;
}

.buttons--share:after {
  clear: both;
}

.buttons--share > li {
  margin: 0;
  padding: 0;
  float: left;
}

.buttons--share > li + li {
  margin-left: .625rem;
}

.buttons--share a {
  color: #fff;
  background-color: #906;
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  height: 1.75rem;
  line-height: 1.75rem;
  min-width: 1.75rem;
  position: relative;
  border-radius: 3px;
  padding: 0 .5rem 0 1.75rem;
}

.buttons--share a > span {
  margin-left: 5px;
}

.buttons--share a > i {
  font-size: 17px;
  text-align: center;
  line-height: 1;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  position: absolute;
  top: 0;
  left: 0;
}

.buttons--share a.no-text {
  padding: 0;
}

.buttons--share a.facebook {
  background-color: #3b5998;
}

.buttons--share a.facebook:hover,
.buttons--share a.facebook:focus {
  background-color: #30487b;
}

.buttons--share a.twitter {
  background-color: #00aced;
}

.buttons--share a.twitter:hover,
.buttons--share a.twitter:focus {
  background-color: #008ec4;
}

.buttons--share a.google-plus {
  background-color: #dd4b39;
}

.buttons--share a.google-plus > i {
  font-size: 15px;
}

.buttons--share a.google-plus:hover,
.buttons--share a.google-plus:focus {
  background-color: #ca3523;
}

.buttons--share a.linkedin {
  background-color: #007bb6;
}

.buttons--share a.linkedin:hover,
.buttons--share a.linkedin:focus {
  background-color: #005f8d;
}

.buttons--share a.mailto {
  background-color: #f1223c;
}

.buttons--share a.mailto:hover,
.buttons--share a.mailto:focus {
  background-color: #dc0e28;
}

@media (max-width: 58.6875rem) {
  .buttons--share a {
    font-size: 12px;
  }
}

.spotlight h3 {
  color: #141414;
  font-size: 2rem;
  font-weight: 300;
  text-transform: none;
}

.spotlight .block--figure {
  margin: 0;
}

.spotlight h5,
.spotlight--label {
  font-size: .6875rem;
  font-weight: 700;
  margin: 0 0 .9375rem 0;
  color: #ad0000 !important;
}

.spotlight--row {
  background-color: #fff;
  padding: 1.25rem 1.875rem 1.9375rem;
}

.spotlight--row .block--figure {
  margin: 0;
}

@media (max-width: 58.6875rem) {
  .spotlight--row {
    padding-right: .9375rem;
    padding-left: .9375rem;
  }
}

.spotlight--footer {
  margin-top: 1.25rem;
}

@media (max-width: 58.6875rem) {
  .spotlight h3 {
    font-size: 1.5rem;
  }
  .spotlight--content {
    margin-bottom: 1.25rem;
  }
}

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

.footer--bottom .info {
  color: #b2b2b2;
}

.socials {
  margin: .625rem 0;
  padding: 0 !important;
  list-style: none;
}

.socials > li {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.socials > li + li {
  margin-left: 2px;
}

.socials a {
  text-align: center;
  color: #d3d3d3;
  background: #212121;
  display: block;
  position: relative;
  width: 2.5rem;
  line-height: 2.375rem;
  height: 2.375rem;
}

.socials a span {
  display: none;
}

.socials a:hover {
  color: #d3d3d3;
  background: #2b2b2b;
}

.socials a:focus {
  color: #d3d3d3;
  background: #303030;
}

.socials a:before {
  content: '';
  background: transparent no-repeat center center / contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.625rem 0 0 -.625rem;
}

.socials .facebook a:before {
  background-image: url("../images/svg-facebook.svg");
}

.socials .twitter a:before {
  background-image: url("../images/svg-twitter.svg");
}

.socials .youtube a:before {
  background-image: url("../images/svg-youtube.svg");
}

.socials .google-plus a:before {
  background-image: url("../images/svg-google-plus.svg");
}

/*
.pager__items{margin:1.875rem 0;padding:0 !important;list-style:none}
.pager__item{display:inline-block;margin:0 2px}
.pager__item>a{font-size:.75rem;text-transform:uppercase}
.pager__item.is-active>a{background-color:#dfe0e2}
.pager__item.is-active>a:hover,.pager__item.is-active>a:focus{background-color:#d4d6d8}
.pager__item--first>a,.pager__item--last>a{opacity:0.8}
.pager__item--previous,.pager__item--next{margin-right:6px;margin-left:6px}
.pager__item.pager__item--next>a,.pager__item.pager__item--previous>a{color:#fff !important}
*/
.pages-items .pager__item:first-child {
  margin-left: 0 !important;
}

.alert {
  text-align: center;
  color: #fff;
  background-color: #906;
  padding: 2.25rem 1.875rem;
}

.alert hZ {
  font-size: 2.25rem;
  font-weight: 700;
}

.alert p {
  font-size: 1.125rem;
  margin: 0 0 .9375rem 0;
}

.alert--compact {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.table {
  width: 100%;
  text-align: left;
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
}

.table td,
.table th {
  text-align: left;
  vertical-align: top;
  padding-top: .375rem;
  padding-bottom: .375rem;
}

.table tr > *:not(:first-child) {
  padding-left: .375rem;
  padding-right: 0 !important;
}

.table tr > *:not(:last-child) {
  padding-right: .375rem;
  padding-left: 0 !important;
}

.table .table-column-full {
  width: 99%;
}

.table--compact td,
.table--compact th {
  font-size: 0.7em;
  padding-top: 3px;
  padding-bottom: 3px;
}

.languages--switch {
  margin-right: -3px;
  margin-left: -3px;
}

.languages--switch:before,
.languages--switch:after {
  content: "";
  display: table;
}

.languages--switch:after {
  clear: both;
}

.languages--switch a {
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  font-weight: 400;
  line-height: 1;
  display: block;
  padding: 2px 4px;
  float: left;
  position: relative;
  opacity: 0.8;
}

.languages--switch a.current {
  font-weight: 700;
  opacity: 1;
}

.languages--switch a:first-child {
  margin-left: 0;
}

.languages--switch a:last-child {
  margin-right: 0;
}

.row {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
}

.col {
  padding-right: .9375rem;
  padding-left: .9375rem;
}

.page--fields .col img {
  margin-top: 0 !important;
}

.page--fields .col {
  margin-bottom: 1.875rem;
}

@media (min-width: 58.75rem) {
  .col-1-desktop {
    float: left;
    width: 8.33333%;
  }
  .col-2-desktop {
    float: left;
    width: 16.66667%;
  }
  .col-3-desktop {
    float: left;
    width: 25%;
  }
  .col-4-desktop {
    float: left;
    width: 33.33333%;
  }
  .col-5-desktop {
    float: left;
    width: 41.66667%;
  }
  .col-6-desktop {
    float: left;
    width: 50%;
  }
  .col-7-desktop {
    float: left;
    width: 58.33333%;
  }
  .col-8-desktop {
    float: left;
    width: 66.66667%;
  }
  .col-9-desktop {
    float: left;
    width: 75%;
  }
  .col-10-desktop {
    float: left;
    width: 83.33333%;
  }
  .col-11-desktop {
    float: left;
    width: 91.66667%;
  }
  .col-12-desktop {
    float: left;
    width: 100%;
  }
}

.owl-carousel {
  margin-bottom: 2.5rem;
}

.owl-carousel img {
  margin: 0;
}

.owl-carousel:not(.owl-loaded) {
  background-color: #EEEEEE;
  display: block;
  padding-top: 33.92857%;
}

.owl-carousel:not(.owl-loaded) > * {
  display: none;
}

.owl-nav {
  position: static;
}

.owl-prev,
.owl-next {
  font: normal normal 2.5rem FontAwesome;
  color: #fff;
  position: absolute;
  z-index: 10;
  top: 50%;
  display: block;
  margin: -1.25rem 0 0 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  transition: -webkit-filter 500ms linear;
  transition: filter 500ms linear;
  transition: filter 500ms linear, -webkit-filter 500ms linear;
}

.owl-prev.disabled,
.owl-next.disabled {
  opacity: 0.4;
  cursor: disallow;
}

.owl-prev:hover:not(.disabled),
.owl-next:hover:not(.disabled) {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}

.owl-prev:before {
  content: "\f053";
}

.owl-next:before {
  content: "\f054";
}

.owl-prev {
  left: .9375rem;
}

.owl-next {
  right: .9375rem;
}

.owl-dots {
  height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}

.owl-dot {
  background-color: #EEEEEE;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: solid 1px rgba(20, 20, 20, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 6px rgba(0, 0, 0, 0.2);
  transition: background-color 600ms ease;
}

.owl-dot + .owl-dot {
  margin-left: 15px;
}

.owl-dot.active {
  background-color: rgba(20, 20, 20, 0.9);
}

.owl-item {
  position: relative;
}

.owl-body {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.owl-body-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1.25rem 3.75rem 2.8125rem;
}

.owl-body-wrapper > :first-child {
  margin-top: 0 !important;
}

.owl-body-wrapper > :last-child {
  margin-bottom: 0 !important;
}

.form-text,
.form-email,
.form-search,
.form-url,
textarea.form-textarea {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  border: 2px solid #e4e4e4;
  transition: border-color ease-in-out .15s;
  box-shadow: none !important;
}

.form-text:focus,
.form-email:focus,
.form-search:focus,
.form-url:focus,
textarea.form-textarea:focus {
  background-color: #eee;
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-text::-moz-placeholder,
.form-email::-moz-placeholder,
.form-search::-moz-placeholder,
.form-url::-moz-placeholder,
textarea.form-textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-text:-ms-input-placeholder,
.form-email:-ms-input-placeholder,
.form-search:-ms-input-placeholder,
.form-url:-ms-input-placeholder,
textarea.form-textarea:-ms-input-placeholder {
  color: #999;
}

.form-text::-webkit-input-placeholder,
.form-email::-webkit-input-placeholder,
.form-search::-webkit-input-placeholder,
.form-url::-webkit-input-placeholder,
textarea.form-textarea::-webkit-input-placeholder {
  color: #999;
}

.form-text:-ms-expand,
.form-email:-ms-expand,
.form-search:-ms-expand,
.form-url:-ms-expand,
textarea.form-textarea:-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-text:disabled,
.form-email:disabled,
.form-search:disabled,
.form-url:disabled,
textarea.form-textarea:disabled {
  background-color: #eee;
  opacity: 0.4;
  cursor: not-allowed;
}

.form-text[type="search"],
.form-email[type="search"],
.form-search[type="search"],
.form-url[type="search"],
textarea.form-textarea[type="search"] {
  -webkit-appearance: none;
}

.form-text,
.form-email,
.form-search,
.form-url {
  height: 3rem;
  padding: 6px .9375rem;
}

textarea.form-textarea {
  padding: .75rem .9375rem;
}

.form-input input[type="text"],
.form-input input[type="url"],
.form-input input[type="email"],
.form-input input[type="number"],
.form-input input[type="search"],
.form-input input[type="search"],
.form-input input[type="tel"],
.form-input input[type="password"],
.form-input input[type="time"],
.form-input input[type="date"] {
  border-bottom: none;
  border-color: #e4e4e4 !important;
}

.form-input input[type="text"] ~ .form-input-line,
.form-input input[type="url"] ~ .form-input-line,
.form-input input[type="email"] ~ .form-input-line,
.form-input input[type="number"] ~ .form-input-line,
.form-input input[type="search"] ~ .form-input-line,
.form-input input[type="search"] ~ .form-input-line,
.form-input input[type="tel"] ~ .form-input-line,
.form-input input[type="password"] ~ .form-input-line,
.form-input input[type="time"] ~ .form-input-line,
.form-input input[type="date"] ~ .form-input-line {
  background-color: #e4e4e4;
  height: 2px;
}

.form-input input[type="text"] ~ .form-input-line:before,
.form-input input[type="url"] ~ .form-input-line:before,
.form-input input[type="email"] ~ .form-input-line:before,
.form-input input[type="number"] ~ .form-input-line:before,
.form-input input[type="search"] ~ .form-input-line:before,
.form-input input[type="search"] ~ .form-input-line:before,
.form-input input[type="tel"] ~ .form-input-line:before,
.form-input input[type="password"] ~ .form-input-line:before,
.form-input input[type="time"] ~ .form-input-line:before,
.form-input input[type="date"] ~ .form-input-line:before {
  content: '';
  height: 2px;
  display: block;
  width: 0;
  background-color: #bbb;
  transition: width 300ms ease-out;
}

.form-input input[type="text"]:focus ~ .form-input-line:before,
.form-input input[type="url"]:focus ~ .form-input-line:before,
.form-input input[type="email"]:focus ~ .form-input-line:before,
.form-input input[type="number"]:focus ~ .form-input-line:before,
.form-input input[type="search"]:focus ~ .form-input-line:before,
.form-input input[type="search"]:focus ~ .form-input-line:before,
.form-input input[type="tel"]:focus ~ .form-input-line:before,
.form-input input[type="password"]:focus ~ .form-input-line:before,
.form-input input[type="time"]:focus ~ .form-input-line:before,
.form-input input[type="date"]:focus ~ .form-input-line:before {
  width: 100%;
}

.form-input input[type="text"][type="hidden"] ~ .form-input-line,
.form-input input[type="url"][type="hidden"] ~ .form-input-line,
.form-input input[type="email"][type="hidden"] ~ .form-input-line,
.form-input input[type="number"][type="hidden"] ~ .form-input-line,
.form-input input[type="search"][type="hidden"] ~ .form-input-line,
.form-input input[type="search"][type="hidden"] ~ .form-input-line,
.form-input input[type="tel"][type="hidden"] ~ .form-input-line,
.form-input input[type="password"][type="hidden"] ~ .form-input-line,
.form-input input[type="time"][type="hidden"] ~ .form-input-line,
.form-input input[type="date"][type="hidden"] ~ .form-input-line {
  display: none !important;
}

.form-item label,
legend {
  font-size: 1em;
  font-weight: 700;
  margin: 8px 0;
}

.form-checkboxes .form-input,
.form-checkboxes .option,
.form-checkboxes .js-form-type-checkbox,
.form-checkboxes .js-form-type-radio,
.form-item-checkbox .form-input,
.form-item-checkbox .option,
.form-item-checkbox .js-form-type-checkbox,
.form-item-checkbox .js-form-type-radio,
.js-form-item-radio-buttons .form-input,
.js-form-item-radio-buttons .option,
.js-form-item-radio-buttons .js-form-type-checkbox,
.js-form-item-radio-buttons .js-form-type-radio,
.js-webform-radios .form-input,
.js-webform-radios .option,
.js-webform-radios .js-form-type-checkbox,
.js-webform-radios .js-form-type-radio {
  display: inline-block;
}

.form-checkboxes .form-input,
.form-checkboxes .option,
.form-item-checkbox .form-input,
.form-item-checkbox .option,
.js-form-item-radio-buttons .form-input,
.js-form-item-radio-buttons .option,
.js-webform-radios .form-input,
.js-webform-radios .option {
  margin-bottom: 0;
}

.form-checkboxes .js-form-type-checkbox + .js-form-type-checkbox,
.form-checkboxes .js-form-type-radio + .js-form-type-radio,
.form-item-checkbox .js-form-type-checkbox + .js-form-type-checkbox,
.form-item-checkbox .js-form-type-radio + .js-form-type-radio,
.js-form-item-radio-buttons .js-form-type-checkbox + .js-form-type-checkbox,
.js-form-item-radio-buttons .js-form-type-radio + .js-form-type-radio,
.js-webform-radios .js-form-type-checkbox + .js-form-type-checkbox,
.js-webform-radios .js-form-type-radio + .js-form-type-radio {
  margin-left: 15px;
}

.form-checkboxes .option,
.form-item-checkbox .option,
.js-form-item-radio-buttons .option,
.js-webform-radios .option {
  margin-left: 6px;
}

.form-required:after {
  content: '*';
  display: inline-block;
  position: relative;
  top: 0.1em;
  color: #906;
  margin-left: 6px;
}

fieldset {
  padding: 0;
}

.form-wrapper:not(.fieldgroup) > .fieldset-wrapper {
  background-color: #fbfbfb;
  border: solid 2px #e4e4e4;
  padding: 1.25rem 1.875rem .9375rem;
  margin: 8px 0 1.25rem 0;
  box-shadow: 0 0 0.5rem rgba(177, 177, 177, 0.35);
}

.form-item .description {
  font-style: italic;
  display: block;
  margin: .625rem 0 0 0;
  opacity: 0.8;
}

.form--search {
  color: #5c5c5c;
  background-color: #f4f4f4;
  position: relative;
}

.form--search form > * {
  margin-left: -1px;
}

.form--search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form--search input {
  font-size: .875rem;
  font-weight: 700;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 3.5rem;
  line-height: 1;
  padding: 0 .9375rem 0 2rem;
  color: #5c5c5c;
  background-color: #f4f4f4;
  min-width: calc(100% - 3.5625rem);
}

.form--search input:hover {
  background-color: #efefef;
}

.form--search input:focus {
  background-color: #ececec;
}

.form--search button[type="submit"].button,
.form--search button[type="submit"].link-tile,
.form--search button[type="submit"].pagination--link {
  text-align: center;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0 1.25rem;
  min-width: 3.5rem;
}

@media (max-width: 58.6875rem) {
  .form--search input {
    height: 2.5rem;
    padding: 0 3.75rem 0 1rem;
  }
  .form--search button[type="submit"].button,
  .form--search button[type="submit"].link-tile,
  .form--search button[type="submit"].pagination--link {
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 .625rem;
    min-width: 2.5rem;
  }
}

body.theme-region .form--search input {
  border: solid 1px #f4f4f4;
}

.js-form-item {
  margin-bottom: 10px;
}

.webform-submission-form {
  margin: 0 0 1.875rem 0;
}

.webform-submission-form h2,
.webform-submission-form h3,
.webform-submission-form h4 {
  margin: 0.75em 0;
}

.webform-submission-form button[type="submit"] {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #906;
  margin-top: 20px;
  padding-top: .875rem;
  padding-bottom: .875rem;
}

.webform-submission-form button[type="submit"]:after {
  content: "\f1d8";
  margin-left: .9375rem;
}

.webform-submission-form button[type="submit"]:hover,
.webform-submission-form button[type="submit"]:focus {
  color: #fff;
  background-color: #850058;
}

.webform-submission-form input[type="text"],
.webform-submission-form input[type="url"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="number"],
.webform-submission-form input[type="search"],
.webform-submission-form input[type="search"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="password"],
.webform-submission-form input[type="time"],
.webform-submission-form input[type="date"],
.webform-submission-form select,
.webform-submission-form textarea {
  font-size: .875rem;
  color: #b1b1b1;
  background: #fff;
  border: solid 1px #e4e4e4;
  width: 100%;
  height: 2.875rem;
  border-radius: 0;
  padding: 0 .5rem;
  box-shadow: none;
}

.webform-submission-form p {
  font-size: 1.125em;
  margin-bottom: 1.11111em;
}

.webform-confirmation__back a:before {
  content: "\f053";
  font: normal normal normal 1.1em/1 FontAwesome;
  margin-right: 8px;
  position: relative;
  top: 0.12em;
}

.banner--block {
  margin: 0 auto;
}

body.is-front .banner--block .button,
body.is-front .banner--block .main-header .menu--root a,
.main-header .menu--root body.is-front .banner--block a,
body.is-front .banner--block .link-tile,
body.is-front .banner--block .page--teaser .links a,
.page--teaser .links body.is-front .banner--block a,
body.is-front .banner--block .pager__item > a,
body.is-front .banner--block .webform-confirmation__back a,
.webform-confirmation__back body.is-front .banner--block a,
body.is-front .banner--block .pagination--link {
  margin-top: 1.25rem;
}

body.not-front .banner--block .button,
body.not-front .banner--block .main-header .menu--root a,
.main-header .menu--root body.not-front .banner--block a,
body.not-front .banner--block .link-tile,
body.not-front .banner--block .page--teaser .links a,
.page--teaser .links body.not-front .banner--block a,
body.not-front .banner--block .pager__item > a,
body.not-front .banner--block .webform-confirmation__back a,
.webform-confirmation__back body.not-front .banner--block a,
body.not-front .banner--block .pagination--link {
  margin-top: .9375rem;
}

.sidebar .banner--block {
  margin-bottom: .9375rem;
}

.banner-image {
  margin: 0;
}

.banner-image img {
  width: 100%;
  max-width: 100%;
}

.banner-image a {
  display: block;
}

.banner-image a:hover {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}

.sidebar .banner-image {
  border: solid 1px #e4e4e4;
}

.menu-aside {
  list-style: none;
  padding: 0 !important;
  margin: 0 0 1.875rem 0;
}

.menu-aside li {
  margin: 0;
  padding: 0;
}

.menu-aside li + li {
  margin-top: 14px;
}

.menu-aside a {
  position: relative;
  font-size: .8125rem;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
  text-overflow: ellipsis;
  min-height: 3.125rem;
  padding: 5px 3.375rem 5px .625rem;
  color: #fff;
  background-color: #8a1857;
  border: 2px solid #831753;
  border-radius: 6px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-aside a:hover,
.menu-aside a:focus {
  border-color: #906;
}

@media (min-width: 1194px) {
  body.is-front .menu-aside a {
    font-size: .6875rem;
  }
}

.menu-aside a:after {
  content: "\f178";
  font: normal normal normal 1.25em/1 FontAwesome;
  height: 100%;
  width: 3.125rem;
  background-color: #6d1345;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.page-edit-menu {
  margin: 0 0 1.875rem 0;
}

.page-edit-menu h2 {
  font-size: 1.875em;
  color: #906;
  margin: 0 0 20px;
}

.page-edit-menu h2:before {
  content: "\f023";
  margin-right: 10px;
  position: relative;
  top: 0.05em;
}

.page-edit-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-edit-menu li {
  margin: 0;
  padding: 0;
  float: left;
}

.page-edit-menu li + li {
  margin-left: 10px;
}

.page-edit-menu a {
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  color: #141414;
  background-color: #d6d6d6;
  padding: .5rem .75rem;
  text-decoration: none;
  display: block;
}

.page-edit-menu a:hover,
.page-edit-menu a:focus {
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}

.page-edit-menu a[href*="edit"] {
  color: #fff;
  background-color: #4eb649;
}

.page-edit-menu a[href*="delete"] {
  color: #fff;
  background-color: #BE3C20;
}

.page-edit-menu a[href*="translations"] {
  color: #fff;
  background-color: #0092a2;
}

.sidebar nav h2 {
  margin-top: 0;
}

.sidebar nav .menu--root {
  list-style: none;
}

.sidebar nav .menu--root,
.sidebar nav .menu--root li {
  margin: 0;
  padding: 0;
}

.sidebar nav .menu--root li + li {
  margin-top: 3px;
}

.sidebar nav .menu--root a {
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none !important;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  color: #fff !important;
  background-color: #906;
}

.sidebar nav .menu--root a:hover {
  background-color: #850058;
}

.sidebar nav .menu--root a:focus {
  background-color: #7a0052;
}

.sidebar nav .menu-aside {
  margin: 0;
}

.page-top-image img {
  margin: 0;
}

.info {
  font-size: .8125rem;
  font-weight: 600;
  margin: .625rem 0;
  padding: 0 !important;
  list-style: none;
}

.info > li {
  line-height: 1.75;
  margin: 0;
  padding: .625rem 0 .625rem 2.125rem;
  position: relative;
}

.info > li + li {
  border-top: solid 1px rgba(255, 255, 255, 0.05);
}

.info > li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: transparent no-repeat top left / contain;
  display: block;
  position: absolute;
  top: .9375rem;
  left: 0;
}

.info .mailto:before {
  background-image: url("../images/svg-mailto.svg");
}

.info .tel:before {
  background-image: url("../images/svg-tel.svg");
}

.info .loc:before {
  background-image: url("../images/svg-loc.svg");
}

.info > li > a {
  text-decoration: none !important;
  color: currentColor;
}

.files {
  margin: 0 0 1.875rem 0;
}

.file {
  font-size: .875rem;
  margin-bottom: .625rem;
  position: relative;
  padding: .1875rem 0 .1875rem 1.375rem;
}

.file:before {
  content: '';
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: 0;
}

.file--application-pdf:before {
  content: "\f1c1";
}

.file--x-office-document:before {
  content: "\f0f6";
}

iframe {
  max-width: 100%;
  margin: 1.875rem 0;
}

.iframe {
  position: relative;
  margin: 1.875rem 0;
}

.iframe:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.iframe iframe {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pagination ul {
  text-align: center;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.pagination ul > li {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.pagination li + li {
  margin-left: .75rem;
}

.pagination ul > .pagination-number + .pagination-number {
  margin-left: 6px;
}

.pagination ul > .pagination-number > a.is-small,
.pagination .pager__item--first > a.is-small,
.pagination .pager__item--last > a.is-small {
  font-size: .75em;
  height: 1.875rem;
  line-height: 1.875rem;
  min-width: 1.875rem;
}

.pagination .pager__item.is-small > a {
  font-size: .75em;
  height: 1.75rem;
  line-height: 1.75rem;
  min-width: 1.75rem;
}

/*.pagination ul>.pagination-number.is-active>a{color:#fff;background-color:#141414;border:2px solid #0a0a0a}
.pagination .pager__item--first>a,.pagination .pager__item--last>a{color:#141414;background:none !important;line-height:2rem;border:2px solid #474747}
.pagination .pager__item--first>a .fa,.pagination .pager__item--last>a .fa{font-size:1em}
.pagination ul>.pagination-number>a:hover,.pagination ul>.pagination-number>a:focus{color:#fff;background-color:#0f0f0f;border-color:#050505}
*/
.pagination--link {
  white-space: nowrap;
  padding: .5rem .625rem;
}

.pager__item--previous > a,
.pager__item--next > a {
  font-size: .8125em;
  padding: .625rem .875rem;
  border-radius: 2px;
}

.pager__item--ellipsis {
  font-size: 1.625em;
  color: #616161;
  position: relative;
  display: block;
  top: -0.2em;
  margin: 0 6px;
}

.pagination--previous:before,
.pagination--next:after {
  font: normal normal normal 1.1em/1 FontAwesome;
  position: relative;
  top: 0.1em;
}

.pagination--previous .visually-hidden,
.pagination--next .visually-hidden {
  display: none;
}

.pagination--previous:before,
.pagination--next:after {
  margin: 0 2px;
}

.pagination--previous:before {
  content: "\f053";
}

.pagination--next:after {
  content: "\f054";
}

.pager__item--previous .fa {
  margin-right: 6px;
}

.pager__item--next .fa {
  margin-left: 6px;
}

.js-pager__items > .inline-block {
  font-weight: 700;
  color: #906;
}

.blocks .pagination {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

table {
  width: 100%;
  max-width: 100%;
  margin: 1.875rem 0;
}

table td,
table th {
  line-height: 1.5;
  vertical-align: top;
  border-style: solid;
  border-color: #dbdbdb;
  border-width: 0 0 1px;
  padding: .5rem .75rem;
}

table tbody tr:not(.is-selected):nth-child(even) {
  background-color: #fafafa;
}

table tbody tr:not(.is-selected):nth-child(even):hover {
  background-color: #fff;
}

table tbody tr:last-child td,
table tbody tr:last-child th {
  border-bottom-width: 0;
}

table tbody tr:hover td,
table tbody tr:hover th {
  background-color: #f5f5f5;
}

.gallery {
  margin: 0 -.75rem;
  padding: 0 !important;
  list-style: none;
}

.gallery:before,
.gallery:after {
  content: "";
  display: table;
}

.gallery:after {
  clear: both;
}

.gallery > li {
  float: left;
  margin: 0 0 1.5rem;
  padding: 0 .75rem;
  width: 33.33333%;
}

.gallery-4 > li {
  width: 25%;
}

.gallery a {
  display: block;
  position: relative;
}

.gallery img {
  width: 100%;
  margin: 0;
}

.gallery a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: block;
  z-index: 3;
  transition: background-color 400ms linear;
}

.gallery a:hover:after {
  background-color: rgba(0, 0, 0, 0.2);
}

.qoute-highlighted {
  border: solid 5px #906;
  border-radius: 2.5rem 2.1875rem 2rem;
  padding: 2.625rem;
  box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.2), 0 4px 0 0 rgba(0, 0, 0, 0.2);
}

.qoute-highlighted p {
  font-size: .875em;
  font-weight: 400;
  margin: .625rem 0;
}

.qoute-highlighted h3 {
  font-size: 2em;
  font-weight: 800;
  line-height: 1.2;
  color: #906;
  margin: .625rem 0;
}

.qoute-highlighted h3 small {
  font-size: 80%;
  display: block;
}

.footer--top {
  color: #fff;
  background-color: #282828;
  padding: 2.8125rem 1.25rem 2.625rem;
}

.footer--top img {
  margin: 2.5625rem 0 0 0;
  width: 100%;
}

.footer p {
  font-size: .875rem;
  margin-bottom: 1.5rem;
}

.footer a:hover,
.footer a:focus {
  color: #fff;
}

@media (min-width: 58.75rem) {
  .footer--top h2 {
    margin-bottom: 0 !important;
  }
  .footer--top .monitor--button {
    float: right;
  }
}

@media (max-width: 58.6875rem) {
  .footer--top {
    text-align: center;
  }
  .monitor--button {
    text-align: center;
    display: block;
    width: 100%;
  }
}

.footer-bottom {
  position: relative;
  color: #fff;
  background: url("../images/footer-texture.png") #141414 no-repeat top right/100% auto;
  padding: 0 1.875rem;
}

.footer-bottom h2 {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
}

.footer-bottom nav ul {
  list-style: none;
}

.footer-bottom nav ul,
.footer-bottom nav li {
  margin: 0;
  padding: 0;
}

.footer-bottom nav li + li {
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: solid 1px rgba(255, 255, 255, 0.05);
}

.footer-bottom nav a {
  position: relative;
  font-size: 1.125em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  padding: 5px 1.25rem 5px 0;
}

.footer-bottom nav a:after {
  content: "\f054";
  font: normal normal normal 1.1em/1 FontAwesome;
  color: rgba(74, 74, 74, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

.footer-bottom nav a:hover,
.footer-bottom nav a:focus {
  color: rgba(153, 0, 102, 0.75);
}

.footer-bottom .info {
  margin-top: 0;
}

.footer-bottom .info {
  font-size: .875em;
}

.footer-col--diff {
  background-color: rgba(30, 30, 30, 0.7);
}

.footer-row {
  position: relative;
  z-index: 3;
  margin: 0 -1.875rem;
}

.footer-col {
  padding: 2.5rem 1.875rem;
}

@media (min-width: 58.75rem) {
  .footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 66.66667%;
    height: 100%;
  }
  .footer-bottom .main-header--social {
    text-align: left;
  }
  .footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .footer-row > .footer-col:first-child {
    margin-left: -1px;
  }
  .footer-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .footer-col--diff {
    border-left: solid 1px rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 58.6875rem) {
  .footer-bottom {
    text-align: center;
  }
  .footer-col {
    border-top: solid 1px rgba(255, 255, 255, 0.05);
  }
}

@media print {
  *,
  *:after,
  *:before,
  *:first-letter,
  *:first-line {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */
/* jacarvajal customizations */
/* Customization for Coopsday logos */
.page-node-14170 .files.field__row {
  display: none;
}

.page-node-14170 h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-node-14170 .pdf-icon {
  text-align: center;
  width: 50%;
  float: left;
  margin-bottom: 20px;
}

.page-node-14170 .pdf-icon img {
  max-width: 120px;
}

.page-node-14170 .coopsday-logo {
  display: table;
  width: 100%;
}

.page-node-14170 .coopsday-logo-left {
  width: 60%;
  display: table-cell;
}

.page-node-14170 .coopsday-logo-left img {
  display: block;
  max-width: 60%;
  max-height: 150px;
  margin: 15px auto;
}

.page-node-14170 .coopsday-logo-right {
  width: 40%;
  display: table-cell;
  vertical-align: middle;
}

.row-taxonomy-list ~ nav.pagination {
  width: 100%;
  float: left;
  position: relative;
}

.row-taxonomy-list.row-50-percent.views-row {
  float: left;
  width: 50%;
  padding-left: 15px;
  position: relative;
  padding-right: 15px;
  padding-bottom: 15px;
  max-height: 485px;
}

.row-taxonomy-list > article.page--content > h2 {
  height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  padding: 22px 15px 15px 15px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.row-taxonomy-list > article.page--content > h2 a {
  text-decoration: none;
}

.row-taxonomy-list .page--fields .field--type-image img {
  width: 100%;
  height: 375px !important;
}

.row-taxonomy-list .page--fields > .field--name-field-news-headline-date {
  background-color: #8e0b56;
  color: #fff;
  position: absolute;
  margin-top: -47px;
  height: 46px;
  padding: 10px 15px;
}

.row-taxonomy-list .page--fields > .field--name-field-event-date {
  background-color: #8e0b56;
  position: absolute;
  margin-top: -47px;
  height: 46px;
  padding: 10px 15px;
}

.row-taxonomy-list .page--fields > .field--name-field-event-date > .field__item {
  color: #fff;
  display: inline-block;
}

.row-taxonomy-list .page--fields > .field--name-field-event-date > .field__item > time {
  width: 190px;
}

.row-taxonomy-list .page--fields > .field--name-field-event-date > .field__item:first-child:after {
  content: " -- ";
  color: #fff;
  position: absolute;
  margin-left: 173px;
  margin-top: -45px;
}

.row-taxonomy-list .page--fields .field__row .field--name-field-news-region.field__label,
.row-taxonomy-list .page--fields .field__row .field--name-field-news-sector.field__label {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
}

.row-taxonomy-list .page--fields .field__row .field--name-field-news-region.field__label ~ div,
.row-taxonomy-list .page--fields .field__row .field--name-field-news-sector.field__label ~ div {
  display: inline-block;
}

.row-taxonomy-list .page--fields .field__row .field--name-field-news-region.field__label ~ div > .field__value,
.row-taxonomy-list .page--fields .field__row .field--name-field-news-sector.field__label ~ div > .field__value {
  display: inline-block;
}

.row-taxonomy-list .page--fields .field__row .field--name-field-event-region.field__label,
.row-taxonomy-list .page--fields .field__row .field--name-field-news-sector.field__label {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
}

.row-taxonomy-list .page--fields .field__row .field--name-field-event-region.field__label ~ div,
.row-taxonomy-list .page--fields .field__row .field--name-field-news-sector.field__label ~ div {
  display: inline-block;
}

.list-sectors .row-taxonomy-list.views-row .page--fields .field--name-field-news-region,
.list-sectors .row-taxonomy-list.views-row .page--fields .field--name-field-news-region ~ div,
.list-regions .row-taxonomy-list.views-row .page--fields .field--name-field-news-sector,
.list-regions .row-taxonomy-list.views-row .page--fields .field--name-field-news-sector ~ div {
  display: none;
}

.not-front.list-regions .paragraph--type--ica004-view-reference.block-news-home {
  left: 50% !important;
}

.block--head {
  font-size: 1rem !important;
  margin: 0 0 .625rem !important;
}

.page--fields .field__label {
  display: block;
  color: #8e0b56;
}

h2,
h3,
h4,
h5,
h6 {
  color: #8e0b56;
}

a.not-link {
  pointer-events: none;
}

.book-navigation .book-pager {
  overflow: auto;
  margin: 0;
  padding: 0.5em 0 1em 0;
  list-style: none;
}

.book-pager__item--previous {
  width: 45%;
  text-align: left;
}

.book-pager__item--next {
  float: right;
  width: 45%;
  text-align: right;
}

.book-pager__prev-next {
  text-decoration: none;
}

.book-pager__item {
  display: inline-block;
  list-style-type: none;
  vertical-align: top;
}

.book-pager__item a {
  padding: 0 0.3em;
  display: block;
}

.book-page-section-nav li + li:before {
  content: " | ";
}

.book-page-section-nav .book-pager__item a {
  margin: 0 1em;
  display: inline-block;
}

.book-navigation hr {
  position: relative;
  top: 2.7em;
  border-color: #000;
}

.book-page-section-nav {
  padding-top: 4em;
  margin: 0 auto;
  text-align: center;
}

.page--content .page--links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page--content .page--links li {
  padding: 0;
  margin: 0;
}

.page--content .page--links .book-printer {
  display: none;
}

#block-booknavigation > h2 {
  width: auto;
  height: 40px;
  display: block;
  border-radius: 0px 10px 0px 0px;
  box-shadow: inset 0 -2px 0 0 #b0aeb5;
  background-color: #0094b6;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 6px 25px;
  margin: 0px;
  text-transform: uppercase;
}

.menu.book-menu {
  list-style: none;
}

.menu.book-menu li a {
  color: #8e0b56;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.menu.book-menu li a:hover {
  color: #5f0739;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #faf8f4;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.menu.book-menu .menu {
  list-style: none;
}

.menu.book-menu .menu li > a {
  padding-left: 2.5em;
}

.menu.book-menu .menu-item--collapsed > a:after,
.menu.book-menu .menu-item--expanded > a:after {
  content: "\f105";
  font-size: 1.25rem;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  width: 1.2em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  vertical-align: baseline;
  transform: translateY(2px);
  background: none !important;
}

.menu.book-menu .menu-item--expanded > a:after {
  transform: translateY(2px) rotate(90deg);
}

.block-book-pdf-link a {
  display: inline-block;
  color: #faf8f4;
  font-family: "Avenir Next LT W01 Demi", sans-serif;
  font-size: 15px;
  line-height: 28px;
  margin-top: 40px;
  padding: 16px 24px 17px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s all ease-in;
  vertical-align: middle;
  background-color: #8e0b56;
}

.block-book-pdf-link a:hover {
  background: #6b0841;
  border: 1px solid #6b0841;
}

.breadcrumb {
  padding: 0;
}

.breadcrumb ol {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
}

.breadcrumb li {
  color: #0a2239;
  font-size: 0.875rem;
}

.breadcrumb li:not(:last-child) {
  margin-right: .25rem;
}

.breadcrumb li:not(:first-child) {
  padding-left: 0.78125rem;
  position: relative;
}

.breadcrumb li:not(:first-child):before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #9da7b0;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 0.625rem;
  height: 0.625rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 0.625rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb a {
  color: #8e0b56;
  display: block;
}

.breadcrumb a:hover {
  color: #9f306f;
}

.cta-button {
  margin-top: 40px;
  padding: 16px 24px 17px 44px;
  vertical-align: middle;
  line-height: 28px;
  background: #8e0b56;
  color: #f7f7f7;
  font-family: "Avenir Next LT W01 Demi", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid #8e0b56;
  transition: 0.2s all ease-in;
  border-radius: 40px;
}

.cta-button:after {
  content: "";
  background: url("../images/icons/svg/goto_alt.svg");
  width: 27px;
  height: 27px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 13px;
  margin-top: -5px;
  vertical-align: middle;
}

.cta-button:hover {
  background: #6b0841;
  border: 1px solid #6b0841;
}

.cta-big-button {
  font-family: "Avenir Next LT W01 Demi", sans-serif, sans-serif;
  font-size: 15px;
  color: #8e0b56;
  border: 1px solid #8e0b56;
  border-radius: 40px;
  display: inline-block;
  padding: 25px 24px 25px 44px;
  text-decoration: none;
  text-align: center;
  line-height: 28px;
  text-transform: uppercase;
}

.cta-big-button:after {
  background-image: url("../images/icons/svg/goto.svg");
  content: "";
  width: 27px;
  height: 27px;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 13px;
  margin-top: -5px;
  vertical-align: middle;
}

.cta-big-button:hover {
  color: #f7f7f7;
  background-color: #8e0b56;
  border-color: #8e0b56;
}

.cta-big-button:hover:after {
  background-image: url("../images/icons/svg/goto_alt.svg");
}

.formatted-link {
  color: #8e0b56;
  text-decoration: none;
  font-size: 15px;
}

.formatted-link:hover {
  text-decoration: underline;
}

.formatted-link:before {
  content: " ";
  display: inline-block;
  zoom: 1;
  letter-spacing: 0;
  word-spacing: 0;
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 10px;
  background: transparent url("../images/icons/svg/go_small.svg") no-repeat;
}

.video-link {
  margin-top: 15px;
  color: #8e0b56;
  text-decoration: none;
  font-size: 18px;
  background: transparent url("https://www.securitasdirect.es/lp/html/img/ico/play.gif") no-repeat;
  padding: 0 0 5px 40px;
  display: block;
}

.video-link:hover {
  text-decoration: underline;
}

.comment {
  margin-top: 1rem;
  overflow: hidden;
  padding-top: 1rem;
}

.comment:last-child {
  border: 0;
}

.comment__meta {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .comment__meta {
    float: left;
    margin-left: 0;
    margin-right: -100%;
    width: 23.72881%;
  }
}

.comment .content {
  border-bottom: 1px solid #ced3d7;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .comment .content {
    float: left;
    margin-left: 25.42373%;
    margin-right: -100%;
    width: 74.57627%;
  }
}

.comment .content > h3 {
  margin-bottom: 0;
}

.page--content .field--name-field-paragraphs .paragraph--type--text,
.page--content .field--name-field-paragraphs .paragraph--type--image,
.page--content .field--name-field-paragraphs .paragraph--type--quote,
.page--content .field--name-field-paragraphs .paragraph--type--call-to-action,
.page--content .field--name-field-paragraphs .paragraph--type--video,
.page--content .field--name-field-paragraphs .paragraph--type--logos,
.page--content .field--name-field-paragraphs .paragraph--type--icon-list {
  margin: 0 auto;
  max-width: 580px;
}

.page--content .field--name-field-paragraphs > .paragraph:first-of-type {
  margin-top: 2rem;
}

.page--content .field--name-field-paragraphs > .paragraph + .paragraph {
  margin-top: 2rem;
}

.page--content .field--name-field-paragraphs h2 {
  margin-bottom: 1rem;
}

.page--content .field--name-field-paragraphs h3 {
  margin-bottom: 1rem;
}

.page--content .field--name-field-paragraphs p {
  margin-bottom: 1rem;
}

.page--content .field--name-field-paragraphs h2,
.page--content .field--name-field-paragraphs h3 {
  margin-top: 2rem;
}

.page--content .field--name-field-paragraphs h4 {
  margin-top: 1.5rem;
}

.crt-widget-carousel {
  max-width: calc(100vw - 90px);
  padding-left: 45px;
}

ul.footnotes li.footnote {
  background: none;
}

ul.footnotes li.footnote:target {
  background: none;
}

ul.footnotes li.footnote a {
  padding-right: 4px;
}

a[href^="#footnote"] {
  font-size: 10px;
  vertical-align: top;
}

form .form--inline {
  display: flex;
  flex-flow: row wrap;
}

form .form--inline > * {
  flex-grow: 1;
}

form .form--inline .form-item {
  float: none;
}

form .form--inline .form-item,
form .form--inline .form-actions {
  margin: 1rem .5rem 1rem 0;
}

form .captcha {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (min-width: 0) and (max-width: 479px) {
  form .captcha {
    transform: scale(0.73);
    transform-origin: right;
  }
}

form .form-actions {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  margin: 1.5rem 0;
  width: 100%;
}

form .form-actions > * {
  margin-bottom: .25rem;
  margin-left: .5rem;
  margin-right: 0;
  margin-top: 0;
}

form .form-actions .form-submit {
  order: 1;
}

form .form-item {
  margin: 1.5rem 0;
}

form .form-item .shs-container,
form .form-item .shs-widget-container {
  width: 100%;
}

form .form-item .shs-field-container {
  display: flex;
  flex-flow: row nowrap;
}

form .form-item .shs-field-container > *:not(:last-child) {
  margin-right: .5rem;
}

form .fieldset-legend,
form label {
  color: #ced3d7;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  text-transform: uppercase;
}

form .option {
  text-transform: none;
}

form fieldset {
  border-color: #ced3d7;
  padding: 1rem 1.5rem;
}

form input:placeholder {
  font-size: 0.875rem;
}

form input[type='search'] {
  box-sizing: border-box;
}

form input[type='button'], form input[type='submit'], form input[type='reset'] {
  white-space: normal;
}

form input[type='checkbox'], form input[type='radio'] {
  cursor: pointer;
}

form input[type='password'], form input[type='search'], form input[type='email'], form input[type='text'], form input[type='tel'] {
  background-color: #f7f7f7;
  border: 1px solid #ced3d7;
  font-size: 0.875rem;
  max-width: 100%;
  padding: .5rem;
  width: 100%;
}

form input[type='password']:hover, form input[type='search']:hover, form input[type='email']:hover, form input[type='text']:hover, form input[type='tel']:hover {
  border-color: #6c7a88;
}

form select,
form textarea {
  background-color: #f7f7f7;
  border: 1px solid #ced3d7;
  font-size: 0.875rem;
  max-width: 100%;
  min-height: 2.5rem;
  padding: .5rem;
  width: 100%;
}

form select:hover,
form textarea:hover {
  border-color: #6c7a88;
}

form select {
  appearance: none;
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 1rem;
  font-size: 0.875rem;
  padding-right: 2rem;
  width: 100%;
}

form select.focus-animation {
  animation: focus 1s ease-in-out;
}

form select option {
  font-size: 0.875rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  form select::-ms-expand {
    display: none;
  }
}

.description {
  color: #9da7b0;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: normal;
  margin: .25rem 0;
}

.description * {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
}

.form-type-radio .description, .form-type-checkbox .description {
  margin-left: 0;
}

.form-type-radio input, .form-type-checkbox input {
  margin-right: 5px;
}

.password-strength {
  font-size: 0.75rem;
  margin: .5rem 0;
}

.field-suffix {
  margin-left: 5px;
}

.field-suffix .link {
  color: #0a2239;
  font-size: 0.625rem;
  margin-left: 0.625rem;
  text-transform: uppercase;
}

.form-checkboxes .form-item,
.form-radios .form-item {
  margin: 0 .5rem .5rem 0;
}

.item-list ul {
  list-style-image: none;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

.item-list ul li {
  margin-left: 0;
}

.tips {
  padding-left: 1.5rem;
}

ul {
  list-style-image: none;
  list-style-type: disc;
  margin: 0;
  padding: 0;
  padding-left: 0;
  margin-left: 0;
}

ul.list-style-arrows li {
  padding-right: 3.4375rem;
  position: relative;
  border-bottom: 1px solid #ced3d7;
  margin: 0.25rem 0;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

ul.list-style-arrows li:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ced3d7;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 0.75rem;
  height: 2.75rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 2.75rem;
  right: 0;
  top: 0;
}

ul.list-style-squares li {
  padding-left: 1.875rem;
  position: relative;
  margin: 1.25rem 0;
}

ul.list-style-squares li:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #8e0b56;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 0.9375rem;
  height: 1.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1.5rem;
  left: 0;
  top: 0;
}

ul.links {
  list-style-image: none;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

.page--fields ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.page--fields ul ul {
  margin-top: 1rem;
}

.node:not(.has-content-sections) ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 80px;
}

.node:not(.has-content-sections) ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

.node:not(.has-content-sections) ol li::before {
  content: counter(my-awesome-counter);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 25px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: #8e0b56;
  border-radius: 50%;
  text-align: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .node:not(.has-content-sections) ol li::before {
    left: calc(-1 * 28px - 25px);
    line-height: 28px;
    width: 28px;
    height: 28px;
  }
}

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

audio,
canvas,
video {
  max-width: 100%;
}

ul.menu {
  list-style-image: none;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

.menu-item {
  padding: 0;
}

.messages {
  background-image: none;
  border-radius: 0;
  border-width: 0;
  box-shadow: none;
  color: #f7f7f7;
  padding: 1.5rem;
}

.messages--wrapper {
  margin: 0 auto;
  max-width: 1440px;
}

.messages + .messages {
  margin: 0;
}

.messages--status {
  background-color: #3b9376;
}

.messages--status .messages--wrapper {
  padding-left: 1.875rem;
  position: relative;
}

.messages--status .messages--wrapper:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #f7f7f7;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1.5rem;
  left: 0;
  top: 0;
}

.messages--warning {
  background-color: orange;
}

.messages--warning .messages--wrapper {
  padding-left: 1.875rem;
  position: relative;
}

.messages--warning .messages--wrapper:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #f7f7f7;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1.5rem;
  left: 0;
  top: 0;
}

.messages--error {
  background-color: #dc0000;
}

.messages--error .messages--wrapper {
  padding-left: 1.875rem;
  position: relative;
}

.messages--error .messages--wrapper:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #f7f7f7;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1.5rem;
  left: 0;
  top: 0;
}

.messages a {
  color: #f7f7f7;
  font-weight: 700;
  text-decoration: underline;
}

.has-content-sections:not(.has-body-field) .page--title {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.pager {
  margin: 2rem 0;
}

.pager__items {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pager__items {
    display: block;
    flex-flow: initial;
    align-items: normal;
    justify-content: normal;
  }
}

.pager__item {
  border: 0;
  font-size: 14px;
  line-height: 1;
  margin: .15rem;
  padding: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pager__item {
    padding-top: 15px !important;
  }
}

.pager__item.pager__item--previous > a {
  color: #9da7b0;
  cursor: pointer;
  display: block;
  padding: 5px;
  border-radius: 3px;
  background-color: #f3f3f5;
  padding: 5px 10px;
  min-width: inherit;
  height: auto;
  font-size: 12px;
  line-height: normal;
}

.pager__item * {
  font-size: inherit;
  line-height: inherit;
}

.pager__item--ellipsis {
  line-height: 1;
  padding: .75rem 1rem;
}

.pager__item.is-active a, .pager__item:hover a {
  background-color: #8e0b56;
  color: #f7f7f7;
  border: 0;
}

.pager__item a {
  color: #9da7b0;
  cursor: pointer;
  display: block;
  padding: 5px;
  border-radius: 3px;
  background-color: #f3f3f5;
  padding: 5px 10px;
  min-width: inherit;
  height: auto;
  font-size: 12px;
  line-height: normal;
}

.progress {
  max-width: 100%;
}

.progress__track {
  background-color: #f7f7f7;
  background-image: none;
  border-color: #ced3d7;
  border-radius: 0;
}

.progress__bar {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to right bottom, #8e0b56 0%, #8e0b56 25%, #b40e6d 25%, #b40e6d 50%, #8e0b56 50%, #8e0b56 75%, #8e0b56 100%);
  border-color: #8e0b56;
  border-radius: 0;
}

table {
  border-collapse: separate;
  border-spacing: 0 .1875rem;
  width: 100%;
}

table th,
table td {
  font-size: 0.875rem;
  padding: 1rem;
}

table th p,
table th ul,
table td p,
table td ul {
  margin: 0;
  padding: 0;
}

table th {
  background-color: #e7e9eb;
  color: #7e868d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: .75rem 1rem;
  text-align: left;
  text-transform: uppercase;
  vertical-align: top;
}

table tbody tr {
  background-color: #f7f7f7;
  box-shadow: inset 0 0 0 1px #e7e9eb;
}

table tbody tr:hover {
  background-color: #f5f6f7;
}

nav.tabs .tabs {
  list-style-image: none;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

nav.tabs .tabs:not(:last-child) {
  margin-bottom: 1rem;
}

nav.tabs .primary {
  border-bottom: 1px solid #ced3d7;
  display: flex;
  flex-flow: row wrap;
}

nav.tabs .primary li {
  border-color: #6c7a88;
  border-width: 1px 1px 0;
  margin-right: .5rem;
}

nav.tabs .primary a {
  background-color: #f7f7f7;
  border-color: #ced3d7;
  border-style: solid solid none;
  border-width: 1px 1px 0;
  color: #0a2239;
  padding: .75rem 2.5rem;
}

nav.tabs .primary a:hover, nav.tabs .primary a.is-active {
  background-color: #0a2239;
  color: #f7f7f7;
  transition: .2s;
}

nav.tabs .primary a:not(.is-active):not(:hover) {
  box-shadow: inset 0 -10px 10px -10px #ced3d7;
}

nav.tabs .secondary {
  display: flex;
  flex-flow: row wrap;
}

nav.tabs .secondary li {
  margin: 0;
}

nav.tabs .secondary a {
  align-items: center;
  border-bottom: 1px solid #9da7b0;
  color: #9da7b0;
  padding: .5rem 2rem;
  transition: .2s;
}

nav.tabs .secondary a.is-active, nav.tabs .secondary a:hover {
  background-color: transparent;
  border-color: #0a2239;
  color: #0a2239;
  transition: .2s;
}

.vertical-tabs__menu-item {
  background: #f7f7f7;
}

.vertical-tabs__menu-item a {
  color: #0a2239;
  font-size: 0.875rem;
  padding: 1rem;
}

.vertical-tabs__menu-item.is-selected, .vertical-tabs__menu-item:hover {
  background: #0a2239;
}

.vertical-tabs__menu-item.is-selected a, .vertical-tabs__menu-item:hover a {
  color: #f7f7f7;
}

.vertical-tabs__menu-item.is-selected .vertical-tabs__menu-item-title, .vertical-tabs__menu-item:hover .vertical-tabs__menu-item-title {
  color: #f7f7f7;
}

.page--fields .field--name-body > ul > li,
.page--fields .field--name-body > .toc-filter > ul > li {
  padding-bottom: 1rem;
}

.page--fields .field--name-body > ul > li a:hover,
.page--fields .field--name-body > .toc-filter > ul > li a:hover {
  color: #8e0b56;
}

.page--fields .field--name-body > h2,
.page--fields .field--name-body > .toc-filter > h2 {
  margin-top: 3rem;
}

.page--fields .field--name-body > p a:hover,
.page--fields .field--name-body > .toc-filter > p a:hover {
  color: #8e0b56;
}

p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty {
  display: none;
}

body.has-menu header #block-ica-main-main-menu,
body.has-menu header #block-mainnavigationes,
body.has-menu header #block-mainnavigationfr,
body header #block-ica-main-main-menu,
body header #block-mainnavigationes,
body header #block-mainnavigationfr {
  display: none !important;
}

@media screen and (max-width: 1193px) {
  body.has-menu header .ultimenu--top-right-header,
  body header .ultimenu--top-right-header {
    float: none;
  }
  body.has-menu header .main-header__menu-toggle.button.show-on-mobile.color-white,
  body header .main-header__menu-toggle.button.show-on-mobile.color-white {
    background: none;
    fill: #8E0B56;
  }
  body.has-menu header .main-header__menu,
  body header .main-header__menu {
    background: #F2F2F2 !important;
    width: 100%;
  }
  body.has-menu header .main-header__menu .show-on-mobile.header-mobile-top,
  body header .main-header__menu .show-on-mobile.header-mobile-top {
    display: none;
  }
  body.has-menu header .main-header__menu .show-on-mobile .main-header--social,
  body header .main-header__menu .show-on-mobile .main-header--social {
    justify-content: flex-start;
  }
  body.has-menu header .main-header__menu .show-on-mobile .main-header--social a,
  body header .main-header__menu .show-on-mobile .main-header--social a {
    fill: #000;
  }
  body.has-menu header .main-header__menu .show-on-mobile .mailto,
  body header .main-header__menu .show-on-mobile .mailto {
    justify-content: flex-start;
    margin-left: 2rem;
  }
  body.has-menu header .main-header__menu .show-on-mobile .mailto a,
  body header .main-header__menu .show-on-mobile .mailto a {
    color: black;
  }
  body.has-menu header .main-header__menu .show-on-mobile.header-copyright,
  body header .main-header__menu .show-on-mobile.header-copyright {
    text-align: left;
    color: black;
    padding-bottom: 3em;
  }
  body.has-menu header .main-header__menu .main-header--col.show-on-mobile .main-header--languages a,
  body header .main-header__menu .main-header--col.show-on-mobile .main-header--languages a {
    color: #8E0B56;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
  }
  body.has-menu header .main-header__menu .main-header--col.show-on-mobile .main-header--languages a.active,
  body header .main-header__menu .main-header--col.show-on-mobile .main-header--languages a.active {
    text-decoration: underline;
  }
  body.has-menu header .main-header__menu ul.menu--root > li,
  body header .main-header__menu ul.menu--root > li {
    border: none;
    padding: 5px 10px;
  }
  body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub,
  body header .main-header__menu ul.menu--root > li ul.menu--sub {
    padding-left: 0.2em;
  }
  body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub li,
  body header .main-header__menu ul.menu--root > li ul.menu--sub li {
    padding: 5px;
  }
  body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub li a,
  body header .main-header__menu ul.menu--root > li ul.menu--sub li a {
    background: #8E0B56;
    border-radius: 0px 10px 0px 0px;
    cursor: pointer;
  }
  body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub li a:hover,
  body header .main-header__menu ul.menu--root > li ul.menu--sub li a:hover {
    background: #F2F2F2;
    color: black;
  }
  body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub li a.is-active, body.has-menu header .main-header__menu ul.menu--root > li ul.menu--sub li a.is-active:first-child,
  body header .main-header__menu ul.menu--root > li ul.menu--sub li a.is-active,
  body header .main-header__menu ul.menu--root > li ul.menu--sub li a.is-active:first-child {
    background: #F2F2F2;
    color: black;
  }
  body.has-menu header .has-ultimenu .caret,
  body header .has-ultimenu .caret {
    background: none;
  }
}

body.has-menu ul#ultimenu-main,
body ul#ultimenu-main {
  align-items: flex-start;
  height: 100%;
}

body.has-menu ul#ultimenu-main > li:not(.is-uitem-expanded) > section.ultimenu__flyout,
body ul#ultimenu-main > li:not(.is-uitem-expanded) > section.ultimenu__flyout {
  display: none;
  min-height: 0 !important;
}

@media screen and (max-width: 1193px) {
  body.has-menu ul#ultimenu-main.ultimenu--hover > li,
  body ul#ultimenu-main.ultimenu--hover > li {
    display: block;
  }
  body.has-menu ul#ultimenu-main > li,
  body ul#ultimenu-main > li {
    padding: 5px 10px;
  }
  body.has-menu ul#ultimenu-main > li > a,
  body ul#ultimenu-main > li > a {
    font-size: 18px;
    line-height: 28px;
    background: #8E0B56;
    border-radius: 0px 10px 0px 0px;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 600;
  }
  body.has-menu ul#ultimenu-main > li > a span.caret,
  body ul#ultimenu-main > li > a span.caret {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-45deg);
    height: 14px;
    width: 14px;
    min-height: 0;
    top: 12px;
    right: 10px;
  }
  body.has-menu ul#ultimenu-main > li > a span.caret:before,
  body ul#ultimenu-main > li > a span.caret:before {
    content: none;
  }
  body.has-menu ul#ultimenu-main > li > a.is-ultimenu-active span.caret, body.has-menu ul#ultimenu-main > li > a.is-ulink-active span.caret,
  body ul#ultimenu-main > li > a.is-ultimenu-active span.caret,
  body ul#ultimenu-main > li > a.is-ulink-active span.caret {
    transform: rotate(45deg);
  }
  body.has-menu ul#ultimenu-main > li:nth-child(1) > a.is-ultimenu-active,
  body.has-menu ul#ultimenu-main > li:nth-child(1) > a.is-ulink-active,
  body ul#ultimenu-main > li:nth-child(1) > a.is-ultimenu-active,
  body ul#ultimenu-main > li:nth-child(1) > a.is-ulink-active {
    background-color: #455CC7;
  }
  body.has-menu ul#ultimenu-main > li:nth-child(2) > a.is-ultimenu-active,
  body.has-menu ul#ultimenu-main > li:nth-child(2) > a.is-ulink-active,
  body ul#ultimenu-main > li:nth-child(2) > a.is-ultimenu-active,
  body ul#ultimenu-main > li:nth-child(2) > a.is-ulink-active {
    background-color: #00945E;
  }
  body.has-menu ul#ultimenu-main > li:nth-child(6) > a.is-ultimenu-active,
  body.has-menu ul#ultimenu-main > li:nth-child(6) > a.is-ulink-active,
  body ul#ultimenu-main > li:nth-child(6) > a.is-ultimenu-active,
  body ul#ultimenu-main > li:nth-child(6) > a.is-ulink-active {
    background-color: #EB0029;
  }
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main,
  body ul#ultimenu-main {
    display: flex;
  }
  body.has-menu ul#ultimenu-main > li,
  body ul#ultimenu-main > li {
    min-width: 0;
    padding-top: 1rem;
  }
  body.has-menu ul#ultimenu-main > li > a,
  body ul#ultimenu-main > li > a {
    min-width: 150px;
    width: auto;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item > section > ul.menu--root > .item > a,
body ul#ultimenu-main > li.ultimenu__item > section > ul.menu--root > .item > a {
  padding: 0.875rem 0.8rem 0.8125rem 0.8rem;
  text-transform: inherit;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 10px 0px 0px;
  color: white;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item > section > ul.menu--root > .item > a,
  body ul#ultimenu-main > li.ultimenu__item > section > ul.menu--root > .item > a {
    font-size: 18px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(1) > section > ul.menu--root > .item > a,
body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(1) div[id^=block-] h2,
body ul#ultimenu-main > li.ultimenu__item:nth-child(1) > section > ul.menu--root > .item > a,
body ul#ultimenu-main > li.ultimenu__item:nth-child(1) div[id^=block-] h2 {
  background-color: #455CC7;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(2) > section > ul.menu--root > .item > a,
body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(2) div[id^=block-] h2,
body ul#ultimenu-main > li.ultimenu__item:nth-child(2) > section > ul.menu--root > .item > a,
body ul#ultimenu-main > li.ultimenu__item:nth-child(2) div[id^=block-] h2 {
  background-color: #00945E;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(6) > section > ul.menu--root > .item > a,
body.has-menu ul#ultimenu-main > li.ultimenu__item:nth-child(6) div[id^=block-] h2,
body ul#ultimenu-main > li.ultimenu__item:nth-child(6) > section > ul.menu--root > .item > a,
body ul#ultimenu-main > li.ultimenu__item:nth-child(6) div[id^=block-] h2 {
  background-color: #EB0029;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i,
  body ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i {
    height: 48px;
  }
  body.has-menu ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i:before,
  body ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i:before {
    content: none;
  }
  body.has-menu ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i:after,
  body ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a span.caret i:after {
    content: "\f0d7";
    font-size: 1.25rem;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    top: 52%;
    right: 5px;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    text-align: center;
    transform: translateY(-50%);
    color: #8e0b56;
    background: none !important;
  }
  body.has-menu ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a:after,
  body ul#ultimenu-main > li.ultimenu__item.has-ultimenu > a:after {
    right: 0;
  }
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout {
    width: 1440px;
    margin-left: -275px;
    background-color: transparent;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 40px solid transparent;
    background-clip: padding-box;
    display: flex !important;
    background-color: #F2F2F2;
    top: 48px;
    width: 100vw;
    position: absolute !important;
    left: 24px;
    max-width: 1440px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root {
  background-color: #F2F2F2;
  min-width: 250px;
  height: 100%;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root {
    display: flex;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root > li,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root > li {
  padding: 15px;
  border: none;
  position: relative;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root > li:not(:last-child):after,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout > ul.menu--root > li:not(:last-child):after {
  content: ' ';
  height: 100%;
  border-left: 1.5px solid #C9C4C4;
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub {
  display: block;
  column-count: 2;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li {
  padding: 0 10px;
  border: none;
  break-inside: avoid-column;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a {
  text-transform: inherit;
  background-color: transparent;
  text-decoration: none;
  color: #8E0B56;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.2em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 600;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a {
    font-size: 16px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a:before,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li a:before {
  content: none;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4em;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden {
    font-size: 16px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn {
  border-radius: 20px;
  border: 1px solid #8e0b56;
  padding: .5rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8e0b56;
  text-decoration: none;
  outline: 0;
  backround-color: transparent;
  width: fit-content;
  margin-top: 1rem;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn:hover, body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn:active,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn:hover,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout ul.menu--sub > li p.item--description.hidden a.btn:active {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: background-color .6 ease-in;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-],
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] {
  padding: 15px;
  position: relative;
  min-width: 250px;
  break-inside: avoid-column;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-]:before,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-]:before {
  content: ' ';
  height: 100%;
  border-left: 1.5px solid #C9C4C4;
  position: absolute;
  top: 10%;
  left: 0;
  height: 80%;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] > *,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] > * {
  padding: 10px;
  border: none;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h2,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h2 {
  padding: 0.875rem 0.8rem 0.8125rem 0.8rem;
  text-transform: inherit;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 10px 0px 0px;
  color: white;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h2,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h2 {
    font-size: 18px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h3,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h3 {
  text-transform: inherit;
  background-color: transparent;
  text-decoration: none;
  color: #8E0B56;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.2em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 600;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h3,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] h3 {
    font-size: 16px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] p.copy,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] p.copy {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4em;
}

@media screen and (min-width: 1193px) {
  body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] p.copy,
  body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] p.copy {
    font-size: 16px;
  }
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social {
  padding-bottom: 1rem;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li {
  display: inline-block !important;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li a:before,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li a:before {
  filter: none;
  left: 5px;
  top: 0;
}

body.has-menu ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li svg.block,
body ul#ultimenu-main > li.ultimenu__item section.ultimenu__flyout div[id^=block-] ul.main-header--social li svg.block {
  padding: 0;
  margin: 0;
  fill: black;
}

@media print {
  body.has-menu ul#ultimenu-main,
  body ul#ultimenu-main {
    display: none;
  }
}

.button.button--ultimenu {
  display: none;
}

body {
  transition: max-width .35s ease-out, max-height .35s ease-out;
}

form.webform-submission-form .fieldset-legend,
form.webform-submission-form label {
  color: #666666;
}

form.webform-submission-form .webform-type-radios legend,
form.webform-submission-form .webform-radios-other legend,
form.webform-submission-form .form-item.checkboxes--wrapper label,
form.webform-submission-form .webform-type-radios .fieldset-legend,
form.webform-submission-form .webform-radios-other .fieldset-legend,
form.webform-submission-form .form-item.checkboxes--wrapper .fieldset-legend {
  font-size: 1em;
  font-weight: 700;
}

form.webform-submission-form .form-item.js-form-type-radio {
  margin-top: 0.3em;
}

form.webform-submission-form .form-item.js-form-type-radio label,
form.webform-submission-form .form-item.js-form-type-checkbox label {
  font-weight: 500;
}

form.webform-submission-form .description {
  color: #999999;
  opacity: 1;
}

form.webform-submission-form .form-checkboxes .form-item, form.webform-submission-form .form-radios .form-item {
  margin: 0.5rem 0.5rem 0 0;
}

form.webform-submission-form .form-checkboxes .form-item, form.webform-submission-form .form-radios .form-item.js-form-type-checkbox:last-child {
  margin-left: 0;
}

form.webform-submission-form .form-checkboxes .js-form-type-checkbox + .js-form-type-checkbox, form.webform-submission-form .form-checkboxes .js-form-type-radio + .js-form-type-radio, form.webform-submission-form .form-item-checkbox .js-form-type-checkbox + .js-form-type-checkbox, form.webform-submission-form .form-item-checkbox .js-form-type-radio + .js-form-type-radio, form.webform-submission-form .js-form-item-radio-buttons .js-form-type-checkbox + .js-form-type-checkbox, form.webform-submission-form .js-form-item-radio-buttons .js-form-type-radio + .js-form-type-radio, form.webform-submission-form .js-webform-radios .js-form-type-checkbox + .js-form-type-checkbox, form.webform-submission-form .js-webform-radios .js-form-type-radio + .js-form-type-radio {
  margin-right: 15px;
  margin-left: 0;
}

form.webform-submission-form .form-checkboxes .option, form.webform-submission-form .form-item-checkbox .option, form.webform-submission-form .js-form-item-radio-buttons .option, form.webform-submission-form .js-webform-radios .option {
  margin-left: 0;
  margin-right: 6px;
}

form.webform-submission-form .form-checkboxes .js-form-type-checkbox label {
  display: inline;
}

form.webform-submission-form .form-checkboxes .js-form-type-checkbox input {
  margin-bottom: 1rem;
}

.slick-slider .slick-arrow {
  background: url("../images/slide-arrow.png") 50% 50% no-repeat;
  border: 0;
  height: 2.5rem;
  opacity: .5;
  position: absolute;
  text-indent: -624.938rem;
  transition: 1s;
  width: 2.5rem;
  z-index: 99;
}

.slick-slider .slick-arrow:hover {
  opacity: 1;
}

.slick-slider .slick-arrow.slick-prev {
  left: 0;
  top: 0;
}

.slick-slider .slick-arrow.slick-next {
  right: 0;
  top: 45%;
}

.slick-slider .slick-dots {
  position: absolute;
  bottom: 5.2rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .slick-slider .slick-dots {
    bottom: calc(8% + 1.6rem);
    left: calc(8% + 1.6rem);
  }
}

@media (min-width: 65.625rem) {
  .slick-slider .slick-dots {
    bottom: calc(8% + 1rem);
    left: calc(8% + 1rem);
  }
}

.slick-slider .slick-dots li {
  display: inline-block;
  margin-right: 2px;
  width: 1.4rem;
  height: 1.4rem;
}

@media (min-width: 768px) {
  .slick-slider .slick-dots li {
    width: 1rem;
    height: 1rem;
  }
}

.slick-slider .slick-dots li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  content: '';
  appearance: none;
  outline: 0;
  display: inline-block;
  border-radius: 50%;
  background-color: grey;
  border: 0;
  box-shadow: 1px -1px 1px 0 rgba(0, 0, 0, 0.5);
  background-color: #d9dade;
  font-size: 0;
  width: 1.4rem;
  height: 1.4rem;
}

@media (min-width: 768px) {
  .slick-slider .slick-dots li button {
    width: 1rem;
    height: 1rem;
  }
}

.slick-slider .slick-dots li.slick-active button {
  background-color: #8e0b56;
}

body.page-node-type-page .wrapper--page,
body.directory .wrapper--page,
body.page-node-type-book .wrapper--page {
  padding: 0 24px;
}

.page-with-sidebar {
  max-width: 1440px;
  margin: auto;
}

.page--fields > .field--name-field-media-image:first-of-type {
  margin-bottom: 2rem;
}

body.webform .page-form {
  padding: 0 24px;
}

@media (min-width: 1170px) {
  body {
    margin-top: 3.4rem;
  }
}

@media (min-width: 1194px) {
  body.toolbar-horizontal.toolbar-tray-open.toolbar-fixed {
    margin-top: calc(82px + 2.5rem);
  }
}

@media (min-width: 1194px) {
  body.toolbar-horizontal.toolbar-fixed,
  body.toolbar-vertical {
    margin-top: calc(39px + 2.5rem);
  }
}

.layout-container > * {
  width: 100%;
}

.main-content {
  padding-left: 0;
}

.main-wrapper {
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

.main-wrapper > * {
  width: 100%;
  flex-grow: 1;
}

.wrapper,
.wrapper--page.mx-auto {
  max-width: 1440px;
  max-width: 100%;
  padding: 0;
  padding: 0 calc(((100vw - 1440px) / 2));
}

.main-header__menu {
  width: 0;
}

.wrapper--filter {
  padding: 1.5rem;
}

.theme-region .main-wrapper .wrapper--page .wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 74.625rem) {
  .theme-region .main-header {
    height: 3.125rem;
  }
  .theme-region .main-header .main-header__menu {
    margin-top: -40px;
  }
  .theme-region .main-header .main-header--brand {
    height: 100%;
  }
  .theme-region .main-header--row {
    height: 100%;
  }
  .theme-region .main-header--col:first-child {
    background-color: #fff;
    height: 100%;
  }
  .theme-region .main-header__logo svg, .theme-region .main-header__subsite_logo {
    height: 2.8125rem;
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
  }
  .theme-region .main-header__logo svg + img, .theme-region .main-header__subsite_logo + img {
    margin-left: 50px;
  }
  .theme-region .main-header__logo svg + img + img, .theme-region .main-header__subsite_logo + img + img {
    margin-left: 10px;
  }
  .theme-region .main-header .extra-logos {
    color: transparent;
  }
}

@media (min-width: 768px) {
  .blocks--4 .block--column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
    padding: 0;
    width: initial;
  }
}

@media (min-width: 1024px) {
  .blocks--4 .block--column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0;
  }
}

@media (min-width: 990px) {
  .blocks .block--column > div {
    height: 100%;
  }
  .blocks .block--column .block--item {
    height: 100%;
  }
}

.search-results {
  margin-bottom: 4rem;
}

.search-results .buttons--share {
  display: none;
}

.search-results .item-list {
  margin-top: 2rem;
}

.search-results .item-list ol {
  padding-left: 0;
  list-style-type: none;
}

.search-results article {
  margin-bottom: 2rem;
}

.search-results article h2 {
  margin-bottom: 1rem;
}

.grid-list ul {
  list-style: none;
  display: grid;
  column-gap: 1rem;
  background: none;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 65.625rem) {
  .grid-list ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-list ul .block--column {
  margin: 5px;
  margin-left: 0;
}

.grid-list ul.items--4 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 65.625rem) {
  .grid-list ul.items--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.blocks {
  margin-right: 0;
  margin-left: 0;
}

.block--column {
  border: 1px solid #d9dade;
  background-color: #fff;
  color: #1e1210;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.block--column .block--figure {
  max-height: 160px;
  overflow: hidden;
}

.block--column .block--body {
  flex-grow: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.block--column .block--body > * {
  width: 100%;
}

.block--column .block--body--block--head {
  margin-bottom: 1rem;
}

.block--column .block--body--block--head a {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  text-decoration: none;
}

.block--column .block--body--block--labels {
  margin-bottom: 1rem;
}

.block--column .block--body--block--labels p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.33;
  color: black;
  margin: 0;
}

@media (min-width: 1024px) {
  .block--column .block--body--block--labels p {
    font-size: 16px;
  }
}

.block--column.corporate-green .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-green .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-green .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-green .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-green .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-green .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-red .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-red .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-red .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-red .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-red .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-red .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-cyan .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-cyan .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-cyan .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-cyan .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-cyan .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-cyan .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-orange .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-orange .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-orange .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-orange .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.block--column.corporate-orange .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.block--column.corporate-orange .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mailto__link {
  align-items: center;
  color: rgba(250, 248, 244, 0.7);
  display: flex;
  flex-flow: row nowrap;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.71;
  text-decoration: none;
  transition: .2s;
}

.mailto__link:hover {
  color: #faf8f4;
  transition: .2s;
}

.mailto__icon {
  font-size: 20px;
  margin-right: 8px;
}

.event-teaser {
  display: flex;
  flex-direction: column;
  border: 1px solid #d9dade;
  background-color: #fff;
  color: #1e1210;
}

.view .event-teaser {
  width: 100%;
  margin-bottom: 1rem;
}

.view .event-teaser:nth-child(1n) {
  margin-right: 0;
}

.view .event-teaser:not(:nth-child(1n)) {
  margin-right: 1%;
}

@media (min-width: 480px) {
  .view .event-teaser {
    width: 49.5%;
    margin-bottom: 1%;
  }
  .view .event-teaser:nth-child(2n) {
    margin-right: 0;
  }
  .view .event-teaser:not(:nth-child(2n)) {
    margin-right: 1%;
  }
}

@media (min-width: 768px) {
  .view .event-teaser {
    width: 32.66667%;
    margin-bottom: 1%;
  }
  .view .event-teaser:nth-child(3n) {
    margin-right: 0;
  }
  .view .event-teaser:not(:nth-child(3n)) {
    margin-right: 1%;
  }
}

@media (min-width: 990px) {
  .view .event-teaser {
    width: 24.25%;
    margin-bottom: 1%;
  }
  .view .event-teaser:nth-child(4n) {
    margin-right: 0;
  }
  .view .event-teaser:not(:nth-child(4n)) {
    margin-right: 1%;
  }
}

.event-teaser .event-image {
  max-height: 160px;
  overflow: hidden;
}

.event-teaser .event-fields {
  flex-grow: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.event-teaser .event-fields > * {
  width: 100%;
}

.event-teaser .event-fields__title {
  margin-bottom: 1rem;
}

.event-teaser .event-fields__title > * {
  margin: 0;
}

.event-teaser .event-fields__title a {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  text-decoration: none;
  display: block;
}

.event-teaser .event-fields__body {
  margin-bottom: 1rem;
}

.event-teaser .event-fields__body p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.33;
  color: black;
  margin: 0;
}

@media (min-width: 1024px) {
  .event-teaser .event-fields__body p {
    font-size: 16px;
  }
}

.event-teaser .event-fields__tag, .event-teaser .event-fields__location,
.event-teaser .event-fields .views-field-field-event-date {
  padding: .25rem 0;
}

.event-teaser .event-fields__tag > div, .event-teaser .event-fields__location > div,
.event-teaser .event-fields .views-field-field-event-date > div {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: italic;
  line-height: 1.33;
  color: black;
}

.event-teaser .event-fields__tag time, .event-teaser .event-fields__location time,
.event-teaser .event-fields .views-field-field-event-date time {
  margin-bottom: 0;
}

.event-teaser .event-fields__authoredon {
  padding: .25rem 0;
  text-align: right;
  text-transform: uppercase;
}

.event-teaser .event-fields__authoredon span {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  line-height: 1.33;
  color: black;
}

.event-teaser .event-fields__tag a {
  text-decoration: none;
}

.event-teaser.corporate-green .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-green .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-green .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-green .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-green .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-green .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #85b91b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-red .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-red .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-red .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-red .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-red .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-red .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #df002f;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-cyan .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-cyan .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-cyan .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-cyan .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-cyan .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-cyan .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #0094b6;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-orange .event-fields__tag {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-orange .event-fields__tag:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-orange .event-fields__location {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-orange .event-fields__location:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.event-teaser.corporate-orange .event-fields .views-field-field-event-date {
  padding-left: 1.25rem;
  position: relative;
}

.event-teaser.corporate-orange .event-fields .views-field-field-event-date:before {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  color: #ee880b;
  content: "";
  display: flex;
  font-family: "ica";
  font-size: 1rem;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  width: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.events #block-pagetitle {
  padding: 0 16px 0 0;
}

@media (min-width: 1440px) {
  .events #block-pagetitle {
    padding: 0;
  }
}

.events .page--title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  color: #1e1210;
  text-align: left;
  border-bottom: 1px solid #b0aeb5;
  padding: 0.2em;
}

.events #block-titletexteventspage > span {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #8e0b56;
  display: block;
  line-height: 1.3;
}

.events .block-events-list {
  display: flex;
  flex-wrap: wrap;
  background: none;
  background-color: #ffffff;
  margin: 0;
  padding: 0 0;
}

@media (min-width: 1440px) {
  .events .block-events-list {
    padding: 0;
  }
}

.events .block-events-list > .event-teaser {
  width: calc(100% - 10px);
  margin: 5px;
}

@media (min-width: 480px) {
  .events .block-events-list > .event-teaser {
    width: calc(50% - 10px);
  }
}

@media (min-width: 768px) {
  .events .block-events-list > .event-teaser {
    width: calc(33% - 10px);
  }
}

.events .block-events-list .pagination--advanced,
.events .block-events-list header {
  width: 100%;
}

.events .block-events-list header {
  margin-top: 20px;
  margin-bottom: 20px;
}

.events .block-events-list header h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  color: #1e1210;
  text-align: left;
  border-bottom: 1px solid #b0aeb5;
}

.promote-event-block {
  background-color: #8e0b56;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 44;
  box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.23);
  padding: 0 1.5rem;
  transform: translateY(100%);
  transition: bottom 0.5s ease-in-out;
}

@media (min-width: 1240px) {
  .promote-event-block {
    padding: 5px calc(((100vw - 1200px) / 2));
  }
}

.promote-event-block--close {
  background: none;
  border: 0;
  color: white;
  position: absolute;
  right: .5rem;
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 1240px) {
  .promote-event-block--close {
    right: calc(((100vw - 1200px) / 2));
  }
}

.promote-event-block.show-promote {
  transform: translateY(0);
  transition: all 2.5s ease-in-out;
}

.promote-event-block.show-promote.show-faster {
  transition: bottom 1s ease-in-out;
}

.event--promote-item {
  display: flex;
  flex-direction: row;
}

.event--promote-item .event-block a {
  text-decoration: none;
}

.event--promote-item .event-block--figure {
  padding: 5px;
  max-width: 200px;
  margin: 10px 10px 0 0;
  display: none;
}

.event--promote-item .event-block--figure img {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.13);
}

@media (min-width: 768px) {
  .event--promote-item .event-block--figure {
    display: block;
  }
}

.event--promote-item .event-block--info {
  padding: .625rem;
  color: #fff;
}

@media (min-width: 768px) {
  .event--promote-item .event-block--info {
    width: calc((100% - 200px));
  }
}

.event--promote-item .event-block--info h3 {
  color: #f7f7f7;
  margin-bottom: 5px;
}

.event--promote-item .event-block--info h3 a {
  text-decoration: none;
}

.event--promote-item .event-block--labels--col {
  padding: .625rem 0;
}

@media (min-width: 768px) {
  .event--promote-item .event-block--labels--col {
    flex-direction: row-reverse;
    justify-content: flex-end;
    display: flex;
  }
}

.event--promote-item .event-block--labels--col .header-info--label + .header-info--label {
  margin-top: 0;
  margin-right: 30px;
}

.event--promote-item .event-block--labels--col .header-info--label .icon--location {
  background-image: url(../images/ic-location-white.svg);
}

.event--promote-item .event-block--labels--col .header-info--label .icon--calendar {
  background-image: url(../images/ic-calendar-white.svg);
}

.exposed-filter {
  margin: 0;
  background-color: #eee;
  padding-bottom: .5rem;
}

.exposed-filter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}

.exposed-filter .js-form-item {
  margin-left: .375rem;
  margin-right: .375rem;
}

@media (min-width: 65.625rem) {
  .exposed-filter .js-form-item {
    margin-left: 0;
    margin-right: 0;
  }
}

.exposed-filter .js-form-item label {
  color: #1e1210;
  text-transform: capitalize;
  font-weight: normal;
}

.exposed-filter select.form-select {
  background-image: url(../images/arrow-down.svg);
  background-size: 22px;
  background-position: right center;
  background-repeat: no-repeat;
}

.exposed-filter input.bef-datepicker {
  background-image: url(../images/calendar.svg);
  background-size: 22px;
  background-position: right center;
  background-repeat: no-repeat;
}

.exposed-filter .button {
  background-color: #8e0b56;
  border-radius: 20px;
  max-width: 200px;
  font-size: 12px;
  font-weight: bold;
  line-height: normal;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 9px;
}

.news-teaser {
  display: flex;
  flex-direction: column;
  border: 1px solid #d9dade;
  background-color: #fff;
  color: #1e1210;
  text-align: left;
}

.news-teaser:hover {
  transition: all .2s;
  background-color: #8e0b56;
  color: #f7f7f7;
}

.news-teaser:hover .news-fields > div.views-field-title a {
  color: #f7f7f7;
}

.news-teaser.corporate-green:hover {
  background-color: #85b91b;
}

.news-teaser.corporate-red:hover {
  background-color: #df002f;
}

.news-teaser.corporate-cyan:hover {
  background-color: #0094b6;
}

.news-teaser.corporate-orange:hover {
  background-color: #ee880b;
}

.news-teaser .views-field-field-news-fullimage {
  max-height: 160px;
  overflow: hidden;
}

.news-teaser .news-fields {
  flex-grow: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.news-teaser .news-fields > div.views-field-title {
  margin-top: 16px;
  margin-bottom: 16px;
}

.news-teaser .news-fields > div.views-field-title .news-teaser-title {
  margin: 0;
}

.news-teaser .news-fields > div.views-field-title a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: black;
}

.news-teaser .news-fields > div.views-field-titlebody {
  margin-bottom: 16px;
}

.news-teaser .news-fields > div.views-field-titlebody p {
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
}

.news-teaser .news-fields > div.views-field-titlecreated span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}

.news-list-item {
  height: 100%;
}

@media (min-width: 1024px) {
  .newsroom .page-content .blocks--3 {
    margin-right: 0;
    margin-left: 0;
    margin-top: 60px;
  }
}

.newsroom .page--news_item .field__row .field--name-field-author-name,
.newsroom .page--news_item .field__row .field__value {
  display: inline-flex;
}

.newsroom .page--news_item .field__row .field--name-field-author-organization,
.newsroom .page--news_item .field__row .field__value {
  display: inline-flex;
}

#block-titletextpulicationspage > span {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #8e0b56;
  display: block;
  line-height: 1.3;
}

.toc-js .toc-title {
  width: auto;
  height: 40px;
  display: block;
  border-radius: 0px 10px 0px 0px;
  box-shadow: inset 0 -2px 0 0 #b0aeb5;
  background-color: #0094b6;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 6px 25px;
  margin: 0px;
  text-transform: uppercase;
}

.toc-js ul {
  list-style: none;
}

.toc-js ul li a {
  color: #8e0b56 !important;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.toc-js ul li a:hover {
  color: #fff !important;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #8e0b56;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.toc-js ul li + li {
  margin-top: 0px;
}

.node--type-page .page__subtitle {
  font-size: 1.5em;
  color: black;
  padding-bottom: 1rem;
}

.node--type-page .field--name-field-leader {
  font-size: 1.2em;
}

.node--type-page.has-content-sections .field--name-field-leader,
.node--type-page.has-content-sections .page__subtitle {
  margin: 0 auto;
  max-width: 580px;
}

.page-event {
  padding: 0 24px;
  background: white;
}

.page-event .page--title {
  text-align: left;
  font-size: 32px;
  font-weight: 600;
}

.page-event .content-region .page--title {
  display: none;
  margin: 5px;
  width: calc(100% - 10px);
}

@media (min-width: 480px) {
  .page-event .content-region .page--title {
    width: calc(50% - 10px);
  }
}

@media (min-width: 768px) {
  .page-event .content-region .page--title {
    width: calc(33% - 10px);
  }
}

.page-event .content-region header {
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
}

.page-event .content-region header > * {
  border-bottom: 1px solid #b0aeb5;
  color: #1e1210;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.page-event .wrapper--white {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.page-event .wrapper--white .field--name-field-event-fullimage {
  max-width: 200px;
}

.page-event .wrapper--white .header-info {
  background: #fff;
}

.page-event .wrapper--white .header-info .header-info--label {
  padding-left: 25px;
  color: #1e1210;
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 1.33;
}

.page-event .wrapper--white .icon--location {
  background-image: url(../images/ic-location.svg);
}

.page-event .wrapper--white .icon--calendar {
  background-image: url(../images/ic-calendar.svg);
}

.page-event .wrapper--white .page--banner {
  padding: 5px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.13);
}

.page-event .sidebar {
  margin-top: 10px;
}

.page-event .content-region .page--title {
  display: none;
}

.event-detail {
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .event-detail {
    align-items: flex-start;
    display: flex;
    flex-flow: row-reverse nowrap;
    justify-content: space-between;
  }
}

@media (min-width: 0) and (max-width: 479px) {
  .event-detail > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.event-detail__image {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.13);
  margin-left: 1rem;
  max-width: 200px;
  padding: 5px;
}

.event-detail__info > *:not(:last-child) {
  margin-bottom: 1rem;
}

.event-detail__info-label {
  display: flex;
  flex-flow: row nowrap;
  font-size: 12px;
  font-stretch: normal;
  font-style: italic;
  font-weight: normal;
  line-height: 1.33;
}

.event-detail__info-icon {
  color: #8e0b56;
  font-size: 18px;
  margin-right: .5rem;
}

.newsroom .block--column {
  margin: 5px;
  margin-left: 0;
}

.newsroom .sidebar {
  margin-top: 45px;
}

.page-new-item {
  padding: 0 24px;
  background: white;
}

.is-front .page--title {
  color: transparent;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
}

.is-front .wrapper, .is-front .wrapper--page.mx-auto {
  max-width: 1440px;
  padding: 0;
}

/* He tenido que añadirle el Important al color, porque del css heredado lo tiene puesto tambien y me "pisaba" */
.sidebar {
  margin-top: 45px;
}

@media (min-width: 74.6875rem) {
  .sidebar {
    padding-left: 2rem;
  }
}

.sidebar .banner--block .banner-image-title {
  color: #ffffff;
  padding: 6px 25px;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 0px;
  width: auto;
  height: 40px;
  border-radius: 0px 10px 0px 0px;
  box-shadow: inset 0 -2px 0 0 #b0aeb5;
  background-color: #0094b6;
}

.sidebar .banner--block .banner-image {
  border: solid 0px #e4e4e4;
}

.sidebar .banner--block .banner-image a:hover {
  filter: none;
}

.sidebar #block-quicklinks #block-quicklinks-menu, .sidebar #block-quicklinks #block-quicklinks-2-menu, .sidebar #block-quicklinks #block-quicklinks-3-menu, .sidebar #block-quicklinks #block-enlacesdeinteres-menu, .sidebar #block-quicklinks-2 #block-quicklinks-menu, .sidebar #block-quicklinks-2 #block-quicklinks-2-menu, .sidebar #block-quicklinks-2 #block-quicklinks-3-menu, .sidebar #block-quicklinks-2 #block-enlacesdeinteres-menu, .sidebar #block-quicklinks-3 #block-quicklinks-menu, .sidebar #block-quicklinks-3 #block-quicklinks-2-menu, .sidebar #block-quicklinks-3 #block-quicklinks-3-menu, .sidebar #block-quicklinks-3 #block-enlacesdeinteres-menu, .sidebar #block-enlacesdeinteres #block-quicklinks-menu, .sidebar #block-enlacesdeinteres #block-quicklinks-2-menu, .sidebar #block-enlacesdeinteres #block-quicklinks-3-menu, .sidebar #block-enlacesdeinteres #block-enlacesdeinteres-menu {
  width: auto;
  height: 40px;
  display: block;
  border-radius: 0px 10px 0px 0px;
  box-shadow: inset 0 -2px 0 0 #b0aeb5;
  background-color: #0094b6;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 6px 25px;
  margin: 0px;
}

.sidebar #block-quicklinks .menu--root li a, .sidebar #block-quicklinks-2 .menu--root li a, .sidebar #block-quicklinks-3 .menu--root li a, .sidebar #block-enlacesdeinteres .menu--root li a {
  color: #8e0b56 !important;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #FFFFFF;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.sidebar #block-quicklinks .menu--root li a:hover, .sidebar #block-quicklinks-2 .menu--root li a:hover, .sidebar #block-quicklinks-3 .menu--root li a:hover, .sidebar #block-enlacesdeinteres .menu--root li a:hover {
  color: #fff !important;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: .75rem 1rem .6875rem;
  background-color: #8e0b56;
  box-shadow: inset 0 -2px 0 0 #d9dade;
}

.sidebar #block-quicklinks .menu--root li + li, .sidebar #block-quicklinks-2 .menu--root li + li, .sidebar #block-quicklinks-3 .menu--root li + li, .sidebar #block-enlacesdeinteres .menu--root li + li {
  margin-top: 0px;
}

.sidebar #block-pagenavigation > span, .sidebar #block-pagenavigation-event > span {
  width: auto;
  display: block;
  height: 40px;
  border-radius: 0px 10px 0px 0px;
  box-shadow: inset 0 -2px 0 0 #b0aeb5;
  background-color: #0094b6;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 6px 25px;
  margin: 0px;
}

.sidebar #block-pagenavigation .toc-desktop, .sidebar #block-pagenavigation-event .toc-desktop {
  margin: 0 !important;
}

.sidebar #block-pagenavigation .toc-desktop ol, .sidebar #block-pagenavigation-event .toc-desktop ol {
  padding-top: 15px;
}

.sidebar #block-pagenavigation .toc-desktop ol li:before, .sidebar #block-pagenavigation-event .toc-desktop ol li:before {
  --size: 28px;
  font-size: 18px;
}

#block-views-block-newsletters-see-previous-newsletters .block--column:hover {
  box-shadow: 0 0 5px rgba(20, 20, 20, 0.5);
}

#block-views-block-newsletters-see-previous-newsletters .block--column:hover .block--item:hover {
  box-shadow: 0 0 0px rgba(20, 20, 20, 0.5);
}

.paragraph--type--button {
  display: flex;
  justify-content: center;
}

.paragraph--type--button .button-link {
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
  padding: 0.625rem 1.5rem;
  transition: .2s;
  text-decoration: none;
  background-color: transparent;
  border-color: #8e0b56;
  color: #8e0b56;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .paragraph--type--button .button-link {
    font-size: 0.9375rem;
  }
}

.paragraph--type--button .button-link:hover {
  transition: .2s;
}

.paragraph--type--button .button-link:hover {
  background-color: #8e0b56;
  border-color: #8e0b56;
  color: #f7f7f7;
}

@media (min-width: 1024px) {
  .paragraph--type--button .button-link {
    font-size: 14px;
  }
}

.cta-type--primary {
  background-color: #007c99;
  color: white;
}

.cta-type--secondary {
  background-color: #df002f;
  color: white;
}

.cta {
  display: flex;
}

.cta--without-image {
  margin: 0 auto;
  max-width: 350px;
}

.cta__wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
}

.cta__image {
  width: 33%;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.cta div {
  display: flex;
  align-items: stretch;
}

.cta img {
  object-fit: cover;
}

.cta__text {
  font-size: 20px;
  line-height: 1.45;
}

.cta__text--condensed {
  line-height: 1.35;
}

.cta__link {
  display: flex;
  justify-content: flex-end;
  padding-top: 1em;
}

.cta .field--name-field-link {
  padding-top: 2rem;
}

.cta .field--name-field-link a:after {
  content: '\2192';
  display: inline-block;
  text-decoration: none;
  padding-left: 0.8rem;
}

@media screen and (min-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference {
    column-count: 2;
    column-gap: 2%;
    padding: 2rem 0 5rem;
  }
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item {
  break-inside: avoid-column;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item a {
  text-decoration: none;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item {
  border: 3px solid;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item > .field {
  padding-bottom: 1.5rem;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .field--name-field-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

@media screen and (minx-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .field--name-field-heading {
    font-size: 23px;
    line-height: 31px;
  }
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .field--name-field-caption {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (minx-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .field--name-field-caption {
    font-size: 16px;
    line-height: 22px;
  }
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .link-wrapper > div:first-child {
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .link-wrapper {
    display: flex;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .link-wrapper > div:first-child {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .link-wrapper a {
  font-weight: 600;
  font-size: 14px;
  padding: 0.8em;
  border-radius: 1.5em;
  border: 1px solid black;
  display: inline-block;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item .link-wrapper a:hover {
  background: white;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item.has-single-link {
  background-color: #F8B678;
  border-color: #F8B678;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item.has-single-link .link-wrapper {
    display: none;
  }
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item .paragraph--type--card-with-links-item.has-mutiple-links {
  background-color: #9197CB;
  border-color: #9197CB;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > div > .field__item > a.card-link:hover .paragraph--type--card-with-links-item {
  border-color: black;
}

.paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > .field__item__wrapper {
  break-inside: avoid-column;
}

@media screen and (min-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > .field__item__wrapper:nth-child(odd) > .field__item:nth-child(even) .paragraph--type--card-with-links-item {
    background-color: white;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > .field__item__wrapper:nth-child(odd) > .field__item:nth-child(even) .paragraph--type--card-with-links-item .link-wrapper a:hover {
    background: #9197CB;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > .field__item__wrapper:nth-child(even) > .field__item:nth-child(odd) .paragraph--type--card-with-links-item {
    background-color: white;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference > .field__item__wrapper:nth-child(even) > .field__item:nth-child(odd) .paragraph--type--card-with-links-item .link-wrapper a:hover {
    background: #9197CB;
  }
}

@media screen and (max-width: 768px) {
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item {
    position: relative;
    cursor: pointer;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item:after {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    right: 8px;
    top: calc(50% - 8px);
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    display: inline-block;
    transform: rotate(135deg);
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item.active {
    cursor: pointer;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item.active:after {
    transform: rotate(-135deg);
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item:not(.active) > .field:not(.field--name-field-heading),
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item:not(.active) > .link-wrapper {
    display: none;
  }
  .paragraph--type--card-with-links-grid .field--name-field-paragraph-reference .paragraph--type--card-with-links-item:not(.active) .field--name-field-heading {
    padding-bottom: 0 !important;
  }
}

.paragraph--type--ica001-slider-item {
  position: relative;
  width: 100%;
  min-height: 472px;
}

@media (min-width: 768px) {
  .paragraph--type--ica001-slider-item {
    min-height: 582px;
  }
}

.paragraph--type--ica001-slider-item .slide-card {
  position: absolute;
  max-width: 680px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  z-index: 2;
  padding: 1rem;
  margin: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica001-slider-item .slide-card {
    margin: auto auto 6.7% 6.7%;
    padding: 2rem;
  }
}

.paragraph--type--ica001-slider-item .slide-card .slide-card__title .field--name-field-heading-title > * {
  font-size: 1.4rem;
  color: black !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica001-slider-item .slide-card .slide-card__title .field--name-field-heading-title > * {
    font-size: 3rem;
  }
}

.paragraph--type--ica001-slider-item .slide-card .slide-card__description {
  font-size: 1rem;
}

.paragraph--type--ica001-slider-item .slide-card .slide-card__link {
  margin: 1rem auto;
}

.paragraph--type--ica001-slider-item .slide-card .slide-card__link a {
  border-radius: 20px;
  border: 1px solid #8e0b56;
  padding: .5rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8e0b56;
  text-decoration: none;
  outline: 0;
  backround-color: transparent;
}

.paragraph--type--ica001-slider-item .slide-card .slide-card__link a:hover, .paragraph--type--ica001-slider-item .slide-card .slide-card__link a:active {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: background-color .6 ease-in;
}

.paragraph--type--ica001-slider-item .slide-image {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.paragraph--type--ica001-slider-item .slide-image img {
  width: 100%;
  object-fit: cover;
  height: 462px;
}

@media (min-width: 768px) {
  .paragraph--type--ica001-slider-item .slide-image img {
    height: 582px;
  }
}

.paragraph--type--ica001-slider-item .slide-image:before {
  content: '';
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background-image: linear-gradient(-183deg, transparent 50%, white 51%);
}

.paragraph--type--ica002-welcome {
  padding: 1.75rem 1.5rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome {
    padding: 2.75rem 1.5rem;
  }
}

.paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-heading-title {
  margin-bottom: .75rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-heading-title {
    margin-bottom: 1rem;
  }
}

.paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-heading-title > * {
  background-color: #86bdd4;
  color: #f7f7f7;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  padding: .5rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-heading-title > * {
    font-size: 24px;
    line-height: 1.25;
  }
}

.paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-long-formated-text > * {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-long-formated-text > * {
    font-size: 20px;
  }
}

.paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-link a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition: .2s;
  display: inline-block;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph--type--ica002-welcome-item .field--name-field-link a {
    font-size: 16px;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper > .field--name-field-heading-title {
  text-align: center;
  margin-bottom: .5rem;
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper > .field--name-field-heading-title > * {
  color: black;
  text-transform: uppercase;
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper > .field--name-field-heading-title > * {
    font-size: 32px;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference {
    align-items: stretch;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item {
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item {
    margin-bottom: 0;
    width: 48%;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child {
  background-color: #8e0b56;
  padding: 8%;
  position: relative;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child {
    padding: 3rem;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child:before, .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child:before {
  width: 6%;
  height: 100%;
  background-image: linear-gradient(-91deg, transparent 50%, white 55%);
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child:after {
  width: 100%;
  height: 6%;
  background-image: linear-gradient(1deg, transparent 50%, white 55%);
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-long-formated-text {
  color: #f7f7f7;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-long-formated-text {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-long-formated-text > * {
    font-size: 24px;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-link a {
  color: #f7f7f7;
  border: 1px solid #f7f7f7;
  border-radius: 20px;
  padding: .75rem 1.5rem;
  display: block;
  text-decoration: none;
  text-align: center;
}

@media (min-width: 1024px) {
  .paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-link a {
    display: inline-block;
  }
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:first-child .field--name-field-link a:hover {
  background-color: rgba(247, 247, 247, 0.8);
  color: #8e0b56;
  border-color: #f7f7f7;
  transition: .2s;
}

.paragraph--type--ica002-welcome .paragraph-inner-wrapper .field--name-field-paragraph-reference > .field__item:last-child .field--name-field-link a {
  color: #8e0b56;
}

.paragraph--type--ica003-our-work- {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  right: 50%;
  width: 100vw;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-image: url("../images/our-work.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 15% 20%;
}

.paragraph--type--ica003-our-work- > * {
  margin: 0 auto;
  max-width: 1440px;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-heading-title {
  text-align: center;
  margin-bottom: .5rem;
}

.paragraph--type--ica003-our-work- .field--name-field-heading-title > * {
  color: black;
  text-transform: uppercase;
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .field--name-field-heading-title > * {
    font-size: 32px;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica003-our-work- .field--name-field-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-view-reference,
.paragraph--type--ica003-our-work- .field--name-field-long-formated-text {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .field--name-field-view-reference,
  .paragraph--type--ica003-our-work- .field--name-field-long-formated-text {
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-link {
  display: flex;
  justify-content: center;
}

.paragraph--type--ica003-our-work- .field--name-field-link a {
  background-color: transparent;
  border: 1px solid #8e0b56;
  border-radius: 20px;
  color: #8e0b56;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.paragraph--type--ica003-our-work- .field--name-field-link a:hover {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: .2s;
}

.paragraph--type--ica003-our-work- .paragraph-inner-wrapper > .field--name-field-heading-title > * {
  color: #f7f7f7;
}

.paragraph--type--ica003-our-work- .paragraph-inner-wrapper > .field--name-field-formated-text {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 1rem;
  color: #f7f7f7;
}

@media (min-width: 768px) {
  .paragraph--type--ica003-our-work- .paragraph-inner-wrapper > .field--name-field-formated-text {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-paragraph-reference {
  margin: 1rem auto;
  max-width: 1240px;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .field--name-field-paragraph-reference {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    margin: 1rem auto 0 auto;
  }
}

.paragraph--type--ica003-our-work- .field--name-field-paragraph-reference > .field__item {
  margin-bottom: .5rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .field--name-field-paragraph-reference > .field__item {
    width: 31%;
    margin-bottom: 3.5%;
  }
  .paragraph--type--ica003-our-work- .field--name-field-paragraph-reference > .field__item:nth-child(3n) {
    margin-right: 0;
  }
  .paragraph--type--ica003-our-work- .field--name-field-paragraph-reference > .field__item:not(:nth-child(3n)) {
    margin-right: 3.5%;
  }
}

.paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item {
  align-items: center;
  background-color: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  height: 100%;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item {
    flex-direction: column;
  }
}

.paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-image {
  margin: 0px;
  width: 55px;
  flex-basis: 55px;
  margin-right: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-image {
    margin: 0 auto 1rem auto;
    width: 75px;
    flex-basis: 75px;
  }
}

.paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-heading-title > * {
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  text-transform: none;
  font-weight: bold;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-heading-title > * {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
  }
}

.paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-formated-text {
  text-align: left;
  margin-top: .5rem;
  font-size: 15px;
  line-height: 1.33;
}

@media (min-width: 1024px) {
  .paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-formated-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.3;
  }
}

@media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .paragraph--type--ica003-our-work- .paragraph--type--ica003-our-work-item .field--name-field-formated-text {
    width: 100%;
  }
}

@media (min-width: 74.6875rem) {
  .not-front .paragraph--type--ica004-view-reference {
    left: 75.888% !important;
  }
}

@media (min-width: 74.6875rem) {
  .not-front.search .paragraph--type--ica004-view-reference {
    left: 50% !important;
  }
}

.paragraph--type--ica004-view-reference {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}

.paragraph--type--ica004-view-reference .field--name-field-heading-title {
  text-align: center;
  margin-bottom: .5rem;
}

.paragraph--type--ica004-view-reference .field--name-field-heading-title > * {
  color: black;
  text-transform: uppercase;
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference .field--name-field-heading-title > * {
    font-size: 32px;
  }
}

.paragraph--type--ica004-view-reference .field--name-field-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica004-view-reference .field--name-field-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}

.paragraph--type--ica004-view-reference .field--name-field-view-reference,
.paragraph--type--ica004-view-reference .field--name-field-long-formated-text {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference .field--name-field-view-reference,
  .paragraph--type--ica004-view-reference .field--name-field-long-formated-text {
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

.paragraph--type--ica004-view-reference .field--name-field-link {
  display: flex;
  justify-content: center;
}

.paragraph--type--ica004-view-reference .field--name-field-link a {
  background-color: transparent;
  border: 1px solid #8e0b56;
  border-radius: 20px;
  color: #8e0b56;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.paragraph--type--ica004-view-reference .field--name-field-link a:hover {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: .2s;
}

.paragraph--type--ica004-view-reference.publications-home {
  padding-left: 0rem;
  padding-right: 0rem;
  background-image: url("../images/publications.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% 50%;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    right: 50%;
    width: 100vw;
  }
  .paragraph--type--ica004-view-reference.publications-home > * {
    margin: 0 auto;
    max-width: 1440px;
  }
}

.paragraph--type--ica004-view-reference.publications-home .field--name-field-heading-title > * {
  color: #f7f7f7;
}

.paragraph--type--ica004-view-reference.publications-home .views-field-nothing {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list {
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}

@media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list {
    display: table;
    flex-direction: initial;
    flex-wrap: initial;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list > li {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 480px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list > li {
    width: 48%;
    margin: 1%;
  }
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list > li {
    flex-direction: row;
    background-color: transparent;
    padding-bottom: 20px;
  }
}

@media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list > li {
    width: 46%;
    display: inline-table;
  }
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list > li:nth-child(even) {
    padding-left: 25px;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .views-field-field-media-image {
  width: 100%;
  -ms-flex: 100%;
  flex: 100%;
  max-width: 100%;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .views-field-field-media-image {
    max-width: 45%;
    padding-bottom: 0px;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .views-field-field-media-image + .views-field-nothing {
  max-width: none;
  padding-left: .9375rem;
}

@media (min-width: 480px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .views-field-field-media-image + .views-field-nothing {
    padding-left: 0px;
  }
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .views-field-field-media-image + .views-field-nothing {
    max-width: calc(100% - 8.875rem);
    padding-left: .9375rem;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item {
    display: flex;
    flex-direction: row;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item + .sidebar--content {
  max-width: calc(100%);
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item + .sidebar--content {
    padding-left: 15px;
    padding-right: 60px;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content {
  flex-direction: column;
  text-align: left;
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content > * {
  font-size: 1rem;
  line-height: 1.3;
  max-height: 5.1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content > * {
    line-height: 26px;
    overflow: visible;
  }
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content > * > a {
  color: #FFFFFF;
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content .date_month_year {
  font-size: 12px;
  line-height: 1.43;
  color: #ffffff;
  padding-bottom: 5px;
}

.paragraph--type--ica004-view-reference.publications-home .sidebar--list .sidebar--item .sidebar--content p {
  font-size: 14px;
  line-height: 1.43;
  color: #FFFFFF;
  padding-bottom: 20px;
}

.paragraph--type--ica004-view-reference.publications-home .field--name-field-link a {
  color: #f7f7f7;
  border-color: #f7f7f7;
}

.paragraph--type--ica004-view-reference.publications-home .field--name-field-link a:hover {
  color: #8e0b56;
  background-color: #f7f7f7;
}

.paragraph--type--ica004-view-reference.block-news-home {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  right: 50%;
  width: 100vw;
  background-color: #f2f2f2;
}

.paragraph--type--ica004-view-reference.block-news-home > * {
  margin: 0 auto;
  max-width: 1440px;
}

.paragraph--type--ica004-view-reference.block-news-home .blocks {
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.paragraph--type--ica004-view-reference.block-events-home {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.paragraph--type--ica004-view-reference.block-events-home .blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem;
  padding: 10px;
  width: calc(100% + 2rem);
}

@media (min-width: 768px) {
  .paragraph--type--ica004-view-reference.block-events-home .blocks {
    padding: 0;
  }
}

.paragraph--type--ica004-view-reference.block-events-home .blocks .event-teaser {
  max-width: calc(25% - 1rem);
  margin: 0 0.5rem;
}

.paragraph--type--ica004-view-reference .news-fields .views-field-field-author-name,
.paragraph--type--ica004-view-reference .news-fields .views-field-field-author-organization {
  font-style: italic;
  display: inline-flex;
}

.not-front .paragraph--type--ica005-html-text .paragraph-inner-wrapper {
  display: inline-block;
}

.paragraph--type--ica005-html-text {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  background-color: #f2f2f2;
  width: 100%;
  text-align: center;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  width: 100vw;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .paragraph--type--ica005-html-text {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}

.paragraph--type--ica005-html-text .field--name-field-heading-title {
  text-align: center;
  margin-bottom: .5rem;
}

.paragraph--type--ica005-html-text .field--name-field-heading-title > * {
  color: black;
  text-transform: uppercase;
  margin: 0px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .paragraph--type--ica005-html-text .field--name-field-heading-title > * {
    font-size: 32px;
  }
}

.paragraph--type--ica005-html-text .field--name-field-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text .field--name-field-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}

.paragraph--type--ica005-html-text .field--name-field-view-reference,
.paragraph--type--ica005-html-text .field--name-field-long-formated-text {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .paragraph--type--ica005-html-text .field--name-field-view-reference,
  .paragraph--type--ica005-html-text .field--name-field-long-formated-text {
    margin-bottom: 1.75rem;
    margin-top: 1.75rem;
  }
}

.paragraph--type--ica005-html-text .field--name-field-link {
  display: flex;
  justify-content: center;
}

.paragraph--type--ica005-html-text .field--name-field-link a {
  background-color: transparent;
  border: 1px solid #8e0b56;
  border-radius: 20px;
  color: #8e0b56;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.paragraph--type--ica005-html-text .field--name-field-link a:hover {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: .2s;
}

.paragraph--type--ica005-html-text.facts-figures {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  right: 50%;
  width: 100vw;
  text-align: left;
  background-color: #4661a7;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: table;
}

.paragraph--type--ica005-html-text.facts-figures > * {
  margin: 0 auto;
  max-width: 1440px;
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures {
    padding-top: 3rem;
    padding-bottom: 3em;
  }
}

.paragraph--type--ica005-html-text.facts-figures .paragraph-inner-wrapper {
  background-image: url("../images/world-map.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.paragraph--type--ica005-html-text.facts-figures .field--name-field-heading-title > * {
  color: #f7f7f7;
}

.paragraph--type--ica005-html-text.facts-figures .field--name-field-subtitle {
  color: #f7f7f7;
}

.paragraph--type--ica005-html-text.facts-figures .facts {
  color: #f7f7f7;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.facts-figures .facts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts {
    flex-wrap: nowrap;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .paragraph--type--ica005-html-text.facts-figures .facts > * {
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.facts-figures .facts > * {
    width: 49.5%;
    margin-bottom: 1%;
  }
  .paragraph--type--ica005-html-text.facts-figures .facts > *:nth-child(2n) {
    margin-right: 0;
  }
  .paragraph--type--ica005-html-text.facts-figures .facts > *:not(:nth-child(2n)) {
    margin-right: 1%;
  }
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts > * {
    width: 0;
    flex-grow: 1;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts > *:nth-last-child(-n+2) {
  border-top: 1px solid #f7f7f7;
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts > *:nth-last-child(-n+2) {
    border-top: 0;
  }
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts > *:last-child {
    border-left: 1px solid #f7f7f7;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__title {
  justify-content: center;
}

@media (min-width: 0) and (max-width: 767px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__title {
    margin: 0 0 .5rem;
  }
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__title {
    display: flex;
    align-self: center;
  }
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__title {
    max-width: 226px;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__title > * {
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  word-break: normal;
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__title > * {
    font-size: 32px;
    text-align: right;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__chart {
  position: relative;
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__chart {
    align-self: center;
    min-width: 282px;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__chart-canvas {
  max-width: 320px;
  margin: 0 auto;
  pointer-events: none;
}

.paragraph--type--ica005-html-text.facts-figures .facts__chart-content {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.paragraph--type--ica005-html-text.facts-figures .facts__chart-content > * {
  display: block;
}

.paragraph--type--ica005-html-text.facts-figures .facts__chart-text {
  color: #f7f7f7;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-generate .facts__data-logo, .paragraph--type--ica005-html-text.facts-figures .facts__data-employ .facts__data-logo {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-generate .facts__data-logo {
  background-image: url("../images/facts-gear.png");
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-employ .facts__data-logo {
  background-image: url("../images/facts-team.png");
}

.paragraph--type--ica005-html-text.facts-figures .facts__data {
  padding-top: 1.5rem;
}

@media (min-width: 1170px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__data {
    padding: .5rem 1.5%;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-head {
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.facts-figures .facts__data-head {
    font-size: 18px;
    font-weight: 600;
  }
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-main {
  align-items: stretch;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-logo {
  min-width: 95px;
  margin-right: 1rem;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-content > * {
  display: block;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-units {
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-reason {
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-footer {
  align-items: center;
  background-color: #dcecf3;
  color: black;
  display: flex;
  flex-wrap: row wrap;
  justify-content: center;
  margin-top: 1rem;
  padding: .5rem;
  text-align: center;
}

.paragraph--type--ica005-html-text.facts-figures .facts__data-footer > * {
  margin: 0 .5rem;
}

.paragraph--type--ica005-html-text.facts-figures .facts__number {
  line-height: 1;
}

.paragraph--type--ica005-html-text.facts-figures .facts__number--big {
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 70px;
  font-weight: bold;
}

.paragraph--type--ica005-html-text.facts-figures .facts__number--litle {
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-weight: bold;
}

.paragraph--type--ica005-html-text.facts-figures .field--name-field-link a {
  border-color: #f7f7f7;
  color: #f7f7f7;
}

.paragraph--type--ica005-html-text.facts-figures .field--name-field-link a:hover {
  background-color: #f7f7f7;
  color: #4661a7;
}

.paragraph--type--ica005-html-text.facts-figures-secondary {
  background-color: #85b91b;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper {
  background: none;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text {
  margin-top: 3rem;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__chart .facts__chart-text {
  text-align: center;
  padding: 0 40px;
  font-size: 24px;
  font-weight: 500;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__chart .facts__chart-content {
  top: 57%;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__chart .facts__chart-content .facts__chart-text {
  font-size: 22px;
  font-weight: 300;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ {
  text-align: center;
  padding-top: 4rem;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ .facts__data-reason {
  color: #f7f7f7;
  font-family: "Open Sans",sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ .facts__data-main {
  text-align: left;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ .facts__data-main .facts__data-units {
  font-weight: 500;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ .facts__data-footer {
  margin-top: 2rem;
}

.paragraph--type--ica005-html-text.facts-figures-secondary .paragraph-inner-wrapper .field--name-field-long-formated-text .facts__data.facts__data-employ h6 {
  color: white;
  padding-top: 1rem;
  text-align: left;
}

.paragraph--type--ica005-html-text.our-members-home {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: white;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  right: 50%;
  width: 100vw;
}

.paragraph--type--ica005-html-text.our-members-home .field--name-field-long-formated-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.paragraph--type--ica005-html-text.our-members-home .field--name-field-long-formated-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.33;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .paragraph--type--ica005-html-text.our-members-home .field--name-field-long-formated-text p {
    font-size: 20px;
  }
}

.paragraph--type--ica005-html-text.our-members-home .field--name-field-link a {
  background-color: #8e0b56;
  color: #f7f7f7;
}

.paragraph--type--ica005-html-text.our-members-home .field--name-field-link a:hover {
  background-color: #720945;
}

@media (min-width: 74.6875rem) {
  .page--content .page--fields .paragraph--type--ica005-html-text {
    left: 75.888% !important;
  }
}

.page--content .page--fields .paragraph--type--ica005-html-text .paragraph-inner-wrapper {
  display: block;
}

.page-node-type-page.not-front aside.sidebar #block-paragraphasidefundraisingcall .paragraph--type--ica005-html-text {
  left: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  right: 0;
  width: auto;
  text-align: center;
  display: table;
}

.page-node-type-page.not-front aside.sidebar #block-paragraphasidefundraisingcall .paragraph--type--ica005-html-text .facts__chart-content {
  top: 52%;
}

.page-node-type-page.not-front aside.sidebar #block-paragraphasidefundraisingcall .paragraph--type--ica005-html-text.facts-figures .facts > *:last-child {
  border-left: 0px solid #f7f7f7;
}

.paragraph--type--ica006-sectors-and-regions {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions {
    padding: 48px 0;
  }
}

.paragraph--type--ica006-sectors-and-regions > div {
  width: 100%;
  flex-basis: 100%;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-heading-title > * {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-heading-title > * {
    font-size: 32px;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-formated-text {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 16px;
}

.paragraph--type--ica006-sectors-and-regions .views-field-tid {
  display: none;
}

.paragraph--type--ica006-sectors-and-regions .close {
  position: absolute;
  right: 0px;
  top: -3px;
  width: 24px;
  height: 24px;
  background: transparent url("../images/ic-plus.svg") no-repeat center center;
  transform: rotate(45deg);
  filter: grayscale(100%) brightness(5) brightness(80%);
  background-size: cover;
  cursor: pointer;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list {
  position: relative;
  order: 4;
  width: 100%;
  padding-bottom: 63.5%;
  background: transparent url("../images/ica006/None_selected.svg") no-repeat center 35%;
  background-size: 90% auto;
  max-width: 967px;
  margin: 0 auto;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list {
    padding-bottom: 35%;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list.europe-selected .views-row:first-child .views-field-name {
  width: 32px;
  height: 65px;
  background-image: url("../images/ica006/marker_selected.svg");
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list.asia-selected .views-row:nth-child(2) .views-field-name {
  width: 32px;
  height: 65px;
  background-image: url("../images/ica006/marker_selected.svg");
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list.africa-selected .views-row:nth-child(3) .views-field-name {
  width: 32px;
  height: 65px;
  background-image: url("../images/ica006/marker_selected.svg");
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list.america-selected .views-row:nth-child(4) .views-field-name {
  width: 32px;
  height: 65px;
  background-image: url("../images/ica006/marker_selected.svg");
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:first-child .views-field-name {
  top: 21%;
  left: 51%;
}

@media (min-width: 768px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:first-child .views-field-name {
    top: 26%;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(2) .views-field-name {
  left: 67%;
  top: 26%;
}

@media (min-width: 768px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(2) .views-field-name {
    top: 31%;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(3) .views-field-name {
  top: 41%;
  left: 55%;
}

@media (min-width: 768px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(3) .views-field-name {
    top: 46%;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(4) .views-field-name {
  top: 33%;
  left: 24%;
}

@media (min-width: 768px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-row:nth-child(4) .views-field-name {
    top: 38%;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-field-name {
  background: transparent url("../images/ica006/Marker.svg") no-repeat center top;
  width: 24px;
  height: 50px;
  position: absolute;
  transition: 0.2s all ease-in;
  font-size: 0;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list .views-field-name:hover {
  width: 32px;
  height: 65px;
  background-image: url("../images/ica006/marker_selected.svg");
  cursor: pointer;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors {
  order: 5;
  padding: 0 16px;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors {
    position: absolute;
    bottom: 242px;
    right: 16px;
    width: auto;
    z-index: 1;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-row, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-row {
  border-radius: 4px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
  background: #fff7fb;
  padding: 16px;
  display: none;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-row.active, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-row.active {
  display: block;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-row, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-row {
    width: 530px;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-region-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-sector-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-region-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-sector-map-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  position: relative;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-region-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-sector-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-region-map-title, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-sector-map-title {
    font-size: 24px;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-description__value, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-description__value {
  margin-top: 8px;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-description__value p, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-description__value p {
  margin: 0;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-description__value a, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-description__value a {
  color: #8e0b56;
  text-decoration: underline;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-description__value a:hover, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-description__value a:hover {
  text-decoration: none;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-map-link, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-map-link {
  min-width: 195px;
  margin-top: 16px;
  display: inline-block;
  text-align: center;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-map-link, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-map-link {
    margin-top: 0;
    float: right;
  }
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-map-link a, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-map-link a {
  border-radius: 20px;
  border: 1px solid #8e0b56;
  color: #8e0b56;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 10px 0;
  line-height: 1.3;
}

.paragraph--type--ica006-sectors-and-regions .field--name-field-regions-map .views-field-field-map-link a:hover, .paragraph--type--ica006-sectors-and-regions .field--name-field-sectors .views-field-field-map-link a:hover {
  background: #8e0b56;
  color: white;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper {
  background: #8e0b56;
  padding: 16px 24px;
  position: relative;
  order: 3;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-select-title {
  font-size: 12px;
  line-height: 1.33;
  color: white;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-placeholder {
  font-size: 13px;
  font-style: italic;
  color: #9b9b9b;
  background: white;
  padding: 8px;
  line-height: 1.2;
  position: relative;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-placeholder:before, .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-placeholder:after {
  content: "\f0d7";
  font-size: 13px;
  font-family: FontAwesome;
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #979797;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-placeholder:before {
  top: calc(50% - 6px);
  transform: rotate(180deg);
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list {
  background: white;
  display: none;
  position: absolute;
  width: calc(100% - 48px);
  left: 24px;
  z-index: 1;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list a {
  text-decoration: none;
  padding: 8px;
  display: block;
  width: 100%;
  pointer-events: none;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .open-selector .item-list {
  display: block;
}

.paragraph--type--ica006-sectors-and-regions .sectors-wrapper .views-field-field-sector-logo {
  display: none;
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper {
    order: 4;
    padding: 0;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-select-title, .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-placeholder {
    display: none;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list {
    display: block;
    width: 100%;
    background: none;
    position: static;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li {
    text-align: center;
    display: flex;
    max-width: 180px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 0;
    cursor: pointer;
    transition: 0.2s all ease-in;
  }
}

@media all and (min-width: 990px) and (-ms-high-contrast: none), (min-width: 990px) and (-ms-high-contrast: active) {
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li {
    width: 100%;
  }
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li > div {
    width: 100%;
    flex-basis: 100%;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li:hover, .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li.active {
    background: #6b0841;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list .views-field-field-sector-map-title {
    display: flex;
    justify-content: center;
    color: white;
    order: 99;
    font-weight: 600;
    line-height: 1.2;
    font-size: 20px;
  }
}

@media all and (min-width: 990px) and (-ms-high-contrast: none), (min-width: 990px) and (-ms-high-contrast: active) {
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list .views-field-field-sector-map-title {
    font-size: 15px;
  }
}

@media (min-width: 990px) {
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list .views-field-field-sector-logo {
    text-align: center;
    display: block;
  }
  .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list .views-field-field-sector-logo img {
    display: block;
    margin: 0 auto;
    max-width: 70px;
    height: auto;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.not-front .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-list-wrapper .item-list li {
    flex-basis: 8%;
    width: 8%;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.not-front .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .sectors-list-wrapper .item-list li a {
    padding: 0px;
  }
}

.page--content .page--fields .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list {
  position: relative;
  order: 4;
  width: 100%;
  padding-bottom: 63.5%;
  background: transparent url("../images/ica006/None_selected.svg") no-repeat center 35%;
  background-size: 90% auto;
  max-width: 967px;
  margin: 0 auto;
}

@media (min-width: 990px) {
  .page--content .page--fields .paragraph--type--ica006-sectors-and-regions .field--name-field-regions-list {
    padding-bottom: 45%;
  }
}

.page--content .page--fields .paragraph--type--ica006-sectors-and-regions .sectors-wrapper .item-list li {
  -ms-flex-preferred-size: 12.5%;
  flex-basis: 12.5%;
  width: 12.5%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  text-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0 0;
  cursor: pointer;
  transition: 0.2s all ease-in;
}

.paragraph--type--ica008-item-row .field--name-field-row-link {
  display: flex;
  justify-content: left;
}

.paragraph--type--ica008-item-row .field--name-field-row-link a {
  background-color: transparent;
  border: 1px solid #8e0b56;
  border-radius: 20px;
  color: #8e0b56;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.paragraph--type--ica008-item-row .field--name-field-row-link a:hover {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: .2s;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.card-grid > .card {
  width: calc((100% / 3) - 2rem);
  margin: 0 1rem 2rem 1rem;
}

.card-grid div.paragraph,
.card-grid div.field,
.card-grid a.card--link-with-caption {
  display: flex;
  height: 100%;
}

.card--link-with-caption {
  display: flex;
  height: 100%;
}

.card--link-with-caption:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
  z-index: 99;
}

.card--link-with-caption .card-inner {
  position: relative;
}

.card--link-with-caption img {
  width: 100%;
  max-height: 218px;
  margin-top: 0px;
  margin-bottom: 0px;
  aspect-ratio: auto 4 / 3;
}

.card--link-with-caption .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #8e0b56;
  color: #f7f7f7;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

@media screen and (max-width: 768px) {
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
  }
  .card-grid > .card {
    width: calc((100% / 2) - 2rem);
    margin: 0 1rem 2rem 1rem;
  }
}

@media screen and (max-width: 512px) {
  .card-grid {
    display: flex;
    justify-content: center;
    margin: 0 -1rem;
  }
  .card-grid > .card {
    width: 100%;
    margin: 0 0 2rem;
    max-width: 308px;
  }
}

.paragraph--type--icon-list > .field__row > .field__item {
  margin-bottom: 1.8rem;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.5s;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text .field--name-field-media-image {
  max-width: 45px;
  flex-shrink: 0;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text .field--name-field-description {
  font-weight: 600;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text.has-image .field--name-field-description {
  padding-left: 1.5rem;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text.has-link:hover {
  filter: grayscale(100%);
}

.paragraph--type--icon-list .paragraph--type--icon-with-text.has-link .field--name-field-description {
  text-decoration: underline;
}

.paragraph--type--icon-list .paragraph--type--icon-with-text .cover-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.paragraph--type--icon-list.style--primary .field--name-field-description {
  color: #8e0b56;
}

.paragraph--type--image h2 {
  margin-bottom: 1rem;
}

.paragraph--type--image .field--name-field-caption {
  font-weight: 600;
  padding: 0.5rem;
}

.paragraph--type--logos.grid-list ul {
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
}

@media (min-width: 65.625rem) {
  .paragraph--type--logos.grid-list ul {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 0.5rem;
  }
}

.paragraph--type--logos.grid-list ul li > .field__item {
  display: flex;
}

.paragraph--type--logo {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s;
  padding: 1rem 1.5rem;
}

.paragraph--type--logo.has-link:hover, .paragraph--type--logo.has-link:focus {
  box-shadow: inset 0px 0px 0px 1px #eee;
}

.paragraph--type--logo.has-link:hover .logo__logo, .paragraph--type--logo.has-link:focus .logo__logo {
  filter: grayscale(100%);
}

.paragraph--type--logo.has-link:hover .logo__name, .paragraph--type--logo.has-link:focus .logo__name {
  color: #8e0b56;
  font-weight: 600;
  font-size: 13px;
}

.paragraph--type--logo .logo__logo {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  justify-items: center;
  justify-content: center;
}

.paragraph--type--logo .logo__logo div {
  display: flex;
  justify-items: center;
  justify-content: center;
}

.paragraph--type--logo .logo__logo div img {
  align-self: center;
  justify-self: center;
}

.paragraph--type--logo .logo__name {
  align-self: center;
  padding-top: 1rem;
  line-height: 1.2;
  text-align: center;
  font-size: 15px;
}

.paragraph--type--logo .cover-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.page--content .field--name-field-paragraphs .paragraph.publications-list {
  max-width: calc(100% + 3rem);
  margin: 2rem -1.5rem 0 -1.5rem;
}

.publications-list {
  background-image: url(../images/publications.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% 50%;
  padding: 2rem;
}

@media screen and (min-width: 600px) {
  .publications-list .list--grid .field--name-field-ref-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
  }
}

.publications-list .list--grid .sidebar--item {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .publications-list .list--grid .sidebar--item {
    margin-bottom: 0;
  }
}

.publications-list .list--grid .sidebar--item img {
  margin: 0;
}

.publications-list .list--grid .sidebar--item .sidebar__date time {
  font-size: 12px;
  line-height: 1.43;
  color: #ffffff;
  padding-bottom: 5px;
  margin-bottom: 0;
  font-style: normal;
}

.publications-list .list--grid .sidebar--item h3 {
  max-height: none;
  font-size: 14px;
}

.publications-list .list--grid .sidebar--item h3 a {
  color: white;
}

.publications-list .list--grid .sidebar--item .sidebar--content p {
  font-size: 13px;
  line-height: 1.43;
  color: #FFFFFF;
  padding-bottom: 0;
  margin: 0;
}

.publications-list .list--grid .sidebar--item .sidebar--figure {
  max-width: 45%;
  flex-shrink: 0;
  flex-grow: 1;
}

.publications-list .read-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.publications-list .read-more a {
  background-color: transparent;
  border: 1px solid #f7f7f7;
  border-radius: 20px;
  color: #f7f7f7;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  padding: .75rem 1.75rem;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  transition: .2s;
}

.publications-list .read-more a:hover {
  color: #8e0b56;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}

.quote {
  max-width: 350px;
  margin: 0 auto;
  padding: 1rem;
  margin-bottom: 1rem;
}

.quote .quote__quote {
  position: relative;
  font-size: 20px;
  font-style: italic;
}

.quote .quote__quote:before {
  content: '\201C';
  display: block;
  position: absolute;
  top: -0.8rem;
  left: -1.75rem;
  font-size: 60px;
  font-style: normal;
  line-height: 1;
  color: #8e0b56;
}

.quote .quote__attribution {
  font-size: 15px;
  padding-top: 0.5em;
}

.paragraph--type--video h2 {
  margin-bottom: 1rem;
}

.paragraph--type--video .field--name-field-video {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.paragraph--type--video iframe {
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.paragraph--type--video .field--name-field-caption {
  font-weight: 600;
  padding: 0.5rem;
}

.footer {
  background-color: #292828;
}

.footer__pre-footer {
  background-color: gainsboro;
  padding: 3rem 1.5rem;
}

.footer__info {
  padding: 4rem 1.5rem;
}

.footer__pre-footer-wrapper, .footer__info-wrapper {
  margin: 0 auto;
  max-width: 1440px;
  overflow: hidden;
}

.footer__info_left {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .footer__info_left {
    margin-bottom: 0;
    float: right;
    width: 33%;
    padding: 0 91px 10px 91px;
  }
}

.footer__info_left .banner--block .banner-image-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
  display: block;
  margin: 0 0 1em 0;
}

.footer__info_right {
  float: none;
}

@media (min-width: 1024px) {
  .footer__info_right {
    overflow: hidden;
    position: relative;
  }
}

.footer__info_right .banner--block .banner-image img {
  width: auto;
}

@media (min-width: 768px) {
  .footer__info_right div[id^="block-footerleftlogocoop"] {
    max-width: 275px;
  }
}

.footer__info_right div[id^="block-footer-leftaddress"] {
  color: white;
  position: relative;
}

.footer__info_right div[id^="block-footer-leftaddress"] .intro {
  margin-top: 15px;
}

.footer__info_right div[id^="block-footer-leftaddress"] .intro p {
  font-size: 16px;
}

.footer__info_right div[id^="block-footer-leftaddress"] .intro p span {
  text-decoration: underline;
}

.footer__info_right div[id^="block-footer-leftaddress"] .intro img {
  position: relative;
}

@media (min-width: 700px) {
  .footer__info_right div[id^="block-footer-leftaddress"] .intro img {
    position: absolute;
    top: -52%;
    right: 0;
  }
}

.footer__info_right div[id^="block-footer-socialnetworks"] {
  display: none;
  bottom: 65px;
  text-align: right;
  width: 66%;
}

@media (min-width: 1024px) {
  .footer__info_right div[id^="block-footer-socialnetworks"] {
    display: block;
    position: absolute;
    right: 0;
  }
}

.footer__info_right div[id^="block-footer-socialnetworks"] .intro div {
  display: flex;
  justify-content: flex-end;
}

.footer__info_right div[id^="block-footer-socialnetworks"] .intro div a {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer__info_right div[id^="block-footer-socialnetworks"] .intro div a {
    height: 16px;
  }
}

.footer__info_right div[id^="block-footer-socialnetworks"] .intro div a img {
  height: 100%;
  margin: 0 auto;
}

.footer__info_right div[id^="block-footer-socialnetworks"] .footer-twitter a {
  margin-right: 0;
}

.footer__info_right div[id^="block-footer-copyright"] {
  bottom: 0;
  right: 0;
  color: white;
}

@media (min-width: 1024px) {
  .footer__info_right div[id^="block-footer-copyright"] {
    text-align: right;
    width: 66%;
    position: absolute;
  }
}

.footer__info_right div[id^="block-footer-copyright"] .intro:before {
  width: 100%;
  content: '';
  position: absolute;
  height: 2px;
  text-align: right;
  right: 0px;
  background-color: white;
}

@media (min-width: 1024px) {
  .footer__info_right div[id^="block-footer-copyright"] .intro:before {
    width: 60%;
  }
}

.footer__info_right div[id^="block-footer-copyright"] .intro p {
  padding-top: 25px;
}

@media (min-width: 1024px) {
  .footer__info_right div[id^="block-footer-copyright"] .intro p {
    padding-top: 5px;
  }
}

.footer__info_right div[id^="block-markinyouragendas"] {
  float: left;
}

@media (min-width: 1024px) {
  .footer__info_right div[id^="block-markinyouragendas"] {
    width: 33%;
    float: right;
  }
}

body.sitewide_banner_enabled {
  padding-top: 10.6rem !important;
}

body.sitewide_banner_enabled .main-header__menu-toggle {
  top: 60px;
}

body.sitewide_banner_enabled .has-menu .main-header__menu-toggle {
  top: 0;
}

@media (min-width: 1024px) {
  body.sitewide_banner_enabled {
    padding-top: 0;
  }
}

body.sitewide_banner_enabled .main-header {
  display: block;
  padding: 0;
  height: 6.625rem;
}

body.sitewide_banner_enabled .main-header .header-banner {
  background-color: #ffffff;
  border-bottom: 5px solid #3f7e44;
  gap: 2%;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

body.sitewide_banner_enabled .main-header .header-banner div {
  display: flex;
}

body.sitewide_banner_enabled .main-header .header-banner div > * {
  display: inline-block;
  padding: 5px;
  line-height: 0.9rem;
  font-size: 0.8rem;
  align-self: center;
}

body.sitewide_banner_enabled .main-header .header-banner div > * .fa {
  font-size: 12px;
}

body.sitewide_banner_enabled .main-header .header-banner div > *:nth-child(1) {
  background: transparent url(../images/IYC-2025-banner.png) 0 0 no-repeat;
  background-size: cover;
  padding: 0;
  align-self: auto;
  min-height: 50px;
}

@media (min-width: 360px) {
  body.sitewide_banner_enabled .main-header .header-banner div > *:nth-child(1) {
    width: 52px;
  }
}

@media (min-width: 768px) {
  body.sitewide_banner_enabled .main-header .header-banner div > *:nth-child(1) {
    width: 254px;
    min-height: 65px;
  }
}

body.sitewide_banner_enabled .main-header .header-banner > *:nth-child(2) {
  width: 174px;
  background: transparent url(../images/IYC-2025-logo_Horizontal_E-w-tagline.png) 0 0 no-repeat;
  background-size: 70%;
  background-position-y: center;
  padding: 0;
  align-self: auto;
  min-height: 50px;
}

@media (min-width: 768px) {
  body.sitewide_banner_enabled .main-header .header-banner > *:nth-child(2) {
    min-height: 65px;
  }
}

body.sitewide_banner_enabled .main-header .header-banner .color-variant {
  color: #3f7e44;
}

@media screen and (min-width: 1194px) {
  body.sitewide_banner_enabled .main-header__menu {
    margin-top: 14px;
  }
  body.sitewide_banner_enabled .main-header {
    padding: 0;
  }
  body.sitewide_banner_enabled .main-header .main-header--row {
    padding: 0;
  }
}

.main-header {
  padding-right: 78px;
  padding-left: 8px;
  width: 100vw;
}

@media screen and (min-width: 1194px) {
  .main-header {
    padding: 0 calc(((100vw - 1440px) / 2));
    background: #8e0b56;
    display: flex;
    justify-content: flex-end;
  }
  .main-header .main-header--row {
    width: 100%;
  }
  .main-header form {
    float: right;
  }
  .main-header .form--search {
    width: 295px;
    background: none;
  }
  .main-header .form--search input {
    border-radius: 13px;
    height: 28px;
    padding: 8px 16px;
  }
  .main-header .form--search input::placeholder {
    font-weight: 500;
  }
  .main-header .form--search button[type="submit"].button {
    height: auto;
    top: 6px;
  }
  .main-header .main-header--social {
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 28px;
  }
  .main-header .main-header--social a {
    width: 25px;
    height: 20px;
    background: none;
  }
  .main-header .main-header--social a svg {
    fill: rgba(255, 255, 255, 0.8);
    height: 16px;
  }
  .main-header .main-header--social .info {
    height: 100%;
    vertical-align: text-bottom;
  }
  .main-header .main-header--social .info .mailto {
    display: flex;
    height: 100%;
    align-items: center;
    margin-top: 0;
  }
  .main-header .main-header--social .info a {
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-left: 23px;
    text-transform: capitalize;
  }
  .main-header .main-header--social .info a:before {
    content: '';
    width: 20px;
    height: 16px;
    background: transparent url("../images/svg-mailto.svg") no-repeat top left/contain;
    background-size: 20px 16px;
    display: block;
    position: absolute;
    top: -1px;
    left: -3px;
    -webkit-filter: grayscale(100%) brightness(5) brightness(0.9);
    filter: grayscale(100%) brightness(5) brightness(0.9);
  }
  .main-header .main-header--languages {
    display: inline-block;
    padding: 0;
  }
  .main-header .main-header--languages > ul {
    list-style: none;
    display: flex;
  }
  .main-header .main-header--languages > ul > li {
    margin-right: 8px;
    display: inline-block;
    list-style: none;
  }
  .main-header .main-header--languages > ul > li a {
    background: none;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    padding: 0 2px;
  }
  .main-header .main-header--languages > ul > li a.active {
    background: none;
    color: white;
    text-decoration: underline;
  }
  .main-header .main-header__menu {
    border-top: 0;
    margin-top: -49px;
    width: 100%;
    background: white;
    height: 96px !important;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    padding: 0 calc(((100vw - 1440px) / 2));
  }
  .main-header .main-header__menu .main-header__logo {
    width: 270px;
    height: 110px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: .5rem 1rem;
    margin-right: 5px;
    transition: .2s;
  }
  .main-header .main-header__menu .main-header__logo svg {
    font-size: 17px;
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .main-header .main-header__menu .main-header__logo img {
    max-width: 100%;
    width: auto;
  }
  .main-header .main-header__menu .info {
    display: none;
  }
  .main-header .main-header__menu > nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
  .main-header .main-header__menu > nav > .menu--root {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .main-header .main-header__menu > nav > .menu--root > li {
    height: 100%;
    border: none;
    position: relative;
  }
  .main-header .main-header__menu > nav > .menu--root > li:hover {
    background: #f3f3f5;
  }
  .main-header .main-header__menu > nav > .menu--root > li:hover a {
    background: #f3f3f5;
  }
  .main-header .main-header__menu > nav > .menu--root > li:not(.has-submenu) > a:after {
    display: none;
  }
  .main-header .main-header__menu > nav > .menu--root > li.has-submenu:hover > .menu--sub {
    display: block;
  }
  .main-header .main-header__menu > nav > .menu--root > li.has-submenu .is-active:hover {
    background: #f3f3f5;
  }
  .main-header .main-header__menu > nav > .menu--root > li.has-submenu .is-active:first-child {
    background: none;
  }
  .main-header .main-header__menu > nav > .menu--root > li.has-submenu .is-active:first-child:hover {
    background: #f3f3f5;
  }
  .main-header .main-header__menu > nav > .menu--root > li > a {
    color: black;
    text-transform: initial;
    height: 100%;
    align-items: center;
    display: flex;
    font-weight: normal;
  }
  .main-header .main-header__menu > nav > .menu--root > li > a:after {
    content: "\f0d7";
    font-size: 1.25rem;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    top: 52%;
    right: 5px;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    text-align: center;
    transform: translateY(-50%);
    color: #8e0b56;
    background: none !important;
  }
  .main-header .main-header__menu > nav .menu--sub {
    position: absolute;
    background: #f3f3f5;
    left: 0px;
    display: none;
  }
  .main-header .main-header__menu > nav .menu--sub a {
    font-weight: 500;
    white-space: nowrap;
    padding-left: 16px;
    min-width: 200px;
    text-transform: initial;
  }
  .main-header .main-header__menu > nav .menu--sub a:before {
    display: none;
  }
  .main-header .main-header__menu > nav .menu--sub li {
    border-bottom: 1px solid transparent;
  }
  .main-header .main-header__menu > nav .menu--sub li:hover {
    border-bottom: 1px solid #8e0b56;
    background: #d3d3d4;
  }
  .main-header .main-header__menu > nav .menu--sub li:hover > a {
    background: #d3d3d4;
  }
  .main-header .main-header__menu > nav .menu--sub li:before {
    display: none;
  }
  .main-header .main-header__menu > nav .menu--sub li:not(.has-submenu) > a:after {
    display: none;
  }
  .main-header .main-header__menu > nav .menu--sub li.has-submenu > a:after {
    content: "\f105";
    font-size: 1.25rem;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    top: 50%;
    right: 1rem;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1em;
    text-align: center;
    transform: translateY(-50%);
    background: none !important;
  }
  .main-header .main-header__menu > nav .menu--sub li.has-submenu:hover {
    position: relative;
  }
  .main-header .main-header__menu > nav .menu--sub li.has-submenu:hover > .menu--sub {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  }
  .main-header .main-header__menu > nav .menu--sub li.has-submenu:hover > .menu--sub a {
    background: #fff7fb;
  }
  .main-header .main-header__menu > nav .menu--sub li.has-submenu:hover > .menu--sub a:hover {
    background: #8e0b56;
    color: white;
  }
  .main-header .main-header__menu > nav + nav, .main-header .main-header__menu #block-frontpagemenulinks {
    display: flex;
    flex-grow: 1;
    justify-self: flex-end;
    justify-content: flex-end;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root {
    display: flex;
    height: 100%;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root > li, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root > li {
    display: inline-block;
    height: 100%;
    margin: 0;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root > li > a, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root > li > a {
    background: #8e0b56;
    height: 100%;
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 0 1rem;
    font-size: 11px;
    max-width: 120px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    text-overflow: ellipsis;
    line-height: 1.5;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root > li > a:after, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root > li > a:after {
    display: none;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root > li > a:hover, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root > li > a:hover {
    background: #bd0f73;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root.items--more-than-one > li:last-child a, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root.items--more-than-one > li:last-child a {
    color: #8e0b56;
    background: transparent;
    margin: 0;
    padding: 0;
  }
  .main-header .main-header__menu > nav + nav ul.menu--root.items--more-than-one > li:last-child a:hover, .main-header .main-header__menu #block-frontpagemenulinks ul.menu--root.items--more-than-one > li:last-child a:hover {
    background: #f2f2f2;
    color: #a60d64;
  }
}

.main-header--row {
  height: 56px;
  border: none;
}

@media (min-width: 74.625rem) {
  .main-header--row {
    height: 35px;
  }
}

.header-member-mobile {
  background: #8e0b56;
  height: 100%;
  color: white;
  text-decoration: none;
  margin-left: 8px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 12px;
  text-align: center;
}

.main-header__menu-toggle {
  right: 0;
  left: initial;
  background: none;
  border: none;
  fill: #8e0b56;
  height: 52px;
  padding: 14px;
}

.main-header__menu-toggle > span {
  font-size: 0;
}

.header-mobile-top {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header__logo.show-on-mobile {
  top: 2px;
  height: auto;
}

.main-header__logo.show-on-mobile svg {
  font-size: 9px;
}

.newsletter-mobile {
  color: white;
  margin: 4px 0 16px;
  border: 1px solid white;
  border-radius: 20px;
  display: inline-block;
  padding: 6px 12px;
  text-decoration: none;
}

.has-menu .main-header__menu-toggle {
  padding-top: 22px;
  fill: white;
  background: #1e1210;
}

.has-menu .header-mobile-top {
  padding: 16px 21px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  background: none;
}

.has-menu .header-mobile-top .form--search {
  background: none;
  width: 100%;
  flex-basis: 100%;
}

.has-menu .header-mobile-top input {
  border-radius: 16px;
  height: 2.5rem;
}

.has-menu .header-mobile-top button[type="submit"].button {
  height: 2.5rem;
}

.has-menu [aria-labelledby="block-frontpagemenulinks-menu"] {
  display: none;
}

.has-menu .main-header__menu {
  width: 80%;
  height: 100vh;
  right: 0;
  top: -1px;
  left: initial;
  background: #1e1210;
}

.has-menu .menu--root a {
  padding-left: 21px;
  text-transform: initial;
  font-size: 14px;
  font-weight: 600;
  padding-top: 16px;
  padding-bottom: 16px;
}

.has-menu .menu--root > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.has-menu .menu--root > li > a:after {
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.2s all ease-in;
}

.has-menu .menu--root .is-active:first-child {
  background: none;
  border-left: none;
}

.has-menu .menu--root .in-trail > .is-active ~ ul a {
  background: none;
  color: white;
}

.has-menu .menu--root .has-submenu {
  position: relative;
}

.has-menu .menu--root .has-submenu > a:after {
  content: "\f105";
  font-size: 1.25rem;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  position: absolute;
  top: 50%;
  right: 1rem;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: none !important;
}

.has-menu .menu--root .has-submenu.expanded .menu--sub {
  display: block;
  padding-left: 1rem;
}

.has-menu .menu--root .has-submenu.expanded > a:after {
  transform: translateY(-50%) rotate(90deg);
}

.has-menu .menu--root .menu-toggler {
  position: absolute;
  top: 0px;
  right: 8px;
  width: calc(100% - 16px);
  height: 3.6em;
  display: block;
}

.has-menu .menu--root .menu-toggler--small {
  width: 50%;
}

.has-menu .menu--root .menu--sub {
  display: none;
}

.has-menu .menu--root .menu--sub li {
  border-bottom: none;
}

.has-menu .menu--root .menu--sub li:before {
  display: none;
}

.has-menu .menu--root .menu--sub li a {
  font-size: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #1e1210;
  color: white;
}

.has-menu .menu--root .menu--sub li a:before {
  display: none;
}

.has-menu .menu--root .menu--sub li a:after {
  display: none;
}

.has-menu .menu--root.items--one li a, .has-menu .menu--root.items--more-than-one li a {
  text-transform: none;
}

.has-menu .info {
  padding: 12px 21px !important;
  color: white;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0;
}

.has-menu .info li {
  border-top: none;
  padding-left: 24px;
}

.has-menu .info li:before {
  width: 16px;
}

.has-menu .info li.loc:before {
  background-size: 12px;
  height: 36px;
}

.has-menu .info a {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.has-menu .main-header--languages {
  display: inline-block;
  padding: 14px;
  padding-left: 0;
}

.has-menu .main-header--languages > ul {
  list-style: none;
}

.has-menu .main-header--languages > ul > li {
  margin-right: 8px;
  display: inline-block;
  list-style: none;
}

.has-menu .main-header--languages > ul > li > a {
  background: none;
  color: gray;
  text-transform: uppercase;
}

.has-menu .main-header--languages > ul > li > a.active {
  background: none;
  color: white;
  text-decoration: underline;
}

.has-menu .main-header--social {
  justify-content: flex-end;
  padding: 10px 12px 0;
  height: auto;
}

.has-menu .main-header--social a {
  background: none;
  fill: rgba(255, 255, 255, 0.8);
}

.has-menu .header-copyright {
  text-align: right;
  padding: 12px;
  color: white;
}

.has-menu .mailto {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: 1rem;
}

body.about-us main {
  max-width: 1300px;
  margin: 0 auto;
}

body.about-us .page--title {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: left;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.25;
  padding: 0 1rem;
}

@media (min-width: 1440px) {
  body.about-us .page--title {
    padding: 0;
  }
}

body.about-us .view-staff {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
}

@media (min-width: 1440px) {
  body.about-us .view-staff {
    padding: 0;
  }
}

body.about-us .view-staff .row-staff {
  width: 100%;
  margin-bottom: 1rem;
}

body.about-us .view-staff .row-staff:nth-child(1n) {
  margin-right: 0;
}

body.about-us .view-staff .row-staff:not(:nth-child(1n)) {
  margin-right: 1%;
}

@media (min-width: 480px) {
  body.about-us .view-staff .row-staff {
    width: 49.5%;
    margin-bottom: 1%;
  }
  body.about-us .view-staff .row-staff:nth-child(2n) {
    margin-right: 0;
  }
  body.about-us .view-staff .row-staff:not(:nth-child(2n)) {
    margin-right: 1%;
  }
}

@media (min-width: 768px) {
  body.about-us .view-staff .row-staff {
    width: 32.66667%;
    margin-bottom: 1%;
  }
  body.about-us .view-staff .row-staff:nth-child(3n) {
    margin-right: 0;
  }
  body.about-us .view-staff .row-staff:not(:nth-child(3n)) {
    margin-right: 1%;
  }
}

@media (min-width: 990px) {
  body.about-us .view-staff .row-staff {
    width: 24.25%;
    margin-bottom: 1%;
  }
  body.about-us .view-staff .row-staff:nth-child(4n) {
    margin-right: 0;
  }
  body.about-us .view-staff .row-staff:not(:nth-child(4n)) {
    margin-right: 1%;
  }
}

@media (min-width: 1240px) {
  body.about-us .view-staff .row-staff {
    width: 19.2%;
    margin-bottom: 1%;
  }
  body.about-us .view-staff .row-staff:nth-child(5n) {
    margin-right: 0;
  }
  body.about-us .view-staff .row-staff:not(:nth-child(5n)) {
    margin-right: 1%;
  }
}

body.about-us .card-staff {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  height: 80vw;
  margin: 0;
  perspective: 600px;
  -webkit-perspective: 600px;
}

@media (min-width: 480px) {
  body.about-us .card-staff {
    height: 45vw;
  }
}

@media (min-width: 768px) {
  body.about-us .card-staff {
    height: 30vw;
  }
}

@media (min-width: 990px) {
  body.about-us .card-staff {
    height: 23vw;
  }
}

@media (min-width: 1240px) {
  body.about-us .card-staff {
    height: 236px;
  }
}

body.about-us .card-staff .name {
  font-weight: 600;
  font-size: 20px;
}

body.about-us .card-staff .job {
  font-size: 12px;
}

body.about-us .card-staff .phone > div,
body.about-us .card-staff .skype > div,
body.about-us .card-staff .email > div {
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: left center;
  padding-left: 20px;
}

body.about-us .card-staff .phone > div {
  background-image: url(../images/ic-phone.svg);
}

body.about-us .card-staff .email > div {
  background-image: url(../images/ic-mail.svg);
}

body.about-us .card-staff .skype > div {
  background-image: url(../images/ic-skype.svg);
}

body.about-us .card-staff .card {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  -webkit-transition: transform 1s;
  -moz-transition: transform 1s;
  -ms-transition: transform 1s;
  -o-transition: transform 1s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

body.about-us .card-staff .card:hover {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}

body.about-us .card-staff .card .card-main,
body.about-us .card-staff .card .card-reverse {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.about-us .card-staff .card .card-main {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

body.about-us .card-staff .card .card-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body.about-us .card-staff .card .card-main .inf {
  max-height: 65px;
  padding: 7px;
  margin-top: auto;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
  background-image: url(../images/ic-plus.svg);
  background-size: 20px;
  background-position: 95% center;
  background-repeat: no-repeat;
  padding-right: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.about-us .card-staff .card .card-main .inf .job > div {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

body.about-us .card-staff .card .card-reverse {
  color: white;
  color: #f7f7f7;
  padding: 1rem;
  background: #8e0b56;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

body.about-us .card-staff .card .card-reverse .reverse-inf {
  font-size: 14px;
  margin-top: auto;
}

@media screen and (min-width: 1193px) {
  .block-featured-events-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
  }
}

.block-featured-events-list .views-row {
  margin-bottom: 1em;
}

@media screen and (min-width: 1193px) {
  .block-featured-events-list .views-row {
    margin-bottom: auto;
  }
}

.block-featured-events-list .views-row .event-fields__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 71px;
}

.block-featured-events-list .views-row .event-fields__title a {
  text-transform: inherit;
  background-color: transparent;
  text-decoration: none;
  color: #8E0B56;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0.2em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 600;
  font-size: 15px;
}

@media screen and (min-width: 1193px) {
  .block-featured-events-list .views-row .event-fields__title a {
    font-size: 16px;
  }
}

.block-featured-events-list .views-row .event-image__image {
  margin-top: 0.4em;
  margin-bottom: 1rem;
}

.block-featured-events-list .views-row .views-field-view-node {
  margin-top: 0.5rem;
}

.block-featured-events-list .views-row .views-field-view-node a {
  border-radius: 20px;
  border: 1px solid #8e0b56;
  padding: .5rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8e0b56;
  text-decoration: none;
  outline: 0;
  backround-color: transparent;
  display: inline-block;
}

.block-featured-events-list .views-row .views-field-view-node a:hover, .block-featured-events-list .views-row .views-field-view-node a:active {
  color: #f7f7f7;
  background-color: #8e0b56;
  transition: background-color .6 ease-in;
}

.views-news--full .view-items-group {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0;
}

@media (min-width: 480px) {
  .views-news--full .view-items-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .views-news--full .view-items-group {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.views-news--full .view-items-group:before {
  content: none;
}

.views-news--full .view-items-group > * {
  min-width: 0;
}

.views-news--full .view-items-group .block--column {
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.views-news--latest-cooperative {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0;
}

@media (min-width: 480px) {
  .views-news--latest-cooperative {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .views-news--latest-cooperative {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1170px) {
  .views-news--latest-cooperative {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.views-news--latest-cooperative:before {
  content: none;
}

.views-news--latest-cooperative > * {
  min-width: 0;
}

.media #block-pagetitle {
  padding: 0 16px 0 0;
}

@media (min-width: 1440px) {
  .media #block-pagetitle {
    padding: 0;
  }
}

.media .page--title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  color: #1e1210;
  text-align: left;
  border-bottom: 1px solid #b0aeb5;
  padding: 0.2em;
}

.media #block-titletexteventspage,
.media h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 300;
}

.media .pagination--advanced,
.media header {
  width: 100%;
}

.media .exposed-filter p {
  padding-left: 10px;
}

@media screen and (max-width: 1193px) {
  header nav ul.menu--root > li > a {
    background: #8E0B56;
    border-radius: 0px 10px 0px 0px;
    cursor: pointer;
  }
  header nav ul.menu--root > li > a:hover {
    background: #F2F2F2;
    color: black;
  }
  header nav ul.menu--root > li > a.is-active, header nav ul.menu--root > li > a.is-active:first-child {
    background: #F2F2F2;
    color: black;
    border: 1px solid #8E0B56;
  }
}

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