/* Custom classes to replace inline span styles */

/* For setting the font family to Poppins */

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* For setting the text color to white */

.text-white {
  color: rgb(255, 255, 255);
}

/* For setting the font size to 16px */

.font-size-16 {
  font-size: 16px;
}

/* For making the text bold */

.font-weight-700 {
  font-weight: 700;
}

/* For centering the text */

.text-center {
  text-align: center;
}

.text-blackish {
  color: rgb(23, 23, 23);
}

.text-light-blue {
  color: rgb(3, 129, 255);
}

/* For the dark text and light background */

.text-dark-bg-light {
  color: rgb(33, 37, 41);
  background-color: rgb(248, 249, 250);
}

/* For a black text color */

.text-black {
  color: #000000;
}

/* For red text */

.text-red {
  color: rgb(255, 0, 0);
}

/* For the VFW Red color */

.text-vfw-red {
  color: rgb(142, 10, 2);
}

/* Custom rule for a yellow footer */

.footer-yellow {
  background-color: #ffc107;
}

.text-purple {
  color: rgb(202, 124, 249);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 4.5rem;
  height: 4.5rem;
  background-size: 100% 100%;
  opacity: 1;
  width: 72px;
  background-color: rgba(0,0,0,0.25);
  /*border-radius: 50%;*/
  border-radius: 50%;
}

