    .banner.thermal {
    background: #091922;
}
.banner.thermal img {
    opacity: 0;
    display: none;
}
.banner.thermal .caption.container p {
    font-size: 18px;
    color: white;
}
.banner.thermal .caption.container * {
    width: 70%;
}
.banner.thermal .caption.container {
    position: absolute;
    margin: auto;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

/* 1. Freeze the button and change the cursor */
.submitting button[type="submit"] {
  pointer-events: none;
  cursor:not-allowed;
  position: relative;
  /* Optional: slightly fade the button to show it is inactive */
  opacity: 0.8; 
  /* Makes room for the spinner on the right side */
  padding-right: 40px !important; 
}

/* 2. Create the spinner using a pseudo-element */
.submitting button[type="submit"]::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 8px); /* Centers a 16px spinner vertically */
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3); /* Low opacity track */
  border-radius: 50%;
  border-top-color: #fff; /* Solid spinning segment (match your text color) */
  animation: button-spin 0.6s linear infinite;
}
ul.th-list {
  list-style: none; /* Remove default unpredictable bullets */
  padding-left: 0;
}

.th-list li {
  position: relative;
  padding-left: 20px; /* Make room for the new bullet */
  margin-bottom: 20px; /* Spacing between the list blocks */
}

/* Create a consistent bullet across all browsers */
.th-list li::before {
  content: "•"; 
  position: absolute;
  left: 0;
  top: 0; /* Aligns perfectly with the top line of bold text */
  color: #fff; /* Match your bullet color */
  font-size: 18px; /* Control bullet size accurately */
  line-height: 1;
}

/* 3. The rotation animation */
@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}
.submitting::before,
.submitting::after {
	display: none;
}
.submitting {
	opacity:1;
	pointer-events: initial;
}

textarea.form-control {
    height: 200px;
}
form label {
    font-size: 14px;
}
form label span {
    font-size: 12px;
}
form p {
    margin: 0;
}

@media only screen and (max-width: 1199px) {
    .banner.thermal .caption.container p {
    font-size: 16px;
}
.banner.thermal .caption.container {
    position: static;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-block: 60px;
}
    .banner.thermal {
    padding: 0;
}
}
@media only screen and (max-width: 991px) {
.banner.thermal .caption.container * {
    width: 100%;
}
}