/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 480px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
    padding: clamp(8rem, 10vw, 10rem) 1rem 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
  }
  #banner-712 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }
  #banner-712 .cs-int-title {
    font-size: clamp(2.25rem, 6.4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #banner-712 .cs-int-subtitle {
    margin: 0;
    max-width: 42rem;
    line-height: 1.6;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
  }
  #banner-712 .cs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
  }
  #banner-712 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 1.875rem;
    background: var(--bodyTextColorWhite);
    color: var(--secondary);
    text-decoration: none;
    display: inline-block;
  }
  #banner-712 .cs-button-outline {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border-radius: 1.875rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    display: inline-block;
  }
  #banner-712 .cs-button-solid:hover,
  #banner-712 .cs-button-outline:hover {
    background-color: var(--accentcolor);
    border-color: var(--accentcolor);
    color: var(--bodyTextColor);
  }
  #banner-712 .cs-call-now {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 3.75rem;
    padding: 0.7rem 2.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transform: translateY(0);
    transition: 
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.2s ease;
  }
  #banner-712 .cs-call-now:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  }
  #banner-712 .cs-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
  }
  #banner-712 .cs-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
  }
}
                                                    