span.underline-white {
    position: relative;
    /* background: url(../img/underline.svg) no-repeat center bottom;
    background-size: 100% auto; */
}

span.underline-white::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-image: url(../img/underline.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 0% 5px;
    transition: background-size 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

span.underline-white.is-visible::after {
    background-size: 100% 5px;
}

.sub {
    display: inline-block;
    max-width: fit-content;
    line-height: 1;
    padding: 11px 15px 9px;
    letter-spacing: 0.25px;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Banner
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.banner-section .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

.banner-section .secondary-heading {
    font-size: 32px;
    margin: 20px 0 0;
}

#banner-1 .sub {
    font-size: 16px !important;
}

.banner-section .content-part {
    padding: 86px 0 50px;
}

#banner-1 .desc .fw-700 {
    font-size: 18px;
}

#banner-1 .desc p:first-child {
    max-width: 475px;
    margin-top: 50px;
}

#banner-1 .desc p:nth-child(2) {
    max-width: 550px;
}

#banner-1 .desc p:nth-child(4) {
    max-width: 565px;
}

.banner-section .desc p:last-child {
    margin-bottom: 50px;
}

.banner-section .btn {
    margin-top: 50px;
    gap: 15px;
}

.btn:hover img {
    filter: grayscale(100%) brightness(0%);
}

.subhd-con {
    margin-bottom: 30px;
}

.sub-divider {
    width: 56px;
    height: 4px;
    background-color: var(--off-black);
    margin-bottom: 20px;
}

#banner-1 .img-part {
    margin-right: calc((100vw - 1295px) / -2);
    margin-top: 20px;
}

@media screen and (max-width: 1440px) {
    #banner-1 .container {
        grid-template-columns: 42% 58%;
    }
}

@media screen and (max-width: 1280px) {
    #banner-1 .container {
        grid-template-columns: 44% 56%;
    }

    .banner-section .img-part{
        display: flex;
        align-items: center;
    }

    #banner-1 .img-part {
        margin-right: 0;
        align-items: flex-start;
        padding-top: 115px;
    }
}

@media screen and (max-width: 998px) {
    .banner-section .desc{
        max-width: 100% !important;
    }

    section#banner-1 .desc p:nth-child(2){
        max-width: 100%;
    }

    section#banner-1 .desc p:nth-child(3){
        max-width: 100%;
    }

    section#banner-1 .desc p:nth-child(4){
        max-width: 100%;
    }

    section#banner-1 .desc p:nth-child(5){
        max-width: 100%;
    }
}

@media screen and (max-width: 820px) {
    #banner-1 .container {
        grid-template-columns: 1fr;
    }

    #banner-1 .container .content-part {
        order: 2 !important;
    }

    #banner-1 .container .img-part {
        order: 1 !important;
    }

    #banner-1 .desc p:first-child {
        max-width: 100%;
    }
}

@media screen and (max-width: 568px) {
    #banner-1 .img-part {
        padding-top: 30px;
    }

    .banner-section .secondary-heading {
        font-size: 24px;
    }

    .banner-section .content-part {
        padding: 30px 0;
    }

    .banner-section .btn {
        margin-top: 30px;
        gap: 15px;
        padding: 20px;
        font-size: 15px;
        width: 100%;
    }
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Banner (.home #banner-5)
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.home #banner-5 .sub {
    background-color: var(--off-black) !important;
    color: var(--yellow) !important;
}

.home #banner-5 .content-part h1 {
    font-size: 48px;
    margin: 30px 0 50px;
}

.home #banner-5 .content-part .desc {
    color: var(--off-black) !important;
    max-width: 506px;
}

.home #banner-5 .img-part {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.highlight-title {
    /* transform: rotate(-1.5deg);
    display: inline-block;  */
}

.highlight-title > span {
    background-color: var(--off-black);
    color: #fff;
    padding: 4px 10px; /* Vertical and horizontal padding */
    
    /* This ensures the padding stays on every line break */
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    
    /* Use box-shadow to prevent text from touching the edge of the black box */
    box-shadow: 10px 0 0 var(--off-black), -10px 0 0 var(--off-black);
}

#banner-5 .desc ul {
    padding-left: 40px;
}


