/* --- breakpoints --- */
/* ----- */
.contact-block, .accordion-block .accord {
  padding: 15px 0;
  width: 90%;
  max-width: calc(1920px - 9%);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.accordion-block .accord .item .text a.link {
  background: var(--liminal-blue);
  padding: 8px 30px;
  display: inline-block;
  color: white;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  border-radius: 5px;
}
.accordion-block .accord .item .text a.link:hover {
  background-color: var(--liminal-green);
  cursor: pointer;
}

:root {
  --liminal-green: #9c3;
  --liminal-blue: #34b2e7;
  --liminal-lightgrey: #f3f3f3;
  --liminal-dgray: #393939;
}

.has-liminal-green-background-color {
  background-color: var(--liminal-green);
}

.has-liminal-blue-background-color {
  background-color: var(--liminal-blue);
}

.dev {
  background-color: red;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  padding: 10px 15px 7px;
  font-size: 14px;
  z-index: 110;
  font-family: "Arial";
  font-weight: 600;
}

.accordion-block {
  position: relative;
}
.accordion-block .accord .item {
  border-bottom: 1px solid var(--liminal-lightgrey);
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.accordion-block .accord .item span.title {
  font-size: 16px;
  line-height: 23px;
  font-family: "Source Sans Pro", sans-serif;
  color: var(--solace-navy);
  transition: color 0.4s ease-in-out;
}
.accordion-block .accord .item .text {
  padding: 0;
  box-sizing: border-box;
}
.accordion-block .accord .item .text h2 {
  font-size: 24px;
}
.accordion-block .accord .item .text p {
  font-size: 15px;
}
.accordion-block .accord .item .text a.link {
  position: relative;
}
.accordion-block .accord .item .toggle {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 17px;
  right: 0;
  background-color: var(--liminal-blue);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.accordion-block .accord .item .toggle:before {
  content: "";
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: white;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}
.accordion-block .accord .item .toggle:after {
  content: "";
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: white;
  transform: translate(-50%, -50%) rotate(90deg);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.accordion-block .accord .item .toggle:hover {
  cursor: pointer;
  background-color: var(--liminal-dgray);
}
.accordion-block .accord .item.open .toggle {
  background-color: var(--liminal-green);
}
.accordion-block .accord .item.open .toggle:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion-block .accord .item:hover {
  cursor: pointer;
}
.accordion-block .accord .item:hover span.title {
  color: var(--solace-orange);
}
.accordion-block .accord .item:first-child {
  border-top: 1px solid var(--c-lightgrey);
}

@media screen and (max-width: 844px) {
  .accordion-block .accord .item span.title {
    max-width: 92%;
    display: inline-block;
  }
  .accordion-block .accord .item .text {
    padding: 20px 0 0 0;
  }

  .wp-block-column .accordion-block .accord {
    padding: 0;
  }
}
.boxes-block {
  position: relative;
  width: 85%;
  padding: 2vw 0 2vw 0;
  max-width: 1700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.boxes-block .box {
  width: 48%;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
.boxes-block .box .image {
  height: auto;
  min-height: auto;
  max-height: none;
  width: 100%;
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.boxes-block .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.boxes-block .box .image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.boxes-block .box .bg {
  min-height: 250px;
  max-height: 350px;
  height: 50vh;
  top: 0;
  z-index: 0;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
}
.boxes-block .box .container {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.boxes-block .box .container h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 28px;
  padding: 10px 0 0;
  margin: 0;
  text-decoration: none;
  color: var(--liminal-green);
}
.boxes-block .box .container p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: #3B3C3B;
}
.boxes-block .box .button {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  text-decoration: none;
  color: var(--liminal-blue);
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.boxes-block .box:hover > .image:after {
  opacity: 0.5;
}
.boxes-block .box:nth-child(3n) {
  margin-right: 0px;
}

@media screen and (max-width: 844px) {
  .boxes-block {
    padding: 20px 0;
  }
  .boxes-block .box {
    width: 100%;
  }
}
#careers {
  margin-top: 20px;
  background: #f2f2f2;
  position: relative;
  display: inline-block;
  width: 100%;
}
#careers #list-header .cont {
  padding: 20px 0 0;
  width: 90%;
  max-width: calc(1920px - 9%);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 94px;
  box-sizing: border-box;
}
#careers #list-header .cont h2 {
  color: black;
  width: 100%;
}
#careers #list-header .cont #list-title {
  display: inline-block;
}
#careers #list-header .cont #list-title p span {
  font-weight: 700;
}
#careers #list-header .cont #list-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 10px;
}
#careers #list-header .cont #list-filter .select {
  position: relative;
}
#careers #list-header .cont #list-filter .select select {
  border: none;
  padding: 5px 10px;
  box-shadow: 1px 1px 4px #cecece;
  border-radius: 5px;
  min-width: 185px;
  display: inline-block;
  margin-left: 15px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#careers #list-header .cont #list-filter .select:after {
  content: "";
  width: 10px;
  height: 10px;
  background: transparent url(../images/arrow.svg) no-repeat center center;
  transform: rotate(-90deg);
  background-size: 12px;
  top: 5px;
  right: 5px;
  position: absolute;
  opacity: 0.7;
}
#careers #list-header .cont #list-filter .select:before {
  content: "";
  width: 10px;
  height: 10px;
  background: transparent url(../images/arrow.svg) no-repeat center center;
  transform: rotate(90deg);
  background-size: 12px;
  top: 15px;
  right: 5px;
  position: absolute;
  opacity: 0.7;
}
#careers #list-header .cont #list-filter .select:hover:before {
  opacity: 1;
}
#careers #list .cont {
  padding: 5px 0 40px;
  width: 90%;
  max-width: calc(1920px - 9%);
  min-height: 380px;
  margin: 0 auto;
  position: relative;
}
#careers #list .cont .message {
  padding: 20px 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  background-color: white;
  border-radius: 5px;
  margin-top: 20px;
}
#careers #list .cont .listing {
  background-color: white;
  box-shadow: 1px 1px 4px #cecece;
  padding: 30px 20px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
}
#careers #list .cont .listing h3 {
  font-size: 19px;
  margin: 0;
  padding: 0;
}
#careers #list .cont .listing .date {
  font-size: 13px;
  color: #b9b9b9;
  font-weight: 100;
}
#careers #list .cont .listing p {
  font-size: 16px;
}
#careers #list .cont .listing p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
#careers #list .cont .listing:after {
  content: "";
  opacity: 0;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 15px;
  background-image: url(../images/arrow.svg);
  background-size: 27px;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
