.component-page-banner-sec {
    z-index: 1;
    display: flex;
    height: 100vh;
    max-height: 970px;
    align-items: center;
}
.component-page-banner-sec .container {
    z-index: 1;
}
.page-banner-sub-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.banner-content h1 {
    margin-top: 0;
}

/*header-1*/
.component-page-banner-sec.header-1 .container {
    max-width: 1300px;
}
.banner-content h1 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.2;
}
.banner-content-description * {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}
.banner-image-icon {
    height: 550px;
    object-fit: contain;
    object-position: center center;
}

/*header-2*/
.component-page-banner-sec.header-2 {
    max-height: 565px;
}
.component-page-banner-sec.header-2 .container {
    max-width: 1000px;
}
.header-2 h1 {
    font-weight: 600;
}
.banner-content-description.text-white * {
    color: var(--white) !important;
}

/*header-3*/
.component-page-banner-sec.header-3 .container {
    max-width: 875px;
}


/*header-4*/
.component-page-banner-sec.header-4 .container {
    max-width: 875px;
}

.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    text-align: center;
    animation: jumpInfinite 1.5s infinite;
    z-index: 9999;
}

.scroll-down img {
    width: 24px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
}

/*header-5*/
.component-page-banner-sec.header-5 {
    color: var(--white);
}
.form-wrapper {
    border-radius: 16px;
    background: #FFF;
    padding: 30px 45px;
    color: var(--black);
}
.form-wrapper .form-control {
    padding: 12px;
    resize: none;
    border: 1px solid rgba(0, 0, 0, 0.28);
    background: rgba(217, 217, 217, 0.15);
}
@keyframes jumpInfinite {
  0% {
    bottom: 25px;
  }
  50% {
    bottom: 50px;
  }
  100% {
    bottom: 25px;
  }
}
.banner-video {
    width: 100%;
}