/* Theme CSS */

html {
  --page-width: 978px;
  --input-placeholder-font-color: #ccc;
}
* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
html {
  width: 100%;
  height: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  vertical-align: top;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
input[type="button"],
input[type="submit"],
button,
textarea,
select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
textarea,
select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: white;
}
input[type="button"],
input[type="submit"],
button {
  padding: 10px 14px;
  border: 1px solid #ddd;
}
button {
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: visible;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
}
h1 > strong {
  font-weight: inherit;
  font-style: inherit;
}
.content-area {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: 50% 50%;
}
.content-area > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 32px 0;
}
.content-area > .wrapper > .widget:last-child {
  margin-bottom: 0;
}
.content-area > .wrapper > h1,
.layout-container .layout-item-container > h1 {
  margin-bottom: 24px;
}
.content-area.mini-height > .wrapper,
.content-area.small-height > .wrapper,
.content-area.medium-height > .wrapper {
  height: 100%;
}
.content-area.full-height > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100vh;
}
.content-area.hero.full-height {
  height: 100%;
}
.content-area.hero.three-quarters-height {
  height: 75vh;
}
.content-area.hero.three-quarters-height > .wrapper {
  height: 75vh;
}
.content-area.hero.eighty-percent-height {
  height: 80vh;
}
.content-area.hero.eighty-percent-height > .wrapper {
  height: 80vh;
}
.content-area.hero.medium-height {
  height: 600px;
}
.content-area.hero.small-height {
  height: 400px;
}
.content-area.hero.mini-height {
  height: 300px;
}
.content-area.hero.fixed-position > .wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.content-area.hero.style-center {
  display: flex;
  display: -webkit-flex;
}
.content-area.hero.style-center > .wrapper {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.content-area.hero > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.content-area.hero > .background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
.content-area.hero > .wrapper {
  z-index: 10;
}
.content-area.full-width > .wrapper {
  width: 100%;
  max-width: 100%;
}
.content-area.full-width > .wrapper > h1 {
  max-width: var(--page-width);
  margin: 0 auto;
  margin-bottom: 24px;
}
.content-area.min-padding > .wrapper {
  padding: 12px 0;
}
.content-area.max-padding > .wrapper {
  padding: 32px 96px;
}
.content-area.no-padding > .wrapper {
  padding: 0;
}
.content-area.article {
  padding-top: 240px;
}
.content-area.page-width-thin > .wrapper > * {
  width: 100%;
  max-width: 720px;
}
/*.content-area.page-width-thin.center-contents > .wrapper {
	.display-flex();
	.flex-direction(column);
	.align-items(center);
}*/
.content-area.page-width-dialog {
  min-height: 100vh;
  padding-top: 180px;
}
.content-area.page-width-dialog > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  max-width: 580px;
  padding: 32px;
  margin-bottom: 32px;
}
.content-area-header {
  margin-bottom: 24px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
.content-area.no-top-padding > .wrapper {
  padding-top: 0;
}
.content-area.no-bottom-padding > .wrapper {
  padding-bottom: 0;
}
.content-area.bg-carousel > .backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.content-area.bg-carousel > .backgrounds .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-position: center center;
  transition: opacity 2s;
}
.content-area.bg-carousel[data-bg-index="0"] > .backgrounds .bg:nth-child(1) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="1"] > .backgrounds .bg:nth-child(2) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="2"] > .backgrounds .bg:nth-child(3) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="3"] > .backgrounds .bg:nth-child(4) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="4"] > .backgrounds .bg:nth-child(5) {
  opacity: 1;
}
.content-area.bg-carousel[data-bg-index="5"] > .backgrounds .bg:nth-child(6) {
  opacity: 1;
}
/* Mobile */
html.mobile .content-area > .wrapper {
  max-width: unset;
  padding: 32px 16px;
  width: 100%;
  overflow: hidden;
}
html.mobile .content-area.full-width.no-padding > .wrapper > h1 {
  width: 100%;
  margin-left: 16px;
  margin-right: 16px;
}
html.mobile .content-area.page-width-dialog {
  padding-bottom: 32px;
  padding-top: 120px;
}
html.mobile .content-area.page-width-dialog > .wrapper {
  margin-left: var(--mobile-gutter, 16px);
  margin-right: var(--mobile-gutter, 16px);
  width: calc(100% - (2 * var(--mobile-gutter, 16px)));
  margin-bottom: 0;
}
html.mobile .content-area.hero.style-center > .wrapper {
  padding-left: 32px;
  padding-right: 32px;
}
html.mobile .content-area.no-padding > .wrapper {
  padding: 0;
}
/* General */
.layout-container > .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
/* Desktop */
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-container.page-width.widgets-center > .wrapper .layout-item.container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.layout-container.page-width.widgets-center.direction-horizontal > .wrapper .layout-item-container {
  align-items: unset;
  -webkit-align-items: unset;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-container.page-width .layout-item-container > .widget,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget {
  margin-bottom: var(--widget-spacing, 0);
}
.layout-container.page-width .layout-item-container > .widget:last-child,
.layout-container.page-width .layout-item-container > .mfe-edit-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-sidebar > .main {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: var(--main-sidebar-spacing, 80px);
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-sidebar.main-widget-stretch > .main {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-sidebar.main-widget-stretch > .main .layout-item-container {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
.layout-sidebar > .main > .layout-item-container {
  /*.display-flex();
	.flex-direction(column);*/
  display: block;
}
.layout.layout-sidebar > .layout-item.sidebar {
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  padding: var(--padding, 0) !important;
  z-index: 100;
  margin-bottom: 0;
  overflow: hidden;
}
.layout.layout-sidebar > .layout-item.sidebar .layout-item-container {
  background: none;
}
.layout.layout-sidebar .layout-item-container > .widget {
  margin-bottom: var(--widget-margin-bottom, var(--widget-spacing, 0));
}
.layout.layout-sidebar .layout-item-container > .widget:last-child {
  margin-bottom: 0px;
}
.layout-sidebar[data-sticky-sidebar="true"] > .sidebar {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  position: sticky;
  top: 0;
}
.layout-3columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-3columns > .layout-item {
  display: flex;
  display: -webkit-flex;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  margin-bottom: 0px;
  padding: 24px;
  z-index: 100;
  background: none;
}
.layout.layout-3columns > .layout-item .layout-item-container {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
  background: none;
}
.layout-3columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-trinity {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout.layout-trinity > .left {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 32px;
  margin-bottom: 0;
  padding: 24px;
  z-index: 100;
  background: white;
}
.layout-trinity > .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 320px;
  -webkit-flex-basis: 320px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.layout-trinity > .right .layout-item:last-child {
  margin-bottom: 0;
}
.layout-trinity > .right .top {
  z-index: 100;
  margin-bottom: 32px;
}
.layout.layout-trinity > .right .bottom {
  z-index: 100;
}
.layout .layout-item {
  background: white;
  padding: 24px;
}
.layout .layout-item > h1,
.layout .layout-item-container > h1 {
  margin-bottom: 14px;
}
.layout .layout-item.no-padding,
.layout .layout-item .layout-item-container.no-padding {
  padding: 0 !important;
}
.layout .layout-item.no-margin,
.layout .layout-item .layout-item-container.no-margin {
  margin: 0 !important;
}
.layout .layout-item.no-bg {
  background: none !important;
}
.layout .layout-item-container {
  padding: 24px;
  margin-bottom: 24px;
}
.layout .layout-item.layout-grow,
.layout .layout-item .layout-item-container.layout-grow {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
.layout-2columns {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-2columns > .layout-item .layout-item-container {
  background: none;
}
.layout-2columns > .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-2columns > .layout-item.align-center-vertical {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
.layout-2columns > .layout-item:last-child {
  margin-right: 0;
}
.layout-pyramid-1-3 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .top {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.layout-pyramid-1-3 .bottom {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.layout-pyramid-1-3 .bottom .layout-item {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  margin-right: 80px;
  padding: 24px;
  z-index: 100;
  background: none;
  margin-bottom: 0;
}
.layout-pyramid-1-3 .bottom .layout-item:last-child {
  margin-right: 0;
}
.layout {
  height: var(--layout-height, auto);
}
/* Mobile */
html.mobile .layout-sidebar {
  display: block;
}
html.mobile .layout-sidebar > .main {
  margin-right: 0;
}
html.mobile .layout-sidebar > .sidebar {
  display: none;
}
html.mobile .layout {
  margin-left: 0;
  margin-right: 0;
}
html.mobile .layout-3columns {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: auto;
}
html.mobile .layout.layout-3columns > .layout-item {
  margin-right: 0;
  margin-bottom: 64px;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile .layout.layout-3columns > .layout-item:last-child {
  margin-bottom: 0;
}
html.mobile .layout-2columns {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile .layout.layout-2columns > .layout-item {
  margin-right: 0;
  flex-basis: unset;
  -webkit-flex-basis: unset;
  margin-bottom: 32px;
}
html.mobile .layout.layout-2columns > .layout-item:last-child {
  margin-bottom: 0;
}
.ui-accordion {
  background: #fafafa;
  width: 100%;
}
.ui-accordion .group .header {
  padding: 16px;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.ui-accordion .group .header svg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 16px;
}
.ui-accordion .group .items {
  display: none;
}
.ui-accordion .group.open .items {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-open {
  display: none;
}
.ui-accordion .group.open .header .icon-open {
  display: block;
}
.ui-accordion .group:not(.open) .header .icon-closed {
  display: block;
}
.ui-accordion .group.open .header .icon-closed {
  display: none;
}
.ui-accordion .group .items {
  background: white;
}
.ui-accordion .group .items .widget.menu .content .menu {
  display: flex;
  flex-direction: column;
}
:root {
  --mobile-gutter: 16px;
}
html {
  overflow-y: scroll;
}
#page-dim {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#page-dim.show {
  opacity: 1;
  pointer-events: all;
}
#hero-widget > .widget {
  height: 100vh;
}
header#header {
  height: var(--header-height, 48px);
}
header#header > .placeholder {
  height: inherit;
}
header#header > .container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50000;
  height: inherit;
  background-color: var(--background-color, var(--header-background-color));
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 4px 0px;
}
header#header > .container > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.full-width > .container > .wrapper {
  max-width: 100%;
  width: 100%;
}
header#header > .container > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header > .container .right {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header > .container .right .search {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  overflow: hidden;
}
header#header > .container .search button {
  height: 100%;
}
header#header > .container .search button > div {
  padding: 0 16px;
}
header#header > .container .search button > div svg {
  font-size: var(--menu-item-font-size, 16px);
  color: var(--menu-item-font-color, var(--link-font-color));
}
header#header > .container .widget.menu li.search button > div svg {
  font-size: inherit;
  color: inherit;
}
header#header > .container .search-input-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 32px 0;
  opacity: 0;
  pointer-events: none;
}
header#header > .container .search-input-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 999999999999;
}
header#header > .container .search-input-container > .wrapper {
  display: flex;
  display: -webkit-flex;
  margin: 0 auto;
  max-width: var(--page-width);
  padding-bottom: 32px;
}
header#header > .container .search-input-container > .wrapper .widget.search-input {
  width: 100%;
}
header#header .identity {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
  margin-right: 24px;
}
header#header .identity .logo,
header#header .identity .logo > a,
header#header .identity .title {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .identity img {
  height: calc(100% - 8px);
  margin-right: 12px;
  max-height: 98px;
  max-width: 240px;
}
header#header .identity h1 {
  font-family: var(--title-font-family, "Source Sans Pro", Arial, sans-serif);
  font-size: var(--title-font-size, 24px);
  color: var(--title-font-color, black);
  font-weight: var(--title-font-weight, 900);
  text-transform: var(--title-font-transform, uppercase);
}
header#header .identity h1 a {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: inherit;
}
header#header .wrapper nav {
  height: 100%;
}
header#header .wrapper nav ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
header#header .left .widget.menu,
header#header .left .widget.menu .content,
header#header .right .widget.menu,
header#header .right .widget.menu .content {
  height: 100%;
}
header#header .left .menu-left,
header#header .right .menu-right {
  height: 100%;
}
header#header .wrapper nav ul li.item {
  display: block;
}
header#header .wrapper nav ul li.item.icon svg {
  font-size: 16px;
  margin-right: 6px;
}
header#header .wrapper nav ul li.item a,
header#header .wrapper nav ul li > button > div {
  display: flex;
  text-transform: uppercase;
  height: 100%;
  align-items: center;
  padding: 0 12px;
  /* Use H3 as fallback */
  font-family: var(--menu-item-font-family, var(--h3-font-family));
  color: var(--menu-item-font-color, var(--h3-font-color));
  font-size: var(--menu-item-font-size, var(--h3-font-size));
  text-transform: var(--menu-item-text-transform, var(--h3-text-transform));
  line-height: var(--menu-item-line-height, var(--h3-line-height));
  font-weight: var(--menu-item-font-weight, var(--h3-font-weight));
  font-style: var(--menu-item-font-style, var(--h3-font-style));
}
header#header .wrapper nav ul li.search-input > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100%;
}
header#header .wrapper nav ul li.item:not(.selected) a:hover,
header#header .wrapper nav ul li:not(.selected) > button > div:hover {
  color: #ff0032;
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-hover-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-hover-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-hover-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-hover-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-hover-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-hover-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-hover-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
header#header .wrapper nav ul li.selected {
  /* box-shadow: 0px -3px 0px 0px rgb(255, 0, 50) inset; */
}
header#header .wrapper nav ul li.selected a {
  /* Use normal item, then H3 as fallback */
  font-family: var(--menu-item-selected-font-family, var(--menu-item-font-family, var(--h3-font-family)));
  color: var(--menu-item-selected-font-color, var(--menu-item-font-color, var(--h3-font-color)));
  font-size: var(--menu-item-selected-font-size, var(--menu-item-font-size, var(--h3-font-size)));
  text-transform: var(--menu-item-selected-text-transform, var(--menu-item-text-transform, var(--h3-text-transform)));
  line-height: var(--menu-item-selected-line-height, var(--menu-item-line-height, var(--h3-line-height)));
  font-weight: var(--menu-item-selected-font-weight, var(--menu-item-font-weight, var(--h3-font-weight)));
  font-style: var(--menu-item-selected-font-style, var(--menu-item-font-style, var(--h3-font-style)));
}
/*
  Header - Large
*/
header#header.large {
  position: relative;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 266px;
}
header#header.large > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 32px;
}
header#footer.large .left {
  flex-grow: 0;
  -webkit-flex-grow: 0;
  justify-content: center;
  -webkit-justify-content: center;
  display: block;
  overflow: hidden;
}
header#header.large .right {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 48px;
}
header#header.large .identity {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
header#header.large .wrapper .identity h1 {
  margin-top: 14px;
}
header#header.large .identity img {
  width: unset;
  height: unset;
  object-fit: unset;
  margin-right: 0;
  max-height: 100%;
  border-radius: 3px;
}
/*
  Header - Hero
*/
header#header.style-hero {
  height: 106px;
  position: absolute;
}
header#header.style-hero > .placeholder {
  height: 0;
}
header#header.style-hero > .container {
  background: none;
  box-shadow: none;
  transition: height 0.4s, background 0.4s;
}
header#header.style-hero > .container > .wrapper {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
body.mfe-theme-header-small header#header.style-hero > .container > .wrapper .identity img {
  max-height: calc(100% - 8px);
}
body.mfe-theme-header-small header#header.style-hero > .container {
  height: 48px;
  background-color: var(--background-color);
}
/*
  Header - Tall
*/
header#header.style-tall {
  height: 106px;
}
header#header.style-tall > .placeholder {
  height: 106px;
}
footer#footer {
  padding: 36px 0;
  background-color: #c0bdbf;
  color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