#careers #list .cont .listing:hover:after {
  opacity: 1;
}

@media screen and (max-width: 844px) {
  .careers-block {
    width: 100%;
    overflow: hidden;
  }
  .careers-block #careers #list-header .cont #list-filter {
    position: relative;
    bottom: auto;
    font-weight: 100;
    font-size: 15px;
    line-height: 18px;
  }
  .careers-block #careers #list-header .cont #list-filter .select {
    width: 80px !important;
  }
  .careers-block #careers #list-header .cont #list-filter .select select {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-left: 5px;
    font-weight: 500;
    font-size: 15px;
  }
  .careers-block #careers #list-header .cont #list-title {
    width: 60%;
  }
  .careers-block #careers #list-header .cont #list-title p {
    font-size: 15px;
  }
  .careers-block #careers #list-header .cont #list-title p span {
    font-size: 15px;
  }
  .careers-block #careers #list .cont {
    padding: 5px 0 10px;
  }
}
.contact-block {
  padding: 0;
}
.contact-block .wpcf7-form {
  position: relative;
}
.contact-block .wpcf7-form .cont {
  font-size: 0px;
  margin-top: 2%;
  display: flex;
  position: relative;
  padding: 0;
  border-bottom: none !important;
  width: 100%;
}
.contact-block .wpcf7-form .cont .contact-left {
  display: inline-block;
  width: 49%;
  margin-right: 2%;
  vertical-align: top;
  flex: 1;
  z-index: 1;
}
.contact-block .wpcf7-form .cont .contact-right {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  flex: 1;
  z-index: 1;
}
.contact-block .wpcf7-form .cont .contact-right p:first-child {
  height: calc(100% - 85px);
}
.contact-block .wpcf7-form .cont .contact-right p:first-child textarea {
  height: calc(100% - 25px);
}
.contact-block .wpcf7-form .cont p {
  background-color: #ecf3de;
  padding: 5px 15px 15px 15px;
  box-sizing: border-box;
  border-radius: 3px;
  margin-bottom: 1%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.contact-block .wpcf7-form .cont p input {
  background-color: #fff;
  border: none;
  font-size: 18px;
  margin-top: 2px;
  border-radius: 3px;
  padding: 10px 20px !important;
}
.contact-block .wpcf7-form .cont p textarea {
  border-radius: 3px;
  border: none;
  font-size: 18px;
  margin-top: 2px;
  display: block;
  padding: 10px 20px !important;
}
.contact-block .wpcf7-form .cont input[type=submit] {
  font-size: 20px;
  float: right;
  background-color: var(--liminal-blue);
  border-radius: 3px;
  padding: 10px 70px !important;
  transition: all 0.3s ease-in-out;
}
.contact-block .wpcf7-form .cont input[type=submit]:hover {
  cursor: pointer;
  background-color: #1194ca;
}
.contact-block .wpcf7-form .cont ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9b9b9b;
  font-weight: 100;
}
.contact-block .wpcf7-form .cont ::-moz-placeholder {
  /* Firefox 19+ */
  color: #9b9b9b;
  font-weight: 100;
}
.contact-block .wpcf7-form .cont :-ms-input-placeholder {
  /* IE 10+ */
  color: #9b9b9b;
  font-weight: 100;
}
.contact-block .wpcf7-form .cont :-moz-placeholder {
  /* Firefox 18- */
  color: #9b9b9b;
  font-weight: 100;
}
.contact-block div.wpcf7-response-output {
  border: none;
  color: black;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 844px) {
  .contact-block .wpcf7-form {
    display: block;
  }
  .contact-block .wpcf7-form .cont {
    display: block;
  }
  .contact-block .wpcf7-form .cont .contact-left {
    width: 100%;
    margin-right: 0;
  }
  .contact-block .wpcf7-form .cont .contact-right {
    width: 100%;
    margin-right: 0;
  }
  .contact-block .wpcf7-form .cont input[type=submit] {
    width: 100%;
  }
}
.map-block {
  position: relative;
}
.map-block #map {
  width: 100%;
  height: 435px;
}

