* {
  margin: 0;
  padding: 0;
  --theme-red: #FF2929;
  --theme-red-hover: #AF1919;
  --theme-blue: #1ACBD9;
  --theme-blue-hover: #0E8A95;
  --theme-white: #FFFFFF;
  --bs-link-color: var(--theme-red);
  --bs-link-hover-color: var(--theme-red);
}

body {
  margin: 0;
  background-color: var(--theme-white);
  background-color: var(--theme-white);
  font-size: 1rem;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition-property: filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

a:hover {
  filter: brightness(65%);
}

.background-red {
  background-color: var(--theme-red);
}

.background-blue {
  background-color: var(--theme-blue);
}

.nav-item {
  margin-right: 1rem;
}

.navbar a:hover {
  filter: none;
}

 .nav-item a.nav-link {
  color: var(--theme-white);
}

nav .navbar-nav .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--theme-blue);
  text-decoration-thickness: 2px;
  transition: 0.04s;
}

.navbar-brand .tpx-brand {
  width: 180px;
  height: 45px;
}

.mobile-nav-toggle {
  margin-right: 2rem;
  background-color: var(--theme-white);
  color: var(--theme-red);
}

p.bubble {
  color: black;
  position: absolute;
  width: 300px;
  text-align: center;
  line-height: 1.4em;
  margin: 40px auto;
  background-color: #fff;
  border: 8px solid #333;
  border-radius: 30px;
  padding: 20px;
  font-size: large;
  top: 25px;
  left: 20rem;
}

p.thought {
  width: 300px;
  border-radius: 200px;
  padding: 30px;
}

p.bubble:before,
p.bubble:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}


p.thought:before,
p.thought:after {
  left: 10px;
  bottom: -30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 8px solid #333;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
}

p.thought:after {
  width: 20px;
  height: 20px;
  left: 5px;
  bottom: -40px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
}


@media (min-width: 775px) {
  .landing p.bubble {
    top: -35px;
    left: 15rem;
  }

  
}

@media (max-width: 992px) {
  nav .navbar-nav.nav-item:hover {
    font-size: 1.3em;
    transition: 0.04s;
  }

  .nav-item:hover a {
    color: white;
    transition: 0.2s;
  }

  #landing{
    min-height: 938px;
  }

  .landing p.bubble {
    top: -35px;
    left: 15rem;

  }
}

@media (max-width: 775px) {
  #landing {
    min-height: 1105px;
  }

  .landing p.bubble {
    width: 200px;
    height: 100px;
    padding: 5px;
    font-size: medium;
    top: -35px;
    left: 12rem;
  }
}

@media (max-width: 576px) {
  #landing {
    min-height: 1358px;
  };
}

#landing {
  width: 100%;
  height: 844px;
  margin-top: 25px;
}

.landing-text-container {
  min-width: 550px;
  margin-top: 10px;
  padding: 15px;
  border: 3px solid red;
  border-radius: 45px;
  box-shadow: 5px 5px black;
  background-color: #fff;
 
}

.landing-container {
  justify-content: center;
  position: relative;
}

#landing-button-container {
  padding-top: 1.8em;
}

.hero-button {
  background-color: var(--theme-blue);
  border: 3px solid var(--theme-blue);
  border-radius: 45px;
  text-transform: uppercase;
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  text-decoration: none;
  color: black;
}


.hero-button:hover {
  background-color: var(--theme-blue-hover);
  border-color: var(--theme-blue-hover);
  color:black;
  filter: none;
}

#pledged-so-far {
  font-size: 2rem;
  font-weight: 700;
}

@media only screen and (max-width: 413px) {
  #pledged-so-far {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 310px) {
  #pledged-so-far {
    font-size: 1rem;
  }
}

h2 {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 3em;

}

p.bubble {
  text-shadow: none;
}

#thermometer {
  width: 90%;
  height: 7rem;
}

#thermometer-label {
  position: absolute;
  top: 144px;
  left: -1000px;
  z-index: 999999;
  width: 80px;
  padding: 10px;
  border-radius: 10px;
  background: var(--theme-red);
  color: #fff;
  text-align: center;
}