footer#footer > .wrapper {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  margin: 0 auto;
}
footer#footer .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer .powered-by a {
  font-size: inherit;
}
footer#footer.style-social-logos > .wrapper .menu-social > h2,
footer#footer.style-social-logos > .wrapper .logos > h2 {
  margin-bottom: 16px;
}
footer#footer.style-social-logos > .wrapper .menu-social {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.style-social-logos > .wrapper .menu-social ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon a {
  width: 48px;
  height: 48px;
  display: flex;
  display: -webkit-flex;
  font-size: 26px;
  background: rgba(93, 93, 93, 0.09);
  border-radius: 48px;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #7a7a7a;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 8px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon:last-child {
  margin-right: 0;
}
footer#footer.style-social-logos > .wrapper .logos {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
footer#footer.style-social-logos > .wrapper .logos .links {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.style-social-logos > .wrapper .logos figure {
  margin-left: 32px;
}
footer#footer.style-social-logos > .wrapper .logos figure img {
  max-width: 120px;
  max-height: 120px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) {
  margin-top: 16px;
  font-size: 14px;
}
footer#footer.style-social-logos > .wrapper:nth-child(2) .powered-by .mfe-icon {
  margin-right: 0;
  margin-left: 4px;
}
footer#footer.style-default > .wrapper > div {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  margin-right: 32px;
}
footer#footer.style-default > .wrapper > div:last-child {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  margin-right: 0;
}
footer#footer.style-default > .wrapper > div > div {
  margin-bottom: 32px;
}
footer#footer.style-default > .wrapper > div > div > h1,
footer#footer.style-default > .wrapper > div > div > h2 {
  margin-bottom: 10px;
}
footer#footer.style-default > .wrapper > div > div:last-child {
  margin-bottom: 0;
}
footer#footer.style-simple > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
footer#footer.style-simple .widget.menu ul.menu li {
  padding: 12px;
}
footer#footer.style-simple .menu-top {
  margin-bottom: 16px;
}
footer#footer.bigfoot {
  padding: 0;
  color: white;
}
footer#footer.bigfoot > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: unset;
}
footer#footer.bigfoot > .wrapper a:hover {
  opacity: 0.6;
}
footer#footer.bigfoot > .wrapper .newsletter,
footer#footer.kinder-v2 > .wrapper .newsletter {
  background-color: #fafafa;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: var(--page-width);
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 440px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left h2,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left h2 {
  margin-bottom: 8px;
}
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p,
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p {
  color: #222;
  font-size: 16px;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form .email input,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form .email input {
  background: white;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"],
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"] {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right form input[type="submit"]:hover {
  background-color: #777777;
  border-color: #777777;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro {
  margin-bottom: 0;
}
footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right .intro img,
footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right .intro img {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%);
  margin-left: 0;
  max-width: 120px;
  max-height: 120px;
}
footer#footer.bigfoot > .wrapper .top {
  background-color: #444;
}
footer#footer.bigfoot > .wrapper .top > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding: 48px 0;
}
footer#footer.bigfoot > .wrapper .top .logo {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer#footer.bigfoot > .wrapper .top .logo img {
  max-height: 32px;
}
footer#footer.bigfoot > .wrapper .top .social {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
footer#footer.bigfoot .top .social .widget.menu ul {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
footer#footer.bigfoot .top .social .widget.menu .item a {
  padding: 0 16px;
  color: inherit;
}
footer#footer.bigfoot > .wrapper .bottom {
  background-color: #222;
}
footer#footer.bigfoot > .wrapper .bottom h2 {
  color: inherit;
  margin-bottom: 16px;
  font-size: 18px;
}
footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding-top: 64px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-bottom: 64px;
  text-align: right;
  font-size: 14px;
  margin-top: 32px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by .mfe-icon {
  margin-right: 8px;
}
footer#footer.bigfoot > .wrapper .bottom > .powered-by a {
  font-size: inherit;
}
footer#footer.bigfoot > .wrapper .bottom .column {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
  margin-right: 32px;
}
footer#footer.bigfoot > .wrapper .bottom .column:last-child {
  margin-right: 0;
}
footer#footer.bigfoot .bottom .widget.menu .item a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  color: inherit;
}
footer#footer.bigfoot .top .social .widget.menu .item.icon a svg {
  font-size: 32px;
}
section#content.with-background {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)), var(--background-image);
  background-attachment: fixed, var(--background-attachment, fixed);
  background-position: 0 0, var(--background-position, 50% 50%);
  background-size: 100% 200px, var(--background-size, cover);
  background-repeat: no-repeat;
  background-color: var(--background-color);
}
section.thin > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
section.thin.bg-1 {
  background-color: #032c3a;
  color: white;
}
section.thin.bg-2 {
  background-color: #a7a7a7;
  color: white;
}
section.thin.bg-3 {
  background-color: #1d1d1d;
  color: white;
}
.bg-4 {
  background-color: #a9caf5;
}
b.mfe-menu-icon {
  display: block;
  width: 21px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
b.mfe-menu-icon > span,
b.mfe-menu-icon::after,
b.mfe-menu-icon::before {
  border-radius: 0;
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
  background-color: #ffffff;
}
b.mfe-menu-icon > span {
  text-indent: -9999px;
}
header#header.menu-open .right b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.menu-open .right b.mfe-menu-icon > span {
  opacity: 0;
}
.ui-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-regular-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-italic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-italic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-medium-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'MobySans';
  src: url('/static/webfonts/mobysans/mobysans-bold-webfont.woff2') format('woff2'), url('/static/webfonts/mobysans/mobysans-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-light-webfont.eot');
  src: url('/static/webfonts/europa/europa-light-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-light-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-light-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-light-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-light-webfont.svg#europalight') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-lightitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-lightitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-lightitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-lightitalic-webfont.svg#europalightitalic') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regular-webfont.eot');
  src: url('/static/webfonts/europa/europa-regular-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regular-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regular-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regular-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regular-webfont.svg#europaregular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-regularitalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-regularitalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-regularitalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-regularitalic-webfont.svg#europaitalic') format('svg');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bold-webfont.eot');
  src: url('/static/webfonts/europa/europa-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bold-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bold-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bold-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bold-webfont.svg#europabold') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Europa';
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot');
  src: url('/static/webfonts/europa/europa-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff2') format('woff2'), url('/static/webfonts/europa/europa-bolditalic-webfont.woff') format('woff'), url('/static/webfonts/europa/europa-bolditalic-webfont.ttf') format('truetype'), url('/static/webfonts/europa/europa-bolditalic-webfont.svg#europabolditalic') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold.svg#webfont') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Bold-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Bold-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Bold-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Bold-Italic.svg#webfont') format('svg');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book.woff') format('woff'), url('/static/webfonts/futura/Futura-Book.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book.svg#webfont') format('svg');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Book-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Book-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Book-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Book-Italic.svg#webfont') format('svg');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light.woff') format('woff'), url('/static/webfonts/futura/Futura-Light.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light.svg#webfont') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Light-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Light-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Light-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Light-Italic.svg#webfont') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium.svg#webfont') format('svg');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url('/static/webfonts/futura/Futura-Medium-Italic.eot?#iefix') format('embedded-opentype'), url('/static/webfonts/futura/Futura-Medium-Italic.woff') format('woff'), url('/static/webfonts/futura/Futura-Medium-Italic.ttf') format('truetype'), url('/static/webfonts/futura/Futura-Medium-Italic.svg#webfont') format('svg');
  font-weight: 500;
  font-style: italic;
}
header#header.standard-header-v2 {
  height: var(--header-height, 48px);
}
header#header.standard-header-v2 .identity .logo.hide {
  display: none;
}
header#header.standard-header-v2 .identity .title a,
header#header.standard-header-v2 .identity .sub-title a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}
header#header.standard-header-v2 .identity {
  margin-right: 8px;
}
header#header.standard-header-v2 .identity .title {
  font-family: var(--title-font-family);
  color: var(--title-font-color);
  font-size: var(--title-font-size);
  text-transform: var(--title-text-transform);
  line-height: var(--title-line-height);
  font-weight: var(--title-font-weight);
  font-style: var(--title-font-style);
}
header#header.standard-header-v2 .identity .sub-title {
  font-family: var(--sub-title-font-family);
  color: var(--sub-title-font-color);
  font-size: var(--sub-title-font-size);
  text-transform: var(--sub-title-text-transform);
  line-height: var(--sub-title-line-height);
  font-weight: var(--sub-title-font-weight);
  font-style: var(--sub-title-font-style);
}
body > .default-body-v2 {
  background-color: var(--body-background-color);
  background-image: var(--body-background-image);
}
header#header[data-setting-width="full-width"] > .container > .wrapper {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
:root {
  --body-font-family: 'Gilroy';
  --body-font-color: #ffffff;
  --body-font-size: 16px;
  --body-text-transform: none;
  --body-line-height: 1.40;
  --body-font-weight: 300;
  --link-font-family: 'Gilroy';
  --link-font-color: gray;
  --link-font-size: 16px;
  --link-text-transform: none;
  --link-line-height: 1.20;
  --link-font-weight: 400;
  --link-hover-font-family: 'Gilroy';
  --link-hover-font-color: #ffffff;
  --link-hover-font-size: 16px;
  --link-hover-text-transform: none;
  --link-hover-line-height: 1.20;
  --link-hover-font-weight: 400;
  --h1-font-family: 'Gilroy';
  --h1-font-color: #ffffff;
  --h1-font-size: 54px;
  --h1-line-height: 1.20;
  --h1-font-weight: 700;
  --h2-font-family: 'Gilroy';
  --h2-font-color: #ffffff;
  --h2-font-size: 36px;
  --h2-line-height: 1.20;
  --h2-font-weight: 700;
  --h3-font-family: 'Gilroy';
  --h3-font-color: #ffffff;
  --h3-font-size: 24px;
  --h3-line-height: 1.40;
  --h3-font-weight: 700;
  --wc-title-font-family: 'Gilroy';
  --wc-title-font-color: #ffffff;
  --wc-title-fullimage-font-family: 'Gilroy';
  --wc-title-fullimage-font-color: #ffffff;
  --wc-summary-font-family: 'Gilroy';
  --wc-summary-font-color: #ffffff;
  --wc-metadata-font-family: 'Gilroy';
  --wc-metadata-font-color: #ffffff;
  --article-summary-font-family: 'Gilroy';
  --article-summary-font-color: #ffffff;
  --article-metadata-font-family: 'Gilroy';
  --article-metadata-font-color: #ffffff;
}
h1 {
  font-family: var(--h1-font-family);
  color: var(--h1-font-color);
  font-size: var(--h1-font-size);
  text-transform: var(--h1-text-transform);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-font-weight);
  font-style: var(--h1-font-style);
}
h2 {
  font-family: var(--h2-font-family);
  color: var(--h2-font-color);
  font-size: var(--h2-font-size);
  text-transform: var(--h2-text-transform);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-font-weight);
  font-style: var(--h2-font-style);
}
h3 {
  font-family: var(--h3-font-family);
  color: var(--h3-font-color);
  font-size: var(--h3-font-size);
  text-transform: var(--h3-text-transform);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-font-weight);
  font-style: var(--h3-font-style);
}
html,
body {
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  font-size: var(--body-font-size);
  text-transform: var(--body-text-transform);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  font-style: var(--body-font-style);
}
a {
  font-family: var(--link-font-family);
  color: var(--link-font-color);
  font-size: var(--link-font-size);
  text-transform: var(--link-text-transform);
  line-height: var(--link-line-height);
  font-weight: var(--link-font-weight);
  font-style: var(--link-font-style);
}
a:hover {
  /* Fallback to normal link */
  font-family: var(--link-font-family);
  color: var(--link-font-color);
  font-size: var(--link-font-size);
  text-transform: var(--link-text-transform);
  line-height: var(--link-line-height);
  font-weight: var(--link-font-weight);
  font-style: var(--link-font-style);
  font-family: var(--link-hover-font-family);
  color: var(--link-hover-font-color);
  font-size: var(--link-hover-font-size);
  text-transform: var(--link-hover-text-transform);
  line-height: var(--link-hover-line-height);
  font-weight: var(--link-hover-font-weight);
  font-style: var(--link-hover-font-style);
}
::-webkit-input-placeholder {
  color: var(--input-placeholder-font-color);
}
::-moz-placeholder {
  color: var(--input-placeholder-font-color);
}
:-ms-input-placeholder {
  color: var(--input-placeholder-font-color);
}
:-moz-placeholder {
  color: var(--input-placeholder-font-color);
}
.widget.cms-fragments .fragment.cms-text p {
  margin-bottom: 16px;
}
.widget.cms-fragments .fragment.cms-text h1 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 22px;
}
.widget.cms-fragments .fragment.cms-text h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.widget.cms-fragments .fragment.cms-text h3 {
  margin-top: 6px;
  margin-bottom: 16px;
}
.widget.cms-fragments .fragment.cms-quote {
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 26px;
  color: #777;
  line-height: 1.6;
  padding-left: 60px;
  padding-right: 60px;
  font-style: italic;
}
.widget.cms-fragments .fragment.cms-image {
  margin-top: 12px;
  margin-bottom: 24px;
}
.widget.cms-fragments .fragment.cms-image img {
  max-width: 100%;
}
html.desktop header#header .right .mobile-menu {
  display: none;
}
html.desktop header#header .right .mobile-search {
  display: none;
}
html.mobile header#header .right .widget.menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
}
html.mobile header#header.style-tall {
  height: 64px;
}
html.mobile header#header > .container > .wrapper .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header > .container > .wrapper .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header > .container > .wrapper .left {
  padding-left: 10px;
}
html.mobile header#header > .container > .wrapper .right {
  padding-right: 10px;
}
html.mobile header#header.style-tall > .container > .wrapper {
  position: relative;
}
html.mobile header#header > .container > .wrapper .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header .right .mobile-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: white;
  height: auto;
  padding: 0 16px 16px 16px;
  display: none;
}
html.mobile header#header .right .mobile-menu,
header#header.classy .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header .right .mobile-menu button > div,
header#header.classy .mobile-menu button > div {
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header.search-open .right .mobile-search {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.menu-open .right .widget.menu {
  display: block;
}
html.mobile header#header .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: 1px solid #eee;
}
html.mobile header#header .right .widget.menu ul li:last-child {
  border-bottom: none;
}
html.mobile header#header .right .widget.menu ul li a {
  padding: 12px;
}
html.mobile header#header > .container > .wrapper .right .search button > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  padding: 12px;
  font-size: 24px;
}
html.mobile header#header > .container > .wrapper .right .search button > div svg {
  font-size: inherit;
  color: inherit;
}
html.mobile footer#footer.style-social-logos > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  margin-left: 16px;
  margin-right: 16px;
  text-align: center;
}
html.mobile footer#footer.style-social-logos > .wrapper .menu-social {
  margin-bottom: 32px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure {
  margin-bottom: 16px;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos figure img {
  max-height: unset;
  width: 100%;
}
html.mobile footer#footer.style-social-logos > .wrapper .logos .links figure:first-child {
  margin-left: 0;
}
html.mobile footer#footer.bigfoot {
  padding: 0;
  color: white;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column {
  min-width: 34%;
  margin-bottom: 32px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(2) {
  margin-right: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(3),
html.mobile footer#footer.bigfoot > .wrapper .bottom .column:nth-child(4) {
  margin-bottom: 0;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .wrapper {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 32px 16px 0 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .bottom > .powered-by {
  text-align: left;
  padding: 0 16px 16px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .top > .wrapper {
  padding: 32px 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  width: 100%;
  max-width: 100%;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .right,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .right {
  margin-left: 0;
  margin-bottom: 64px;
}
html.mobile footer#footer.bigfoot > .wrapper .newsletter > .wrapper .left p,
html.mobile footer#footer.kinder-v2 > .wrapper .newsletter > .wrapper .left p {
  margin-bottom: 16px;
}
footer .logo-svg-ttl {
  height: 1.8em;
  width: auto;
  vertical-align: middle;
  margin-bottom: 2px;
}
footer#footer .powered-by a {
  font-size: inherit;
  color: inherit;
}
footer#footer.footer-coral {
  padding: 0;
}
footer#footer.footer-coral > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: 100%;
}
footer.footer-coral .top > .wrapper,
footer.footer-coral .bottom > .wrapper,
footer.footer-coral .powered-by > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
footer.footer-coral .top,
footer.footer-coral .bottom,
footer.footer-coral .powered-by {
  padding: 32px 0;
}
footer.footer-coral .top > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer.footer-coral .top > .wrapper .left,
footer.footer-coral .top > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
footer.footer-coral .top > .wrapper .left {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
footer.footer-coral .top > .wrapper .left .newsletter-description {
  margin-bottom: 8px;
}
footer.footer-coral .top > .wrapper .right {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
footer.footer-coral #mc-embedded-subscribe-form {
  display: flex;
  display: -webkit-flex;
}
footer.footer-coral .widget.menu ul li.icon a {
  width: 52px;
  height: 52px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 16px;
  border-radius: 99px;
  font-size: 24px;
}
footer#footer.large {
  padding: 0;
  color: #ffffff;
  background-color: #161616;
  margin-top: 84px;
}
footer#footer.large .logos {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
footer#footer.large .logos a {
  margin-right: 64px;
}
footer#footer.large .logos img {
  height: 80px;
}
footer#footer.large .logos a:last-child {
  margin-right: 0;
}
footer#footer.large > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  max-width: 100%;
}
footer#footer.large .menus-row {
  display: flex;
  display: -webkit-flex;
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menus-row .menu-social {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: var(--page-width);
}
footer#footer.large .menus-row .menu-social ul.menu {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
footer#footer.large .menu-social {
  max-width: var(--page-width);
}
footer#footer.large .menu-social ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 72px;
  padding-bottom: 32px;
}
footer#footer.large .menu-social ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menu-top {
  max-width: var(--page-width);
  width: 100%;
}
footer#footer.large .menu-top ul.menu {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
footer#footer.large .menu-top ul.menu li a {
  padding-left: 16px;
  padding-right: 16px;
}
footer#footer.large .menus-row > .menu-top {
  width: auto;
  max-width: unset;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