.pipeline-block {
  z-index: 1;
  position: relative;
}
.pipeline-block #pl {
  padding: 15px 0;
  width: 90%;
  max-width: calc(1920px - 9%);
  margin: 0 auto;
  position: relative;
}
.pipeline-block #pl .pl-header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
}
.pipeline-block #pl .pl-header .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 30%;
}
.pipeline-block #pl .pl-header .info > div {
  flex: 1 1 0px;
  box-sizing: border-box;
  background-color: #9DC229;
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pipeline-block #pl .pl-header .phase {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pipeline-block #pl .pl-header .phase .col {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  flex: 1 1 0px;
  gap: 8px;
}
.pipeline-block #pl .pl-header .phase .col .title {
  width: 100%;
  box-sizing: border-box;
  background-color: #9dc229;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  height: 40px;
}
.pipeline-block #pl .pl-header .phase .col .col {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: auto;
  justify-content: space-around;
  gap: 8px;
  height: calc(100% - 48px);
}
.pipeline-block #pl .pl-header .phase .col .col > div {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #F0F6E9;
  color: #9dc229;
  flex: 1 1 0px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
}
.pipeline-block #pl .pl-header .phase > .col:nth-child(2) {
  max-width: 40%;
}
.pipeline-block #pl .pl-header .milestones {
  width: 15%;
  flex: 1 1 0px;
  box-sizing: border-box;
  background-color: #9DC229;
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 0;
}
.pipeline-block #pl .pl-body {
  position: relative;
}
.pipeline-block #pl .pl-body .bars {
  display: flex;
  flex-wrap: wrap;
}
.pipeline-block #pl .pl-body .bars .s1 {
  width: 30%;
}
.pipeline-block #pl .pl-body .bars .s2 {
  height: 10px;
}
.pipeline-block #pl .pl-body .bars .s2:before {
  content: "";
  background-color: white;
  height: 10px;
  z-index: 10;
  width: calc(55% + 16px);
  position: absolute;
}
.pipeline-block #pl .pl-body .bars .s2 span {
  height: 100%;
  position: absolute;
  width: 2px;
  background: transparent url(../images/divide.svg) repeat-y;
  mix-blend-mode: soft-light;
}
.pipeline-block #pl .pl-body .bars .s2 span:nth-child(1) {
  left: 41.2%;
}
.pipeline-block #pl .pl-body .bars .s2 span:nth-child(2) {
  left: 52.2%;
}
.pipeline-block #pl .pl-body .bars .s2 span:nth-child(3) {
  left: 63.3%;
}
.pipeline-block #pl .pl-body .bars .s2 span:nth-child(4) {
  left: 70.73%;
}
.pipeline-block #pl .pl-body .bars .s2 span:nth-child(5) {
  left: 78.2%;
}
.pipeline-block #pl .pl-body .product {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 8px;
  border-bottom: 1px solid #DDE4EA;
  z-index: -1;
  position: relative;
}
.pipeline-block #pl .pl-body .product .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 30%;
}
.pipeline-block #pl .pl-body .product .info > .col {
  flex: 1 1 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
  max-width: 33%;
}
.pipeline-block #pl .pl-body .product .info > .col ul {
  margin: 0 0 0 20px;
  padding: 0;
  display: inline-block;
  width: 100%;
}
.pipeline-block #pl .pl-body .product .info > .col ul li {
  line-height: 17px;
  text-align: left;
  font-size: 15px;
  font-weight: 300;
  word-break: break-word;
}
.pipeline-block #pl .pl-body .product .info > .col.logo {
  height: 100px;
}
.pipeline-block #pl .pl-body .product .info > .col.liminal {
  background: transparent url(../images/liminal-logo.svg) no-repeat center center;
}
.pipeline-block #pl .pl-body .product .info > .col.program span {
  font-size: 20px;
  padding: 0 20px;
}
.pipeline-block #pl .pl-body .product .phase {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pipeline-block #pl .pl-body .product .phase .phase-bar {
  flex: 1 1 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
}
.pipeline-block #pl .pl-body .product .phase .phase-bar:before {
  content: "";
  height: 30px;
  width: 100%;
  background-color: #EEEEEE;
  position: absolute;
  border-radius: 5px;
}
.pipeline-block #pl .pl-body .product .phase .phase-bar:after {
  content: "";
  height: 30px;
  width: 0%;
  background: #5bb1dd;
  background: linear-gradient(90deg, #5bb1dd 0%, #77b890 52%, #9dc229 100%);
  position: absolute;
  left: 0;
  border-radius: 5px;
  transition: width 0.8s ease-in-out;
}
.pipeline-block #pl .pl-body .product .milestones {
  width: 15%;
  flex: 1 1 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 0;
  word-break: break-word;
}
.pipeline-block #pl .pl-body .product .milestones span {
  padding: 0 30px;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar:after {
  transition-delay: 0.2s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(1) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar:after {
  transition-delay: 0.4s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(2) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar:after {
  transition-delay: 0.6s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(3) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar:after {
  transition-delay: 0.8s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(4) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar:after {
  transition-delay: 1s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(5) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar:after {
  transition-delay: 1.2s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(6) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar:after {
  transition-delay: 1.4s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(7) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar:after {
  transition-delay: 1.6s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(8) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar:after {
  transition-delay: 1.8s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(9) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar:after {
  transition-delay: 2s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(10) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar:after {
  transition-delay: 2.2s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(11) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar:after {
  transition-delay: 2.4s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(12) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar:after {
  transition-delay: 2.6s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(13) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar:after {
  transition-delay: 2.8s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(14) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar:after {
  transition-delay: 3s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(15) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar:after {
  transition-delay: 3.2s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(16) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar:after {
  transition-delay: 3.4s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(17) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar:after {
  transition-delay: 3.6s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(18) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar:after {
  transition-delay: 3.8s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(19) .phase .phase-bar.phase-6:after {
  width: 100%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar:after {
  transition-delay: 4s;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-1:after {
  width: 19.6%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-2:after {
  width: 39.5%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-3:after {
  width: 59.7%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-4:after {
  width: 73.2%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-5:after {
  width: 86.8%;
}
.pipeline-block #pl.anim .pl-body .product:nth-child(20) .phase .phase-bar.phase-6:after {
  width: 100%;
}

@media screen and (max-width: 844px) {
  .pipeline-block #pl .pl-header .info {
    width: 42%;
  }
  .pipeline-block #pl .pl-header .info div:nth-child(1), .pipeline-block #pl .pl-header .info div:nth-child(3) {
    display: none;
  }
  .pipeline-block #pl .pl-header .phase .col .col {
    display: none;
  }
  .pipeline-block #pl .pl-header .milestones {
    display: none;
  }
  .pipeline-block #pl .pl-body .bars {
    display: none;
  }
  .pipeline-block #pl .pl-body .product {
    z-index: auto;
    padding: 20px 0;
  }
  .pipeline-block #pl .pl-body .product .info {
    display: inline-block;
    width: 42%;
  }
  .pipeline-block #pl .pl-body .product .info > .col {
    padding: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .pipeline-block #pl .pl-body .product .info > .col.program span {
    padding: 0;
  }
  .pipeline-block #pl .pl-body .product .info > .col ul {
    padding: 5px 0;
  }
  .pipeline-block #pl .pl-body .product .info > .col ul li {
    padding: 1px 0;
  }
  .pipeline-block #pl .pl-body .product .info .logo {
    display: none;
  }
  .pipeline-block #pl .pl-body .product .phase .phase-bar {
    padding: 0;
  }
  .pipeline-block #pl .pl-body .product .milestones {
    padding: 0;
    text-align: left;
    display: inline-block;
  }
  .pipeline-block #pl .pl-body .product .milestones span {
    padding: 0;
  }
  .pipeline-block #pl .pl-body .product .milestones p {
    padding: 0;
  }
}
[data-type="acf/slider"] {
  padding-bottom: 200px;
}
[data-type="acf/slider"] #top-bg img {
  width: auto !important;
  height: 450px !important;
  transform: translate(-50%, 0%);
  left: 50%;
  position: absolute;
  top: -10px;
}
[data-type="acf/slider"] .liminal-slick-homepage {
  width: 400px;
  margin: 0 auto;
  text-align: center;
}
[data-type="acf/slider"] .liminal-slick-homepage .item {
  display: none;
}
[data-type="acf/slider"] .liminal-slick-homepage .item a {
  display: inline-block;
}
[data-type="acf/slider"] .liminal-slick-homepage .item:nth-child(1) {
  display: block;
}

.slider-block {
  position: relative;
  z-index: 2;
}
.slider-block .dev {
  top: 28px !important;
}
.slider-block #top-bg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1200px;
  z-index: -1;
  top: -15px;
}
.slider-block #top-bg img {
  width: 100%;
  height: auto;
}
.slider-block .slick-slider {
  position: relative;
  min-height: 730px;
  max-height: 730px;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slider-block .slick-slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slider-block .slick-slider .item {
  height: 90vh;
  max-height: 800px;
  min-height: 730px;
  position: relative;
  overflow: hidden;
}
.slider-block .slick-slider .item .ct-u-display-tablex {
  width: 100%;
  height: 100%;
}
.slider-block .slick-slider .item .ct-u-display-tablex .inner {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 730px;
}
.slider-block .slick-slider .item .ct-u-display-tablex .inner .container {
  width: 50%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 75px;
}
.slider-block .slick-slider .item .ct-u-display-tablex .inner .container p {
  font-size: 20px;
  margin: 20px 0 40px;
  color: #fff;
  line-height: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  width: 100%;
}
.slider-block .slick-slider .item .ct-u-display-tablex .inner .container a {
  color: #fff;
  font-size: 22px;
  font-weight: 100;
  padding-top: 65px;
  position: relative;
}
.slider-block .ct-header h1.big {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  padding-top: 50px;
  text-transform: none;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 33px;
}
.slider-block .ct-header p {
  font-size: 20px;
  margin: 20px 0 40px;
  color: #fff;
  line-height: 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
.slider-block .ct-header a {
  color: white;
  font-size: 22px;
  font-weight: 100;
  padding-top: 65px;
  position: relative;
}
.slider-block .ct-header a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: transparent url("../images/liminal-logo-white.svg") no-repeat center center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 844px) {
  .slider-block {
    overflow: hidden;
    width: 100%;
  }
  .slider-block #top-bg {
    top: -10px;
  }
  .slider-block #top-bg img {
    left: 0;
    top: -10px;
  }
}
[data-type="acf/team"] {
  padding: 0 20px;
  box-sizing: border-box;
}

.team-block > .wrapper {
  padding: 0;
}
.team-block #team-image {
  padding: 20px 0 30px;
  opacity: 1;
  width: 100%;
  height: auto;
  transition: all 1s ease-in-out;
}
.team-block #team-image.active {
  opacity: 0;
}
.team-block #team {
  transition: 1s ease-in-out;
  overflow: hidden;
  opacity: 1;
  font-size: 0px;
}
.team-block #team .divider {
  margin-bottom: 30px;
}
.team-block #team .member {
  width: 18.4%;
  margin-right: 2%;
  margin-bottom: 50px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.team-block #team .member:hover {
  cursor: pointer;
}
.team-block #team .member:hover > .name {
  color: var(--liminal-blue);
}
.team-block #team .member .image {
  width: 100%;
  height: 185px;
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-color: #cecece;
}
.team-block #team .member .title {
  font-size: 15px;
  color: #888888;
  font-style: italic;
  border-bottom: 1px solid #a1a1a1;
  padding: 0 0 7px;
  font-size: -0.5px;
  letter-spacing: -0.5px;
  min-height: 39px;
  font-family: "Source Sans Pro", sans-serif;
  padding: 10px 0 10px;
}
.team-block #team .member .name {
  font-size: 20px;
  padding: 10px 0 2px 0;
  letter-spacing: -0.5px;
  color: #6b6b6b;
  transition: all 0.1s ease-in-out;
  font-family: "Source Sans Pro", sans-serif;
}
.team-block #team .member .linkedin {
  background: transparent url("../images/linkedin.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  display: block;
  background-size: 20px;
  margin-top: 8px;
}
.team-block #team .member .linkedin:hover {
  background-image: url("../images/linkedin-blue.svg");
}
.team-block #team .member:nth-child(5n) {
  margin-right: 0px;
}
.team-block #team .clear {
  clear: both;
  float: none;
}
.team-block #fade {
  width: 100%;
  height: 150%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.6s ease-in-out;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(6px);
}
.team-block #fade.active {
  visibility: visible;
  opacity: 1;
}
.team-block #detail {
  width: 100%;
  display: flex;
  position: fixed;
  max-height: 800px;
  overflow: hidden;
  visibility: hidden;
  z-index: 10002;
  max-width: calc(1920px - 5%);
  width: calc(90% + 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*#images {
      width: 50%;
      height: 100%;
      flex: 1;
      background-color: #cecece;
      float: left;
      position: absolute;
      .image {
          width: 100%;
          height: 100%;
      }
  }
  .detail {
      width: 100%;
      position: relative;
      left: 0;
      .detail-cont {
          width: 50%;
          float: right;
      }
      .image {
          float: right;
          width: 50%;
      }
  }*/
}
.team-block #detail #slider {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 50%;
  height: 100%;
  left: -1000px;
  transition: all 1.3s ease-in-out;
  -webkit-transition: all 1.3s ease-in-out;
  opacity: 0;
}
.team-block #detail #slider #images {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}
.team-block #detail #slider #images .image {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 700px;
  height: 100vh;
  background: #ccc;
  text-align: center;
  line-height: 300px;
  background-size: cover;
  background-position: top center;
}
.team-block #detail #slider-bar {
  width: 50%;
  background-color: #fff;
  position: absolute;
  right: 0px;
  z-index: 10;
  overflow: hidden;
  right: -1000px;
  transition: all 1.3s ease-in-out;
  opacity: 0;
}
.team-block #detail #slider-bar #cont {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-block #detail #slider-bar #cont .image {
  position: relative;
  display: block;
  float: left;
  margin: 11px 11px 11px 0;
  padding: 0;
  width: 100px;
  height: 60px;
  text-align: center;
  background-size: cover;
  background-position: center right;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.team-block #detail #slider-bar #cont .image:hover {
  cursor: pointer;
  opacity: 1;
}
.team-block #detail #slider-bar #cont .image:nth-child(2) {
  opacity: 1;
}
.team-block #detail #slider-cont {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 50%;
  background-color: white;
  right: -1000px;
  transition: all 1.3s ease-in-out;
  opacity: 0;
}
.team-block #detail #slider-cont #cont {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-block #detail #slider-cont #cont .cont {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 700px;
  height: 700px;
  text-align: center;
  background-size: cover;
  padding: 100px 50px 50px 50px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.team-block #detail #slider-cont #cont .cont .holder {
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  position: relative;
}
.team-block #detail #slider-cont #cont .cont .name {
  font-size: 28px;
  color: #333333;
  padding: 20px 0 15px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 100;
  letter-spacing: -0.5px;
}
.team-block #detail #slider-cont #cont .cont .name strong {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 100;
}
.team-block #detail #slider-cont #cont .cont .title {
  font-size: 17px;
  color: #5a5a5a;
  font-weight: 100;
  font-style: italic;
  font-family: "Source Sans Pro", sans-serif;
}
.team-block #detail #slider-cont #cont .cont .divi {
  width: 120px;
  height: 2px;
  background-color: var(--liminal-blue);
  margin: 0 auto;
  margin-top: 25px;
  margin-bottom: 25px;
  background: #98c239;
  background: linear-gradient(90deg, #98c239 0%, #30b2e7 100%);
}
.team-block #detail #slider-cont #cont .cont .description {
  max-width: 100%;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 100;
  line-height: 21px;
}
.team-block #detail #slider-cont #cont .cont .description p {
  font-size: 15px;
}
.team-block #detail #slider-cont #cont .cont a.linkedin {
  background: transparent url("../images/linkedin.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 20px;
  margin-top: 20px;
}
.team-block #detail #slider-cont #cont .cont a.linkedin:hover {
  background-image: url("../images/linkedin-blue.svg");
}
.team-block #detail .control_next {
  position: absolute;
  top: 0px;
  z-index: 10101;
  width: 40px;
  height: 40px;
  right: 0px;
  top: 0px;
  background: var(--liminal-blue) url("../images/arrow-right.svg") no-repeat center center;
  background-size: 10px;
}
.team-block #detail .close {
  position: absolute;
  top: 0px;
  z-index: 10101;
  width: 40px;
  height: 40px;
  right: 0px;
  top: 80px;
  background: var(--liminal-blue) url("../images/close2.svg") no-repeat center center;
  background-size: 12px;
}
.team-block #detail .control_prev {
  position: absolute;
  top: 0px;
  z-index: 10101;
  width: 40px;
  height: 40px;
  right: 0px;
  top: 40px;
  background: var(--liminal-blue) url("../images/arrow-left.svg") no-repeat center center;
  background-size: 10px;
}
.team-block #detail.active {
  visibility: visible;
}
.team-block #detail.active #slider {
  left: 0px;
  opacity: 1;
}
.team-block #detail.active #slider-bar {
  right: 0px;
  opacity: 1;
}
.team-block #detail.active #slider-cont {
  right: 0px;
  opacity: 1;
}
.team-block #team.active {
  overflow: hidden;
  height: 0px;
  opacity: 0;
}
.team-block #detail.active #slider-cont {
  width: 100%;
}
.team-block #detail #slider {
  left: auto;
  transition: all 0.3s ease-in-out;
}
.team-block #detail #slider-bar {
  right: auto;
  transition: all 0.3s ease-in-out;
  background-color: #f1f1f1;
}
.team-block #detail #slider-cont #cont .cont {
  padding: 100px 20px 50px 20px;
  box-sizing: border-box;
  overflow-y: scroll;
}
.team-block #detail #slider-cont #cont .cont .description {
  max-width: 100%;
}
.team-block #detail #slider-cont #cont .cont .name {
  line-height: 33px;
}

