#ph-splash {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: url("/images/pulmonaryhypertension/splash.png") no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;
}

.ph-splash-intro {
  background: var(--charcoal);
  padding: 40px;
  width: 45%;
  min-width: 650px;
}

.ph-splash-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 40px;
  left: 0;
}

.ph-splash-nav-item {
  padding: 12px 15px;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 25px 25px 25px;
  margin: 0 20px;
  transition: all 300ms ease;
}

.ph-splash-nav-item.active {
  background: var(--charcoal);
}

.ph-splash-nav-item.active p {
  border-bottom: 1px solid var(--red);
}

.ph-splash-nav-item:hover {
  background: var(--charcoal);
}

.ph-splash-nav-item p {
  border-bottom: 1px solid var(--red);
  margin: 0 10px;
}

.ph-splash-nav-item img {
  width: 25px;
}
.ph-splash-nav-item img.clinic {
  width: 20px;
}

/* Content */
.ph-content-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.ph-sidebar {
  width: 20%;
  padding: 40px;
  background: #faf8f8;
  overflow: scroll;
}

.ph-sidebar-intro,
.ph-sidebar-links,
.ph-sidebar-videos {
  margin: 20px 0;
}

.ph-sidebar-links a {
  margin: 20px 0;
}

.ph-sidebar-video {
  margin: 40px 0;
}
.ph-sidebar-video.first  {
  margin-top: 20px;
}

.ph-content {
  width: 80%;
  padding: 40px;
}

.ph-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
}

.ph-content-title {
    width: 50%;
    padding: 0 100px 0 40px;
}

.ph-content-title h2 {
  font-size: 30px;
}

.ph-content-text {
    width: 50%;
    padding: 0px ;
}

.ph-content-text ul {
  margin: 20px 0;
}

.ph-content-text li {
  margin: 10px 20px;
  padding: 0 20px;
}

.read-more {
    display: block;
    margin-top: 20px;
    color: var(--red);
    text-decoration: underline;
}
.ph-content-title img {
  padding: 40px 40px 40px 0;
}

.ph-quote {
  text-align: center;
  padding: 40px;
  font-size: 25px;
  width: 75%;
  margin: 0 auto;
}

.ph-quote span {
  font-style: normal;
}

.ph-border {
  height: 5px;
  background-color: black;
}

.hide-text {
  display: none;
}