footer#footer.large .contact {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  width: 100%;
  color: #808080;
  font-size: 14px;
  line-height: 1.575;
  font-weight: 500;
  padding: 32px 0;
}
footer#footer.large .contact .left,
footer#footer.large .contact .right {
  flex-basis: 0;
  -webkit-flex-basis: 0;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer#footer.large .contact .left {
  margin-right: 84px;
}
footer#footer.large .contact .right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
footer#footer.large .bottom {
  width: 100%;
  padding: 16px 0;
  background: black;
  font-size: 12px;
  font-weight: 100;
  color: #808080;
}
footer#footer.large .bottom > .wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li:not(.icon) {
  margin-right: 14px;
}
footer#footer.style-social-logos > .wrapper .menu-social ul li.icon {
  margin-right: 10px;
}
html.mobile footer.footer-coral .top > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile footer.footer-coral .top > .wrapper .left {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  margin-bottom: 32px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .top > .wrapper .right {
  align-items: center;
  -webkit-align-items: center;
  padding: 0 16px;
  flex-grow: unset;
  -webkit-flex-grow: unset;
  flex-shrink: unset;
  -webkit-flex-shrink: unset;
  flex-basis: unset;
  -webkit-flex-basis: unset;
}
html.mobile footer.footer-coral .powered-by {
  padding: 32px 16px;
  text-align: center;
}
footer.footer-coral .widget.newsletter-signup {
  width: 100%;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email {
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
footer.footer-coral .widget.newsletter-signup .content.mailchimp-email .email input[type="email"] {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  width: 100%;
}
#footer.kinder-v2 {
  padding: 0;
}
#footer.kinder-v2.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
#footer.kinder-v2 h2 {
  font-size: 18px;
  color: white;
  line-height: 1.8;
  font-weight: 700;
}
#footer.kinder-v2 > .wrapper {
  max-width: unset;
  flex-direction: column;
}
#footer.kinder-v2 .top > .wrapper,
#footer.kinder-v2 .bottom > .wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
}
#footer.kinder-v2 .top {
  background-color: #222;
}
#footer.kinder-v2 .top .column.mobile {
  display: none;
}
#footer.kinder-v2 .top .column .widget.menu ul li a {
  padding: 2px 0;
  display: inline-block;
  font-weight: 500;
}
#footer.kinder-v2 .top .social .widget.menu ul li a {
  font-size: 20px;
}
#footer.kinder-v2 .top > .wrapper {
  padding: 80px 0;
  display: flex;
}
#footer.kinder-v2 .top > .wrapper > * {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 1;
}
#footer.kinder-v2 .bottom {
  background-color: #444;
}
#footer.kinder-v2 .bottom > .wrapper {
  padding: 48px 0;
  display: flex;
  align-items: center;
}
#footer.kinder-v2 .bottom .logo {
  margin-right: 42px;
}
#footer.kinder-v2 .bottom .logo img {
  height: 30px;
}
#footer.kinder-v2 .bottom .note {
  color: white;
  font-size: 12px;
  line-height: 1.8;
}
#footer.kinder-v2 .bottom .note a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
#footer.kinder-v2 .bottom .powered-by {
  color: white;
  font-size: 13px;
  margin-left: auto;
}
#footer.kinder-v2 .bottom .powered-by svg {
  height: 24px;
}
@media (max-width: 1200px) {
  #footer.kinder-v2 .bottom > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .bottom .logo {
    margin-right: unset;
  }
  #footer.kinder-v2 .bottom .powered-by {
    margin-left: unset;
  }
  #footer.kinder-v2 .bottom .note {
    padding: 32px 0;
  }
}
@media (max-width: 1062px) {
  #footer.kinder-v2 > .wrapper {
    flex-direction: column;
  }
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
  #footer.kinder-v2 .bottom > .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 786px) {
  #footer.kinder-v2 .top > .wrapper {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 360px;
    flex-wrap: wrap;
  }
  #footer.kinder-v2 .top > .wrapper > * {
    min-width: 160px;
  }
  #footer.kinder-v2 .top .column {
    margin-bottom: 32px;
  }
  #footer.kinder-v2 .top .column.mobile {
    display: block;
  }
  #footer.kinder-v2 .top .social h2 {
    display: none;
  }
  #footer.kinder-v2 .top .social .widget.menu ul {
    justify-content: center;
  }
  #footer.kinder-v2 .bottom .note span {
    display: none;
  }
}
@media (max-width: 960px) {
  footer#footer.large .contact,
  footer#footer.large .menus-row,
  footer#footer.large .bottom > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  footer#footer.large .bottom > .wrapper {
    align-items: center;
    -webkit-align-items: center;
  }
  footer#footer.large .menus-row .menu-social ul.menu,
  footer#footer.large .menus-row .menu-top ul.menu {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .menus-row > .menu-top {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.large .contact {
    padding: 0 0 32px 0;
  }
  footer#footer.large .contact .left {
    margin-right: 0;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  footer#footer.large .contact .right {
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 16px;
  }
  footer#footer.large .contact .left,
  footer#footer.large .contact .right {
    flex-basis: unset;
    -webkit-flex-basis: unset;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-shrink: unset;
    -webkit-flex-shrink: unset;
  }
  footer#footer.bigfoot > .wrapper .top .logo,
  footer#footer.kinder-v2 > .wrapper .top .logo {
    display: flex;
    display: -webkit-flex;
    flex-grow: unset;
    -webkit-flex-grow: unset;
    flex-basis: unset;
    -webkit-flex-basis: unset;
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 32px;
  }
  footer#footer.bigfoot .top .social .widget.menu ul,
  footer#footer.kinder-v2.top .social .widget.menu ul {
    justify-content: center;
    -webkit-justify-content: center;
  }
  footer#footer.bigfoot > .wrapper .top > .wrapper,
  footer#footer.kinder-v2 > .wrapper .top > .wrapper {
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
header#header.classy .left .menu {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  width: 100%;
}
header#header.classy > .menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 420px;
  background: #383838;
  z-index: 50000;
  transform: translateX(-420px);
  transition: transform 0.2s;
}
header#header.classy .menu-left {
  position: absolute;
  right: 50%;
  transform: translateX(-50px);
}
header#header.classy .menu-right {
  position: absolute;
  left: 50%;
  transform: translateX(50px);
}
header#header.classy > .container > .wrapper .middle {
  width: 100%;
}
header#header.classy.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.classy.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
html.desktop.header-menu-open {
  overflow: hidden;
}
html.desktop header#header.classy > .menu,
html.desktop header#header.classy > .container,
html.desktop section#content,
html.desktop footer#footer {
  transition: transform 0.2s;
}
header#header .identity .logo.hide {
  display: none;
}
html.desktop.header-menu-open header#header.classy > .menu {
  transform: translateX(0);
}
html.desktop.header-menu-open header#header.classy > .container,
html.desktop.header-menu-open section#content,
html.desktop.header-menu-open footer#footer {
  transform: translateX(420px);
}
header#header.kinder {
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 142px !important;
}
header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
header#header.kinder .mobile h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
header#header.kinder > .container .mobile .widget.menu .item a {
  padding: 8px 0;
  font-size: 14px;
}
header#header.kinder > .container .mobile .widget.menu .item:not(.selected):not(:hover) a {
  color: #9b9b9b;
}
html.mobile header#header.kinder .right .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.kinder .mobile .left .widget.menu ul,
html.mobile header#header.kinder .mobile .right .widget.menu ul {
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.kinder {
  height: 124px !important;
}
html.mobile header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .container .wrapper > .bottom .search {
  display: none;
}
html.mobile header#header.kinder b.mfe-menu-icon > span,
html.mobile header#header.kinder b.mfe-menu-icon::after,
html.mobile header#header.kinder b.mfe-menu-icon::before {
  background-color: #222222;
}
html.mobile header#header.kinder.with-bottom-bar > .container .right .search button > div svg {
  color: #222222;
}
header#header.kinder > .container > .wrapper {
  flex-direction: column;
  -webkit-flex-direction: column;
  max-width: unset;
}
html.mobile header#header.kinder > .container > .wrapper {
  height: auto;
}
header#header.kinder .top,
header#header.kinder .bottom {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .top > .wrapper,
header#header.kinder .bottom > .wrapper {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}
header#header.kinder .bottom > .wrapper {
  align-items: center;
  -webkit-align-items: center;
}
header#header.kinder:not(.with-bottom-bar) > .container > .wrapper .identity img {
  filter: none;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom .widget.menu .item a {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom > .wrapper {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
header#header.kinder .top {
  height: 56px;
}
header#header.kinder .bottom {
  height: 86px;
}
html.mobile header#header.kinder .bottom {
  height: 68px;
}
html.mobile header#header.kinder .mobile .bottom {
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.kinder > .container > .wrapper > .bottom {
  overflow-y: scroll;
}
html.mobile header#header.kinder > .container .right .search {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder .top {
  background: #fafafa;
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder .bottom {
  border-bottom: 1px solid #eaeaea;
}
header#header.kinder:not(.with-bottom-bar) .top {
  background: white;
  border-bottom: none;
}
html.cookie-hide-kinder-header-explanation header#header .quick-explanation {
  display: none;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .right .widget.menu {
  position: static;
}
html.mobile header#header.kinder .container > .wrapper > .mobile .left,
html.mobile header#header.kinder .container > .wrapper > .mobile .right {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding-top: 48px;
  padding-left: 24px;
}
header#header .quick-explanation {
  height: 48px;
  background: #fafafa;
  color: #242424;
  font-size: 12px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
