.mob-lifecycle-static {
  display:none;
}
.grid-section {
  padding: 0 1em;
  margin auto 0;
}
.ivd-title {
  grid-area: ivd;
  border-bottom: 2px solid #92c5b7; 
  display:flex;
  align-items:flex-end;
}

.lab-title {
  grid-area: lab;
  display:flex;
  justify-content:flex-end;
  align-items: flex-end;
  border-bottom: 2px solid #92c5b7; 
}

.org-title {
  font-family: Quattrocento Sans,sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 0;
}

.content-container {
  grid-area: content;
  min-height:50vh;
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items:stretch;

}
#content-background {
  background: url('https://26293608.fs1.hubspotusercontent-eu1.net/hubfs/26293608/Web%20assets/Lifecycle%20(consulting)/arrow-together2.svg') no-repeat center 10%;
  background-size: contain; 
}
.inhouse-title {
  grid-area: inhouse;
  border-top: 2px solid #92c5b7;
  display:flex;
  justify-content:space-between;
  align-items: flex-end;
}
.md-title {
  grid-area: md;
  border-top: 2px solid #92c5b7;
  display:flex;
  align-items: flex-end;
}
.md-lifecycle-wrapper {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #0e4147, #308d8f) border-box;
  border-radius: 2em;
  border: 3px solid transparent;
  padding:1em;
}
.md-ivd-lifecycle {
  background: linear-gradient(270deg, #fff 0%, rgba(0,255,255,0.02) 40%, #fff 110%);
  width:100%;
  max-width:100%;
  min-height: 30vh;
  display:block;
}

.md-lifecycle {
  background: linear-gradient(270deg, #fff 0%, rgba(0,255,255,0.02) 40%, #fff 110%);
  width:100%;
  max-width:100%;
  min-height: 70vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:2.5em 2.5em auto 2.5em 2.5em;
  grid-template-areas: "ivd ivd" ". lab" "content content" "inhouse inhouse" "md md";
}

.prepost_arrow {
  padding:1em 0; 
  width:100%;
}
.postmarket-arrow {
  width: 30%;
  height: 50px;
  background: linear-gradient(to right, #0e4147 10%, #92c5b7 40%, #0e4147 80%);
  position: relative;
  margin-left:-5px;
  display:inline-block;
}
.postmarket-arrow:after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; width: 0; height: 0;
  border-left: 25px solid #cfac2c;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.postmarket-arrow:before {
  content: '';
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 25px solid #0e4147;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.premarket-arrow {
  width: 69%;
  height: 50px;
  background: linear-gradient(to right, #cfac2c 10%, #f9e100 40%, #cfac2c 90%);
  position: relative;
  display:inline-block;
}

.premarket__title {
  padding: 0.2em; 
  text-transform:uppercase;
}

.postmarket__title {
  padding: 0.2em 0.2em 0.2em 1.2em; 
  text-transform:uppercase;
}
.prepost__title {
  font-weight: 700;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-style: normal;
  color: #0e4147;
  font-size: 32px;
  letter-spacing: 0px;
  line-height: 38px;
}

.lifecycle-stages {
  display:flex;
  flex-flow: row nowrap;
  width:100%;
}
.lifecycle-stage {
  flex: 1 0 15%; 
  position: relative;
}

.lifecycle-stage img {
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 4px 8px;
  background:white;
}

.lifecycle-stage .img-hover {
  transition: 0.3s all;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.lifecycle-stage:hover .img-hover {
  display:inline;
  transition: 0.3s all;
}

.lifecycle-services {
  display:flex;
  flex-flow: row nowrap;
  width:100%;
  column-gap:10px;
  padding-bottom: 0.5rem;
}
.md-service {
  flex: 1 0 15%;
  display:flex;
  flex-direction:column;
  row-gap: 20px;
  column-gap: 0;
  justify-content: center;
  align-items: center;

}
.md__service-item {
  padding:0.3em 0.7em;
  background: linear-gradient(to right, #cfac2c 0%, #f9e100);
  border-radius: 6px;
  font-size:14px;
  font-weight:600;
  min-width: 40%;
  text-align:center;
  transition: background 0.5s;
  cursor:pointer;
  box-shadow: 0px 3px #eee;
  text-decoration:none;
  color:#fff;
  transition: all linear 0.5s;
  display:block;
}
.md__service-item:hover {
  background: linear-gradient(to right, #308d8f 10%, #308d8f 110%);
  transition: background linear 0.2s;
  color:#fff;
}

.md__service-item.left {
  align-self: flex-start; 
}
.md__service-item.right {
  align-self: flex-end; 
}


.highlight-blue {
  color: #00BAFF;
}
.dark-blue {
  color: #0e4147;
}
.mob-categories {
  display:none;
}
@media screen and (max-width:991px) {
  .mob-categories {
    display:flex;
    flex-direction:column;
    justify-content:stretch;
    row-gap:0.5em;
  }
  .mob-categories > * {
    flex-grow:1; 
  }
  .content-container .lifecycle-services {
    display:none;
  }
  .content-container > .md-category {
    display:none;
  }
  .md-lifecycle-wrapper {
    background: linear-gradient(white, white) padding-box,
      linear-gradient(to right, #0e4147, #308d8f) border-box;
    border-radius: 1em;
    border: 2px solid transparent;
    padding:0.25em;
  }
  #lifecycle {
    display:none;
  }

  .md-ivd-lifecycle {
    background: linear-gradient(270deg, #fff 0%, rgba(0,255,255,0.02) 40%, #fff 110%);
    width:100%;
    max-width:100%;
    min-height: 30vh;
    display:block;
  }
  .md-lifecycle {
    background: linear-gradient(270deg, #fff 0%, rgba(0,255,255,0.02) 40%, #fff 110%);
    width:100%;
    max-width:100%;
    min-height: 60vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:3.5em auto 4.5em 3em 3.5em;
    grid-template-areas: "ivd ivd" "content content" "lab lab" "inhouse inhouse" "md md";
  }

  .content-container {
    grid-area: content;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position:relative;

  }

  #content-background {
    position: relative;
    overflow: hidden;
    background:none;
    z-index:0;
  }
  #content-background::before {
    content: "";
    position: absolute;
    width:250%;
    height:100%;
    background-size: 100% 100%;
    background-repeat:no-repeat;
    z-index: -1;
    background-image: url('https://26293608.fs1.hubspotusercontent-eu1.net/hubfs/26293608/Web%20assets/Lifecycle%20(consulting)/arrow-together2.svg');
    transform: rotate(90deg);
  }
  .grid-section {
    flex-direction:column;
  }

  .ivd-title,.lab-title,.md-title,.inhouse-title {
    align-items:center;
    justify-content:center;
    border:none;
    text-align:center;
  }

  .lq-consultation-title_text {
    border-top: 2px solid blue;
    padding-top: 10px;
  }
  .lifecycle-services {
    flex: 1 0 40%;
    display:flex;
    flex-flow: column nowrap;
    column-gap: 2px;
    row-gap:1em;
    width:auto;
    height:100%;
  }
  .lifecycle-stages {
    flex:1 0 30%;
    display:flex;
    flex-flow: column nowrap;
    width:auto;
    height:100%;
    gap: 0.5rem;
    padding-left: 1rem;
  }
  .lifecycle-stage {
    width:85px;
  }
  .prepost_arrow {
    display:none;
  }

  .img-nomob {
    display:block;
  }

  .img-hover.img-mob {
    display:block; 
  }
  .mob-lifecycle-static {
    display:block;
  }
  .mob-lifecycle-static:hover {
    cursor:pointer;
  }
  #lifecycle-tooltip {
    text-align:center;
  }
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 5px;
  margin-bottom:2px;
  margin-right: 5px;
}

.dot.green, .green {
  background-color: #25C0C0;
  background: #25C0C0;
}

.dot.blue, .blue {
  background-color: #00BAFF;
  background: #00BAFF;
}

.dot.pink, .pink {
  background-color: #FFCAFF;
  background:#FFCAFF;
}

.md-category {
  display:flex;
}
.md-category a {
  border: 2px solid #0e4147;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  cursor:pointer;
  background-color:#fff;
  color: #0e4147;
  text-decoration:none;
  display:inline-flex;
  margin-bottom: 0.5rem;
  flex-grow:1;
  justify-content:center;
  font-size: 0.9rem;
}
.md-category a:hover {
  text-decoration:underline;
}

.md-category.left {
  align-self:flex-start; 
}

.md-category.right {
  align-self:flex-end; 
}

.md__category-item.purple {
  border-color: #308d8f; 
  color: #308d8f;
  padding-left: 1em;
  padding-right: 1em;
}