@media screen and (max-width: 1024px) {
    .home #banner-5 .content-part h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 820px) {
    .home #banner-5 .content-part h1 {
        font-size: 36px;
    }

    section#banner-5 {
        padding-top: 60px;
    }

    #banner-5 .container {
        grid-template-columns: 1fr;
    }

    #banner-5 .container .content-part {
        order: 2 !important;
        padding: 60px 0 30px;
    }

    #banner-5 .container .img-part {
        order: 1 !important;
    }

    #banner-5 .desc p:first-child {
        max-width: 100%;
    }
}

@media screen and (max-width: 568px) {
    #banner-5 .container .content-part {
        padding: 30px 0 0;
    }
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Text slider
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.acf-ticker-container {
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-impact);
}

.acf-ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.ticker-text {
    font-size: 15px;
    letter-spacing: 4.5px;
}

.ticker-separator img {
    height: 14px; 
    width: auto;
    margin-left: 20px; 
    display: block;
}

.ticker-active {
    animation: scroll-right-to-left 30s linear infinite;
}

@keyframes scroll-right-to-left {
    0% {
        /* Start at the beginning of the list */
        transform: translateX(0);
    }
    100% {
        /* Move LEFT until the "Original" set is fully off-screen,
           leaving the "Clone" set in its place */
        transform: translateX(-50%);
    }
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Number Counter with Progress Bar
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.counter-block {
    padding: 60px 20px 40px;
    text-align: center;
    background: var(--off-dark);
}

.counter-heading {
    font-size: 20px;
    color: var(--yellow);
    font-weight: bold;
}

.counter-display {
    font-family: var(--font-impact);
    font-size: 120px;
    color: var(--white); 
    margin-bottom: 1rem;
    line-height: 1;
}

.counter-progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--white);
    margin-top: 8px;
    display: none;
}

.progress-track {
    width: 100%;
    height: 12px;
    background-color: #333333;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: none;
}

.progress-fill {
    height: 100%;
    background-color: var(--yellow); 
    border-radius: 6px;
    transition: width 2s ease-out; /* Smooth CSS transition for the bar */
    width: 0; /* Start at 0 */
    display: none;
}

.counter-description {
    font-size: 14px;
    color: var(--yellow);
    margin-top: -20px;
    display: none;
}

@media screen and (max-width: 820px) {
    .counter-display {
        font-size: 80px;
    }

    .counter-progress-container {
        max-width: 600px;
    }
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Video Section with Overlay
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.video-section-layout {
    padding: 50px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
}

.video-overlay-layer,
.video-player-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay-layer {
    z-index: 2; /* Sits on top */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.video-overlay-layer .bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.play-icon-container {
    position: relative;
    z-index: 2;
    width: 80px; 
    height: 80px;
    transition: transform 0.2s ease;
}

.play-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-overlay-layer:hover .play-icon-container {
    transform: scale(1.1);
}

.video-wrapper.is-playing .video-overlay-layer {
    opacity: 0;
    pointer-events: none;
}

.video-player-layer {
    z-index: 1;
}

.html5-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Grid Boxes (.home #grid_boxes-6)
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.grid-boxes-section{
    overflow: hidden;
}

.home #grid_boxes-6 .sub {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.home #grid_boxes-6 .grid-boxes-content {
    text-align: center;
    padding-top: 80px;
}

.home #grid_boxes-6 .grid-boxes-content .sub-divider {
    width: 124px;
    margin: 0 auto 20px;
}

.home #grid_boxes-6 .grid-boxes-content h1 {
    font-size: 58px;
}

.home #grid_boxes-6 .grid-boxes-content .desc {
    max-width: 765px;
    margin: 30px auto;
}

.block-type-box .grid-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.block-type-box .grid-boxes-wrapper .grid-box {
    background-color: var(--off-black);
    color: var(--white);
    padding: 20px 30px;
    border-top: 6px solid var(--white);
    font-size: 16px;
}

.block-type-box .grid-boxes-wrapper .grid-box h4 {
    color: var(--yellow);
    font-size: 20px;
}

.home #grid_boxes-6 .grid-boxes-after-content {
    display: grid;
    grid-template-columns: calc(70% - 30px) 30%;
    gap: 30px;
    padding-bottom: 60px;
}

