:root {
    --Purple: #732F8A;
    --Teal: #00AFAA;
    --Black: #000000;
    --White: #FFFFFF;
    --Gray: #939598;
    /* --Faded Teal: #49858E;
    --Light Gray: #BCBEC0; */
}

/* SITE WIDE */
@media screen and (min-width:1025px) {
    .cr-big-space-row .elementor-column:nth-of-type(1) {
        margin-right: 60px;
    }

    .cr-big-space-row .elementor-column:nth-of-type(2) {
        margin-left: 60px;
    }
}

.typed-text::after {
    content: "|";
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* HEADER */
.cr-header-nav .elementor-nav-menu li a:hover,
.cr-header-nav .elementor-nav-menu li a.elementor-item-active {
    background-color: var(--Purple) !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-weight: 500 !important;
}

/* arrow graphic on the bottom of the hero header */
.top-hero-section {
    position: relative;
    /* REQUIRED for :after absolute positioning */
    overflow: hidden;
    /* Optional: hide image before it slides in */
}

.top-hero-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100vw;
    /* Start fully off-screen to the right */
    width: 1401px;
    height: 194px;
    background-image: url('/wp-content/uploads/2025/07/left-arrows.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation: slide-in-from-right 1.2s ease-out forwards;
}

@keyframes slide-in-from-right {
    to {
        left: 50%;
        /* Move so the left edge aligns with center */
    }
}

.top-hero-section.purple:after {
    background-image: url('/wp-content/uploads/2025/07/purple-left-arrows.png');
}


/* PAGES */
/* Home Page */
.green-leaf-bullets {
    list-style-type: none;
    padding-left: 0;
}

.green-leaf-bullets li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}

.green-leaf-bullets li::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url('/wp-content/uploads/2025/07/green-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Success Stories Archive Page */
.success-stories-custom-loop .elementor-loop-container .success-story .elementor-section .elementor-container {
    display: flex;
}

.success-stories-custom-loop .elementor-loop-container .success-story:nth-child(odd) .elementor-section .elementor-container {
    flex-direction: row;
}

.success-stories-custom-loop .elementor-loop-container .success-story:nth-child(even) .elementor-section .elementor-container {
    flex-direction: row-reverse;
}

.success-stories-custom-loop .elementor-loop-container .success-story .elementor-widget-image img {
    max-height: 600px;
    object-fit: cover;
}

/* Single Success Stories */
.success-quote {
    font-family: "Inter", Sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0px;
}

.success-quote strong {
    font-weight: 700;
}

/* Contact Us */
/* form */
#gform_wrapper_1 .gfield_label {
    font-weight: 400;
}

#gform_wrapper_1 .gfield_required {
    display: none;
}

#gform_wrapper_1 #gform_submit_button_1 {
    display: block;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    padding: 8px 0 10px;
    border: 1px solid #000000;
    border-radius: 160px;
    transition: background-color 0.3s ease;
    width: 100%;
}

#gform_wrapper_1 #gform_submit_button_1:hover {
    background-color: #232222;
}