@font-face {
  font-family: 'Aptos';
  src: url('../../Aptos-Display.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root {
  --FLIblue: rgb(24, 62, 109);
  --FLIgrey: rgb(216, 225, 232);
  --FLIhead: rgb(240, 244, 248);
  --background-select: linear-gradient(to left, #34495e 3rem, #2c3e50 3rem);
}


.pindicator {
  background-color: white;
  font-family: 'Aptos';
  display: flex;
  margin: 2rem auto 0;
  width: 80rem;
  cursor: pointer;
}
.pindicator .bullet {
  flex: 1;
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
}
.pindicator .bullet::before,
.pindicator .bullet::after {
  content: '';
  display: block;
  position: absolute;
  height: 2rem;
  top: 2rem;
  transform: translate3d(0,0,-10px);
}
.pindicator .bullet::before {
  background-color: var(--FLIgrey);
  width: 100%;
}
.pindicator .bullet::after {
  background-color: var(--FLIblue);
  transition: opacity .25s ease-out;
  opacity: 0;
  width: 100%;
}

.pindicator .bullet:first-child::before,
.pindicator .bullet:first-child::after {
  left: 50%;
  width: 50%;
}
.pindicator .bullet:last-child::before,
.pindicator .bullet:last-child::after {
  width: 50%;
}

.pindicator .icon {
  background-color: var(--FLIgrey);
  border-radius: 100%;
  color: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Aptos';
  display: inline-block;
  height: 4em;
  line-height: 4;
  text-align: center;
  transition: background-color .25s ease-out;
  width: 4em;
  color: white;
}
.pindicator .text {
  color: gray;
  opacity: 0.5;
  font-family: 'Aptos';
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color .25s ease-out;
}
.pindicator .past .icon,
.pindicator .current .icon {
  background-color: var(--FLIblue);
  color: white;
}

.pindicator .past::after,  
.pindicator .current::after {
  opacity: 1;
}

.pindicator .past .text {
    color: black;
    opacity: 1;
}
.pindicator .current .text {
    color: var(--FLIblue);
    opacity: 1;
}

.pindicator .next .text {
  color: gray;
}


.pindicator .icon:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
    transition: transform 330ms ease-in-out;
}

.pindicator .text:hover {
    transform: scale(1.02);
    filter: brightness(0.9);
    transition: transform 330ms ease-in-out;
}

#leftArrow,
#rightArrow {
    font-size: 83px;
    color: var(--FLIblue);
    margin-right: 20px;
    margin-left: 20px;
    justify-content: center;
}

#leftArrow:hover,
#rightArrow:hover {
    transform: scale(1.02);
    filter: brightness(1.3);
    transition: transform 330ms ease-in-out;
}