#thermometer-label::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--theme-red) transparent;
}

.therm-blood {
  width: 78px;
  position: absolute;
  top: 45px;
  left: -5px;
  z-index: 999999;
}

@media only screen and (min-width: 1200px) {
  .therm-blood {
    left: 15px;
  }
}

.thermometer-container {
  position: relative;
  margin-top: 1.25em;
}

.blood-wave {
  position: relative;
  width: 75%;
}

#heroes {
  background-color: var(--theme-blue);
  margin-top: -350px;
}

#latest-donors ul {
  column-count: 1;
  column-gap: 1rem;
}

#latest-donors ul li:not(:last-child) {
  margin-bottom: 2rem;
}

/* Medium devices */
@media(min-width: 768px) {
  #latest-donors ul {
    column-count: 2;
  }
}

/* Large devices */
@media (min-width: 992px) {
  #latest-donors ul {
    column-count: 3;
  }
}


#thankyouimage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.heroes_column_pledges {
float: left;
width: 25%;
padding: 10px;
height: 300px;
background-color: rgb(26, 204, 218);
color: rgb(0, 0, 0);
text-align: center;
overflow: hidden;
white-space: nowrap;
font-size: 11px
}

.heroes_column_title {
float: left;
width: 25%;
padding: 10px;
height: 300px;
background-color: rgb(26, 204, 218);
color: rgb(255, 0, 0);
text-align: center;
overflow: hidden;
white-space: nowrap;
font-size: 11px
}

.heroes_border {
border-radius: 45px;
background-color: rgb(26, 204, 218);
color: black;
font-size: 11px
}

li.heroeslist {
font-size: clamp(0.5rem, 0rem + 2vw, 2rem);
font-family: "Poppins", sans-serif;
}


/* .drip {
  width: 100%;
  height: 124px;
  position: relative;
  overflow: hidden;
} */

/* .drip_fg {
  pointer-events: none;
  background-image: url("../img/TopDropsStatic.png");
  background-repeat: repeat;
  background-position: top left;
  background-size: contain;
  z-index: 1;
  position: absolute;
  height: 124px;
  width: 1920px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */


/*Styling for info section  */
.info {
  position: relative;
}

.info-header {
  color: var(--theme-white);
  font-size: 1.4rem;
}

.info .more-info-container {
  justify-content: space-evenly;
  text-align: left;
}

.more-info-container ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.row {
  --bs-gutter-x: 0;
}

.info-banner {
  background-color: var(--theme-red);
}

.info-banner-image{
  height:170px;
  position: absolute;
  right: 1%;
  top: -5%;
}

  .blood-bullet-list {
    list-style: url("../img/blood-bullet.svg");
  }
  
  .blood-bullet-list-item::marker {
    font-size: 3vh;
  }

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

.form-container {
  display: flexbox;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.flex-this {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-button {
  color: var(--theme-white);
  background-color: var(--theme-red);
  border: 3px solid var(--theme-red);
  border-radius: 45px;
  text-transform: uppercase;
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.form-button:hover {
  background-color: var(--theme-red-hover);
  border-color: var(--theme-red-hover);
}

form input {
  border: 1px solid black;
  border-radius: 5px;
}

form input{
  font-size: larger;
  text-align: center;
  align-items: center;
}

form input::placeholder{
  text-align: center;
  text-transform: uppercase;
}
input[type="checkbox"] {
  width: 25px;
  height: 25px;
  accent-color: var(--theme-red);
}

.form-container h5 {
  text-transform: uppercase;
}

.form-container h1 {
  text-transform: uppercase;
}

form .checkbox-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.checkbox-row input {
  accent-color: var(--theme-red);
}

form .checkbox-span {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.vampire_closed {
  /* background-image: url("../img/little-vamp-open.svg");
  background-repeat: no-repeat; */

}


#footer {
  
  margin-top: 15px;
  background-color: #fff;
  width: 100%;
  height: 100px;
}

.submit-button{
  max-width: 200px;
}

.vampireColumn{
  max-height: 340px;
}

 #pledgeForm{
  width: 150%;
} 

/*end of info styling*/