.home #grid_boxes-6 .grid-boxes-after-content .desc {
    margin-top: 40px;
    max-width: 770px;
}

.home #grid_boxes-6 .grid-boxes-after-content .desc strong,
.home #grid_boxes-6 .grid-boxes-after-content .desc .fw-700 {
    font-size: 18px;
}

.home #grid_boxes-6 .after-content-image {
    position: relative;
}

.home #grid_boxes-6 .after-content-image img {
    position: absolute;
    right: 0;
    bottom: -63px;
}

.home #grid_boxes-6 .grid-boxes-after-content .desc span.underline-white::after {
    background-image: url(../img/underline-long.svg);
}

.home #grid_boxes-6 .grid-boxes-after-content .desc span.underline-white.is-visible::after {
    background-size: 100% auto;
}

@media screen and (max-width: 1280px) {
    .home #grid_boxes-6 .grid-boxes-after-content .desc {
        padding-bottom: 30px;
    }

    .home #grid_boxes-6 .after-content-image {
        margin-top: -165px;
    }
}

@media screen and (max-width: 1024px) {
    .home #grid_boxes-6 .grid-boxes-content h1 {
        font-size: 44px;
    }
}

@media screen and (max-width: 998px) {
    .block-type-box .grid-boxes-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .home #grid_boxes-6 .after-content-image {
        margin-right: 15px;
        max-width: 230px;
    }
}

@media screen and (max-width: 767px) {
    .block-type-box .grid-boxes-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .home #grid_boxes-6 .after-content-image {
        max-width: 100%;
        display: flex;
        justify-content: end;
        margin-top: -10px;
    }

    .home #grid_boxes-6 .after-content-image img{
        max-width: 230px;
    }

    .home #grid_boxes-6 .grid-boxes-after-content {
        align-items: flex-start;
    }

    section#grid_boxes-6 .grid-boxes-after-content .desc {
        margin-top: 30px !important;
        max-width: 770px;
    }

    section#grid_boxes-6 .grid-boxes-after-content .desc p{
        max-width: 70% !important;
    }
    
}

@media screen and (max-width: 568px) {
    .home #grid_boxes-6 .grid-boxes-content {
        padding-top: 40px;
    }

    .home #grid_boxes-6 .after-content-image {
        margin-right: 0px;
        justify-content: center;
    }

    .home #grid_boxes-6 .grid-boxes-after-content {
        grid-template-columns: repeat(1, 1fr) !important;
        padding-bottom: 0px;
    }

    .home #grid_boxes-6 .grid-boxes-after-content .desc{
        order: 2;
    }

    section#grid_boxes-6 .grid-boxes-after-content .desc p{
        max-width: 100% !important;
    }

    .home #grid_boxes-6 .after-content-image img {
        max-width: 200px;
        position: relative;
        bottom: unset;
    }
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Grid Boxes (.home #grid_boxes-7)
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.home #grid_boxes-7 .grid-boxes-content {
    text-align: center;
    padding-top: 80px;
}

.home #grid_boxes-7 .grid-boxes-content h1 {
    font-size: 52px;
    color: var(--off-black);
}

.home #grid_boxes-7 .grid-boxes-content h1.highlight-title > span {
    background-color: var(--white);
    color: var(--off-black);
    box-shadow: 10px 0 0 var(--white), -10px 0 0 var(--white);
}

.home #grid_boxes-7 .grid-boxes-content .desc {
    max-width: 730px;
    color: var(--off-black);
    margin: 40px auto;
}

.block-type-line .grid-boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.block-type-line .grid-boxes-wrapper .grid-box {
    border-top: 4px solid var(--off-black);
    padding: 20px 0 0;
    font-size: 16px;
}

.block-type-line .grid-boxes-wrapper .grid-box h4 {
    font-size: 18px;
    color: var(--off-black);
}

.home #grid_boxes-7 .grid-boxes-after-content {
    padding-bottom: 60px;
}

.home #grid_boxes-7 .grid-boxes-after-content .desc {
    margin-top: 40px;
}

.home #grid_boxes-7 .grid-boxes-after-content .desc > p:nth-child(1){
    margin-bottom: 0;
}

.home #grid_boxes-7 .grid-boxes-after-content .desc > p:nth-child(2){
    margin-top: 5px;
}