@media screen and (max-width: 844px) {
  .team-block {
    width: 100%;
    overflow: hidden;
  }
  .team-block #team {
    height: auto !important;
    width: 100% !important;
    padding: 20px 0;
  }
  .team-block #team .member {
    width: 100%;
    margin-bottom: 25px;
  }
  .team-block #team .member .image {
    height: 35vh;
    background-position: center;
  }
  .team-block #team.active {
    height: 0px !important;
  }
  .team-block #detail.active #slider {
    position: absolute;
  }
  .team-block #detail.active #slider #images {
    display: none;
  }
  .team-block #detail.active #slider-cont {
    width: 100%;
  }
  .team-block #detail {
    top: 50%;
  }
  .team-block #detail .control_next {
    right: auto;
    left: 0;
    height: 41px;
  }
  .team-block #detail .control_prev {
    left: 0;
    height: 41px;
    top: 41px;
    right: auto;
  }
  .team-block #detail .close {
    top: 0px;
    height: 82px;
  }
  .team-block #detail #slider {
    left: auto;
    transition: all 0.3s ease-in-out;
  }
  .team-block #detail #slider-bar {
    right: auto;
    transition: all 0.3s ease-in-out;
    background-color: #f1f1f1;
  }
  .team-block #detail #slider-cont #cont .cont {
    padding: 0 20px 50px 20px;
    box-sizing: border-box;
    margin-top: 100px;
    overflow-y: scroll;
  }
  .team-block #detail #slider-cont #cont .cont .description {
    max-width: 100%;
  }
  .team-block #detail #slider-cont #cont .cont .name {
    line-height: 33px;
  }
}
.title-block #top-bg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1200px;
  z-index: -1;
  top: 0;
}
.title-block #top-bg img {
  width: 100%;
  height: auto;
}
.title-block #top-bg.small {
  width: 700px;
}
.title-block .cont {
  width: 340px;
  margin: 0 auto;
  text-align: center;
  margin-top: 85px;
  margin-bottom: 70px;
  padding: 80px 0 60px;
  min-height: 145px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.title-block .cont h1 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 45px;
  line-height: 45px;
  font-weight: 600;
}
.title-block .cont p {
  color: #fff;
  padding: 10px 0;
  margin: 0;
  font-weight: 400;
  font-size: 21px;
}
.title-block .cont:after {
  content: "";
  width: 60px;
  height: 60px;
  background: transparent url(../images/liminal-logo-white.svg) no-repeat center center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.title-block .dev {
  top: 28px !important;
}

@media screen and (max-width: 844px) {
  .title-block {
    position: relative;
    width: 100%;
    overflow: hidden;
    top: -25px;
  }
  .title-block .cont {
    padding: 120px 0 60px;
  }
}
[data-type="acf/title"] {
  position: relative;
}
[data-type="acf/title"] #top-bg {
  z-index: 0;
}

