.clear {
  display: block;
  content: '';
  clear: both;
}
.select-off {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Init */
* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition-duration: 200ms;
  transition-property: color, background-color, border-color;
}
body {
  font-family: 'Brix Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif;
  font-size: 16px;
  background: #FFF;
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-header {
  background-color: #FFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}
.main-area {
  flex-grow: 1;
}
.team.main-area {
  display: flex;
  flex-direction: column;
}
.site-logo {
  background-color: #FFF;
  position: relative;
  z-index: 10;
  padding: 12px 16px;
}
.site-logo img {
  display: block;
  max-height: 24px;
}
.site-logo .claim {
  display: none;
}
.site-navigation {
  transition: 500ms transform;
  transform: translateY(-110%);
  position: absolute;
  background: #FFF;
  width: 100%;
  left: 0;
}
.site-navigation ul {
  list-style-type: none;
}
.site-navigation a {
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  border-top: 1px solid #000;
}
#user-menu-button.active {
  background: rgba(0, 0, 0, 0.8);
}
#user-menu-button.active + .site-navigation {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
#user-menu-button.active span {
  background: #FFF;
  transition: 500ms transform, 0ms opacity;
}
#user-menu-button.active .first {
  transform: rotate(45deg) translate(6px, 3px);
}
#user-menu-button.active .second {
  opacity: 0;
}
#user-menu-button.active .third {
  transform: rotate(-45deg) translate(5px, -6px);
}
.site-footer {
  background-color: #F0F0F0;
  flex-shrink: 0;
}
.cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  border-top: 1px solid #F0F0F0;
  padding: 8px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 1000;
}
.cookie-message .inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-message .cookie-text {
  padding-right: 16px;
}
.cookie-message .close-cookie-message {
  color: #2B302B;
  background-color: #F0F0F0;
  border: none;
  border-radius: 3px;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
}
.cookie-message .close-cookie-message:hover {
  color: #FFF;
  background-color: #2B302B;
}
.cookie-message a {
  color: #2B302B;
}
.cookie-message a:hover {
  color: #000;
  text-decoration: underline;
}
.icon-instagram::before {
  font-size: 115%;
}
.social {
  text-align: center;
  padding: 24px;
}
.social h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.social ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.social li:not(:last-child) {
  margin-right: 8px;
}
.social a {
  width: 48px;
  height: 48px;
  display: block;
  background-color: #000;
  border-radius: 100%;
  padding: 6px;
  color: #F0F0F0;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.social a:hover {
  background-color: #999;
}
.social a.image {
  margin-right: 2px;
}
.social a.image:hover {
  opacity: 0.4;
}
.tag-list-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 30px;
  margin-top: 10px;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.tag-list-header li {
  transition: background-color 500ms, color 500ms;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  line-height: 24px;
  border-radius: 11px;
  padding: 2px 30px;
  margin-right: 20px;
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.tag-list-header li.active,
.tag-list-header li:hover {
  border-radius: 11px;
  background-color: #000;
  color: #fff;
}
table.history-table td {
  padding: 5px;
}
table.history-table td ul,
table.history-table td ol {
  position: relative;
  margin: 10px;
  padding: 0 0 0 20px;
}
table.history-table td ul li,
table.history-table td ol li {
  word-wrap: break-word;
}
table.history-table td ol {
  margin-left: 0;
}
table.history-table .status {
  font-size: 12px;
  background: #f1c40f;
  width: 20px;
  height: 20px;
  float: right;
  border-radius: 100%;
  margin: 12px 24px;
  text-align: center;
}
table.history-table .status.status1 {
  background: #27ae60;
}
table.history-table .status.status0 {
  background: #c0392b;
}
del,
div .del {
  background-color: #ffc8c8 !important;
  display: inline-block;
}
ins,
div .ins {
  background-color: #c8ffc8 !important;
  display: inline-block;
}
#site-footer-nav {
  color: #FFF;
  background-color: #000;
  text-align: center;
}
#site-footer-nav ul {
  display: inline-block;
}
#site-footer-nav ul li {
  list-style-type: none;
  float: left;
  padding: 10px 0;
  font-size: 15px;
}
#site-footer-nav ul li.pre_item {
  display: none;
}
#site-footer-nav ul li a {
  color: #FFF;
  display: inline-block;
  text-decoration: none;
}
#site-footer-nav ul li a:hover,
#site-footer-nav ul li a.active {
  color: #FFF;
}
#site-footer-nav ul li:not(:last-child)::after {
  font-size: 15px;
  content: '|';
  padding: 0 10px;
}
#site-footer-nav ul:after {
  clear: both;
  content: '';
  display: block;
}
.entry-header {
  position: relative;
}
.entry-content {
  margin-top: 48px;
}
.plexframe-tool .entry-content {
  min-height: 40px;
}
.plexframe-tool .entry {
  min-height: 40px;
}
.entry:not(.big):not(.wide) {
  padding: 48px 16px;
}
.entry .text {
  padding: 0 16px;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
}
.entry .text *:last-child {
  margin-bottom: 0 !important;
}
.entry .text a {
  text-decoration: none;
  border-bottom: 3px solid #999;
  color: #000;
}
.entry .text a:hover {
  border-color: #000;
}
.entry .text h1 {
  line-height: 1;
  margin-bottom: 10px;
}
.entry .text h2 {
  text-transform: uppercase;
  font-size: 1.3em;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 5px;
}
.entry .text ul {
  margin-left: 20px;
}
.entry .caption {
  line-height: 1.4;
  font-size: 16px;
  margin-top: 8px;
  display: block;
}
.entry .caption p {
  margin: 0 0 7px 0;
  padding: 0;
}
.entry .caption p:last-child {
  margin-bottom: 0;
}
.entry .entry-quote {
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 0;
  border: 5px solid #000;
  border-width: 10px 0;
}
.entry .entry-quote p {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}
.entry .entry-quote p cite {
  font-size: 20px !important;
  line-height: 1.6;
  font-weight: 300 !important;
}
.entry .author {
  font-size: 19px;
  line-height: 19px;
  background-color: #000;
  color: #FFF;
  padding: 3px 12px;
  margin-bottom: 30px;
}
.entry .author .tag-list {
  float: right;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 30px;
}
.entry .author .tag-list li {
  margin-left: 16px;
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.entry p:not(:last-child) {
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
}
.entry ul:not(:last-child) {
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
}
.entry .picture:not(:last-child) {
  margin-bottom: 48px;
}
.entry .picture img {
  display: block;
  max-width: 100%;
}
.entry .picture.left {
  float: none;
  margin-left: 0;
  padding: 8px 0 20px;
}
.entry .picture.left:not(:last-child) {
  margin-bottom: 0;
}
.entry .blox-quote {
  border: 2px solid #000;
  border-width: 2px 0;
  float: left;
  max-width: 100%;
  width: 430px;
  margin: 30px 30px 30px -10px;
  padding: 8px 0 12px;
}
.entry .picture.center {
  margin: auto;
}
.entry .picture.center img {
  margin: auto;
}
.entry .picture.hovering {
  padding: 48px 16px;
  background: #F0F0F0;
}
.entry .picture:not(.full) {
  max-width: 1220px;
}
.entry .pcox-page-element {
  max-width: 1220px;
  margin: 20px auto;
  display: block;
  padding-left: 16px;
}
.entry:not(.wide) .entry-subtitle .text-wrap {
  background-color: #000;
  color: #FFF;
  display: inline-block;
  line-height: 1;
  padding: 6px 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.entry .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -5px;
}
.entry .gallery .gallery-item {
  flex-grow: 0;
}
.entry .gallery .gallery-item .caption {
  text-align: left;
  margin-top: 8px;
}
.entry .text-div {
  margin: 0 0 20px;
}
.entry .audio {
  margin: 0 0 20px;
  max-width: 100%;
}
.entry .audio .mejs-container {
  max-width: 100%;
}
.entry .video {
  margin: 0 0 20px;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  background: #333;
}
.entry .video:nth-last-child(2) {
  margin-bottom: 0;
}
.entry .video iframe {
  width: 100% !important;
  height: 100%;
  position: absolute;
}
.entry .video .mejs-container {
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.25%;
}
.entry .video .mejs-container video {
  width: 100% !important;
  height: 100% !important;
}
.entry .video .mejs-container .mejs-overlay.mejs-layer.mejs-overlay-play {
  height: 100% !important;
}
.entry .video .mejs-container .mejs-overlay.mejs-layer.mejs-overlay-play .mejs-overlay-button {
  margin-top: -50px !important;
}
.entry .video .mejs-container .mejs-poster,
.entry .video .mejs-container .mejs-overlay {
  width: 100% !important;
  height: 100% !important;
}
.entry .file_download {
  margin: 0 0 20px;
}
.entry .file_download a {
  color: #2B302B;
  text-decoration: none;
}
.entry .entry_links {
  margin: 0 0 20px;
}
.entry .entry_links a {
  color: #2B302B;
  text-decoration: none;
}
.entry .link-more-blox {
  margin-top: -40px;
}
.project-summary {
  padding: 0 16px;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
}
.team-member {
  max-width: 1220px;
  margin: 48px auto;
  padding: 16px;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.team-member .team-quote {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 0;
  border: 5px solid #000;
  border-width: 10px 0;
}
.team-member .team-quote p {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}
.team-member .team-quote p:last-child {
  margin-bottom: 0;
}
.team-member .team-quote p cite {
  font-size: 20px !important;
  line-height: 1.6;
  font-weight: 300 !important;
}
.team-member .team-quote a {
  text-decoration: none;
  border-bottom: 3px solid #999;
  color: #000;
}
.team-member .team-quote a:hover {
  border-color: #000;
}
.team-member .team-image-inner {
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 0;
  position: relative;
  object-fit: cover;
}
.team-member .team-info {
  padding: 16px;
}
.summary-title {
  font-weight: 600;
  text-transform: uppercase;
  float: left;
  clear: left;
  margin-right: 8px;
}
.entry-headlines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 0 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.team-identity .team-name {
  color: #000;
  display: inline-block;
  line-height: 1;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.team-identity .team-job {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.project-headlines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 0 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.entry.wide .entry-headlines {
  padding: 24px 16px 0;
  display: block;
}
.entry.wide .entry-subtitle .text-wrap {
  font-weight: 400;
  text-transform: uppercase;
}
.entry.wide .entry-image {
  padding-bottom: 56.25%;
  display: none;
}
.entry.wide .entry-image img {
  height: 100%;
  position: absolute;
  width: 100%;
  object-fit: cover;
}
.entry.wide .entry-image video {
  display: none;
}
.entry.wide .caption {
  display: none;
}
.entry-title {
  color: #000;
  display: inline-block;
  line-height: 1;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.entry-title .text-wrap {
  color: #000;
  text-decoration: none;
  line-height: 1.1;
}
.project-title {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.project-title .text-wrap {
  display: inline-block;
  line-height: 1;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.1;
  font-size: 32px;
  color: #FFF;
  display: block;
}
.entry-subtitle {
  order: -1;
  width: auto;
  margin-bottom: 8px;
}
.team-job {
  order: -1;
  width: auto;
  margin-bottom: 8px;
}
.team-job .text-wrap {
  background-color: #000;
  color: #FFF;
  display: inline-block;
  line-height: 1;
  padding: 6px 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #FFF;
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
}
.project-subtitle {
  order: -1;
  width: auto;
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.project-subtitle .text-wrap {
  text-decoration: none;
  background-color: #000;
  color: #FFF;
  display: inline-block;
  line-height: 1;
  padding: 6px 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #FFF;
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
}
.entry.big .entry-subtitle {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.entry.big .entry-subtitle .text-wrap {
  background-color: #FFF;
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
}
.entry.big .entry-title {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.entry.big .entry-title .text-wrap {
  font-size: 32px;
  color: #FFF;
  display: block;
}
.entry.big .entry-image {
  padding-bottom: 56.25%;
}
.entry.big .entry-image img {
  height: 100%;
  position: absolute;
  width: 100%;
  object-fit: cover;
}
.entry.big .entry-image video {
  display: none;
}
.entry.big .entry-headlines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 0 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.lowercase {
  text-transform: lowercase;
}
.team-name .text-wrap {
  font-size: 32px;
  color: #FFF;
  display: block;
}
.inner {
  width: 100%;
  max-width: 1220px;
  margin: auto;
  padding: 0 16px;
}
.entry-image img {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
}
.entry-image .no-image {
  min-height: 400px;
}
#user-menu-button {
  display: block;
  width: 48px;
  height: 48px;
  padding: 7px 11px 0;
  cursor: pointer;
  transition-duration: 500ms;
  transition-property: width, height, padding, background-color;
  z-index: 15;
  outline: none;
  float: left;
  background: transparent;
  color: #FFF;
  flex: 0 1 48px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000;
  background-color: #000;
}
#user-menu-button span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 0 auto 4px;
  position: relative;
  transition: 500ms transform, 250ms opacity 150ms;
  transform-origin: top;
}
.entry ul.presentation-list {
  max-width: 1220px;
  margin: 48px auto;
  padding: 16px;
}
.entry ul.presentation-list h1 {
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
}
.entry ul.presentation-list .number {
  font-size: 2.4em;
  display: inline-block;
  width: 88px;
  line-height: 0.85;
}
.entry ul.presentation-list > li {
  display: block;
  border-top: 10px solid #000;
  padding: 16px 0 32px;
}
.entry ul.presentation-list ul {
  margin-left: 24px;
  list-style-type: disc;
  line-height: 1.4;
  font-size: 20px;
  margin-bottom: 32px;
}
.entry ul.presentation-list p,
.entry ul.presentation-list li p {
  line-height: 1.4;
  font-size: 20px;
  margin-bottom: 32px;
}
.entry ul.presentation-list a {
  text-decoration: none;
  border-bottom: 3px solid #999;
  color: #000;
}
.entry ul.presentation-list a:hover {
  border-color: #000;
}
.team-list {
  max-width: 1220px;
  margin: 48px auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: space-between;
}
.team-list li {
  flex: 0;
  flex-basis: calc((100% / 2) - (8px / 2));
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.team-list .empty {
  height: 0;
}
.team-list .team-image {
  background-color: #EEE;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  transition: background-size 200ms linear;
}
.team-list .team-name {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  color: #000;
}
.team-list .team-name .team-color {
  background: #ffffff;
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  position: absolute;
  transform: scale(0);
  transition: transform 315ms;
  border-radius: 100%;
}
.team-list .team-name:hover .team-color {
  transform: scale(1.55);
}
.team-list .team-name span {
  background-color: #FFF;
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 2px 6px;
}
.project-list {
  max-width: 1220px;
  padding: 16px;
  margin: -40px auto -8px;
}
.project-list .project {
  position: relative;
  margin-bottom: 16px;
  padding: 0;
  line-height: 0;
  color: #FFF;
  background-color: #EEE;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.project-list .project .link-all {
  heigth: 0;
  line-height: 0;
  font-size: 0;
}
.project-list .project > div.project-inner {
  height: 0;
  padding-bottom: 133%;
}
.project-list .project > div.project-inner.video-tile {
  padding-bottom: 0;
}
.project-list .project .video-outer {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  z-index: 0;
}
.project-list .project .video-outer video {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: -50%;
  height: 100% !important;
  width: auto !important;
  transition: 1s opacity;
  z-index: -1;
}
.project-list .project .video-outer.pic_normal {
  height: 100%;
}
.project-list .project .video-outer.pic_normal video {
  height: 100% !important;
}
.project-list .project a.link-all {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.team-info .team-quote {
  margin: 16px auto 24px;
  max-width: none;
  width: 100%;
}
.team-info h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.team-info p {
  list-style-type: none;
  font-size: 20px;
}
.team-info p:not(:last-child) {
  margin-bottom: 16px;
}
.team-info p strong {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
  display: inline-block;
}
.team-social-headline {
  margin-top: 32px;
}
.team-social {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.team-social a {
  color: #000;
  font-size: 36px;
  margin-right: 8px;
}
.team-social a:hover {
  color: #999;
}
.team-social [class^="icon-"]:before {
  margin: 0;
}
.team-member-color {
  flex: 1;
}
.team-member-color .inner {
  padding: 16px 16px 20%;
}
.color-info .color {
  font-size: 62px;
  line-height: 1;
  margin-top: 16px;
}
.color-info strong {
  display: block;
  font-weight: 600;
}
.color-info h3 {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
}
.home .entry:not(.big):not(.wide) {
  padding: 8px 16px 24px;
}
.home .entry:not(.big) .entry-header {
  border-bottom: 10px solid #000;
  padding: 24px 0;
  max-width: 750px;
  margin: auto;
}
.home .entry:not(.big) + .entry:not(.big) {
  padding-top: 0;
  margin-top: -24px;
}
.home .entry:not(.big) + .entry:not(.big) .entry-header {
  border-top: 0;
  padding-top: 0;
}
.home .entry:not(.big) .entry-text {
  color: #000;
  padding: 0;
}
.home .entry a::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
}
.home .entry .entry-title .text-wrap {
  font-size: 34px;
  margin-bottom: 16px;
}
.home .entry .entry-subtitle .text-wrap {
  font-size: 28px;
  margin-bottom: 16px;
}
.home .entry .entry-text {
  color: #FFF;
  line-height: 1.3;
  font-size: 21px;
  max-width: 1220px;
  width: 100%;
  margin: auto;
  padding: 0 16px;
}
.home .pcox-page-element {
  max-width: 1220px;
  padding: 20px 16px;
  margin: auto;
  display: block;
}
@supports (object-fit: cover) {
  .entry.big .entry-image,
  .entry.wide .entry-image,
  .team-member .team-image-inner {
    padding-bottom: 133%;
    height: 0;
  }
  .entry.big .entry-image img,
  .entry.wide .entry-image img,
  .team-member .team-image-inner {
    object-fit: cover;
  }
}
@media screen and (min-width: 568px) {
  .entry .picture.left {
    width: 300px;
    padding: 8px 30px 20px 0;
  }
  .entry.big .entry-image {
    padding-bottom: 35%;
    position: relative;
    display: block;
  }
  .entry.big .entry-image video {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
  }
  .entry.big .caption {
    display: block;
  }
  .entry.wide .entry-image {
    padding-bottom: 35%;
    position: relative;
    display: block;
  }
  .entry.wide .entry-image video {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
  }
  .entry.wide .caption {
    display: block;
  }
  .team-member .team-image-inner {
    padding-bottom: 35%;
    padding-bottom: 100%;
    position: relative;
    display: block;
  }
  .project-list .project > div.project-inner {
    padding-bottom: calc(100% / 16 * 9);
  }
  .project-list .project > div.project-inner.video-tile {
    padding-bottom: 0;
  }
  .project-list .project .video-outer {
    min-height: 380px;
  }
  .project-list .project .video-outer video {
    right: 0;
  }
  .presentation-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .presentation-list > li {
    flex: 0 0 49%;
  }
  .team-list li {
    flex-basis: calc((100% / 3) - (8px / 1.5));
  }
  #site-footer-nav ul li.pre_item {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .team-list li {
    flex-basis: calc((100% / 4) - (8px / 1.5));
  }
  .team-list .team-name span {
    font-size: 24px;
  }
  .team-member {
    padding: 32px 16px;
    display: flex;
    justify-content: space-between;
    color: #000;
  }
  .team-member .team-image {
    width: 48%;
    flex: 0 0 48%;
    background-repeat: no-repeat;
  }
  .team-member .team-image-inner {
    padding-bottom: 133%;
  }
  .team-member .team-info {
    width: 48%;
    padding: 0;
  }
  .team-member-color .color-info {
    width: 48%;
    padding: 0;
  }
  .team-member-color .inner {
    display: flex;
    justify-content: flex-end;
    padding: 32px 0 10%;
  }
  .team-info h2 {
    text-align: left;
  }
  .team-info .team-quote {
    margin-top: 0;
    margin-bottom: 70px;
  }
  .team-info p:not(:last-child) {
    margin-bottom: 32px;
  }
  .team-social {
    justify-content: flex-start;
  }
  .team-social a {
    margin-right: 16px;
  }
  .color-info .color {
    font-size: 72px;
    margin-top: 32px;
  }
  .project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .project-list .project {
    flex: 0;
    flex-basis: calc(50% - 8px);
  }
  .project-list .project > div.project-inner {
    padding-bottom: 133%;
  }
  .project-list .project .video-outer {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    z-index: 0;
  }
  .project-list .project .video-outer video {
    position: absolute;
    right: -50%;
    height: 100% !important;
    width: auto !important;
    transition: 1s opacity;
    z-index: -1;
  }
  .project-list .project .video-outer.pic_normal {
    height: 100%;
  }
  .project-list .project .video-outer.pic_normal video {
    height: 100% !important;
  }
  .entry .picture.left {
    display: inline-block;
    float: left;
    margin-left: 0px;
    padding: 8px 30px 20px 0;
  }
  .entry .picture.left:not(:last-child) {
    margin-bottom: 0;
  }
  .entry .blox-quote {
    float: left;
    margin: 30px 30px 30px -20px;
    padding: 8px 0 12px;
  }
}
@media screen and (min-width: 1024px) {
  .site-header {
    padding: 0;
  }
  .site-header > * {
    max-width: 1220px;
    margin: auto;
  }
  .site-logo {
    display: flex;
    align-items: flex-end;
    padding: 24px 16px 32px;
    justify-content: space-between;
  }
  .site-logo .claim {
    display: block;
    margin-left: 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
  }
  .site-navigation {
    display: flex;
    justify-content: space-between;
    position: static;
    transform: none;
    width: auto;
    transition: none;
  }
  .site-navigation a {
    padding: 16px;
    border: none;
  }
  .site-navigation a:hover,
  .site-navigation a.active {
    border-bottom: 5px solid #000;
    padding-bottom: 11px;
  }
  .site-navigation ul {
    display: flex;
  }
  #user-menu-button.active + .site-navigation {
    box-shadow: none;
  }
  #user-menu-button {
    display: none;
  }
  .nav-main-level1 li:not(:last-child) {
    margin-right: 24px;
  }
  .nav-main-level1 li.relative .pcox-edit-element {
    position: absolute;
    right: -20px;
    top: 22px;
  }
  .language-nav li:not(:last-child)::after {
    content: '|';
  }
  .language-nav a {
    display: inline-block;
  }
  .entry:not(.big):not(.wide) {
    padding: 80px 0;
  }
  .entry:not(.big):not(.wide) .entry-image {
    max-width: 750px;
    margin: auto;
  }
  .entry:not(.big) .entry-headlines {
    max-width: 750px;
    margin: auto;
  }
  .entry header + .pcox-page-element {
    margin-top: 80px;
  }
  .entry .author {
    max-width: 770px;
    margin: auto;
    margin-bottom: 30px;
  }
  .entry .picture.left {
    display: inline-block;
    float: left;
    margin-left: -70px;
    padding: 8px 30px 20px 0;
  }
  .entry .picture.left:not(:last-child) {
    margin-bottom: 0;
  }
  .entry .blox-quote {
    float: left;
    width: 430px;
    margin: 30px 30px 30px -110px;
    padding: 8px 0 12px;
  }
  .entry .text {
    max-width: 750px;
    margin: auto;
    margin-bottom: 80px;
    padding: 0;
  }
  .entry .caption {
    max-width: 750px;
    margin: auto;
  }
  .entry .entry-quote {
    margin-bottom: 80px;
    max-width: 80%;
  }
  .entry .entry-quote p {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .entry p:not(:last-child) {
    margin-bottom: 80px;
  }
  .entry ul:not(:last-child) {
    margin-bottom: 80px;
  }
  .entry .picture.hovering {
    padding: 80px 16px;
  }
  .entry .picture:not(:last-child) {
    margin-bottom: 80px;
  }
  .project-list .project .video-outer {
    position: relative;
    width: 582px;
    height: 678px;
    overflow: hidden;
    z-index: 0;
  }
  .project-list .project .video-outer video {
    position: absolute;
    right: -50%;
    height: 678px !important;
    width: auto !important;
    transition: 1s opacity;
    z-index: -1;
  }
  .project-list .project .video-outer.pic_normal {
    height: 327px;
  }
  .project-list .project .video-outer.pic_normal video {
    right: 0;
    height: 327px !important;
  }
  .project-summary {
    max-width: 750px;
    margin: auto;
    margin-bottom: 80px;
  }
  .archive .entry:not(.big) {
    max-width: 750px;
    margin: auto;
  }
  .archive .entry:not(.big) .entry-header {
    padding: 40px 16px;
  }
  .archive .entry:not(.big) + .entry:not(.big) {
    padding-top: 0;
    margin-top: -40px;
  }
  .entry.wide .caption {
    margin-top: 8px;
  }
  .entry.wide .entry-headlines {
    padding: 0 16px;
    padding: 64px 16px 0;
    margin-bottom: -48px;
    max-width: 1220px;
  }
  .entry.wide .entry-headlines h1 {
    font-size: 45px;
  }
  .entry.wide .entry-headlines h2 {
    font-size: 30px;
  }
  .entry.wide .entry-headlines .text-wrap {
    max-width: 750px;
    display: block;
  }
  .entry-content {
    margin-top: 80px;
  }
  .entry.big .entry-headlines {
    padding: 80px 0 48px;
  }
  .entry.big .entry-title .text-wrap {
    font-size: 60px;
    max-width: 1220px;
    display: block;
  }
  .project-headlines {
    padding-bottom: 16px;
  }
  .entry-title {
    font-size: 28px;
  }
  .project-title .text-wrap {
    font-size: 28px;
  }
  .entry-image img {
    margin-bottom: 32px;
  }
  .team-name .text-wrap {
    font-size: 40px;
  }
  .presentation-list > li {
    flex-basis: calc(100% / 3 - 15px);
    margin-bottom: 64px;
  }
  .team-list li {
    flex-basis: calc((100% / 5) - (8px / 1.25));
  }
  .team-member {
    padding: 48px 16px;
  }
  .team-member .team-image-inner {
    padding-bottom: 100%;
  }
  .team-member .team-info {
    width: 45%;
  }
  .team-member-color .color-info {
    width: 45%;
    padding-top: 0;
  }
  .project-list .project {
    margin-bottom: 0;
  }
  .project-list .project > div.project-inner {
    padding-bottom: calc(100% / 16 * 9);
  }
  .project-list .project.big {
    grid-row-end: span 2;
  }
  @supports (display: grid) {
    .project-list {
      width: 1024px;
      display: grid;
      grid-gap: 24px;
      grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
      margin-bottom: 8px;
      grid-auto-rows: 272px;
    }
    .project-list .project {
      margin-bottom: 0;
    }
    .project-list .project.big {
      grid-row-end: span 2;
    }
  }
}
@media screen and (min-width: 1170px) {
  .team-name .text-wrap {
    font-size: 48px;
  }
  .entry.big .entry-headlines {
    padding-bottom: 32px;
  }
  .entry.big .entry-title {
    padding: 0 32px;
  }
  .entry.big .entry-subtitle {
    padding: 0 32px;
  }
  .team-identity {
    padding-bottom: 32px;
  }
  .team-identity .team-name {
    padding: 0 32px;
  }
  .team-identity .team-job {
    padding: 0 32px;
  }
  .project-headlines {
    padding-bottom: 32px;
  }
  .project-title {
    padding: 0 32px;
  }
  .project-subtitle {
    padding: 0 32px;
  }
  .home .entry:not(.big):not(.wide) {
    padding: 64px 32px;
  }
  .home .entry:not(.big) .entry-header {
    padding-top: 0;
  }
  .home .entry:not(.big) .entry-text p {
    max-width: none;
  }
  .home .entry .entry-title .text-wrap {
    font-size: 70px;
  }
  .home .entry .entry-subtitle .text-wrap {
    font-size: 50px;
  }
  .home .entry .entry-text {
    padding: 0 32px;
    font-size: 28px;
  }
  .home .entry .entry-text p {
    max-width: 610px;
  }
  .blox-quote {
    float: left;
    width: 430px;
    margin: 30px 30px 30px -210px;
    padding: 8px 0 12px;
  }
  @supports (display: grid) {
    .project-list {
      width: 1170px;
      grid-auto-rows: 313px;
    }
  }
}
@media screen and (min-width: 1220px) {
  @supports (display: grid) {
    .project-list {
      width: 1220px;
      grid-auto-rows: 327px;
    }
  }
  .entry .blox-quote {
    float: left;
    margin-left: 0px;
    width: 430px;
    padding: 8px 0 12px;
    margin: 30px 30px 30px -215px;
  }
}
#pcox-admin-toolbar .plexframe-site-logo {
  height: 32px;
  margin: 6px;
}
.plexframe-tool .site-header {
  margin-top: 42px;
}
/* ==========================================================================
   Helper Klassen
   ========================================================================== */
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
.cursor_pointer {
  cursor: pointer;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}
.min_height {
  min-height: 1px;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clear {
  clear: both;
  float: none;
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /*
	 * Don't show links for images, or javascript/internal links
	 */
  #footer #sitemap {
    display: none;
  }
  #breadcrumb {
    display: none;
  }
  body {
    background-color: white !important;
  }
  #content {
    width: 100%;
  }
  .edit,
  .edit_elements_wrapper,
  .edit_elements,
  .teaser_navi,
  .left_navi {
    display: none;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*# sourceMappingURL=style.css.map */