@font-face {
  font-family: "HelveticaNeue";
  src: url("/fonts/HelveticaNeue.ttf") format("ttf");
  
  }

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-9'); 

:root {
  --tam001-font: 'Helvetica 55 Roman', sans-serif;
  --tam001-font-bold: 'Helvetica 65 Medium', sans-serif;
}

body{
  font-family: var(--tam001-font);
  font-weight: 900;
  letter-spacing: .05rem;
}
.header-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
@media (min-width: 992px) {
  .header-title {
    font-size: 4rem;
  }
}
.header-text {
  margin: 0 0 1rem;
  font-family: var(--tam001-font);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}
.header-text-breakdown {
  display: none;
}
@media (min-width: 992px) {
  .header-text {
    margin: 0;
    font-size: 1.5rem;
  }
  .header-text-breakdown {
    display: block;
  }
}
.m-0{
  margin: 0px;
}
.text-top{
  position: absolute;
  top: -50px !important;
  margin: auto;
}
.text-bottom{
  position: absolute;
  top: 105px !important;
}
.circles{
  height: 55vh;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .circles{
    max-width: 800px;
    height: 40vh;
    margin: -3rem auto 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
}

.circle{
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.purple{
  color: #92278F;
}
.green {
  color: #00A39B;
}
.white {
  color: white;
}
.purple-bg{
  background-color: #92278f;
}
.green-bg{
  background-color: #00A39B;
  animation: green-pulse 2s infinite;
}
.flex{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center
}
.flex-col{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header{
  flex-direction: column;
}
.bg{
  position: absolute;
  background-color: red;
  width: 100%;
  height: 100%;
}
.purple-circle{
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: auto;
  transform: scale(1.2);
}
.purple-circle-absolute{
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  margin: auto;
  background: #DDAFDD;
  animation: purple-pulse 2s infinite;
}
.purple-txt,
.green-txt {
  position: absolute;
  top: 166px;
}
.green-circle {
  border-radius: 50%;
  width: 100px;
  height:100px;
  margin: auto;
}
.green-circle-absolute{
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  margin: auto;
  background: #46B2A8;
}
.purple-txt {
  width: 170px;
  top: 170px;
  left: -10px;
}
.green-txt {
  width: 150px;
}
.green-txt .green {
  margin: 0;
  justify-content: center;
}
.purple{
  margin-bottom: 0px;
}
.purpleCount{
  display: flex;
  text-align: center;
  align-items: center;
}
#purpleTitle {
  margin: 0px;
}
.circle-container {
  position: relative;
  cursor: pointer;
  pointer-events: none;
}
.circle-container#greenContainer {
  margin-top: auto;
  margin-bottom: 75px;
}

@media (min-width: 992px) {
  .circle-container {
    pointer-events: all;
  }
  .circle-container#greenContainer {
    margin-top: 0;
    margin-bottom: 0;
  }
  .circle-container#purpleCircleContainer {
    margin-top: 0;
  }
}
.dots-container{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  max-width: 900px;
}
.purple-circles-container{
  display: flex;
  justify-content: space-evenly;
  display: none;
}

#year {
  font-size: 40px;
}

@media (min-width: 992px) {
  #year {
    margin-top: 0;
    font-size: 40px;
  }
}

.slidecontainer {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;

}

  .slider {
    background: linear-gradient(to right, #126942 0%, #126942 0%, #5ACCC1 0%, #5ACCC1 100%);
    border-radius: 8px;
    height: 7px;
    width: 100%;
    max-width: 910px;

    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
  }
  
  /* Mouse-over effects */
  .slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    background: #d3d3d3;
    border-radius: 50%;
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }

  @keyframes green-pulse {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 163, 155, 0.4);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 163, 155, 0);
    }
  }
  @keyframes purple-pulse {
    0% {
      box-shadow: 0 0 0 0px rgba(146, 39, 143, 0.4);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(146, 39, 143, 0);
    }
  }