.home #grid_boxes-7 .grid-boxes-after-content .desc span.underline-white::after {
    background-image: url(../img/underline-long.svg);
}

.home #grid_boxes-7 .grid-boxes-after-content .desc span.underline-white.is-visible::after {
    background-size: 100% auto;
}

@media screen and (max-width: 1024px) {
    .home #grid_boxes-7 .grid-boxes-content h1 {
        font-size: 44px;
    }

    .block-type-line .grid-boxes-wrapper .grid-box {
        padding: 12px 0 0;
    }
}

@media screen and (max-width: 998px) {
    .block-type-line .grid-boxes-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .home #grid_boxes-7 .grid-boxes-after-content {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 820px) {
    .home #grid_boxes-7 .grid-boxes-content h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 568px) {
    .home #grid_boxes-7 .grid-boxes-content {
        padding-top: 40px;
    }

    .home #grid_boxes-7 .grid-boxes-content h1 {
        line-height: 1.6;
    }

    .block-type-line .grid-boxes-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .home #grid_boxes-7 .grid-boxes-after-content .desc .fw-700 {
        font-size: 16px !important;
    }

}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Take action (.home #take_action-8)
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.take-action-section {
    padding-bottom: 60px;
}

#take_action-8 .sub {
    max-width: 150px;
    text-align: center;
}

.home #take_action-8::before {
    width: 100%;
    height: 180px;
    content: "";
    background-color: var(--white);
    display: block;
}

.home #take_action-8 .take-action-content {
    margin-top: -100px;
    display: grid;
    grid-template-columns: 43% calc(57% - 15px);
    gap: 15px;
}

.home #take_action-8 .take-action-content .desc {
    margin-top: 30px;
}

.home #take_action-8 .take-action-content .desc .fw-700 {
    font-size: 19px;
}

.take-action-numbered-wrapper {
    max-width: 485px;
    padding-bottom: 40px;
}

.take-action-numbered-wrapper .numbered-box {
    gap: 20px;
}

.take-action-numbered-wrapper .numbered-box-number {
    font-size: 56px;
    line-height: 1;
    font-family: var(--font-impact);
    color: var(--yellow);
    min-width: 50px;
}

.take-action-numbered-wrapper .numbered-box h4 {
    font-size: 22px;
    line-height: 1;
    margin: 0 0 5px 0;
}

.take-action-numbered-wrapper .numbered-box .numbered-box-content p {
    font-size: 16px;
    margin: 0;
}

.take-action-numbered-wrapper .numbered-box .numbered-box-content {
    padding-top: 18px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.take-action-numbered-wrapper .numbered-box {
    padding-top: 15px;
}

.take-action-numbered-wrapper .numbered-box + .numbered-box {
    border-top: 1px solid #ddd;
}

.take-action-right-content .take-action-image {
    margin-right: calc((100vw - 1295px) / -2);
    margin-top: 180px;
}

.take-action-after-content {
    gap: 80px;
}

.take-action-after-content .after-content-text .desc > p:first-child {
    margin: 0;
}

.take-action-after-content .after-content-text .desc > p:nth-child(2) {
    margin: 10px 0 30px;
}

.take-action-after-content .after-content-text .desc > p:nth-child(3) {
    margin-bottom: 20px;
}

h4.after-content-heading {
    font-size: 36px;
}

section#take_action-8 .after-content-text .desc .underline-alt::after {
    background-image: url(../img/underline-alt.svg);
}

@media screen and (max-width: 1024px) {
    .home #take_action-8 .take-action-content h2 {
        font-size: 44px;
    }

    .home #take_action-8 .take-action-content {
        margin-top: -85px;
    }

    .take-action-right-content .take-action-image {
        margin-right: -20px;
        margin-top: 180px;
    }
    
    .take-action-numbered-wrapper .numbered-box h4 {
        font-size: 20px;
    }

    .take-action-numbered-wrapper .numbered-box-number {
        font-size: 44px;
        min-width: 44px;
    }

    .take-action-numbered-wrapper .numbered-box .numbered-box-content {
        padding-top: 12px;
        padding-bottom: 16px;
        padding-right: 20px;
    }
}


