:root {
  --mhs-purple: #23244f;
  --mhs-orange: #ff7946;
  --bs-body-font-family:proxima-soft, Helvetica, Arial;
}

.bg-mhs-purple {
  background-color: var(--mhs-purple) !important;
}

.bg-mhs-orange {
  background-color: var(--mhs-orange) !important;
}

.text-mhs-orange { 
    color: var(--mhs-orange); 
}

.text-mhs-purple { 
    color: var(--mhs-purple); 
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family:proxima-soft, Helvetica, Arial;
    font-weight: 700;
}

.hero-section {
  background: url('/images/photos/Header\ Image.jpg') center center / cover no-repeat;
  min-height: 80vh;
  position: relative;
}

img.logo-img {
  max-width: 200px;
}

.instant-house-text {
  margin-top: -6.5%;
}

@media (min-width: 768px) {
  .dark-img-shadow-left {
    box-shadow: -40px 40px 0 var(--mhs-purple);
  }
}

@media (min-width: 768px) {
  .orange-img-shadow-left {
    box-shadow: -15px 15px 0 var(--mhs-orange);
  }
}

@media (min-width: 768px) {
  .dark-img-shadow-right {
    box-shadow: 40px 40px 0 var(--mhs-purple);
  }
}

.orange-tick-icon {
   background:var(--mhs-orange);
}

.tick-bullets{
  --tick-size: 30px; 
  --tick-gap: 16px;
}

.tick-bullets{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tick-bullets li{
  display: grid;
  grid-template-columns: var(--tick-size) 1fr;
  column-gap: var(--tick-gap);
  align-items: center;   
  margin-bottom: 1rem;
  text-align: left;
}

.tick-bullets li::before{
  content: "";
  display: block;
  width: var(--tick-size);
  height: var(--tick-size);
  align-self: stretch;
  background: var(--mhs-orange) url('/images/svg/tick.svg') no-repeat center;
  background-size: 55%;   
}

.tick-bullets li p{
  margin: 0;
  line-height: 1.35;
}


@media (max-width: 576px){
  .tick-bullets{
    --tick-size: 34px;
    --tick-gap: 12px;
  }
}



.min-height-10 {
  min-height: 10px;;
}

footer ul, footer p {
  white-space: nowrap;
}

@media (min-width: 768px) {
  footer .logo {
    max-width: 250px;
  }
}


.form-area {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.arrow-img {
  position: absolute;
  left: -140px;
  top: 45%;
  /* height: 90%; */
  transform: translateY(-50%);
  width: 120px;
  pointer-events: none;
}

a.tel-underline {
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}





.logos-mobile {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0; 
  gap: 1rem; 
  -webkit-overflow-scrolling: touch;
}


.logos-mobile img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  img.img-illustration {
    width: 70%;
  }
}



@keyframes cta-wiggle {
  0%, 100% { transform: translateX(0) rotate(0); }
  15% { transform: translateX(-2px) rotate(-0.5deg); }
  30% { transform: translateX(2px) rotate(0.5deg); }
  45% { transform: translateX(-1px) rotate(-0.3deg); }
  60% { transform: translateX(1px) rotate(0.3deg); }
}

@keyframes cta-glow {
  0%   { box-shadow: none; }
  30%  { box-shadow: 0 0 12px rgba(255, 165, 0, 0.5); }
  60%  { box-shadow: 0 0 8px rgba(255, 165, 0, 0.3); }
  100% { box-shadow: none; }
}

.cta-attention {
  animation: cta-wiggle 450ms ease-in-out 1, cta-glow 1.4s ease-out 1;
}

.disclaimer-text {
  font-size: x-small;
}











.logo-scroll-wrapper {
  position: relative;
}

.logos-mobile {
  gap: 1rem;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logos-mobile::-webkit-scrollbar {
  display: none;
}

.logos-mobile img {
  flex: 0 0 auto;
  height: 60px;
  width: auto;
  display: block;
  user-select: none;
}

.scroll-indicator {
  color: var(--mhs-orange);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.scroll-indicator.left {
  left: 10px;
}

.scroll-indicator.right {
  right: 10px;
}


.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4rem;
  background: rgba(255,255,255,0.3);
  z-index: -1;
}
.scroll-indicator.left::after {
  left: 0;
}
.scroll-indicator.right::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

@media (min-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}
