.flex-header-hpm {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

/* HEADER */
#hpm-header {
  height: 150px;
}
#home-background.hpm-cover {
  background-image: url("../assets/img/contact-hospital.jpg");
}
.simple-header-bg {
  background: linear-gradient(to left, #64aab9, #568fb9);
  width: 100%;
  height: 100%;
}
.clip-ellipse {
  position: relative;
  clip-path: ellipse(60% 140px at center top);
  -webkit-clip-path: ellipse(60% 140px at center top);
  transition: 1s clip-path ease;
}
/* @media (max-width: 1200px) {
  .clip-ellipse {
    clip-path: ellipse(60% 140px at center top);
    -webkit-clip-path: ellipse(60% 140px at center top);
  }
} */
/* HOME */

#hpm-home {
  position: relative;
  min-height: 100px;
  text-align: left;
  justify-self: start;
  top: 100px;
  margin-left: 15%;
  
  z-index: 20;
}
#hpm-home h1 {
  margin: 0 0 2rem 0;
}
#hpm-home p {
  color: #555555;
  font-weight: 300;
}
#hpm-home h1,
#hpm-home p {
  max-width: 750px;
}

/* From Volume To Value */

#from-volume-to-value,
#multirol {
  justify-content: space-between;
  margin-top: 100px;
}
.from-volume-to-value__header-section,
.multirol__header-section {
  order: 2;
  width: calc(50% - 4rem);
  margin: 0 0 0 4rem;
  text-align: left;
}
.multirol__header-section h1,
.from-volume-to-value__header-section h1 {
  margin: 2rem 0;
}
.multirol__img-section,
.from-volume-to-value__img-section {
  width: 50%;
  min-width: 200px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multirol__img-section > img,
.from-volume-to-value__img-section > img,
#icon-container {
  width: 100%;
}
.from-volume-to-value__img-section > .img-section__fixed-bubbles {
  position: absolute;
  width: 115%;
}
#icon-container {
  position: absolute;
  z-index: 10;
  height: 100%;
}
#icon-container > .hpm-bubble {
  border-radius: 50%;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.158);
  min-width: 20px;
  min-height: 20px;
  max-width: 80px;
  max-height: 80px;
  transition: 0.3s all;
}
#icon-container > .hpm-bubble.hidden {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1200px) {
  #from-volume-to-value.flex-container,
  #multirol.flex-container{
    flex-wrap: wrap;
    justify-content: center;
  }
  .from-volume-to-value__header-section,
  .multirol__header-section {
    width: 100%;
    margin-left: 0;
  }
  .multirol__img-section{
    width: 100%;
  }
  
  .multirol__img-section,
  .from-volume-to-value__img-section {
    margin: 0;
  }
}

#statements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
#statements .statements__content {
  position: relative;
  background: linear-gradient(to right, #2391bc, #23acbc);
  height: 60px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 44%;
  max-width: 265px;
  min-width: 130px;
  margin: 1.5rem 3% 0 0;
}
#statements .statements__content:nth-child(even) {
  margin-right: 0;
}
#statements .statements__content.down {
  background: transparent;
  border: 0.1rem solid #2391bc;
}

#statements .statements__content .statements__content__ball {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  left: -25px;
  box-shadow: 10px 10px 20px 1px #0000002a;
}
#statements .statements__content span {
  color: white;
  font-weight: 300;
  font-size: 1.5em;
  margin-left: 20px;
}
#statements .statements__content.down span {
  color: #2391bc;
  font-weight: 300;
  margin-left: 20px;
}

@media(max-width: 768px) {
  #statements .statements__content span {
    font-size: 1em;
  }
}

/* HOW IT WORKS */

#how-it-works {
  position: relative;
  margin-top: 100px;
  width: 100%;
  
}
.flex-hiw {
  flex-wrap: wrap;
  text-align: left;
}
#iot-schema {
  width: 100%;
  margin-bottom: 50px;
}
@media(max-width: 769px) {
  #iot-schema{
    pointer-events: none;
  }
}
.iot-content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.iot-content .iot-text {
  flex-grow: 1;
  flex-basis: 10%;
  margin-right: 2%;
  transition: 0.5s all ease-in-out, 0s flex-basis;
  transform-origin: center center;
}
.iot-content .iot-text:last-of-type {
  flex-basis: 20%;
  flex-grow: 2;
  margin-right: 0;
}
/* .iot-content .iot-text:last-of-type * {
  width: 52%;
} */
.iot-content .iot-text h4 {
  color: #2391bc;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.iot-content .iot-text p {
  color: #979797;
  font-weight: 400;
  font-size: 1rem;
}