@media screen and (max-width: 820px) {
    .home #take_action-8 .take-action-content {
        grid-template-columns: 1fr;
    }

    .home #take_action-8 .take-action-left-content {
        order: 2 !important;
    }

    .home #take_action-8 .take-action-right-content {
        order: 1 !important;
    }

    .take-action-right-content .take-action-image {
        margin-right: 0;
        margin-top: 0;
    }

    .home #take_action-8 .take-action-content .desc p:first-child {
        max-width: 100%;
    }

    .take-action-numbered-wrapper {
        max-width: 100%;
    }
}

@media screen and (max-width: 568px) {
    .home #take_action-8::before {
        height: 120px;
    }    

    .take-action-numbered-wrapper .numbered-box h4 {
        font-size: 16px;
    }

    .take-action-numbered-wrapper .numbered-box .numbered-box-content {
        padding-right: 0;
    }

    .take-action-after-content {
        gap: 30px;
        flex-direction: column;
    }
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Form section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.form-section {
    padding: 80px 0;
}

.form-section .content-part h2.highlight-title {
    font-size: 48px;
    line-height: 1.5;
    color: var(--off-black);
}

.form-section .content-part h2.highlight-title > span {
    background-color: var(--white);
    color: var(--off-black);
    box-shadow: 10px 0 0 var(--white), -10px 0 0 var(--white);
}

.form-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

section#form-9 .img-part {
    margin-left: calc((100vw - 1295px) / -2);
    margin-top: 80px;
}

.form-section .content-part .desc {
    max-width: 600px;
}

div#gform_fields_2 {
    row-gap: 16px;
}

.form-embed #can_embed_form input[type=text], 
.form-embed #can_embed_form input[type=password], 
.form-embed #can_embed_form input[type=url], 
.form-embed #can_embed_form input[type=email], 
.form-embed #can_embed_form input[type=tel], 
.form-embed #can_embed_form input[type=number],
.form-embed #can_embed_form textarea,
.form-section input[type="text"], 
.form-section input[type="email"] {
    border-radius: 0 !important;
    border: 2px solid var(--off-black) !important;
    min-height: 52px !important;
    font-size: 15px !important;
    color: var(--off-black) !important;
    font-family: var(--font-ssp) !important;
}

.form-section input[type="text"]::placeholder, 
.form-section input[type="email"]::placeholder,
.form-embed #can_embed_form input[type=text]::placeholder, 
.form-embed #can_embed_form input[type=password]::placeholder, 
.form-embed #can_embed_form input[type=url]::placeholder, 
.form-embed #can_embed_form input[type=email]::placeholder, 
.form-embed #can_embed_form input[type=tel]::placeholder, 
.form-embed #can_embed_form input[type=number]::placeholder {
    color: #999 !important;
    font-size: 15px;
}

.form-embed #can_embed_form.can_float #form_col1 > li.core_field:nth-child(2) {
    margin-right: 20px !important;
}
.form-embed #can_embed_form.can_float #form_col1 > li.core_field:nth-child(2), 
.form-embed #can_embed_form.can_float #form_col1 > li.core_field:nth-child(3) {
    width: calc(50% - 10px) !important;
    float: left !important;
}

.gform-footer input[type="submit"], 
.form-embed #can_embed_form input[type=submit] {
    width: 100% !important;
    font-size: 22px !important;
    font-family: var(--font-impact) !important;
    background-color: var(--off-black) !important;
    border-radius: 0 !important;
    padding: 18px !important;
    color: var(--yellow) !important;
    min-height: 60px !important;
}

div#can_embed_form {
    padding: 0 !important;
    border: 0px solid transparent !important;
    color: var(--off-black) !important;
    font-size: 15px !important;
    line-height: 24px !important;
    font-family: var(--font-ssp) !important;
    font-weight: 400 !important;
    outline: none !important;
    background-color:transparent !important;
}

div#can_embed_form_inner h2,
div#can_embed_form_inner h3,
div#can_embed_form_inner h4 {
    display: none !important;
}

.form-embed #can_embed_form.can_float #form_col1,
.form-embed #can_embed_form.can_float #form_col2 {
    float: none !important;
    width: 100% !important;
    clear: both !important;
}

div#action_info, 
div#logo_wrap {
    display: none !important;
}

