:root {
    --Teal: #00AFAA;
    --Black: #000000;
    --White: #FFFFFF;
}

/* body {
    background-color: var(--blue);
} */
/* 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;
    }

    .cr-medium-space-row .elementor-column:nth-of-type(1) {
        margin-right: 30px;
    }

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

}

.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(--Teal) !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-weight: 500 !important;
}

/* green dots 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: 1643px;
    height: 204px;
    background-image: url('/wp-content/uploads/2025/08/green-dots.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');
} */

.two-column-bullets ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.two-column-bullets .green-leaf-bullets li,
.training-bullets .green-leaf-bullets li {
    padding-left: 35px;
    margin-bottom: 10px;
}

.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/08/green-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* PAGES */
/* Home Page */


/* Resources */
.courses-container {
    display: block;
}

.courses-container .course {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media screen and (min-width: 900px) {
    .courses-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .courses-container .course {
        width: 50%;
        margin-bottom: 90px;
        border: none;
    }
}


.courses-container .course .image-holder {
    overflow: hidden;
    margin: 25px;
    border-radius: 20px;
}

.courses-container .course img {
    border-radius: 20px;
    width: 100%;
    display: block;
    transform-origin: center center;
    transition: transform 0.8s ease-in-out;
}

.courses-container .course img:hover {
    transform: scale(1.05);
}

.courses-container .course .course-meta {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.courses-container .course .course-title {
    font-size: 38px;
    line-height: 41px;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.courses-container .course a.course-button {
    display: block;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0px;
    color: #ffffff;
    background-color: #000000;
    text-align: center;
    padding: 21px 110px 27px;
    border: 1px solid #000000;
    border-radius: 160px;
    margin-top: auto;
    align-self: center;
    width: 385px;
    transition: background-color 0.3s ease;
}

.courses-container .course a.course-button:hover {
    background-color: #232222;
}

/* Contact Us */
/* locations */

.locations-container {
    display: block;
}

.locations-container .location {
    width: 100%;
    max-width: 550px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--Teal);
    padding-bottom: 15px;
}

.locations-container .location h3 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 37px;
}

.locations-container .location .location-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.locations-container .location .location-content p {
    margin-bottom: 5px;
    font-size: 18px;
}

/* 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;
}

.contact-us-right-column {
    top: 90px;
    left: 6%;
    max-width: 365px;
}

@media screen and (min-width:530px) {
    .contact-us-right-column {
        left: 13%;
    }
}

@media screen and (min-width:660px) {
    .contact-us-right-column {
        left: 24%;
    }
}

@media screen and (min-width:768px) {
    .contact-us-right-column {
        left: 0;
    }
}

@media screen and (min-width:960px) {
    .contact-us-right-column {
        left: 15%;
    }
}

.contact-us-right-column h3,
.contact-us-right-column .contact-sub {
    font-weight: 600;
    color: #fff;
    font-size: 37px;
}

.contact-us-right-column .contact-sub {
    margin-bottom: 5px;
}

.contact-us-right-column ul {
    padding-left: 20px;
}

.contact-us-right-column ul li {
    margin-bottom: 10px;
}

.contact-us-right-column ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.contact-us-right-column ul li::marker {
    color: #fff;
}


.pharma-same-height-columns {}


/* 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;
}

/* 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;
} */