header#header .quick-explanation img {
  height: 14px;
  margin-right: 8px;
}
html.mobile header#header .quick-explanation img {
  position: absolute;
  left: 16px;
  bottom: 18px;
}
html.mobile header#header .quick-explanation {
  height: 94px;
}
header#header .quick-explanation .wrapper {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  max-width: var(--page-width);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
html.mobile header#header .quick-explanation .wrapper {
  text-align: center;
  padding: 12px 16px 0 16px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
header#header .quick-explanation .hide {
  position: absolute;
  right: 0;
  color: #bbb;
  font-weight: 600;
  padding-top: 16px;
  padding-left: 16px;
  padding-bottom: 16px;
}
html.mobile header#header .quick-explanation .hide {
  padding-top: 12px;
  padding-left: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
  bottom: 0;
}
header#header .quick-explanation a {
  display: none;
}
html.mobile header#header .quick-explanation a {
  position: absolute;
  right: 0;
  color: #ff005e;
  bottom: 14px;
  left: 0;
  font-size: 12px;
  z-index: 0;
  display: block;
}
header#header .quick-explanation .hide svg {
  margin-left: 8px;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder {
  /*height: 218px !important;*/
}
html.desktop header#header > .container .top .widget.menu .item.selected a {
  box-shadow: 0 -2px 0px 0px #ff005e inset !important;
}
header#header.kinder .container .wrapper > .mobile {
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: fixed;
  left: 0;
  top: 56px;
  right: 0;
  height: auto;
  bottom: 0;
  background: #ffffff;
}
header#header.kinder.menu-open .container .wrapper > .mobile {
  display: flex;
  display: -webkit-flex;
  z-index: 9999999999;
}
html.desktop header#header.kinder.with-bottom-bar > .container .top .search button {
  display: none;
}
html.mobile header#header.kinder.menu-open .container > .wrapper > .top .right .widget.menu {
  display: none;
}
header#header > .container .search-input-container {
  border-top: 1px solid #eaeaea;
}
header#header.kinder .container .wrapper > .mobile {
  border-top: 1px solid #eaeaea;
}
html.mobile:not(.cookie-hide-kinder-header-explanation) header#header.kinder:not(.with-bottom-bar) {
  height: 56px !important;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu,
html.mobile header#header.kinder .mobile .bottom .widget.menu .content,
html.mobile header#header.kinder .mobile .bottom .widget.menu nav,
html.mobile header#header.kinder .mobile .bottom .widget.menu ul {
  width: 100%;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.icon {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon svg {
  font-size: 24px;
}
html.mobile header#header.kinder .mobile .bottom .widget.menu ul li.item.icon a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
header#header.network-header > .container {
  transition: transform 0.25s;
}
body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(-48px);
}
header#header.network-header > .container > .network > .wrapper,
header#header.network-header > .container > .site > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
}
header#header.network-header.full-width > .container > .network > .wrapper,
header#header.network-header.full-width > .container > .site > .wrapper {
  max-width: 100%;
}
header#header.network-header > .container {
  flex-direction: column;
  -webkit-flex-direction: column;
}
header#header.network-header > .container > .network > .wrapper .left,
header#header.network-header > .container > .site > .wrapper .left {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  height: 100%;
}
header#header.network-header > .container > .network > .wrapper .right,
header#header.network-header > .container > .site > .wrapper .right {
  display: flex;
  display: -webkit-flex;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  height: 100%;
}
header#header.network-header > .container > .network {
  height: 48px;
  background-color: var(--background-color, transparent);
}
header#header.network-header .site .mobile-network {
  background-color: var(--background-color, transparent);
}
header#header.network-header > .container > .network .left {
  font-family: var(--network-title-font-family);
  color: var(--network-title-font-color);
  font-size: var(--network-title-font-size);
  line-height: var(--network-title-line-height);
  text-transform: var(--network-title-text-transform);
  font-weight: var(--network-title-font-weight);
}
header#header.network-header > .container > .site {
  height: 104px;
}
header#header.network-header .mobile-network {
  display: none;
}
header#header.network-header .site .right .widget.menu {
  position: relative;
  top: unset;
  background: none;
  width: 100%;
}
header#header.network-header .site .right .menu-container {
  position: relative;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header .network {
  display: none;
}
html.mobile body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(0);
}
html.mobile header#header.network-header .right .search-input-container > .wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
html.mobile header#header.network-header .right .search-input-container {
  padding-top: 0;
  padding-bottom: 0;
}
html.mobile header#header.network-header .right .search-input-container .widget.search-input .input .icon {
  display: none;
}
html.mobile header#header.network-header {
  height: 64px;
}
html.mobile header#header.network-header > .container > .site {
  height: 100%;
}
html.mobile header#header.network-header .site > .wrapper > .left {
  padding-left: 10px;
}
html.mobile header#header.network-header .site > .wrapper > .right {
  padding-right: 10px;
}
html.mobile header#header.network-header .mobile-network {
  display: flex;
  display: -webkit-flex;
}
html.mobile header#header.network-header .mobile-network > .wrapper {
  display: flex;
  display: -webkit-flex;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul {
  flex-direction: row;
  -webkit-flex-direction: row;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-bottom: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li {
  border-right: 1px solid #777;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-basis: 0;
  -webkit-flex-basis: 0;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li:last-child {
  border-right: none;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item a,
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  text-decoration: none;
  text-align: center;
}
html.mobile header#header.network-header .right .mobile-network .widget.menu ul li.item.selected a {
  box-shadow: 0 -3px 0px 0px #ff005e inset;
}
html.mobile header#header.network-header .site .right .menu-container {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  height: auto;
  background: white;
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
}
html.mobile header#header.network-header.menu-open .site .right .menu-container {
  display: flex;
  display: -webkit-flex;
}
header#header.kinder-v4 {
  height: 136px !important;
}
header#header.kinder-v4.kinder:not(.with-bottom-bar) {
  height: 72px !important;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item a {
  padding: 0 12px;
}
header#header.kinder-v4 > .container .top .left .widget.menu .item:first-child a {
  padding-left: 0;
}
header#header.kinder-v4 .wrapper .right .user .signup {
  padding-right: 0;
}
header#header.kinder-v4 .identity {
  margin-right: 0;
}
header#header.kinder-v4 .identity .logo {
  width: 100%;
}
header#header.kinder-v4 .identity .logo > a {
  width: 100%;
  pointer-events: all;
}
header#header.kinder-v4 .top > .wrapper {
  position: relative;
  padding: 0 56px;
}
header#header > .container > .wrapper .center {
  position: absolute;
  pointer-events: none;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: 120px;
}
header#header.kinder-v4 > .container > .wrapper .identity img {
  max-width: unset;
  margin-right: 0;
  width: 100%;
  height: auto;
  max-height: 30px;
}
header#header.kinder-v4 .bottom {
  height: 64px;
  background: #fafafa;
}
header#header.kinder-v4 .bottom > .wrapper .search {
  margin-left: 0 !important;
}
header#header.kinder-v4 .bottom > .wrapper {
  justify-content: center;
}
header#header.kinder-v4 .top {
  height: 72px;
  background: white;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}
header#header.kinder-v4 .login-container,
header#header.kinder-v4 .signup-container {
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
  background: #fafafa;
  padding: 80px 148px 0 148px;
  opacity: 0;
  pointer-events: none;
  height: calc(100vh - 73px);
  transform: translateY(-100%);
  transition: transform 0.6s ease 0s;
}
header#header.kinder-v4 .login-container .close,
header#header.kinder-v4 .signup-container .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}
header#header.kinder-v4 .login-container > .wrapper,
header#header.kinder-v4 .signup-container > .wrapper {
  position: relative;
}
header#header.kinder-v4 .login-container.open,
header#header.kinder-v4 .signup-container.open {
  opacity: 1;
  pointer-events: all;
  z-index: 10;
  transform: translateY(0);
}
header#header.kinder-v4 .login-container .columns,
header#header.kinder-v4 .signup-container .columns {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}
header#header.kinder-v4 .login-container a.column:hover h1,
header#header.kinder-v4 .signup-container a.column:hover h1 {
  color: #ff005e;
}
header#header.kinder-v4 .login-container .column,
header#header.kinder-v4 .signup-container .column {
  max-width: 500px;
  display: block;
  margin: 0 32px;
  color: #222;
  font-weight: 500;
}
header#header.kinder-v4 .login-container .column h1,
header#header.kinder-v4 .signup-container .column h1 {
  font-size: 32px;
  line-height: 48px;
  font-family: Tomica;
  font-weight: 900;
}
header#header.kinder-v4 .login-container .column h1::after,
header#header.kinder-v4 .signup-container .column h1::after {
  content: ' ';
  height: 2px;
  display: block;
  background: #eaeaea;
  margin-top: 24px;
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column p,
header#header.kinder-v4 .signup-container .column p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  font-weight: 400;
}
header#header.kinder-v4 .login-container .column ul,
header#header.kinder-v4 .signup-container .column ul {
  list-style: disc;
  list-style-position: inside;
}
header#header.kinder-v4 .login-container .column ul li,
header#header.kinder-v4 .signup-container .column ul li {
  padding-left: 8px;
}
header#header.kinder-v4 .mobile-menu {
  display: none;
}
header#header.kinder-v4 .login-container .column figure,
header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 24px;
}
header#header.kinder-v4 .login-container .column figure img,
header#header.kinder-v4 .signup-container .column figure img {
  height: 106px;
}
header#header.kinder-v4 .login-container .column h1 svg,
header#header.kinder-v4 .signup-container .column h1 svg {
  margin-left: 24px;
}
html.mobile header#header.kinder-v4 .identity .logo {
  width: auto;
}
html.mobile header#header.kinder-v4 .identity .logo > a {
  width: auto;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .identity img {
  width: auto;
  height: 24px;
  max-height: unset;
}
html.mobile header#header.kinder-v4 .top .left .widget.menu {
  display: none;
}
html.mobile header#header.kinder-v4 .top .wrapper .left {
  flex-grow: 0;
  margin-right: 12px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .center {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
  width: auto;
}
html.mobile header#header.kinder-v4 .mobile-menu {
  display: flex;
  display: -webkit-flex;
  height: 100%;
}
html.mobile header#header.kinder-v4 > .container > .wrapper .right {
  margin-left: auto;
}
html.mobile header#header.kinder-v4 > .container .right .search {
  display: none;
}
html.mobile header#header.kinder-v4 .mobile-menu button {
  width: 48px;
}
html.mobile header#header.kinder-v4 .mobile-menu button div {
  display: flex;
  align-items: center;
  justify-content: center;
}
html.mobile header#header.kinder-v4 .top {
  height: 56px;
}
html.mobile header#header.kinder-v4 .container .wrapper > .mobile {
  border-top: none;
}
html.mobile header#header.kinder-v4 .mobile .top {
  height: 56px;
  overflow-y: scroll;
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .top > .wrapper {
  padding: 0 !important;
}
html.mobile header#header.kinder-v4 .login-container,
html.mobile header#header.kinder-v4 .signup-container {
  padding: 0;
  top: 56px;
  height: calc(100vh - 56px);
}
html.mobile header#header.kinder-v4 .login-container .columns,
html.mobile header#header.kinder-v4 .signup-container .columns {
  flex-direction: column;
}
html.mobile header#header.kinder-v4 .login-container .column,
html.mobile header#header.kinder-v4 .signup-container .column {
  display: flex;
  margin: 0;
  padding: 16px 16px;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  max-width: unset;
}
html.mobile header#header.kinder-v4 .login-container .column svg,
html.mobile header#header.kinder-v4 .signup-container .column svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
html.mobile header#header.kinder-v4 .login-container .column p,
html.mobile header#header.kinder-v4 .login-container .column ul,
html.mobile header#header.kinder-v4 .signup-container .column p,
html.mobile header#header.kinder-v4 .signup-container .column ul {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column img,
html.mobile header#header.kinder-v4 .signup-container .column img {
  height: 60px;
}
html.mobile header#header.kinder-v4 .login-container .column h1,
html.mobile header#header.kinder-v4 .signup-container .column h1 {
  margin-left: 108px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
}
html.mobile header#header.kinder-v4 .login-container .column h1::after,
html.mobile header#header.kinder-v4 .signup-container .column h1::after {
  display: none;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  width: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure,