.form-embed #can_embed_form #d_sharing {
    border: 0px solid transparent !important;
}

ul.list-tyle-tick {
    padding: 0;
    list-style: none;
    font-size: 16px;
}

ul.list-tyle-tick li {
    list-style: none;
    position: relative;
    padding-left: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

ul.list-tyle-tick > li + li {
    margin-top: 20px;
}

ul.list-tyle-tick li::before {
    content: "";
    width: 28px;
    height: 26px;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: url(../img/check-mark.svg) no-repeat center center;
    background-size: 100% auto;
    margin-top: -4px;
}


@media screen and (max-width: 1024px){
    .form-section .content-part h2.highlight-title {
        font-size: 44px;
    }

    section#form-9 .img-part {
        margin-left: -20px;
    }
}

@media screen and (max-width: 820px) {
    .form-section {
        padding: 60px 0 30px;
    }

    section#form-9 .img-part {
        margin-left: 0;
        margin-top: 0;
    }

    .form-section .content-part h2.highlight-title {
        font-size: 36px;
    }

    .form-section-inner {
        grid-template-columns: 1fr;
    }

    .form-section-inner .content-part {
        order: 2 !important;
        padding: 60px 0 30px;
    }

    .form-section-inner .img-part {
        order: 1 !important;
    }
}

@media screen and (max-width: 568px) {
    .form-section {
        padding: 30px 0;
    }

    .form-section-inner .content-part {
        padding: 30px 0 10px;
    }

    .form-section .content-part h2.highlight-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Heading Banner Section
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.heading-banner-section {
    padding: 90px 0 65px;
    position: relative;
}

.heading-banner-section h3 {
    font-size: 56px;
    margin-bottom: 10px;
}

.heading-banner-section h2 {
    font-size: 64px;
}

.heading-banner-section .img-wrapper {
    line-height: 1;
    position: absolute;
    bottom: -5px;
    right: 20px;
    left: auto;
    max-width: 350px;
}

.heading-banner-section .img-wrapper img {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.heading-banner-section .img-wrapper .img-wrapper-inner{
    position: relative;
    display: inline-block;
}

.heading-banner-section h2 span.underline-white::after {
    background-image: url(../img/underline-bold.svg);
    background-size: 0% 13px;
    height: 13px;
    bottom: 4px;
}

.heading-banner-section h2 span.underline-white.is-visible::after {
    background-size: 100% 13px;
}

.mega-wave {
    position: absolute;
    display: inline-block;
    bottom: 75%;
    right: 85%;
    width: 1px; 
    height: 1px;
    background-image: url('../img/mega-wave.svg');
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid transparent;
    /* clip-path: inset(0 99% 0 0);  */
    opacity: 0; 
    /* transition: clip-path 0.8s ease-out, opacity 0.3s ease-out; */
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1), height 2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease-out;
    z-index: 5;
}

.mega-wave.is-visible {
    width: 180px;
    height: 115px;
    /* clip-path: inset(0 0% 0 0); */
    opacity: 1;
}

@media screen and (max-width: 1440px) {
    .heading-banner-section .img-wrapper {
        max-width: 300px;
    }
}

@media screen and (max-width: 1340px) {
    .heading-banner-section .img-wrapper {
        max-width: 250px;
    }
}

@media screen and (max-width: 1280px) {
    .heading-banner-section h3 {
        font-size: 48px;
    }

    .heading-banner-section h2 {
        font-size: 56px;
    }
}

@media screen and (max-width: 1024px) {
    .heading-banner-section h3 {
        font-size: 36px;
    }

    .heading-banner-section h2 {
        font-size: 42px;
    }
}

@media screen and (max-width: 820px){
    .heading-banner-section {
        padding: 60px 0 0;
    }

    .heading-banner-section .img-wrapper {
        max-width: 300px;
        position: relative;
        margin: 30px auto 0;
        left: unset;
        right: unset;
    }
}


@media screen and (max-width: 568px) {
    .heading-banner-section .img-wrapper {
        max-width: 180px;
        position: relative;
        margin: 80px 0 0 auto;
        left: unset;
        right: unset;
    }

    .mega-wave.is-visible {
        width: 120px;
        height: 85px;
        opacity: 1;
    }
}