.triangles-block {
  position: relative;
  z-index: 1;
}
.triangles-block #bubbles {
  width: 95%;
  margin: 0 auto;
  margin-top: -180px;
  margin-bottom: 80px;
  max-width: 1800px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: -1;
}
.triangles-block #bubbles .bubble {
  background-size: cover;
  background-position: center;
  width: 40%;
  padding-bottom: 45.5%;
  position: relative;
}
.triangles-block #bubbles .bubble .bg {
  background-color: var(--liminal-green);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0.6;
}
.triangles-block #bubbles .bubble .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  font-size: 25px;
  line-height: 30px;
  color: white;
  z-index: 2;
  text-align: center;
  width: 70%;
  font-weight: 400;
}
.triangles-block #bubbles .bubble.left {
  -webkit-mask-image: url(../images/bubble-left.svg);
  -webkit-mask-size: cover;
  mask-image: url(../images/bubble-left.svg);
  mask-size: cover;
}
.triangles-block #bubbles .bubble.right {
  -webkit-mask-image: url(../images/bubble-right.svg);
  -webkit-mask-size: cover;
  mask-image: url(../images/bubble-right.svg);
  mask-size: cover;
}
.triangles-block #bubbles .bubble.right .text {
  transform: translate(-40%, -50%);
}
.triangles-block #bubbles:after {
  content: "";
  width: 110px;
  height: 110px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent url(../images/liminal-logo-gradient.png) no-repeat center center;
  background-size: 110px;
  transform: translate(-50%, -50%);
}
.triangles-block #bubbles .svgMask {
  position: relative;
  width: auto;
  display: inline-block;
  flex: 1 0 50%;
  margin: 0;
}
.triangles-block #bubbles .svgMask svg {
  width: 600px;
  height: 600px;
}
.triangles-block #bubbles .svgMask.left {
  float: left;
}
.triangles-block #bubbles .svgMask.right {
  float: right;
  text-align: right;
}
.triangles-block #bubbles .text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
}
.triangles-block #bubbles .bubbles {
  text-align: center;
  position: relative;
}
.triangles-block #bubbles .logo {
  display: inline-block;
  width: 120px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.triangles-block #bubbles .logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1250px) {
  .triangles-block #bubbles {
    margin-top: -10vw;
  }
  .triangles-block #bubbles .svgMask svg {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 1440px) {
  .triangles-block #bubbles {
    margin-top: -10vw;
  }
  .triangles-block #bubbles .svgMask svg {
    width: 500px;
    height: 500px;
  }
}
[data-type="core/spacer"] .components-resizable-box__container {
  background-color: #f7f7f7;
}
/*# sourceMappingURL=block.css.map */
