html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed',Arial,Helvetica,sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  background: #000;
  color: #e0e0e0;
}

/* --- Tablet/Mobile Logic (Touch Users Only) --- */

@media screen and (pointer: coarse) {
  body.modal-open {
    padding-right: 0 !important;
    width: 100% !important;
    position: fixed;
    overflow: hidden !important;
  }
}

.bg-red {
  background: #960000;
}

.bg-dk-gray {
  background: #191919;
}

/* Text Styling */

.text-red {
  color: #ff0000;
}

.no-hyphens {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

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

@media (min-width: 576px) {
  .text-justify-xs {
    text-align: justify;
  }
}

p {
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

a {
  color: #0d6efd;
  text-decoration: none;
  text-shadow: none;
}

a:hover {
  color: #094eff;
  text-decoration: none;
  text-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 1px 1px 1px #000;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

h1, .h1 {
  font-size: calc(24px + 1.15vw);
  color: #ff0000;
}

@media screen and (min-width:1600px) {
  h1, .h1 {
    font-size: 42px;
  }
}

h2, .h2 {
  font-size: calc(18px + 1.1vw);
}

@media screen and (min-width:1600px) {
  h2, .h2 {
    font-size: 36px;
  }
}

h3, .h3 {
  font-size: calc(16px + 1vw);
}

@media screen and (min-width:1600px) {
  h3, .h3 {
    font-size: 32px;
  }
}

h4, .h4 {
  font-size: 19px;
}

@media (min-width: 576px) {
  h4, .h4 {
    font-size: calc(15px + .9vw);
  }
}

@media screen and (min-width:1600px) {
  h4, .h4 {
    font-size: 28px;
  }
}

.welcome-text {
  font-family: 'Nothing You Could Do', serif;
  font-size: calc(20px + 4vw);
  line-height: 1.3;
}

@media (min-width: 576px) {
  .welcome-text {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .welcome-text {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  .welcome-text {
    font-size: 50px;
  }
}

@media (min-width: 1400px) {
  .welcome-text {
    font-size: 60px;
  }
}

.signature-text {
  font-size: 26px;
  font-family: 'Nothing You Could Do';
}

@media (min-width: 768px) {
  .signature-text {
    font-size: 30px;
    font-family: 'Nothing You Could Do';
  }
}

/* Button Styling */

.btn {
  transition: background .3s ease-in-out !important;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.btn-danger {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: #ff0000 !important;
  --bs-btn-border-color: #ff0000;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: #c80000 !important;
  --bs-btn-hover-border-color: #c80000 !important;
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: #c80000 !important;
  --bs-btn-active-border-color: #ff0000;
  --bs-btn-active-shadow: none !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: #960000 !important;
  --bs-btn-disabled-border-color: #dc3545 !important;
  border: none;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0000ff;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0202c3;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0202c3;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: none;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  border: none;
}

.btn-responsive {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1.2rem;
}

@media (min-width: 768px) {
  .btn-responsive {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  .btn-responsive {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.6rem;
  }
}

.get-started-icon {
  height: 17px;
  width: auto;
  margin-bottom: 5px;
}

@media (min-width: 576px) {
  .get-started-icon {
    height: 20px;
    width: auto;
    margin-bottom: 7px;
  }
}

@media (min-width: 992px) {
  .get-started-icon {
    height: 25px;
    width: auto;
    margin-bottom: 7px;
  }
}

/* Large Signup Button On Bottom of Page */

.signup-but .icon {
  height: clamp(23px, 5vw, 34px);
  width: auto;
  margin-bottom: 3%;
}

.signup-but {
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  border-radius: 5px !important;
  transition: all .7s !important;
  border: none;
}

@media (min-width: 576px) {
  .signup-but {
    font-size: 38px;
  }
}

@media (min-width: 768px) {
  .signup-but {
    padding: 10px 40px;
    font-size: 42px;
  }
}

.signup-but:hover {
  background-color: #000096 !important;
  transition: all .7s !important;
  transform: scale(1.05,1.05) !important;
}

/* About Us List */

.about-list ul {
  max-width: 325px;
  margin: 0 auto;
  padding-left: 30px;
  font-style: italic;
}

@media (min-width: 576px) {
  .about-list ul {
    max-width: 400px;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .about-list ul {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .about-list ul {
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .about-list ul {
    padding-left: 25px;
  }
}

@media (min-width: 576px) {
  .about-list {
    column-count: 2;
    line-height: 1.5;
  }
}

@media (min-width: 992px) {
  .about-list {
    column-count: 3;
    padding-left: 20px;
  }
}

.about-list li {
  margin-bottom: 8px;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .about-list li {
    font-size: 21px;
  }
}

/* Benefits List */

.benefits-list {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

.benefits-list li {
  margin-bottom: 10px;
  margin-left: -10px;
}

.benefits-list .fa-li {
  top: -1px;
}

@media (min-width: 768px) {
  .benefits-list {
    font-size: 22px;
  }
}

/* Contact Form Styling */

#cfm .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
}

#cfm .btn-close:hover {
  opacity: 1;
}

#cfm .modal-content {
  background-color: #191919;
  border: 1px solid #000;
  border-radius: 4px;
}

#cfm .modal-header {
  padding: 10px;
  background-color: #b40000;
  border-bottom: solid 1px #000;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#cfm .modal-footer {
  border-top: 1px solid #000;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

#cfm .modal-body {
  padding: 15px;
}

#cfm h2, .h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

@media (min-width: 576px) {
  #cfm h2, .h2 {
    font-size: 48px;
  }
}

#cfm h3, .h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

#cfm .nospam {
  font-size: 16px;
}

/* Misc Styling */

.svg-drop-shadow {
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.sm {
  scroll-margin: 170px;
}

@media (min-width: 992px) {
  .sm {
    scroll-margin: 150px;
  }
}

#baguetteBox-overlay .full-image img {
  border-radius: 10px;
}