html.mobile header#header.kinder-v4 .signup-container .column figure {
  margin-bottom: 0;
}
html.mobile header#header.kinder-v4 .login-container .column figure img,
html.mobile header#header.kinder-v4 .signup-container .column figure img {
  height: 56px;
}
html.mobile header#header.kinder-v4 > .container > .wrapper > .bottom {
  position: relative;
  z-index: 5;
}
html.mobile header#header.kinder-v4 .login-container .close,
html.mobile header#header.kinder-v4 .signup-container .close {
  display: none;
}
html.mobile header#header.kinder-v4 .ui-accordion .group .items .widget.menu .content .menu .item a {
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container {
  position: relative;
  top: unset;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  border: none;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container > .wrapper {
  padding-bottom: 0;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input {
  padding-left: 0;
  padding-right: 16px;
  border-bottom: 1px solid #eaeaea;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input .icon {
  order: 2;
}
html.mobile header#header.kinder-v4 > .container .mobile .search-input-container .widget.search-input .input input {
  padding: 24px 16px;
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::before {
  -webkit-transform: rotate(45deg) translate3d(5px, 5px, 0);
  transform: rotate(45deg) translate3d(5px, 5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon::after {
  -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
  transform: rotate(-45deg) translate3d(5px, -5px, 0);
}
header#header.kinder-v4.menu-open b.mfe-menu-icon > span {
  opacity: 0;
}
#page.body-header-left {
  padding-left: 300px;
}
#page.body-header-left > nav {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}
#page.body-header-left .mfe-edit-container[data-setting-type="block"][data-setting-sub-type="header"] {
  width: 300px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
}


/* Site custom CSS */

@font-face {
  font-family: 'Gilroy';
  font-weight: 400;
  font-style: normal;
  src: url('/static/webfonts/gilroy/gilroy-medium-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy';
  font-weight: 700;
  font-style: normal;
  src: url('/static/webfonts/gilroy/gilroy-bold-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Gilroy';
  font-weight: 900;
  font-style: normal;
  src: url('/static/webfonts/gilroy/gilroy-black-webfont.woff') format('woff');
}
body[data-template-id="740"] .widget.cms-fragments {
  width: 100%;
}
body[data-template-id="767"] .widget.cms-fragments {
  width: 100%;
}
body[data-template-id="767"] .widget.cms-fragments h1,
body[data-template-id="767"] .widget.cms-fragments h2 {
  color: black !important;
}
.layout-container.ui-slider > .wrapper {
  transform: translateX(calc(0px - (var(--slider-index, 0) * 100vw)));
  transition: transform 1.5s;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px !important;
  }
  html {
    --h1-font-size: 32px !important;
  }
  body[data-page="fp-frontpage"] section#content {
    padding: 0 !important;
  }
  .content-area.hero > .overlay::before,
  .content-area.hero > .overlay::after {
    display: none !important;
  }
  .overlay-buttons {
    flex-direction: column;
  }
  .overlay-buttons > * {
    margin-right: 0 !important;
    margin-bottom: 16px;
  }
  .overlay-buttons > *:last-child {
    margin-bottom: 0;
  }
  header#header.network-header > .container > .site > .wrapper .right {
    position: static !important;
  }
  header#header.network-header > .container > .site {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  footer#footer.lando .newsletter {
    height: auto !important;
    position: relative;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  footer#footer.lando .newsletter > .wrapper {
    flex-direction: column;
    padding-bottom: 32px;
    padding-top: 32px;
    position: static;
  }
  footer#footer.lando .newsletter > .wrapper .left {
    padding-right: 0 !important;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
  footer#footer.lando .newsletter > .wrapper .right {
    align-items: center !important;
    margin-top: 32px;
  }
  footer#footer.lando .newsletter > .wrapper::after {
    background-size: 100% auto !important;
    max-width: 375px !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    left: 50% !important;
    background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/balloon-blue-mobile.svg) !important;
  }
  section#content .content-area.page-width:first-child > .wrapper {
    padding-top: 64px !important;
  }
  footer#footer.lando .top > .wrapper {
    padding-top: 64px !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  footer#footer.lando .bottom > .wrapper {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
  }
  footer#footer.lando .bottom > .wrapper div:first-child {
    order: 3;
  }
  footer#footer.lando .bottom .widget.menu nav ul li a {
    padding-left: 0 !important;
  }
  .figure-numbers {
    flex-wrap: wrap;
  }
  .figure-numbers .number {
    min-width: 34%;
    margin-bottom: 16px !important;
    margin-right: 16px !important;
  }
  .figure-numbers .number span {
    font-size: 52px !important;
    line-height: 1 !important;
  }
  .widget.content-grid.style-menu ul {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-right: 0 !important;
  }
  .widget.content-grid.style-menu ul li {
    margin-left: 0 !important;
    flex-basis: unset !important;
    -webkit-flex-basis: unset !important;
  }
  .layout-container[data-layout-name="buy-tshirt"] > .wrapper {
    margin-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .widget.dataset-view,
  .widget.dataset-view .dataset-past-projects {
    flex-wrap: nowrap !important;
    flex-direction: column;
    margin-right: 0;
  }
  .widget.dataset-view > .project,
  .widget.dataset-view > .placeholder,
  .widget.dataset-view .dataset-past-projects .project,
  .widget.dataset-view .dataset-past-projects .placeholder {
    margin-right: 0 !important;
  }
  header#header .wrapper nav ul li.selected {
    box-shadow: none !important;
  }
}
html.mobile .widget.content-grid .content ul li.type-blogpost.style-default .item-content .title {
  font-size: 20px !important;
}
html.mobile .widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .summary {
  font-size: 16px !important;
}
html.mobile .widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  padding: 16px !important;
}
html.mobile header#header.network-header .site .menu-container > .widget.menu nav ul li.item.style-cta {
  margin-top: 24px;
}
html.mobile header#header.network-header .mobile-network > .widget.menu ul li {
  border-right: none !important;
}
html.mobile header#header.network-header .mobile-network > .widget.menu ul li a {
  font-size: 16px !important;
  width: 100% !important;
}
html.mobile header#header.network-header .mobile-network > .widget.menu nav {
  padding-bottom: 32px !important;
  position: relative !important;
  font-size: 16px !important;
}
html.mobile header#header.network-header .mobile-network > .widget.menu nav::before {
  content: 'Visit ThePresent';
  width: 100%;
  text-align: center;
  display: block;
}
html.mobile header#header.network-header .mobile-network footer#footer.lando .newsletter {
  padding-left: 16px;
  padding-right: 16px;
}
.content-area.no-top-padding > .wrapper {
  padding-top: 0px !important;
}
html.mobile header#header .right .widget.menu ul li a {
  font-size: 20px;
}
html.mobile header#header .right .widget.menu ul li {
  border-bottom: none !important;
}
html.mobile .content-area > .wrapper {
  padding: 64px 16px !important;
}
html.mobile header#header .right .widget.menu {
  flex-grow: 1;
}
html.mobile header#header .right .widget.menu ul {
  align-items: center;
  justify-content: center;
}
html.mobile header#header.network-header .site .right .menu-container {
  background: #1d1d1b;
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  right: 0;
}
html.mobile header#header.network-header .site .widget.menu nav ul li.item.style-cta {
  position: static;
  height: auto;
}
html.mobile header#header.network-header.menu-open .site .right .menu-container {
  width: 100%;
  height: auto;
}
html.mobile.header-menu-open #page-dim {
  z-index: 5000;
}
html.mobile header#header.network-header .mobile-network {
  order: 2;
  margin-top: auto;
  border-top: 1px solid #343432;
  padding-top: 24px;
}
html.mobile header#header.network-header .site > .wrapper > .right {
  margin-left: auto;
}
html.mobile header#header.network-header .site > .wrapper > .left {
  padding-left: 16px;
}
html.mobile .widget.donation .form .frequency .item,
html.mobile .widget.donation .form .amount .item {
  border-bottom: 1px solid white;
  margin-bottom: 0;
}
html.mobile .widget.donation .form .frequency,
html.mobile .widget.donation .form .amount {
  border-bottom: none;
}
html.mobile .widget.donation .form .frequency .item:nth-child(2n) label {
  border-right: none;
}
html.mobile .widget.donation .form .amount .item.amount-custom label {
  border-right: none;
}
.widget.html.name-how-can-i-help-number span {
  background: #00C0D8;
  color: black;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 100px;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features:nth-child(2n) {
  margin-right: 0 !important;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features {
  margin-left: 0 !important;
}
.layout-container[data-layout-name="component-meetup"] > .wrapper {
  padding: 0;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .fragment {
  max-width: 730px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .fragment.cms-image {
  max-width: 920px;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .fragment.cms-text p {
  margin-bottom: 32px;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .fragment a {
  text-decoration: underline;
  color: inherit;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .fragment a:hover {
  color: inherit;
}
.layout-container[data-layout-name="article-layout"] > .wrapper .widget.cms-fragments > .content .widget.cms-fragments .fragment.cms-image figure {
  text-align: center;
}
.figure-numbers {
  display: flex;
}
.figure-numbers .number {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  flex-grow: 1;
  flex-basis: 0%;
  flex-shrink: 0;
}
.figure-numbers .number span {
  font-weight: bold;
  font-size: 100px;
  line-height: 124px;
}
.layout-container[data-layout-name="things-to-do-component"] h2,
.layout-container[data-layout-name="things-to-do-component"] .info {
  font-size: 16px;
}
.layout-container[data-layout-name="things-to-do-component"] p {
  margin-top: 4px;
  font-weight: 300;
  line-height: 22px;
  opacity: 0.7;
  color: white;
}
.layout-container[data-layout-name="buy-tshirt"] > .wrapper {
  margin-top: -120px;
}
.widget.content-grid .content.base-default.style-menu ul {
  width: 100%;
  overflow: hidden;
}
.layout-container[data-layout-name="buy-tshirt-top"] > .wrapper {
  padding-bottom: 200px;
}
.widget.cms-metadata .line {
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}
.widget.cms-metadata .line .date {
  margin-left: 0 !important;
  text-transform: uppercase;
}
.widget.cms-metadata .line .who {
  font-size: 24px;
  font-weight: 700;
}
.widget.content-grid .content ul li.type-event.style-default {
  --aspect-ratio: 140%;
}
.widget.content-grid .content ul li.type-event.style-default > .container > .wrapper {
  justify-content: flex-end;
  padding: 24px;
}
.widget.content-grid .content ul li.type-event.style-default > .container > .wrapper::after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/icon-join.svg);
  background-repeat: no-repeat;
  width: 56px;
  height: 56px;
  background-size: 56px 56px;
  z-index: 999;
}
.widget.content-grid .content ul li.type-event.style-default .item-extra {
  opacity: 1;
  position: relative;
  padding: 0;
  background: none;
  pointer-events: none;
  padding-right: 56px;
}
.widget.content-grid .content ul li.type-event.style-default .item-extra .location {
  margin-top: 8px;
}
.widget.content-grid .content ul li.type-event.style-default .item-content {
  padding: 0;
  flex-grow: 0;
  -webkit-flex-grow: 0;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  margin-bottom: 16px;
  pointer-events: none;
}
.widget.content-grid .content ul li.type-event.style-default .item-date {
  padding: 0;
  display: none;
  pointer-events: none;
}
.widget.content-grid .content ul li.type-event.style-default .overlay {
  background-color: unset;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
.widget.content-grid .content ul li.type-event.style-default .item-content .title {
  font-size: 28px;
  text-shadow: none;
  font-weight: 700;
}
.widget.content-grid .content ul li.type-event.style-default:hover .overlay {
  opacity: 1;
}
.widget.content-grid .content ul li.type-event.style-default:hover .item-content {
  opacity: 1;
}
.widget.content-grid .content ul li.type-event.style-default svg {
  display: none;
}
.widget.content-slider.name-project-slider .item.type-dataset-view h1 {
  color: black;
}
.widget.content-slider.name-project-slider .item.type-dataset-view p {
  color: black;
}
.widget.content-slider.name-project-slider .stage-container {
  height: calc(100% - 40px);
}
.widget.content-slider.name-project-slider > .content.nav-size-medium .nav-arrow {
  font-size: 16px;
  width: 40px;
  height: 40px;
  text-shadow: none;
  filter: none;
  color: black;
  border-radius: 40px;
  border: 1px solid black;
  display: inline-block;
  position: static;
}
.widget.donation {
  font-size: 16px;
}
.widget.donation .ui-checkbox {
  display: flex;
  display: -webkit-flex;
  overflow: hidden;
}
.widget.donation .form .fieldset {
  margin-bottom: 0;
  flex-direction: column;
}
.widget.donation .form .fieldset .field {
  margin-bottom: 34px;
  margin-right: 0;
}
.widget.donation .form .fieldset .field label {
  cursor: pointer;
}
.widget.donation .form .fieldset .field[data-field="terms"].error {
  color: #CB3146;
}
.widget.donation .form .fieldset .field[data-field="terms"].error .ui-checkbox span {
  border-color: #CB3146;
}
.widget.donation .form .frequency-choice,
.widget.donation .form .amount {
  margin-bottom: 48px;
}
.widget.donation .form p {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 12px;
}
.widget.donation .form .field input[type="email"],
.widget.donation .form .field input[type="text"],
.widget.donation .form .field input[type="number"],
.widget.donation .form .field select,
.widget.donation .form .field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 14px 12px;
}
.widget.donation .form .field input[type="email"]:focus,
.widget.donation .form .field input[type="text"]:focus,
.widget.donation .form .field input[type="number"]:focus,
.widget.donation .form .field select:focus,
.widget.donation .form .field textarea:focus {
  border-bottom: 1px solid #00C0D8;
  box-shadow: 0 -1px 0px #00C0D8 inset;
}
.widget.donation .form .frequency,
.widget.donation .form .amount {
  border: 1px solid white;
}
.widget.donation .form .amount {
  display: flex;
}
.widget.donation .form .amount .item input:checked + label span {
  display: none;
}
.widget.donation .form .amount .amount-frequency {
  flex-grow: 3;
  flex-basis: 0%;
}
.widget.donation .form .amount .amount-custom {
  flex-grow: 1;
}
.widget.donation .form .amount .amount-custom input:checked + label .selected-input {
  display: flex;
  align-items: center;
}
.widget.donation .form .amount .amount-custom input:checked + label input {
  background: none;
  color: black;
}
.widget.donation .form .frequency .item,
.widget.donation .form .amount .item {
  margin-right: 0;
  flex-grow: 1;
  flex-basis: 0%;
}
.widget.donation .form .frequency .item input:checked + label,
.widget.donation .form .amount .item input:checked + label {
  color: black !important;
  background: white !important;
}
.widget.donation .form .frequency .item label,
.widget.donation .form .amount .item label {
  background: none !important;
  border-color: white !important;
  border-radius: 0;
  margin-right: 0;
  border: none;
  border-right: 1px solid white;
}
.widget.donation .form .frequency .item:last-child,
.widget.donation .form .amount .item:last-child {
  border-right: none;
}
.widget.donation .form .frequency .item label,
.widget.donation .form .amount .item label {
  width: 100%;
}
.widget.dataset-view {
  display: flex;
  flex-wrap: wrap;
}
.widget.form > .content.labels-as-placeholder.show-labels-on-input .field .label {
  transition: all 0.25s;
}
.widget.form .content.style-1-column .panel .field .main .label {
  margin-bottom: 6px;
}
.widget.form.name-signup .panel > p.description {
  margin-top: 8px;
}
.widget.form.name-signup .panel .fields {
  margin-top: 40px;
}
.widget.form.name-signup .panel .field.type-checklist .input {
  display: flex;
  flex-wrap: wrap;
}
.widget.form.name-signup .panel .field.type-checklist .input > div {
  margin-right: 8px;
  margin-bottom: 8px;
}
.widget.form.name-signup .panel .field.type-checklist label {
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.widget.form.name-signup .panel .field.type-checklist label,
.widget.form.name-signup .panel .field.type-checklist label:hover {
  background: none;
}
.widget.form.name-signup .panel .field.type-checklist input {
  width: 20px;
  height: 20px;
  margin-left: -20px;
  margin-right: 0;
}
.widget.form.name-signup .panel .field.type-checklist span {
  border: 1px solid white;
  border-radius: 99999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
}
.widget.form.name-signup .panel .field.type-checklist input:checked + span {
  background: #4CD321;
  border-color: #4CD321;
  color: black;
}
.widget.form.name-signup .panel .field .label {
  font-size: 14px;
  font-weight: bold;
}
.widget.form.name-signup .panel .field input[type="email"],
.widget.form.name-signup .panel .field input[type="text"],
.widget.form.name-signup .panel .field input[type="number"],
.widget.form.name-signup .panel .field select,
.widget.form.name-signup .panel .field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 14px 12px;
}
.widget.form.name-signup .panel .field input[type="email"]:focus,
.widget.form.name-signup .panel .field input[type="text"]:focus,
.widget.form.name-signup .panel .field input[type="number"]:focus,
.widget.form.name-signup .panel .field select:focus,
.widget.form.name-signup .panel .field textarea:focus {
  border-bottom: 1px solid #00C0D8;
  box-shadow: 0 -1px 0px #00C0D8 inset;
}
.widget.form.name-signup .panel .field.error .error {
  display: none;
}
.widget.form.name-signup .panel .field.error input[type="email"],
.widget.form.name-signup .panel .field.error input[type="text"],
.widget.form.name-signup .panel .field.error input[type="number"],
.widget.form.name-signup .panel .field.error select,
.widget.form.name-signup .panel .field.error textbox {
  border-bottom: 1px solid #CB3146;
}
.widget.form.name-signup .panel .field.error.type-check label {
  border-bottom: 1px solid #CB3146;
}
.widget.form.name-signup .panel .field.type-check label {
  cursor: pointer;
  padding-bottom: 8px;
}
.widget.form.name-signup .panel .field.type-check label a {
  text-decoration: underline;
  color: white;
}
.widget.dataset-view > .project,
.widget.dataset-view > .placeholder,
.widget.dataset-view .dataset-past-projects .project,
.widget.dataset-view .dataset-past-projects .placeholder {
  flex-grow: 1;
  overflow: hidden;
  min-width: 26%;
  flex-basis: 0%;
  flex-shrink: 0;
  margin-right: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background: #343432;
  align-items: center;
}
.widget.dataset-view > .project figure,
.widget.dataset-view > .placeholder figure,
.widget.dataset-view .dataset-past-projects .project figure,
.widget.dataset-view .dataset-past-projects .placeholder figure {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.widget.dataset-view > .project figure img,
.widget.dataset-view > .placeholder figure img,
.widget.dataset-view .dataset-past-projects .project figure img,
.widget.dataset-view .dataset-past-projects .placeholder figure img {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
.widget.dataset-view > .project h3,
.widget.dataset-view > .placeholder h3,
.widget.dataset-view .dataset-past-projects .project h3,
.widget.dataset-view .dataset-past-projects .placeholder h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.widget.dataset-view > .project p,
.widget.dataset-view > .placeholder p,
.widget.dataset-view .dataset-past-projects .project p,
.widget.dataset-view .dataset-past-projects .placeholder p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: white;
}
.widget.dataset-view > .project p.location,
.widget.dataset-view > .placeholder p.location,
.widget.dataset-view .dataset-past-projects .project p.location,
.widget.dataset-view .dataset-past-projects .placeholder p.location {
  margin-top: 16px;
  opacity: 0.7;
}
.widget.dataset-view > .project p.location svg,
.widget.dataset-view > .placeholder p.location svg,
.widget.dataset-view .dataset-past-projects .project p.location svg,
.widget.dataset-view .dataset-past-projects .placeholder p.location svg {
  margin-right: 4px;
}
.widget.dataset-view > .project p.summary,
.widget.dataset-view > .placeholder p.summary,
.widget.dataset-view .dataset-past-projects .project p.summary,
.widget.dataset-view .dataset-past-projects .placeholder p.summary {
  margin-top: 16px;
}
.widget.dataset-view > .project span,
.widget.dataset-view > .placeholder span,
.widget.dataset-view .dataset-past-projects .project span,
.widget.dataset-view .dataset-past-projects .placeholder span {
  color: #4CD321;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  margin-top: 20px;
}
.widget.dataset-view > .project span svg,
.widget.dataset-view > .placeholder span svg,
.widget.dataset-view .dataset-past-projects .project span svg,
.widget.dataset-view .dataset-past-projects .placeholder span svg {
  margin-left: 10px;
}
.widget.dataset-view > .project.cta,
.widget.dataset-view > .placeholder.cta,
.widget.dataset-view .dataset-past-projects .project.cta,
.widget.dataset-view .dataset-past-projects .placeholder.cta {
  background-color: #4CD321;
}
.widget.dataset-view > .project.cta h3,
.widget.dataset-view > .placeholder.cta h3,
.widget.dataset-view .dataset-past-projects .project.cta h3,
.widget.dataset-view .dataset-past-projects .placeholder.cta h3 {
  font-size: 28px;
}
.widget.dataset-view > .project.cta h3,
.widget.dataset-view > .placeholder.cta h3,
.widget.dataset-view .dataset-past-projects .project.cta h3,
.widget.dataset-view .dataset-past-projects .placeholder.cta h3,
.widget.dataset-view > .project.cta p,
.widget.dataset-view > .placeholder.cta p,
.widget.dataset-view .dataset-past-projects .project.cta p,
.widget.dataset-view .dataset-past-projects .placeholder.cta p {
  text-align: left;
}
.widget.dataset-view > .project.cta h3,
.widget.dataset-view > .placeholder.cta h3,
.widget.dataset-view .dataset-past-projects .project.cta h3,
.widget.dataset-view .dataset-past-projects .placeholder.cta h3,
.widget.dataset-view > .project.cta p,
.widget.dataset-view > .placeholder.cta p,
.widget.dataset-view .dataset-past-projects .project.cta p,
.widget.dataset-view .dataset-past-projects .placeholder.cta p,
.widget.dataset-view > .project.cta span,
.widget.dataset-view > .placeholder.cta span,
.widget.dataset-view .dataset-past-projects .project.cta span,
.widget.dataset-view .dataset-past-projects .placeholder.cta span {
  color: black;
}
.widget.dataset-view > .placeholder,
.widget.dataset-view .dataset-past-projects .placeholder {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  background: none;
  border: none;
}
.widget.dataset-view > .initiative {
  flex-grow: 1;
  overflow: hidden;
  min-width: 26%;
  flex-basis: 0%;
  flex-shrink: 0;
  margin-right: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  background: #343432;
}
.widget.dataset-view > .initiative .info {
  padding: 24px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.widget.dataset-view > .initiative > figure {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.widget.dataset-view > .initiative > figure img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget.dataset-view > .initiative .info figure {
  padding-top: 24px;
  margin-top: auto;
  display: flex;
  align-items: center;
  font-weight: 300;
}
.widget.dataset-view > .initiative .info figure img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 40px;
}
.widget.dataset-view > .initiative h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.widget.dataset-view > .initiative p {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}
.widget.dataset-view > .initiative p.location {
  margin-top: 16px;
  opacity: 0.7;
}
.widget.dataset-view > .initiative p.location svg {
  margin-right: 4px;
}
.widget.dataset-view > .initiative p.summary {
  margin-top: 16px;
}
.widget.dataset-view > .initiative span {
  color: #4CD321;
}
.widget.dataset-view > .initiative .placeholder {
  padding: 0 !important;
}
.dataset-people-itempage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dataset-people-itempage figure {
  width: 100%;
  max-width: 300px;
  margin-bottom: 24px;
}
.dataset-people-itempage figure > .wrapper {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding-top: 100%;
  position: relative;
}
.dataset-people-itempage figure img {
  border-radius: 9999px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.dataset-people-itempage h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.dataset-people-itempage > p {
  text-align: center;
}
.dataset-people-itempage > p.job-title {
  margin-top: 16px;
  opacity: 0.7;
}
.dataset-people-itempage > p.job-title svg {
  margin-right: 4px;
}
.dataset-people-itempage .widget.cms-fragments {
  margin-top: 48px;
  max-width: 730px;
}
.dataset-project-itempage > h1,
.dataset-initiative-itempage > h1 {
  text-align: center;
}
.dataset-project-itempage p.summary,
.dataset-initiative-itempage p.summary {
  text-align: center;
  margin-top: 24px;
}
.dataset-project-itempage > .meta,
.dataset-initiative-itempage > .meta {
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px !important;
}
.dataset-project-itempage > section,
.dataset-initiative-itempage > section {
  margin-top: 64px;
}
.dataset-project-itempage .project-actions,
.dataset-initiative-itempage .project-actions,
.dataset-project-itempage .initiative-actions,
.dataset-initiative-itempage .initiative-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.dataset-project-itempage .widget.cms-fragments .fragment.cms-image .fragment-content,
.dataset-initiative-itempage .widget.cms-fragments .fragment.cms-image .fragment-content {
  text-align: center;
}
.dataset-past-projects {
  margin-right: -80px;
  margin-bottom: -64px;
  display: flex;
  flex-wrap: wrap;
}
.dataset-people {
  margin-right: -80px;
  margin-bottom: -64px;
  display: flex;
  flex-wrap: wrap;
}
.dataset-people .member,
.dataset-people .placeholder {
  flex-grow: 1;
  overflow: hidden;
  min-width: 26%;
  flex-basis: 0%;
  flex-shrink: 0;
  margin-right: 80px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  align-items: center;
}
.dataset-people .member figure,
.dataset-people .placeholder figure {
  width: 100%;
  max-width: 300px;
  margin-bottom: 24px;
  text-align: center;
  padding-top: 100%;
  position: relative;
}
.dataset-people .member figure img,
.dataset-people .placeholder figure img {
  border-radius: 9999px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.dataset-people .member h3,
.dataset-people .placeholder h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
.dataset-people .member p,
.dataset-people .placeholder p {
  text-align: center;
}
.dataset-people .member p.job-title,
.dataset-people .placeholder p.job-title {
  margin-top: 16px;
  opacity: 0.7;
}
.dataset-people .member p.job-title svg,
.dataset-people .placeholder p.job-title svg {
  margin-right: 4px;
}
.dataset-people .placeholder {
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0;
}
.dataset-people + .ui-button {
  margin-top: 80px;
}
.dataset-past-projects + .ui-button {
  margin-top: 80px;
}
body[data-template-id="765"] h1 a,
body[data-template-id="765"] h2 a,
body[data-template-id="765"] h3 a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
body[data-template-id="765"] .link-yellow {
  color: #F3E200;
}
body[data-template-id="765"] .link-green {
  color: #4CD321;
}
body[data-template-id="765"] .link-red {
  color: #CB3146;
}
body[data-template-id="765"] .link-blue {
  color: #00C0D8;
}
body[data-template-id="765"] .content-area.hero.full-height {
  height: calc(100vh - 118px);
  overflow: hidden;
}
body[data-template-id="765"] .content-area.hero.full-height > .wrapper {
  height: 100% !important;
}
body[data-template-id="765"] .fp-two-columns {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 h3 {
  margin-top: 24px;
}
body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 .links {
  margin-top: 40px;
  display: flex;
}
body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 .links a {
  margin-right: 16px;
}
body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 .left h2 svg.fa-arrow-right {
  margin-left: 6px;
}
body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 .right img {
  width: 100%;
}
body[data-template-id="765"] .fp-two-columns > .wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
  display: flex;
}
body[data-template-id="765"] .fp-two-columns > .wrapper > * {
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 0;
}
body[data-template-id="765"] .fp-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
body[data-template-id="765"] .fp-center > .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 920px;
  text-align: center;
}
body[data-template-id="765"] .fp-center > .wrapper p {
  text-align: center;
}
body[data-template-id="765"] .book {
  background: #1c7348;
}
body[data-template-id="765"] .book h1 {
  margin-bottom: 8px;
}
body[data-template-id="765"] .book p {
  margin-bottom: 40px;
}
body[data-template-id="765"] .seepeople {
  align-items: unset;
}
body[data-template-id="765"] .seepeople > .wrapper {
  position: relative;
  max-width: 1360px;
  width: 100%;
  margin: 32px;
  padding-left: 164px;
  background: white;
  flex-grow: 1;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/wave-bg-white.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  align-items: center;
  justify-content: center;
}
body[data-template-id="765"] .seepeople > .wrapper::before {
  display: block;
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/wave-bg-yellow.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
body[data-template-id="765"] .seepeople > .wrapper .left,
body[data-template-id="765"] .seepeople > .wrapper .right {
  z-index: 5;
}
body[data-template-id="765"] .seepeople > .wrapper h2 {
  color: black;
  margin-bottom: 40px;
}
body[data-template-id="765"] .seepeople > .wrapper img {
  position: absolute;
  right: 72px;
  bottom: 80px;
  width: 235px;
}
body[data-template-id="765"] .give-me-5 {
  background: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/photo-wilfred.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body[data-template-id="765"] .give-me-5 img {
  width: 98px;
  margin-bottom: 8px;
}
body[data-template-id="765"] .give-me-5 h2 {
  margin-bottom: 8px;
}
body[data-template-id="765"] .give-me-5 p {
  margin-bottom: 40px;
}
body[data-template-id="765"] .name-slider-video {
  --slider-auto-slide-next: 0;
}
body[data-template-id="765"] .ui-slider .ui-slider-controls {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
}
body[data-template-id="765"] .ui-slider .ui-slider-controls button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  text-align: center;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}
body[data-template-id="765"] .ui-slider .ui-slider-controls button * {
  pointer-events: none;
}
body[data-template-id="765"] .ui-slider .ui-slider-controls button svg {
  font-size: 18px;
  color: white;
}
html.mobile body[data-template-id="765"] h2 {
  font-size: 28px !important;
}
html.mobile body[data-template-id="765"] h3 {
  font-size: 16px !important;
}
html.mobile body[data-template-id="765"] .fp-center > .wrapper {
  max-width: 100%;
  padding: 16px;
}
html.mobile body[data-template-id="765"] .fp-two-columns > .wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding: 16px;
}
html.mobile body[data-template-id="765"] .fp-two-columns > .wrapper > * {
  flex-shrink: 0;
  flex-grow: unset;
  flex-basis: 0;
}
html.mobile body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 > .wrapper .left {
  order: 2;
}
html.mobile body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 > .wrapper h2 svg {
  margin-left: 6px;
  transform: scale(0.8);
}
html.mobile body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 > .wrapper .right {
  order: 1;
  text-align: center;
}
html.mobile body[data-template-id="765"] .fp-two-columns.frontpage-slide-1 > .wrapper .right img {
  max-width: 360px;
}
html.mobile body[data-template-id="765"] .fp-two-columns.book .left {
  text-align: center;
}
html.mobile body[data-template-id="765"] .fp-two-columns.book .left img {
  max-width: 360px;
}
html.mobile body[data-template-id="765"] .fp-two-columns.seepeople > .wrapper {
  background: white !important;
  height: 100%;
  margin: 0;
  justify-content: flex-start;
}
html.mobile body[data-template-id="765"] .fp-two-columns.seepeople > .wrapper .left {
  order: 2;
}
html.mobile body[data-template-id="765"] .fp-two-columns.seepeople > .wrapper .right {
  order: 1;
  width: 100%;
}
html.mobile body[data-template-id="765"] .fp-two-columns.seepeople > .wrapper .right img {
  max-width: 360px;
  position: unset;
}
html.mobile body[data-template-id="765"] .content-area.hero.full-height {
  height: auto;
  overflow: unset;
}
html.mobile body[data-template-id="765"] .content-area.hero.full-height > .wrapper {
  overflow: unset;
  padding: 0 !important;
}
html.mobile body[data-template-id="765"] .widget.html > * {
  align-items: flex-start;
  height: calc(100vh - 64px);
}
html.mobile body[data-template-id="765"] .hero.ui-slider > .wrapper > * {
  height: calc(100vh - 64px);
}
html.mobile body[data-template-id="765"] .hero.ui-slider > .wrapper > *.name-slider-video {
  padding: 16px;
}
html.mobile body[data-template-id="765"] .player-dialog .info {
  width: 100%;
  padding: 0;
}
html.mobile body[data-template-id="765"] .player-dialog nav {
  flex-direction: column;
}
html.mobile body[data-template-id="765"] .player-dialog nav > * {
  margin-left: 0;
  margin-right: 0;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
}
html.mobile body[data-template-id="765"] .player-dialog > .wrapper {
  justify-content: flex-start;
}
html.mobile body[data-template-id="765"] .ui-slider .ui-slider-controls {
  position: fixed;
}
#popup-container {
  position: fixed;
  z-index: 99999999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#popup-container .popup-tpm {
  max-width: 720px;
  height: auto;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
}
#popup-container .popup-tpm button {
  position: absolute;
  right: 0;
  top: 0;
  background: black;
  color: white;
  transform: translateY(calc(-100% - 4px));
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  padding: 6px 14px;
}
#popup-container .popup-tpm button svg {
  margin-left: 8px;
}
#popup-container .popup-tpm img {
  width: 100%;
}
#page-dim {
  z-index: 9999999;
  background: rgba(57, 57, 57, 0.42);
}
body[data-template-id="738"] .hero.ui-slider > .wrapper,
body[data-template-id="765"] .hero.ui-slider > .wrapper {
  display: flex;
  flex-direction: row;
}
body[data-template-id="738"] .hero.ui-slider > .wrapper > *,
body[data-template-id="765"] .hero.ui-slider > .wrapper > * {
  flex-shrink: 0;
  width: 100vw;
  position: relative;
}
body[data-template-id="738"] .player-dialog,
body[data-template-id="765"] .player-dialog {
  /*position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;*/
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
}
body[data-template-id="738"] .player-dialog > .wrapper,
body[data-template-id="765"] .player-dialog > .wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body[data-template-id="738"] .player-dialog.hidden,
body[data-template-id="765"] .player-dialog.hidden {
  display: none;
}
body[data-template-id="738"] .player-dialog .video,
body[data-template-id="765"] .player-dialog .video {
  background: #666;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
  max-width: 960px;
}
body[data-template-id="738"] .player-dialog .video > .wrapper,
body[data-template-id="765"] .player-dialog .video > .wrapper {
  padding-top: 56.25%;
}
body[data-template-id="738"] .player-dialog .video > .wrapper > .content,
body[data-template-id="765"] .player-dialog .video > .wrapper > .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
body[data-template-id="738"] .player-dialog .video > .wrapper > .content iframe,
body[data-template-id="765"] .player-dialog .video > .wrapper > .content iframe {
  width: 100%;
  height: 100%;
}
body[data-template-id="738"] .player-dialog .info,
body[data-template-id="765"] .player-dialog .info {
  padding-left: 24px;
  padding-right: 24px;
}
body[data-template-id="738"] .player-dialog .info h1,
body[data-template-id="765"] .player-dialog .info h1,
body[data-template-id="738"] .player-dialog .info h2,
body[data-template-id="765"] .player-dialog .info h2,
body[data-template-id="738"] .player-dialog .info h3,
body[data-template-id="765"] .player-dialog .info h3 {
  text-align: center;
}
body[data-template-id="738"] .player-dialog .close,
body[data-template-id="765"] .player-dialog .close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
}
body[data-template-id="738"] .player-dialog .ui-button,
body[data-template-id="765"] .player-dialog .ui-button {
  padding: 10px 18px;
}
body[data-template-id="738"] .player-dialog nav,
body[data-template-id="765"] .player-dialog nav {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body[data-template-id="738"] .player-dialog nav > *,
body[data-template-id="765"] .player-dialog nav > * {
  margin-left: 8px;
  margin-right: 8px;
}
body[data-template-id="738"] section#content,
body[data-template-id="765"] section#content {
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body[data-template-id="738"] section#content .player-dialog,
body[data-template-id="765"] section#content .player-dialog {
  /*splay: none;*/
}
body[data-template-id="738"] .content-area.hero.style-center,
body[data-template-id="765"] .content-area.hero.style-center {
  flex-grow: 1;
}
body[data-template-id="738"] .content-area.hero.style-center > .wrapper,
body[data-template-id="765"] .content-area.hero.style-center > .wrapper {
  align-items: center;
  justify-content: flex-start;
}
body[data-template-id="738"] .content-area.hero > .overlay,
body[data-template-id="765"] .content-area.hero > .overlay {
  z-index: 40;
}
body[data-template-id="738"] .overlay-buttons,
body[data-template-id="765"] .overlay-buttons {
  display: flex;
  flex-direction: column;
  z-index: 50;
  position: relative;
  margin-right: 48px;
  margin-bottom: 48px;
  align-items: flex-end;
}
body[data-template-id="738"] .overlay-buttons svg,
body[data-template-id="765"] .overlay-buttons svg {
  margin-right: 8px;
  font-size: 14px;
}
body[data-template-id="738"] .overlay-buttons > *,
body[data-template-id="765"] .overlay-buttons > * {
  margin-right: 0 !important;
}
body[data-template-id="738"] .overlay-buttons > *:first-child,
body[data-template-id="765"] .overlay-buttons > *:first-child {
  margin-bottom: 16px;
}
body[data-template-id="738"] .overlay.video,
body[data-template-id="765"] .overlay.video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body[data-template-id="738"] .overlay.video img,
body[data-template-id="765"] .overlay.video img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
body[data-template-id="738"] .widget.html,
body[data-template-id="765"] .widget.html {
  width: 100%;
  height: 100%;
  /*margin-top: 86px;*/
  margin-top: 0px;
  padding-bottom: 64px;
  padding-bottom: 0px;
}
body[data-template-id="738"] .widget.html > *,
body[data-template-id="765"] .widget.html > * {
  height: 100%;
}
html.mobile body[data-template-id="738"] .overlay-buttons {
  align-items: flex-end;
  margin-right: 0;
  margin-bottom: 0;
}
html.mobile body[data-template-id="738"] .overlay-buttons > * {
  width: 100%;
  justify-content: center;
}
html.mobile body[data-template-id="738"] .content-area.hero.style-center > .wrapper {
  /*align-items: center;
             justify-content: flex-end;*/
}
html.mobile body[data-template-id="738"] .widget.html {
  margin-top: 0;
}
html.mobile body[data-template-id="738"] .player-dialog nav {
  flex-direction: column;
}
html.mobile body[data-template-id="738"] .player-dialog nav a {
  margin-bottom: 8px;
  margin-right: 0;
}
.content-area.hero > .overlay::before {
  width: 100%;
  height: 20px;
  background-image: url('https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/wave-top-dark-nopar.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: none;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.content-area.hero > .overlay::after {
  width: 100%;
  height: 20px;
  background-image: url('https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/wave-top-dark-nopar.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: none;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleY(-1);
}
.content-area > .wrapper {
  padding: 100px 32px;
  width: 100%;
  max-width: calc(var(--page-width) + 64px);
}
.layout-container.page-width {
  display: flex;
  flex-direction: column;
}
.layout-container.page-width.widgets-center > .wrapper > .layout-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-area.page-width-thin.center-contents > .wrapper > * {
  margin: 0 auto;
}
.layout-container.bg-dark {
  background-color: white;
  color: black;
}
.layout-container.bg-dark .widget.heading h1,
.layout-container.bg-dark .widget.heading h1 a {
  color: black;
}
.layout-container.bg-dark .widget.text p {
  color: black;
}
.widget.content-grid.style-default .content.base-default ul li,
.widget.content-grid .content.base-default.style-default ul li {
  background-color: #343432;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  text-align: left;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content {
  padding: 24px 24px 32px 24px;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .summary {
  line-height: 22px;
  max-height: 66px;
  overflow: hidden;
  font-weight: 300;
}
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title,
.widget.content-grid.style-default .content ul li.type-blogpost.style-default .item-content .title > a {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 8px;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features.style-icon-left .wrapper {
  align-items: flex-start;
}
.widget.content-grid .content.base-default ul li.type-menu.template-features.style-icon-left .media {
  margin-right: 16px;
}
header#header .wrapper nav ul li.item.style-special a {
  font-family: var(--menu-item-special-font-family, var(--h3-font-family));
  color: var(--menu-item-special-font-color, var(--h3-font-color));
  font-size: var(--menu-item-special-font-size, var(--h3-font-size));
  text-transform: var(--menu-item-special-text-transform, var(--h3-text-transform));
  line-height: var(--menu-item-special-line-height, var(--h3-line-height));
  font-weight: var(--menu-item-special-font-weight, var(--h3-font-weight));
  font-style: var(--menu-item-special-font-style, var(--h3-font-style));
}
body.mfe-theme-header-small header#header.network-header > .container {
  transform: translateY(0) !important;
}
header#header.network-header.full-width > .container > .network > .wrapper,
header#header.network-header.full-width > .container > .site > .wrapper {
  align-items: center;
}
header#header.network-header > .container > .network {
  border-bottom: 1px solid #282828;
  padding-left: 30px;
  padding-right: 30px;
}
header#header.network-header > .container > .site {
  position: relative;
  height: 70px;
  padding-left: 30px;
  padding-right: 30px;
}
header#header.network-header > .container > .site > .wrapper {
  position: relative;
}
header#header.network-header > .container > .site > .wrapper .left {
  flex-grow: 0;
  z-index: 1000;
}
header#header.network-header .site .right .menu-container,
header#header.network-header .site .right .widget.menu {
  position: static;
}
header#header .identity img {
  height: 36px;
}
header#header.style-tall {
  height: 118px;
}
header#header > .container {
  box-shadow: none;
}
header#header .wrapper nav {
  height: 100%;
}
header#header.network-header > .container > .site > .wrapper .right {
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  height: 100%;
}
header#header.network-header .site .widget.menu nav ul li.item.style-cta {
  position: absolute;
  right: 0;
  height: 100%;
}
header#header.network-header .site .widget.menu nav ul li.item.style-cta a {
  color: #000000;
  background: #ffffff;
  height: 44px;
  padding-left: 20px;
  padding-right: 20px;
}
header#header .wrapper nav ul li.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header#header .wrapper nav ul li.selected {
  box-shadow: 0px -2px 0px 0px currentColor inset;
}
header#header .wrapper nav ul li.selected a {
  color: inherit;
}
footer#footer.lando {
  background: #1D1D1B;
  color: white;
  padding: 0;
}
footer#footer.lando .powered-by {
  font-size: 15px;
  padding-bottom: 32px;
  text-align: right;
}
footer#footer.lando .newsletter > .wrapper,
footer#footer.lando .top > .wrapper,
footer#footer.lando .bottom > .wrapper {
  display: -webkit-flex;
  max-width: var(--page-width);
  margin: 0 auto;
}
footer#footer.lando a {
  color: white;
}
footer#footer.lando > .wrapper {
  flex-direction: column;
  max-width: 100%;
}
footer#footer.lando > .wrapper > .top,
footer#footer.lando > .wrapper > .bottom {
  padding-left: 32px;
  padding-right: 32px;
}
footer#footer.lando .column,
footer#footer.lando .left,
footer#footer.lando .right {
  flex-grow: 1;
  flex-basis: 0%;
  flex-shrink: 0;
  padding-right: 48px;
}
footer#footer.lando .column:last-child,
footer#footer.lando .right {
  padding-right: 0px;
}
footer#footer.lando .top .widget.menu.style-horizontal ul {
  justify-content: flex-end;
}
footer#footer.lando .newsletter {
  height: 212px;
  overflow: hidden;
  padding-left: 32px;
  padding-right: 32px;
  border-bottom: 1px solid #343432;
}
footer#footer.lando .newsletter .left,
footer#footer.lando .newsletter .right {
  z-index: 5;
}
footer#footer.lando .newsletter .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer#footer.lando .newsletter .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
footer#footer.lando .newsletter > .wrapper {
  position: relative;
  display: flex;
  height: 100%;
}
footer#footer.lando .newsletter input {
  background: #343432;
  color: white;
  border: none;
}
footer#footer.lando .newsletter .widget.newsletter-signup {
  max-width: 360px;
}
footer#footer.lando .newsletter .widget.newsletter-signup form {
  position: relative;
}
footer#footer.lando .newsletter .widget.newsletter-signup .names {
  display: flex;
}
footer#footer.lando .newsletter .widget.newsletter-signup input:not([type="submit"]) {
  width: 100%;
  background: #E8E8E8;
  border: none;
  font-size: 16px;
  padding: 14px 12px;
  color: black;
  font-weight: 500;
}
footer#footer.lando .newsletter .widget.newsletter-signup input:not([type="submit"])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1D1D1B;
}
footer#footer.lando .newsletter .widget.newsletter-signup input:not([type="submit"])::-moz-placeholder {
  /* Firefox 19+ */
  color: #1D1D1B;
}
footer#footer.lando .newsletter .widget.newsletter-signup input:not([type="submit"]):-ms-input-placeholder {
  /* IE 10+ */
  color: #1D1D1B;
}
footer#footer.lando .newsletter .widget.newsletter-signup input:not([type="submit"]):-moz-placeholder {
  /* Firefox 18- */
  color: #1D1D1B;
}
footer#footer.lando .newsletter .widget.newsletter-signup input[type="submit"] {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 90px;
  cursor: pointer;
}
footer#footer.lando .newsletter .widget.newsletter-signup .name-first {
  margin-right: 16px;
}
footer#footer.lando .newsletter .widget.newsletter-signup div.email {
  margin-top: 16px;
  position: relative;
}
footer#footer.lando .newsletter .widget.newsletter-signup div.email::before {
  background-color: #F3E200;
  width: 32px;
  height: 32px;
  content: ' ';
  display: block;
  position: absolute;
  z-index: 100;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 32px;
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
footer#footer.lando .newsletter > .wrapper::after {
  display: block;
  content: '';
  background-image: url(https://d1ns18uxs7ub2o.cloudfront.net/181/folder-733/balloon-blue.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: -150px;
  width: 100%;
  height: 212px;
  top: 0;
  z-index: 0;
}
footer#footer.lando .widget.menu nav ul li a {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
}
footer#footer.lando .widget.menu nav ul li::last-child {
  margin-bottom: 0;
}
footer#footer.lando .newsletter.style-white {
  background: white;
}
footer#footer.lando .newsletter.style-white h3.top {
  color: white;
}
footer#footer.lando .newsletter.style-white h3.bottom {
  color: black;
}
footer#footer.lando .newsletter.style-black h3.top {
  color: black;
}
footer#footer.lando .newsletter.style-black h3.bottom {
  color: white;
}
footer#footer.lando .newsletter.style-black .widget.newsletter-signup input:not([type="submit"])::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #FFFFFF;
}
footer#footer.lando .newsletter.style-black .widget.newsletter-signup input:not([type="submit"])::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFFFFF;
}
footer#footer.lando .newsletter.style-black .widget.newsletter-signup input:not([type="submit"]):-ms-input-placeholder {
  /* IE 10+ */
  color: #FFFFFF;
}
footer#footer.lando .newsletter.style-black .widget.newsletter-signup input:not([type="submit"]):-moz-placeholder {
  /* Firefox 18- */
  color: #FFFFFF;
}
footer#footer.lando .newsletter.style-black .widget.newsletter-signup input:not([type="submit"]) {
  background: #343432;
  color: white;
}
footer#footer.lando .top > .wrapper {
  padding-top: 120px;
  display: flex;
}
footer#footer.lando .bottom > .wrapper {
  padding-top: 60px;
  padding-bottom: 48px;
  display: flex;
}
footer#footer.lando .bottom h2 {
  font-size: 24px;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/webfonts/gilroy/gilroy-black-webfont.woff2') format('woff2'), url('/static/webfonts/gilroy/gilroy-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/webfonts/gilroy/gilroy-bold-webfont.woff2') format('woff2'), url('/static/webfonts/gilroy/gilroy-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/webfonts/gilroy/gilroy-medium-webfont.woff2') format('woff2'), url('/static/webfonts/gilroy/gilroy-medium-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/static/webfonts/gilroy/gilroy-light-webfont.woff2') format('woff2'), url('/static/webfonts/gilroy/gilroy-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
