#consumptions {
  padding: 5rem 10%;
  width: 100%;
}
.consumptionBlocks {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Porsche', sans-serif;
  gap: 2em 2%;
}

.consumptionBlocks * {
  padding: 0;
  margin: 0;
}

.cContainer {
  display: flex;
  flex-direction: column;
  gap: 0.5em 0;
  position: relative;
  width: 32%;
}

.cContainer:hover .cTooltip {
  visibility: visible;
  animation: showTooltip 0.5s;
}

.cIndicators {
  display: flex;
  gap: 0.625em;
  flex-wrap: wrap;
}

.cDataContainer {
  display: flex;
  gap: 0.5em;
}

.cData {
  display: flex;
  flex-direction: column;
}

.cData span:nth-child(2) {
  font-size: 0.625em;
  line-height: 1;
}

img.cIcon {
  width: 2.5em;
  display: block;
  border: 1px solid black;
  border-radius: 50%;
  padding: 0.25em;
}

.cMainTitle {
  font-family: 'Porsche', sans-serif;
  font-size: 1.75em;
  font-weight: bold;
  letter-spacing: 0.1;
  margin-bottom: 2rem;
}

.cTitle {
  color: #a7a7a7;
  font-size: 1.125em;
  font-weight: normal;
}

.cTooltip {
  background: white;
  border: 1px solid #a7a7a7;
  border-radius: 10px;
  left: -1.35em;
  max-width: 30em;
  padding: 1em 1.5em;
  position: absolute;
  top: calc(100% + 1em);
  visibility: hidden;
  width: 50vw;
  z-index: 15;
}

.cTooltip::after,
.cTooltip::before {
  border: solid transparent;
  content: '';
  position: absolute;
}

.cTooltip::before {
  background: white;
  border: 1px solid;
  border-color: #a7a7a7 #a7a7a7 transparent transparent;
  height: 10px;
  left: 10%;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  width: 10px;
}

.cTooltip::after {
  background: white;
  height: 10px;
  right: 0;
  top: 10px;
  width: 24px;
}

.cTooltipDescription {
  font-size: 0.85em;
}

.cTooltipDescription p {
  line-height: 1.25;
  margin-bottom: 0.5em;
}

.cTooltipModel {
  color: black;
  font-size: 1.25em;
  margin-bottom: 0.625em;
}

.cTooltipSubtitle {
  color: #a7a7a7;
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 0.85em;
}

@keyframes showTooltip {
  from {
    visibility: visible;
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cContainer {
    width: 49%;
  }
  .cTooltip {
    width: 120%;
  }
}
@media screen and (max-width: 767px) {
  .cContainer {
    width: 100%;
  }
  .cTooltip {
    width: 98%;
  }
  .cMainTitle {
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
}
