/*landing page css */
.landing h1 {
  color: var(--hamblue);
  font-weight: 600;
  margin: 0px 0px 10px 0px;
  line-height: 50px;
}

.landing .hero.landing-019 {
  background-image: url(https://hamiltoncaptel.com/wp-content/uploads/25-hrc-019.jpg);
  border-radius: 10px;
  height: 483px;
  background-size: cover;
  display: none;
}

.landing .hero.landing-019 .hero-copy {
  background-color: #00000055;
  color: white;
  margin-left: 20px;
  padding: 15px 20px 20px;
  border-radius: 10px;
}
.landing .hero.landing-019 h1 {
  color: white;
  line-height: 1.3;
  font-size: 48px
}
.landing .hero h2 {
  color: white;
  margin-bottom: 0;
  font-size: 30px
}
.landing .sidebar {
  line-height: 32px;
  font-size: 24px;
  color: white;
  padding: 0px;
  background: #003399;
  border-radius: 20px;
  height: 100%;
  
}
.landing .sidebar-bg {
  position: relative;
  text-align: center;
  /* background: white; */
  margin-top: -10px;
  border-radius: 19px;
  padding: 30px 0px;
}

/* .landing .sidebar-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, white, #003399);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
} */
.landing .sidebar h3 {
  margin: 10px 0 15px;
  padding: 5px 25px 10px;
  font-size: 26px;
  font-weight: 400;
}
.landing .sidebar-bg iframe {
  border-radius: 10px;
  border: 2px solid white;
}
.landing .wpforms-container .required-radio label {
  font-weight: 600 !important;
}

.landing .wpforms-container .required-radio li {
  display: flex; 
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
}
.landing .wpforms-container .required-radio li:last-of-type {
  margin-bottom: 0px;
}
.landing .wpforms-container .wpforms-field-checkbox li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .wp-block-column.emptyblock {
    display: none;
}

.landing .hero.landing-019 {
  background-image: url(https://hamiltoncaptel.com/wp-content/uploads/25-hrc-019-mobile.jpg);
  border-radius: 10px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #9e5214;
  background-position: center;
}

.landing .hero.landing-019 .hero-copy {
    margin: 20px;
}
}
@media (max-width: 900px) {
  .landing-sidebar {
    display: block !important;
}
.landing .sidebar {
  margin-top: 50px !important;
}
}
@media (max-width: 700px) {
  .landing .hero.landing-019 {
    background-image: none;
  }
  .landing .hero.landing-019 .hero-copy {
    margin: 0px;
}
figure.hamburger {
  display: none;
}
.landing .hero.landing-019 h1 {
  font-size: 35px
}
.landing .hero h2 {
  font-size: 30px
}

}
@media (max-width: 500px) {
.landing .hero.landing-019 .hero-copy {
margin: 0 -20px;
background-color: #6a3610;
}
}

.wpforms-field-container > div {
  padding-top: 0 !important;
}

.wpforms-field-container > div .wpforms-field-label {
  padding-top: 0px;
}



.slider-scale-aligned {
  position: relative;
}

.scale-numbers-aligned {
  display: flex;
  position: relative;
  margin: 0px 10px;
  height: 20px;
}

.scale-number-aligned {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: translateX(-50%); /* Center the number on its position */
}

/* Position each number at the exact slider positions */
.scale-number-aligned[data-value="1"] { left: 0%; }
.scale-number-aligned[data-value="2"] { left: 25%; }
.scale-number-aligned[data-value="3"] { left: 50%; }
.scale-number-aligned[data-value="4"] { left: 75%; }
.scale-number-aligned[data-value="5"] { left: 100%; }

.scale-ticks-aligned {
  display: flex;
  position: relative;
  height: 8px;
  margin: 0px 10px;
}

.scale-tick-aligned {
  position: absolute;
  font-size: 8px;
  color: #999;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: translateX(-50%); /* Center the tick on its position */
  top: 0;
}

/* Position each tick at the exact slider positions */
.scale-tick-aligned[data-value="1"] { left: 0%; }
.scale-tick-aligned[data-value="2"] { left: 25%; }
.scale-tick-aligned[data-value="3"] { left: 50%; }
.scale-tick-aligned[data-value="4"] { left: 75%; }
.scale-tick-aligned[data-value="5"] { left: 100%; }

.scale-number-aligned.active,
.scale-number-aligned:hover {
  color: #003399;
  font-size: 16px;
  display: inline-block;
}
.scale-number-aligned.active:before,
.scale-number-aligned:hover:before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #003399;
  border-radius: 15px;
  left: -4px;
  top: 2px;
}

.scale-tick-aligned.active,
.scale-tick-aligned:hover {
  font-size: 0px;
}

.slider-labels {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

.current-label {
  color: #333;
  font-size: 14px;
  padding: 5px 10px;
  background: #f0f0f0;
  border-radius: 4px;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scale-numbers-aligned {
      padding-left: 8px;
      padding-right: 8px;
  }
  
  .scale-ticks-aligned {
      padding-left: 8px;
      padding-right: 8px;
  }
  
  .scale-number-aligned {
      font-size: 12px;
  }
  
  .scale-tick-aligned {
      font-size: 14px;
  }
  
  .scale-number-aligned.active,
  .scale-number-aligned:hover {
      font-size: 14px;
  }
  
  .scale-tick-aligned.active,
  .scale-tick-aligned:hover {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .scale-numbers-aligned {
      padding-left: 6px;
      padding-right: 6px;
  }
  
  .scale-ticks-aligned {
      padding-left: 6px;
      padding-right: 6px;
  }
  
  .scale-number-aligned {
      font-size: 11px;
  }
  
  .scale-tick-aligned {
      font-size: 13px;
  }
  
  .current-label {
      font-size: 12px;
      padding: 4px 8px;
  }
}