html {
  background: #1D1D1B;
  color: white;
  font-size: 14px;
  --page-width: 1110px;
}
select option {
  color: black;
  background: white;
  font-family: Helvetica, Arial, sans-serif;
}
header#header .container {
  background: #1D1D1B;
}
header#header .network .wrapper nav ul li.item a {
  padding: 8px 15px;
}
header#header .network .wrapper nav ul li.item:last-child a {
  padding-right: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.overlay-buttons {
  display: flex;
}
.overlay-buttons > * {
  margin-right: 16px;
}
.overlay-buttons > *:last-child {
  margin-right: 0;
}
input[type="email"],
input[type="text"],
input[type="number"],
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 14px 12px;
}
.ui-checkbox {
  display: inline-block !important;
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  vertical-align: top;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.ui-checkbox.no-ml {
  margin-left: 0;
}
.ui-checkbox span {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #444444;
  border: 2px solid #dddddd;
  border-radius: 3px;
}
.ui-checkbox span svg {
  display: none;
}
.ui-checkbox input:checked + span::after {
  content: '';
  display: block;
  background: #00C0D8;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 3px;
}
.ui-button-container {
  position: relative;
  z-index: 0;
}
.ui-button {
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.ui-button.center {
  margin-left: auto;
  margin-right: auto;
}
.ui-button.white {
  background: white;
  color: black;
  border: 1px solid white;
}
.ui-button.trans {
  background: transparant;
  color: white;
  border: 1px solid white;
}
.ui-button.shadow {
  position: relative;
}
.ui-button.shadow.ui-button::after {
  content: ' ';
  display: block;
  background: transparent;
  border: 2px solid #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translateY(8px) translateX(8px);
}
.ui-button.yellow {
  background: #F3E200;
  color: #1D1D1B;
}
.ui-button.green {
  background: #4CD321;
  color: #1D1D1B;
}
.ui-button.black {
  background: #1b1b1d;
  color: white;
}
.ui-button.black.border {
  border: 1px solid white;
}
.ui-button.black.shadow::after {
  border: 2px solid #000000;
}
.ui-button.green.shadow::after {
  border: 2px solid #000;
}
.ui-button.bg-black.shadow::after {
  border: 2px solid #ffffff;
}
.ui-button.bg-white.shadow::after {
  border: 2px solid #000000;
}
.ui-button.wide {
  padding: 15px 24px;
}
.ui-button svg {
  margin-left: 8px;
}
.ui-button.icon-left svg {
  margin-right: 8px;
  margin-left: 0;
}
.ui-button:hover {
  font-size: 16px;
  font-weight: bold;
}
body[data-page="fp-frontpage"] section#content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0%;
  padding: 20px 50px 50px 50px;
}
body[data-page="fp-frontpage"] .content-area.full-height {
  flex-grow: 1;
}
body[data-page="fp-frontpage"] .content-area.full-height > .wrapper {
  height: unset;
}
header#header .wrapper nav ul li:nth-child(1).selected {
  color: #F3E200;
}
header#header .wrapper nav ul li:nth-child(2).selected {
  color: #4CD321;
}
header#header .wrapper nav ul li:nth-child(3).selected {
  color: #00C0D8;
}
header#header .wrapper nav ul li:nth-child(4).selected {
  color: #CB3146;
}
section#content .content-area.page-width:first-child > .wrapper {
  padding-top: 80px;
}
