body {
  font-family: 'Open Sans', sans-serif;
}

#header {
  min-height: 85vh;
  background: url(./img/bg-header.png) no-repeat top center;
  background-size: cover;
}

.quote {
  background-color: #ecf0f4;
  padding: 2rem 4rem;
  position: relative;
}

.quote::before {
  content: '';
  display: block;
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  background: url(./img/quote-left.png) no-repeat center center;
  width: 50px;
  height: 50px;
}

.quote::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  background: url(./img/quote-right.png) no-repeat center center;
  width: 50px;
  height: 50px;
}

.bg-green-light {
  background-color: #ecf7f5;
}

.bg-green {
  background-color: #70d2ac;
}

.bg-green-dark {
  background-color: #4d9c83;
}

.accordion-item {
  margin-bottom: 1rem;
  background-color: transparent;
  border: none;
}

.accordion-body {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border: 1px solid #4d9c83;
  background-color: #fff;
  padding: 2rem 3rem;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background-color: #4d9c83;
  color: #fff;
}

.risks-factors-item {
  position: absolute;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transform: translateX(0);
}

.title {
  font-family: 'Ropa Sans', sans-serif;
}

.title::after {
  content: '';
  display: block;
  border-bottom: 5px solid #70d2ac;
  width: 3rem;
  margin-top: 0.5rem;
}

.risks-factors-item.blurred {
  filter: grayscale(1);
}

#sobrepeso {
  top: 0;
  left: 10%;
}

#antecedentes {
  bottom: 6rem;
  left: 10%;
}

#sedentarismo {
  bottom: 6rem;
  right: 10%;
}

#hipertension {
  top: 2.5rem;
  right: 10%;
}

#bg-signal {
  background: url(./img/bg-signal.png) no-repeat center center;
  background-size: contain;
}

.text-green {
  color: #385b66;
}

.carousel-indicators {
  bottom: -3rem;
}

.carousel-inner {
  overflow: initial;
}

.carousel-control-prev {
  left: -10rem;
}

.carousel-control-next {
  right: -10rem;
}

@media (max-width: 576px) {
  #header {
    background: url(./img/bg-header-mobile.png) no-repeat top center;
    background-size: cover;
  }

  .quote {
    padding: 1rem 2rem;
  }

  .quote::after {
    right: 0rem;
  }

  .quote::before {
    left: 0rem;
  }

  .risks-factors-item {
    position: initial;
  }

  .accordion-body {
    padding: 1rem;
  }
}