.iot-item {
  transform-origin: 50% 50%;
  transition: 1s all ease;
}
.iot-text.disabled {
  opacity: 0.5;
  /* transform: scale(0.9); */
}
@media (max-width: 768px) {
  .iot-content .iot-text:last-of-type * {
    width: 100%;
  }
  .iot-content {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .iot-content .iot-text {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom:2rem;
  }
}
/* BENEFITS */

#benefits {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  
  text-align: left;
}
#benefits h1 {
  width: auto;
  margin-right: 0px;
  margin-left: 0px;
}
#benefits h1 .highlight {
  position: relative;
  padding: 0.2rem;
  margin-right: 32%;
  min-width: 14rem;
  overflow: hidden;
  display: block;
}
#benefits h1 .highlight.active {
  color: white;
  z-index: 100;
}
#benefits h1 .highlight #highlight {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0.1rem;
  right: 0.1rem;
  transform: translateX(-100%);
  background: linear-gradient(to left, #23abbc, #2391bc);
  transition: 1s all cubic-bezier(1, 0, 0, 1), 0s z-index 1s;
  z-index: 90;
  mix-blend-mode: color;
}
#benefits h1 .highlight {
  transition: 1s all cubic-bezier(1, 0, 0, 1);
}

#benefits h1 .highlight #highlight.active {
  transition: 1s all cubic-bezier(1, 0, 0, 1), 0s z-index 0s;
  transform: translateX(0%);
  z-index: 100;
}
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  transition: 2s all ease;
  opacity: 0;
  visibility: hidden;
}
.benefits-container.active {
  opacity: 1;
  visibility: visible;
}
.benefits-content {
  height: 150px;
  flex-basis: calc(33% - 2rem);
  margin-right: 2rem;
}
.benefits-content #window {
  background: #2391bc;
  width: 80%;
  height: 1px;
  margin-bottom: 2rem;
}

.benefits-content p {
  color: #979797;
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .benefits-container .benefits-content {
    flex-basis: 100%;
    height: auto;
  }
  .benefits-container .benefits-content p {
    margin: 20px 0;
  }
  .benefits-container .benefits-content #window {
    margin-bottom: 0;
  }
}

/* MULTIROL */

.multirol__header-section > img{
  margin-top:2rem;
}
.multirol__img-section > img,
#icon-container {
  width: 100%;
}

/* IPAD */
/* @media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  {
  .benefits-container .benefits-content{
    flex-basis: 100%;
    height:auto;
  }
  .benefits-container .benefits-content p{
    margin:20px 0;
  }
  .benefits-container .benefits-content #window{
    margin-bottom:0;
  }
} */

/* CONTACT */
#hpm-contact.flex-container {
  justify-content: center;
  align-items: center;
}

.hpm-contact-container {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hpm-contact-container *,
.hpm-contact-container h1 {
  color: white;
  width: 70%;
  margin: 0;
}
@media (max-width: 768px) {
  #hpm-contact {
    flex-wrap: wrap;
  }
  .hpm-contact-container {
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .hpm-contact-container h1 {
    font-size: 1.8rem;
    line-height: 3rem;
    margin: 2rem;
    width: 100%;
  }
}

/* IPAD PRO */

@media only screen and (min-device-width: 1366px) and (max-device-height: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #benefits h1 .highlight.active {
    z-index: 100;
  }
  #benefits h1 .highlight #highlight {
    z-index: 90;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #benefits h1 .highlight.active {
    z-index: 100;
  }
  #benefits h1 .highlight #highlight {
    z-index: 90;
  }
}

/* Responsive */

section#from-volume-to-value,
section#how-it-works,
section#benefits,
section#multirol {
  margin: 4rem 0 0 0;
  padding: 0 15%;
  max-width: 1200px;
}

@media(min-width:1200px) {
  section#from-volume-to-value,
  section#how-it-works,
  section#benefits,
  section#multirol {
    padding: 0;
    width: 70%;
  }
}

section#multirol {
  margin-bottom: 4rem;
}

@media(max-width:768px) { 
  section#from-volume-to-value,
  section#how-it-works,
  section#benefits,
  section#multirol{
    padding: 0 3em;
  } 
}