html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  background: #fff;
  color: #000;
}

/* --- 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;
  }
}

/* Spacer CSS */

@media (max-width: 400px) {
  .spacer {
    position: relative;
    height: calc(84px + 25vw);
    background: #000000;
    z-index: -9999;
  }
}

@media (min-width: 401px) {
  .spacer {
    position: relative;
    height: 183px;
    background: #000000;
    z-index: -9999;
  }
}

@media (min-width: 576px) {
  .spacer {
    height: 186px;
  }
}

@media (min-width: 768px) {
  .spacer {
    height: 157px;
  }
}

@media (min-width: 1200px) {
  .spacer {
    height: 168px;
  }
}

/* Text Styling */

a {
  text-decoration: none;
  text-shadow: none;
}

a:hover {
  text-decoration: none;
}

.link-danger:focus, .link-danger:hover {
  color: RGBA(180,0,0,var(--bs-link-opacity,1))!important;
}

p {
  font-size: 18px;
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media (min-width: 992px) {
  p {
    font-size: 19px;
  }
}

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

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

.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-theme {
  color: #ff0000;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}

.att-text {
  font-family: 'Roboto Condensed';
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 576px) {
  .att-text {
    font-size: calc(24px + 1.75vw);
  }
}

@media (min-width: 768px) {
  .att-text {
    font-size: calc(20px + 2.3vw);
  }
}

@media (min-width: 992px) {
  .att-text {
    font-size: calc(21px + 3vw);
  }
}

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

.att-text-sub {
  font-size: calc(12px + 1.5vw);
  line-height: 1.3;
}

@media (min-width: 992px) {
  .att-text-sub {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .att-text-sub {
    font-size: 32px;
  }
}

@media (min-width: 1400px) {
  .att-text-sub {
    font-size: 37px;
  }
}

.price-text {
  font-size: calc(12px + 3vw);
}

@media (min-width: 768px) {
  .price-text {
    font-size: calc(24px + 1vw);
  }
}

@media (min-width: 1200px) {
  .price-text {
    font-size: calc(30px + 1vw);
  }
}

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

/* Theme Styling */

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: solid 2px #ff0000;
}

.bg-theme {
  background: #e1e1e1;
}

.bg-theme-img {
  background-image: url("../../assets/img/rival-bg.jpg");
  background-repeat: repeat;
}

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

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

.divider-drop-shadow {
  filter: drop-shadow(0px -4px 6px rgba(0, 0, 0, .4));
  clip-path: inset(-30px 0px 0px -0px);
  margin-bottom: -1px;
  z-index: -10;
}

.rival-snake {
  height: clamp(25px, 4vw, 55px);
  width: auto;
  margin-bottom: .5%;
}

/* Button Styling */

.btn {
  transition: all .3s ease-in-out !important;
}

.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: #930000 !important;
  --bs-btn-disabled-border-color: #dc3545 !important;
  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: 576px) {
  .btn-responsive {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1.4rem;
  }
}

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

/* Large Signup Button on Bottom of Pages */

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

#signup-but .btn {
  color: #fff;
  background-color: #ff0000;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
  font-size: 28px;
  font-weight: 700;
  border: none;
  padding: 5px 13px;
}

@media (min-width: 576px) {
  #signup-but .btn {
    font-size: calc(18px + 2.2vw);
    padding: 5px 20px;
  }
}

@media (min-width: 1600px) {
  #signup-but .btn {
    font-size: 52px;
  }
}

#signup-but .btn:hover, #signup-but .btn:focus {
  color: #fff;
  background-color: #b40000;
}

/* List Styling */

.benefits-list {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin-left: 35px;
}

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

.benefits-list .fa-li {
  top: 0px;
  color: #c80000;
}

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

/* Quote Styling */

#maQuote p {
  position: relative;
  font-size: 17px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #000;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  z-index: 2;
  text-shadow: none;
}

#maQuote .speech-bubble {
  display: block;
  width: 100%;
  position: relative;
  background: #fff;
  border: 3px solid #c80000;
  border-radius: .5rem;
  text-shadow: none;
  padding: 15px 20px;
  box-sizing: border-box;
}

#maQuote .speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -17px;
  right: 52px;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: linear-gradient(-45deg, #fff 52%, transparent 0);
  border: 3px solid #c80000;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0;
  box-sizing: border-box;
}

#maQuote .speech-bubble-quote {
  position: absolute;
  background-image: url("../../assets/img/quote-dark-left.svg");
  background-repeat: no-repeat;
  width: 130px;
  height: 110px;
  transform: scale(.8);
  opacity: .10;
  z-index: 1;
}

#maQuote .speech-bubble-signature p {
  margin-top: 25px;
  margin-right: 50px;
  font-size: 20px;
  line-height: 1.0;
  text-align: right;
}

/* Contact Us Styling */

@media (min-width: 992px) {
  .facility-adjust {
    margin-top: -40px;
  }
}

@media (min-width: 1200px) {
  .facility-adjust {
    margin-top: 0px;
  }
}

.table-width {
  max-width: 400px;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .table-width {
    font-size: 17px;
  }
}

@media (min-width: 1400px) {
  .table-width {
    font-size: 18px;
  }
}

.social-networks a {
  font-size: 32px;
  color: #000;
  padding: 0 8px;
  transition: 0.3s ease-in-out;
}

.social-networks a:hover {
  text-decoration: none;
}

.facebook:hover {
  color: #007bff;
}

.instagram:hover {
  color: #ff00e6;
}

/* Funnel Spark Form Styling */

#funnel .get-started-fields {
  width: 100%;
  margin: 0px auto;
  display: block;
  border: none;
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 8px;
  border: 1px solid #000;
  box-shadow: inset 0 2px 3px rgba(0,0,0,0.5);
}

#funnel .get-started {
  display: block;
  color: #fff;
  padding: 6px 20px;
  background: #ff0000;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  border: none;
  border-radius: 5px;
  transition: background .3s ease-in-out;
  margin: 0 auto;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
  box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
}

@media (min-width: 576px) {
  #funnel .get-started {
    font-size: 32px;
  }
}

#funnel .get-started:hover {
  background: #b40000;
}

#funnel .opt-in {
  color: #c3c3c3;
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
  margin: 0 6px 15px 6px;
}

#funnel .opt-in input[type="checkbox"] {
  display: inline-block !important;
  vertical-align: middle;
}

/* Misc Styling */

.affiliates {
  width: clamp(120px, 40vw, 150px);
  height: auto;
}

@media (min-width: 576px) {
  .affiliates {
    width: 150px;
    height: auto;
  }
}

@media (min-width: 768px) {
  .affiliates {
    width: 165px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .affiliates {
    width: 172px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .affiliates {
    transition: transform .2s ease-in-out;
  }
}

@media (min-width: 992px) {
  .affiliates:hover {
    transform: scale(1.05);
  }
}

.thank-you-logo {
  max-width: 240px;
}

.sm {
  scroll-margin: 205px;
}

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

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

