/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

.quotes-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.quotes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.quotes-headline {
    text-align: center;
    color: #012F6D;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.quote-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.08);
    border-left: 4px solid #FA7F31;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-width 0.3s ease;
    position: relative;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15), 0 8px 25px 0 rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: #FA7F31;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-body {
    color: #012F6D;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: "Raleway", sans-serif;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.quote-name {
    color: #012F6D;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Raleway", sans-serif;
}

.quote-brand {
    color: #FA7F31;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tablet styles */
@media (max-width: 768px) {
    .quotes-headline {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quote-card {
        padding: 30px 25px;
    }
    
    .quote-body {
        font-size: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .quotes-section {
        padding: 40px 15px;
    }
    
    .quotes-headline {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .quote-card {
        padding: 25px 20px;
    }
    
    .quote-card::before {
        font-size: 45px;
        top: 10px;
        left: 15px;
    }
    
    .quote-body {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .quote-name {
        font-size: 1rem;
    }
    
    .quote-brand {
        font-size: 0.9rem;
    }
}

.homepage-services-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.homepage-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.homepage-services-headline {
    text-align: center;
    color: #012F6D;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.homepage-service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: #f8f9fa;
    border: solid 1px #012F6D;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15), 0 8px 25px 0 rgba(0, 0, 0, 0.12);
}

.homepage-service-card:last-child {
    margin-bottom: 0;
}

/* Reverse layout for alternating cards */
.homepage-service-card.reverse {
    flex-direction: row-reverse;
}

.homepage-service-content {
    flex: 1;
}

.homepage-service-title {
    color: #012F6D;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
}

.homepage-service-description {
    color: #012F6D;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: "Raleway", sans-serif;
}

.homepage-service-link {
    display: inline-block;
    color: #FA7F31;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    transition: color 0.3s ease;
}

.homepage-service-link:hover {
    color: #012F6D;
}

.homepage-service-image {
    flex: 0 0 400px;
}

.homepage-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tablet styles */
@media (max-width: 968px) {
    .homepage-services-headline {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .homepage-service-card {
        gap: 35px;
        padding: 40px 30px;
        margin-bottom: 50px;
    }
    
    .homepage-service-image {
        flex: 0 0 300px;
    }
    
    .homepage-service-image img {
        height: 300px;
    }
    
    .homepage-service-title {
        font-size: 1.6rem;
    }
    
    .homepage-service-description {
        font-size: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .homepage-services-section {
        padding: 40px 15px;
    }
    
    .homepage-services-headline {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .homepage-service-card,
    .homepage-service-card.reverse {
        flex-direction: column;
        padding: 30px 25px;
        margin-bottom: 40px;
        gap: 25px;
    }
    
    .homepage-service-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .homepage-service-image img {
        height: 250px;
    }
    
    .homepage-service-title {
        font-size: 1.4rem;
    }
    
    .homepage-service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .homepage-services-headline {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .homepage-service-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .homepage-service-image img {
        height: 200px;
    }
    
    .homepage-service-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .homepage-service-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .homepage-service-link {
        font-size: 1rem;
    }
}


.hero-text-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Gotham', sans-serif;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    justify-content: center;
}

.hero-text-row {
    display: flex;
}

.hero-text-row:nth-child(1) {
    justify-content: flex-start;
}

.hero-text-row:nth-child(2) {
    justify-content: flex-start;
}

.hero-text-row:nth-child(3) {
    justify-content: flex-end;
}

.hero-text-only,
.hero-text-welcome {
    color: white;
    font-size: 2.5rem;
}

.hero-text-challengers {
    color: transparent;
    /*-webkit-text-stroke: 0.2vw #ffffff;*/
    font-size: 9rem;
    /*text-shadow: 3px 3px 1px rgba(255, 255, 255, 0.9);*/
    text-align: justify;
    width: 100%;
    position: relative;
}

.hero-text-challengers::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #FE7E31;
    -webkit-text-stroke: 0vw #383d52;
    border-right: 2px solid #FE7E31;
    overflow: hidden;
    animation: animate 4s ease-in-out forwards, blink 0.8s step-end infinite 4s;
}

@keyframes animate {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    50% {
        border-right-color: #FE7E31;
    }

    51%,
    100% {
        border-right-color: transparent;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {

    .hero-text-only,
    .hero-text-welcome {
        font-size: 1.8rem;
    }

    .hero-text-challengers {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {

    .hero-text-only,
    .hero-text-welcome {
        font-size: 1.5rem;
    }

    .hero-text-challengers {
        font-size: 2.8rem;
    }
}


/*about us page core services */
/* Main heading section */
.services-headline-section {
    background-color: #ffffff;
    text-align: center;
    padding: 3em 0em 0em 0em;
    width: 70em;
    max-width: 94vw;
    text-align: center;
    margin: 0px auto;
}

.about-services-headline {
    color: #012F6D;
    font-family: "Raleway", sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
}

.core-service-section {
    width: 70em;
    max-width: 94vw;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 70px;
}

.core-service-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25), 0 8px 25px 0 rgba(0, 0, 0, 0.22);
}

.service-main-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-service-content {
    flex: 1;
}

.service-title {
    color: #012F6D;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
}

.service-belowtitle {
    color: #012F6D;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Raleway", sans-serif;
}

.service-description {
    color: #012F6D;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: "Raleway", sans-serif;
}

.service-description p {
    margin-bottom: 15px;
}

.service-images {
    flex: 0 0 300px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.service-image {
    position: absolute;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-image.primary {
    width: 190px;
    height: 180px;
    top: 225px;
    left: 75px;
    z-index: 0;
    margin-bottom: 15px;
}

.service-image.secondary {
    width: 200px;
    height: 160px;
    bottom: -60px;
    right: 115px;
    z-index: 1;
    top: 75px;
}

.service-image.tertiary {
    width: 160px;
    height: 220px;
    bottom: 40px;
    right: 10px;
    z-index: 0;
    top: -100px;

}

/* Callout Styles */
.stat-section {
            position: relative;
            margin-top: 20px;
            max-width: 1200px;
        }

        /* Folder tab styling */
        .folder-tab {
            display: inline-block;
            background: #012F6D;
            color: white;
            padding: 10px 30px 5px 30px;
            border-radius: 8px 8px 0 0;
            position: relative;
            margin-left: 20px;
            box-shadow: 0 -2px 8px rgba(1, 47, 109, 0.2);
        }

        .folder-tab .stattoknow {
            font-size: 1.2rem;
            font-weight: 500;
            font-family: "Raleway", sans-serif;
            color: white;
            margin: 0 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Callout Styles */
        .calloutcontainer {
            width: 100%;
            background: linear-gradient(135deg, #012F6D 0%, #228DB5 100%);
            color: white;
            padding: 30px 3.0rem;
            border-radius: 8px 8px 8px 8px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(1, 47, 109, 0.3);
            margin-top: 0;
            box-sizing: border-box;
        }

        .callout2 {
            display: flex;
            align-items: center;
        }

        .callout2 .bignumber {
            font-size: 6rem;
            text-shadow: 3px 2px 1px rgba(255, 255, 255, 0.5);
            margin: 0;
            font-weight: 800;
            line-height: 1;
            font-family: "Raleway", sans-serif;
        }

        .callout2 .bignumbertext {
            font-size: 1.2rem;
            font-weight: 400;
            margin: 0;
            line-height: 1.4;
            font-family: "Raleway", sans-serif;
            opacity: 0.95;
            padding: 0rem 2.0rem 0rem 3.0rem;
            text-align: left;
        }

        .bignumbertext sup {
            font-size: 0.8em;
            font-weight: 300;
        }

/* Alternating layout for visual interest */
.core-service-section:nth-child(even) .service-main-content {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-service-section {
        padding: 30px 20px;
        margin: 0px auto;
        width: 70em;
        max-width: 80vw;
    }

    .service-main-content {
        flex-direction: column;
        text-align: left;
    }

    .core-service-section:nth-child(even) .service-main-content {
        flex-direction: column;
    }

    .service-images {
        width: 280px;
        height: 200px;
    }

    .service-image.primary {
        width: 210px;
        height: 130px;
        top: 160px;
        left: 5px;
        z-index: 1;
        margin-bottom: 15px;
    }

    .service-image.secondary {
        width: 150px;
        height: 150px;
        bottom: -60px;
        right: 125px;
        z-index: 1;
        top: 15px;
    }

    .service-image.tertiary {
        width: 160px;
        height: 210px;
        top: -30px;
        right: -25px;
        z-index: 0;
        bottom: 25px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-belowtitle {
        font-size: 1.1rem;
    }

    .callout {
        padding: 25px 20px;
    }

    .bignumber {
        font-size: 3rem;
    }

    .bignumbertext {
        font-size: 1rem;
    }

    .calloutcontainer {
        padding: 30px 0.5rem;
    }

    .callout2 {
        display: block;
    }

    .callout2 .bignumber {
        font-size: 4rem;
    }

    .callout2 .bignumbertext {
        font-size: 0.9rem;
        padding: 1.0rem 1.0rem 0rem 1.0rem;
    }
}

@media (max-width: 480px) {
    .service-images {
        width: 250px;
        height: 180px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .callout {
        width: calc(100% + 80px);
        /* Compensate for the 40px padding on each side */
        margin: 20px -40px -40px -40px;
        /* Negative margins to extend to card edges */
        background: linear-gradient(135deg, #012F6D 0%, #FA7F31 100%);
        color: white;
        padding: 30px 40px;
        border-radius: 0 0 8px 8px;
        /* Only round bottom corners */
        text-align: center;
        box-shadow: 0 4px 12px rgba(1, 47, 109, 0.3);
    }

    .bignumber {
        font-size: 2.5rem;
    }

    .bignumbertext {
        font-size: 0.9rem;
    }
}

/*core services tab section */
.services-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.services-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.services-headline {
    text-align: center;
    color: #012F6D;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.folder-container {
    position: relative;
    background: white;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

/*
.folder-tabs {
    display: flex;
    position: relative;
    background: #e9ecef;
}

.folder-tab {
    background: #dee2e6;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    flex: 1;

    text-align: center;
 
    text-transform: uppercase;
}

.folder-tab:not(:last-child) {
    margin-right: 2px;
   
}

.folder-tab:hover {
    background: #FA7F31;
    color: white;
    transform: translateY(-2px);
}

.folder-tab.active {
    background: white;
    color: #012F6D;
    border-bottom: 3px solid #FA7F31;
    transform: translateY(0);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.folder-content {
    background: white;
}

*/


h3 {
    margin: 0px !important;
}

.service-content {
    display: none;
    padding: 40px 40px 20px 40px;
    animation: fadeIn 0.5s ease-in-out;
}

.service-content.active {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    min-height: 250px;
}

.slanted-edge {
    --p: 70px;
    /* control the shape (can be percentage) */
    height: 225px;
    /* 75% of the combined height of title + description area */
    aspect-ratio: 1;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
    background: #FA7F31;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(250, 127, 49, 0.3);
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 250px;
}

.service-title {
    color: #012F6D;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-description {
    color: #012F6D;
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet styles */
@media (max-width: 768px) {
    .services-headline {
        font-size: 2rem;
    }

    .folder-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .service-content.active {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        min-height: auto;
    }

    .slanted-edge {
        height: 180px;
        --p: 50px;
    }

    .service-text {
        height: auto;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .services-headline {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .folder-tab {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .service-content {
        padding: 25px 20px;
    }

    .slanted-edge {
        height: 140px;
        --p: 40px;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

.stats-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-headline {
    text-align: center;
    color: #012F6D;
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    color: #012F6D;
    border: solid 1px #012F6D;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*
        .stat-item:not(:last-child) {
            border-right: 2px solid #012F6D;
        }
        */

.stat-number {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Tablet styles */
@media (max-width: 768px) {
    .stats-headline {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-child(odd):not(:last-child) {
        border-right: 2px solid #012F6D;

    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .stats-headline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 2px solid #012F6D;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

.cite {
    font-size: 14px;
    text-align: left;
    width: 70em;
    margin: 5.0em auto 1.0em auto;
    max-width: 94vw;
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    /*font-family: monospace, monospace;*/
    font-family: Raleway, sans-serif;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}


.companyuniques {
    display: flex;
    flex-flow: row;
}

.companyuniques img {
    width: 80%;
}

.coreservices,
.threeunqiues {
    flex: 50%;
    padding: 10px;
    text-align: center;
}

.companyuniques::after {
    content: "";
    clear: both;
    display: table;
}

@media screen and (max-width: 1000px) {
    .companyuniques {
        flex-flow: column;
    }

    .companyuniques img {
        width: 80%;
    }

    .coreservices,
    .threeunqiues {
        padding: 5px;
    }
}

.ctacontainer {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    font-family: Verdana, raleway, sans-serif;
    padding-top: 50px;
    padding-bottom: 10px;
    display: block;
}

.ctaheadline {
    color: #ffffff;
    font-size: 42px;
    background-color: #012F6D;
    padding: 5px 20px 10px 20px;
    display: block;
}

.buttoncontainer {
    margin-right: auto;
    margin-left: auto;
    display: inline-block;
}

.buttoncontainer a {
    text-decoration: none !important;
}

.ctabutton {
    margin: 0px 10px 10px 10px;
    font-family: Verdana, raleway, sans-serif;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    font-size: 22px;
    color: white;
    border-radius: 3px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.ctabutton:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.dividercontainer {
    background-color: #012f6d;
}

.dividercontainer hr {
    border-top: 0px !important;
}

.ctadivider {
    margin: 0px;
    width: 75%;
    height: 1px;
    background-color: #ffffff;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 1000px) {
    .ctaheadline {
        font-size: 28px;
    }

    .ctabutton {
        font-size: 22px;
        padding: 15px 10px;
    }

    .ctacontainer {
        padding-top: 10px;
    }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
    .ctabutton {
        font-size: 16px;
        padding: 15px 10px;
    }

    .ctacontainer {
        height: 150px;
        padding-top: 10px;
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 399px) {
    .ctacontainer {
        height: 200px;
    }
}

.tagcontainerheadline {
    background-color: #ffffff;
    text-align: center;
    color: #012F6D;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    font-size: 2.5em;
}

.tagcontainer {
    background-color: #ffffff;
    font-family: Verdana, raleway, sans-serif;
    padding-bottom: 3.0em;
    display: block;
    /* Changed from flex */
}

.tagsgrid {
    display: grid;
    grid-template-columns: repeat(3);
    grid-template-rows: repeat(5);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    height: 1.35em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.7em;
    font-weight: bold;
    color: #012F6D;
    margin-block-start: 1em;
    margin-block-end: 1em;
    width: 40%;
    justify-content: center;
}

.tagline {
    grid-area: 1/1/2/4;
    color: #002E6D;
    font-size: 1.15em;
    font-weight: bold;
    text-align: center;
}

div.mores {
    grid-template-columns: auto min-content auto;
}

.mores {
    background-color: #FE7F31;
    text-align: center;
}

.col1,
.col4,
.col7,
.col10 {
    text-align: right;
}

.col1 {
    grid-area: 2/1;
}

.mores1 {
    grid-area: 2/2;
}

.col3 {
    grid-area: 2/3;
}

.col4 {
    grid-area: 3/1;
}

.mores2 {
    grid-area: 3/2;
}

.col6 {
    grid-area: 3/3;
}

.col7 {
    grid-area: 4/1;
}

.mores3 {
    grid-area: 4/2;
}

.col9 {
    grid-area: 4/3;
}

.col10 {
    grid-area: 5/1;
}

.mores4 {
    grid-area: 5/2;
}

.col12 {
    grid-area: 5/3;
}

.words {
    width: 40%;
    background: #ffffff;
    color: #012F6D;
    font-size: 1.25em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-right: auto;
    margin-left: auto;
}

.words strong {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    font-size: 1.15em;
    line-height: 1;
}

@media screen and (max-width: 1000px) {
    .tagcontainer {
        flex-flow: column;
    }

    .tagsgrid {
        font-size: 1.625em;
    }

    .words {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 7.5em;
        text-align: left;
        font-size: 1.375em;
        padding: 0px;
        margin-block-end: 1em;
    }
}

@media screen and (min-width: 400px) and (max-width: 768px) {
    .words {
        font-size: 1.25em;
    }

    .tagsgrid {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 399px) {
    .tagsgrid {
        font-size: 1.125em;
    }

    .words {
        text-align: left;
        font-size: 1.125em;
    }
}

@media screen and (max-width: 399px) {
    .tagsgrid {
        font-size: 1em;
    }

    .words {
        text-align: left;
        font-size: 1em;
    }
}

.brandsocial {
    background-color: #012F6D;
    padding-top: 0.6em;
}

.follow {
    text-align: center;
    color: #eeeeee;
    font-size: 42px;
    font-family: Verdana;
}

.follow p {
    margin-bottom: 10px;
}

.socialicons {
    text-align: center;
}

.socialicons img {
    width: 3em;
    margin: 0 1em 1em;
    opacity: 1;
}

.socialicons img:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1000px) {
    .follow {
        font-size: 28px;
    }

    .socialicons img {
        width: 2em;
        margin: 0 1em 1em;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    line-height: 1.5;
}

.prehead {
    margin-bottom: -1.5em;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    line-height: 1.25;
}

h1.big,
h2.big,
h3.big,
h4.big,
h5.big,
h6.big {
    font-size: 3rem;
    text-transform: uppercase;
}

h1.big {
    text-align: center;
}

@media screen and (max-width: 40em) {

    h1.big,
    h2.big,
    h3.big,
    h4.big,
    h5.big,
    h6.big {
        font-size: 2.25rem;
    }
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

p.big {
    font-size: 1.5em;
}

a {
    text-decoration-thickness: 0.125em;
    text-underline-offset: 1.5px;
}

/* SVG ICON */
a[href$=".pdf"]:before {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    vertical-align: top;
    line-height: 0;
    display: inline-block;
    content: url("/img/pdf-icon.svg");
}

a[target=_blank]::after {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
    margin: 0 3px 0 5px;
}

hr {
    border: 0;
    border-top: 2px solid #f37d39;
    margin: 4em 0;
}

audio {
    width: 30em;
    max-width: 100%;
}

.container {
    width: 70em;
    max-width: 94vw;
    margin: 0 auto;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

#contact-button {
    text-decoration: none;
    color: #fff;
    background: rgba(0, 165, 181, 0.5);
    padding: 0.5em 1em;
    margin-left: 1em;
    box-shadow: 0 1px 1px rgba(0, 0, 55, 0.25), inset 0 1px 1px rgba(210, 245, 255, 0.1);
}

#masthead {
    background: #002E6D;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: sticky;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 35, 0.5), 0 3px 6px rgba(0, 0, 30, 0.2);
}

#masthead .container {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 4.5em;
    width: 80em !important;
}

#masthead #logo {
    margin: 0 0.5em;
    flex: 1;
}

#masthead #logo img {
    max-height: 3.5em;
    display: block;
}

#masthead .backdrop {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#masthead .nav {
    max-height: 0;
    transition: max-height 350ms;
    overflow: hidden;
    position: absolute;
    top: 4.5em;
    left: 0;
    right: 0;
    background: #002E6D;
    text-align: center;
    box-shadow: 0 0.5em 0.5em rgba(0, 0, 0, 0.25);
}

#masthead .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#masthead .nav ul li {
    margin: 0;
}

#masthead .nav ul li.special {
    background: rgba(0, 165, 181, 0.5);
}

#masthead .nav ul li.selected {
    background: #00265c;
}

#masthead .nav ul a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 1em 0;
}

#open-nav {
    display: inline-block;
    width: 2em;
    height: 1.75em;
    position: relative;
    margin: 0 1em;
}

#open-nav:before,
#open-nav:after,
#open-nav span {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    border-radius: 0.1em;
    transition: transform 0.2s;
    transform-origin: 100% 50%;
}

#open-nav:before {
    top: 0;
}

#open-nav span {
    text-indent: -999em;
    bottom: 50%;
    margin-bottom: -1px;
}

#nav-control {
    display: none;
}

#nav-control:checked+.nav {
    max-height: 25em;
}

#nav-control:checked+.nav .backdrop {
    visibility: visible;
    opacity: 1;
}

#nav-control:checked~#open-nav span {
    transform: scaleX(0);
}

#nav-control:checked~#open-nav:before {
    transform: rotate(-45deg) translate(-7%, -7%);
}

#nav-control:checked~#open-nav:after {
    transform: rotate(45deg) translate(-7%, -7%);
}

#breadcrumb {
    background: #00265c;
    color: #fff;
}

#breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.85em;
    display: flex;
    flex-wrap: wrap;
}

#breadcrumb ul li {
    margin: 0;
    padding: 0;
    padding: 0.5em 0.25em;
}

#breadcrumb ul li a {
    color: inherit;
}

#breadcrumb ul li:after {
    content: "";
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    transform: rotate(45deg);
    border-top: 0.2em solid #fff;
    border-right: 0.2em solid #fff;
    margin: 0 0.25em 0 0.5em;
}

#breadcrumb ul li:last-child {
    opacity: 0.75;
}

#breadcrumb ul li:last-child:after {
    display: none;
}

/* DESKTOP AND UP */
@media screen and (min-width: 50em) {
    #open-nav {
        display: none;
    }

    #contact-button {
        display: none;
    }

    #masthead .nav {
        max-height: none;
        position: static;
        box-shadow: none;
    }

    #masthead .nav ul {
        list-style: none;
        display: flex;
        margin: 0 auto;
        justify-content: space-around;
        padding: 0;
    }

    #masthead .nav ul:hover a {
        color: rgba(255, 255, 255, 0.4);
    }

    #masthead .nav ul li {
        margin: 0;
    }

    #masthead .nav ul a {
        font-size: 0.8em;
        line-height: 1rem;
        text-decoration: none;
        color: inherit;
        display: block;
        padding: 1.75rem 1rem;
        transition: color 150ms;
    }

    #masthead .nav ul a:hover {
        color: #fff;
    }
}

@media screen and (min-width: 68em) {
    #masthead .nav ul a {
        padding: 1.75rem 1.5rem;
    }
}

/*
#masthead #navcb:checked + .nav nav>ul>li,
#masthead #navcb:checked + .nav nav>ul>li.product-goals>ul>li {
  animation-name: animateIn;
  animation-fill-mode: forwards;
  animation-duration: 350ms;
  animation-timing-function: ease-out;
}
*/
img {
    max-width: 100%;
}

footer {
    background: #002E6D;
    color: #fff;
    text-align: center;
}

footer .badges {
    margin: 1em 0;
}

footer .badges img {
    max-width: 10em;
    margin: 0.5em;
}

footer .container {
    padding: 2em 0;
}

footer .logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

footer .logo img {
    width: 12em;
    max-width: 70vw;
}

footer .logo p {
    line-height: 1;
    font-size: 1.85em;
    font-weight: 200;
}

footer .logo>* {
    margin: 0 1.5em 1em;
}

footer .logo a {
    color: inherit;
    text-decoration-color: #67b;
}

footer nav {
    font-family: Raleway;
    text-transform: uppercase;
}

footer nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer nav ul li {
    margin: 0;
}

footer nav ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 1em;
}

footer .other-sites .other-site {
    display: block;
    border-radius: 0.5em;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0.5em 0;
    height: 8em;
    text-indent: -999em;
}

footer .other-sites {
    max-width: 45em;
    margin: 1em auto;
}

footer .other-sites .callout-book {
    background-image: url("/img/footer-book.jpg");
}

footer .other-sites .callout-cpginsiders {
    background-image: url("/img/banner-cpginsiders.jpg");
}

.light {
    opacity: 0.5;
}

.light a {
    color: inherit;
}

@media screen and (min-width: 40em) {
    footer {
        /*
    nav ul {
      display:flex;
      justify-content:space-around;
    }
    */
    }

    footer .other-sites {
        display: flex;
        justify-content: space-between;
    }

    footer .other-sites .other-site {
        flex: 1;
        margin: 0 0.5em;
    }
}

main .container {
    position: relative;
}

main,
section {
    padding: 4em 0;
}

@media screen and (min-width: 40em) {

    main,
    section {
        padding: 4em 0;
    }
}

.alt1 {
    background: rgb(0, 165, 181);
    color: #fff;
}

.alt1-gradient {
    background: rgb(0, 165, 181);
    background: linear-gradient(15deg, rgb(0, 165, 181) 0%, rgb(0, 134, 181) 100%);
}

.alt2 {
    background: rgb(255, 127, 48);
    color: #fff;
}

.alt3 {
    background: #002E6D;
    color: #fff;
}

.alt3-gradient {
    background: linear-gradient(15deg, rgb(0, 46, 109) 0%, rgb(0, 36, 85) 100%);
}

.alt4 {
    background: #edf4f5;
}

.contact-row {
    display: flex;
    align-items: center;
    max-width: 45em;
    margin: 0 auto;
    justify-content: space-between;
}

.contact-row p {
    font-size: 1.5em;
}

.contact-row>* {
    margin: 0 0.5em;
}

.contact-row a {
    color: inherit;
}

.contact-row button {
    background: fff;
    color: #00a5b5;
    border: 0;
    padding: 1em 2em;
    border-radius: 0.5em;
    font-weight: 600;
}

.button-row {
    margin: 2em 0;
}

.button-row button {
    background: #00a5b5;
    color: #fff;
    border: 0;
    padding: 1em 2em;
    border-radius: 0.5em;
    font-weight: 600;
}

.has-bg {
    position: relative;
    overflow: hidden;
}

.has-bg .container {
    position: relative;
    z-index: 2;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    transform: translate(-50%, -50%);
}

.bg-image.blend {
    mix-blend-mode: overlay;
    mix-blend-mode: soft-light;
    opacity: 0.6;
}

.mix {
    mix-blend-mode: overlay;
    mix-blend-mode: soft-light;
    opacity: 0.8;
}

.video-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.red-note {
    color: red;
    padding: 0 0.5em;
    border: 2px dashed red;
}

.book-info {
    display: flex;
    align-items: center;
}

.book-info .image {
    flex: 1 0 50%;
}

.book-info .image img {
    max-height: 40em;
}

@media screen and (max-width: 60em) {
    .book-info {
        flex-direction: column;
    }
}

#welcome {
    background: #002E6D;
    color: #fff;
}

#welcome-video {
    mix-blend-mode: soft-light;
    opacity: 1;
}

.welcome-us-them {
    display: flex;
    background: #00a5b5;
    border-radius: 0.5em;
    box-shadow: 0 1em 1em rgba(0, 0, 0, 0.2);
    margin: 3em auto;
    max-width: 50em;
}

.welcome-us-them>div {
    padding: 0 1em;
    margin: 0.5em;
    border-radius: 0.5em;
    flex: 1;
}

#welcome #welcome-text h1.hide {
    max-height: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes squeeze {
    from {
        line-height: 0.8;
    }

    to {
        line-height: 0;
    }
}

@keyframes glow {
    from {
        text-shadow: 0;
    }

    to {
        text-shadow: 0 0 1rem #cff, 0 0 0.5rem #cff;
    }
}

@keyframes undefined-easeOutElastic {
    0% {
        line-height: 1;
        transform: translateX(0%);
    }

    16% {
        transform: translateX(-132.27%);
    }

    28% {
        transform: translateX(-86.88%);
    }

    44% {
        transform: translateX(-104.63%);
    }

    59% {
        transform: translateX(-98.36%);
    }

    73% {
        transform: translateX(-100.58%);
    }

    88% {
        transform: translateX(-99.8%);
    }

    100% {
        transform: translateX(-100%);
    }
}

#welcome {
    padding: 0;
}

#welcome #welcome-text {
    margin: 0;
    min-height: 20em;
    width: 100%;
    display: flex;
    /*flex-direction: column;*/
    justify-content: center;
}

@media screen and (max-width: 70em) {
    #welcome #welcome-text {
        min-height: 18em;
    }
}

#welcome h1 {
    perspective: 8em;
    animation-duration: 1s;
    font-size: 8vw;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
    max-height: 6em;
    font-weight: 800;
    text-shadow: 0;
    padding: 0.5em 0;
    font-size: 13vw;
    /*
  @media screen and (max-width:70em){
    max-height:4em;
    font-size:6.5vw;
  }
  */
    overflow: hidden;
    transition: max-height 1s;
}

#welcome h1 em {
    color: #f57e3a;
    font-style: normal;
}

@media screen and (min-width: 50em) {
    #welcome h1 {
        font-size: 6.5em;
    }
}

#welcome h1.glitch {
    position: relative;
    top: -1.5em;
    opacity: 0.5;
    transform: scale(1.1) skew(0, 5deg);
}

#welcome h1 .light {
    font-weight: 400;
    opacity: 1;
}

#welcome h1 .glow {
    animation-name: glow;
    animation-duration: 2s;
    animation-delay: 1100ms;
    animation-fill-mode: forwards;
}

#welcome h1 .letter {
    display: block;
    line-height: 1.0;
}

#welcome h1 .amp {
    display: inline;
    line-height: 1;
    z-index: 500;
    position: relative;
    color: #FE7F31;
    font-weight: 800;
    /*
  animation-name:squeeze;
  animation-duration:2.5s;
  animation-delay:500ms;
  animation-timing-function:cubic-bezier(.12,.5,.57,1);
  */
    text-shadow: -2px -2px 0 #fff,
        2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px 2px 0 #fff;
}

#welcome p {
    font-size: 1.25em;
}

#welcome .container {
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 75vh;
    /*mix-blend-mode:screen; */
}

@media screen and (max-width: 50em) {
    #welcome .container {
        min-height: 75vw;
    }
}

#welcome2 {
    padding-top: 4em;
}

#welcome2 h1 {
    font-size: 5.2vw;
    line-height: 1.15;
    text-transform: uppercase;
}

@media screen and (max-width: 35em) {
    #welcome2 h1 {
        font-size: 8vw;
    }
}

@media screen and (min-width: 70em) {
    #welcome2 h1 {
        font-size: 2.8em;
    }
}

#welcome2 h1 em {
    text-shadow: 2px 4px 0 #ff7f30;
    padding: 0 0.2em;
    margin: 0 -0.2em;
    background: #ff7f30;
    font-style: unset;
}

#welcome2 .side-content {
    font-size: 1.35em;
}

#welcome2 .side-content strong {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    font-size: 1.15em;
    line-height: 1;
}

@media screen and (max-width: 60em) {
    #welcome2 .side-content {
        font-size: 1.25em;
    }
}

#welcome2 .row {
    display: flex;
    align-items: flex-start;
}

#welcome2 .row h1 {
    flex: 0 0 50%;
    margin: 1.2rem 1em 0 0;
    font-size: 3em;
}

@media screen and (max-width: 1230px) {
    #welcome2 .row h1 {
        font-size: 3.9vw;
    }
}

#welcome2 .quote-row {
    margin: 4em -1% 0;
    flex-wrap: wrap;
    justify-content: center;
}

#welcome2 .quote {
    box-sizing: border-box;
    background: #fafbfc;
    color: #000;
    padding: 1.5em 2.5em;
    flex: 0 0 48%;
    margin: 1%;
    border-radius: 0.5em;
    text-shadow: 0 1px 0 #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 5px 6px rgba(0, 0, 0, 0.15), 0 7px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 #fff;
}

#welcome2 .quote .content {
    border-left: 0.25em solid #cad1db;
    padding-left: 1em;
    margin: 0.5em 0 1.5em;
}

#welcome2 .quote .content h2 {
    color: #002E6D;
}

#welcome2 .quote .cite {
    margin: 1em 0;
    display: flex;
    align-items: center;
}

#welcome2 .quote .cite p {
    margin: 0;
}

#welcome2 .quote .cite .name {
    font-weight: 600;
    font-size: 1.2em;
}

#welcome2 .quote .cite .industry {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8em;
    color: #345;
    margin-top: 0.25em;
}

#welcome2 .quote .cite .picture {
    margin-right: 1em;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 5em;
}

#welcome2 .quote .cite img {
    display: block;
}

@media screen and (max-width: 930px) {
    #welcome2 .row {
        flex-direction: column;
    }

    #welcome2 .row h1 {
        flex: 1;
        font-size: 5.15vw;
        margin: 0 0 0.5em;
    }
}

@media screen and (max-width: 610px) {
    #welcome2 .container h1 {
        font-size: 7.8vw;
        max-width: 11.47em;
    }
}

.ml13 .letter {
    display: inline-block;
    line-height: 0.5em;
}

.ml4 {
    position: relative;
}

.ml4 .letters {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0.3em;
    right: 0;
    opacity: 0;
}

#weare ul.row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#weare ul.row li {
    font-size: 2rem;
    flex: 1 1 12em;
}

.differences {
    margin: 0 -1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.differences .difference {
    flex: 1 1 21%;
    margin: 1em;
}

@media screen and (max-width: 70em) {
    .differences .difference {
        flex: 1 1 34%;
    }
}

@media screen and (max-width: 40em) {
    .differences .difference {
        flex: 1 1 100%;
    }
}

@media screen and (min-width: 60em) {
    .differences .difference {
        font-size: 1.25em;
    }
}

#different {
    background: #d94c00;
}

#different .bg-video {
    opacity: 0.4;
    mix-blend-mode: luminosity;
}

.big-bullets li {
    margin: 1em 0;
}

.big-bullets p {
    font-size: 0.9em;
}

#igp .video {
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1), 0 0.5em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
}

#start-video {
    margin: 2em 0;
    width: 100%;
    padding-bottom: 40%;
    background: transparent url("/img/infinite-growth-path.png") center center no-repeat;
    background-size: 100%;
    position: relative;
}

#start-video .play-button {
    cursor: pointer;
    width: 7em;
    height: 7em;
    border-radius: 50%;
    background: #000;
    text-indent: -999em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 165, 181, 0.8);
}

#start-video .play-button:hover {
    background: rgb(0, 165, 181);
}

#start-video .play-button:after {
    display: block;
    border: 1em solid transparent;
    border-left: 1.5em solid #fff;
    border-right: 0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

#beliefs ul {
    list-style: none;
    margin: 1em -0.5em;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#beliefs ul li {
    background: rgba(220, 255, 240, 0.2);
    flex: 1 0 25%;
    margin: 0.5em;
    padding: 1em 1.2em 1.2em;
    border-radius: 0.5em;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1), 0 0.5em 1em rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 800px) {
    #beliefs ul li {
        flex: 1 0 40%;
    }
}

.puzzle {
    background-size: cover;
}

.puzzle .bg-image {
    mix-blend-mode: hard-light;
    opacity: 0.66;
}

.puzzle ul.big-bullets {
    max-width: 40vw;
}

@media screen and (max-width: 50em) {
    .puzzle ul.big-bullets {
        max-width: none;
    }
}

ul.big-bullets {
    font-size: 1.2em;
}

#service-list {
    margin: 0;
    padding: 0;
    text-align: left;
}

#service-list h2 {
    color: #ff7f30;
    font-size: 2em;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.services {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: -0.5em;
    margin-top: 1em;
    max-height: 40em;
}

.person {
    margin: 2em 0;
    display: flex;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 0.25em 0.5em rgba(0, 60, 105, 0.06), 0 0.5em 1em rgba(0, 60, 105, 0.06);
}

.person .images {
    flex: 0 0 33.33%;
    background: #00a5b5;
    background: #000;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.person .images img {
    display: block;
}

.person .content {
    background: #fff;
    padding: 4em;
}

@media screen and (max-width: 35em) {
    .person .content {
        padding: 2em;
    }
}

.person h2 {
    margin-bottom: 0;
}

.person .title {
    margin-top: 0;
}

@media screen and (max-width: 45em) {
    .person {
        flex-direction: column;
    }

    .person .images {
        flex: 0 0 50vh;
        background-position: 50% 14%;
    }
}

.service {
    box-sizing: border-box;
    padding: 0.5em;
    list-style: none;
    max-width: 50%;
    flex: 0;
}

.service>ul {
    margin-bottom: 1em;
    max-height: 10em;
}

.service ul {
    list-style: disc;
    padding-left: 1em;
    color: #002E6D;
    font-weight: 600;
}

.service ul ul {
    font-weight: 200;
    padding-left: 2em;
}

@media screen and (max-width: 40em) {
    .services {
        max-height: none;
    }

    .service {
        max-width: none;
    }

    .service>ul {
        max-height: none;
    }
}

section.alt2 {
    position: relative;
    overflow: hidden;
}

section.alt2 .container {
    position: relative;
    z-index: 2;
}

.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.values .value {
    flex: 0 0 20em;
    margin: 1em;
}

@media screen and (max-width: 40em) {
    .services {
        display: block;
    }

    .values {
        display: block;
    }

    .values .value {
        margin: 1em 0 2em;
    }
}

#iceberg-top {
    background: #c5e9f9;
}

#iceberg-top .container {
    position: relative;
}

#iceberg-top .text {
    width: 50%;
}

#iceberg-top img {
    width: 50%;
    position: absolute;
    bottom: -5em;
    right: 0;
}

#iceberg-bottom {
    background: #002e6d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#iceberg-bottom .container {
    position: relative;
}

@media screen and (min-width: 64em) {
    #iceberg-bottom .container {
        min-height: 30em;
    }
}

#iceberg-bottom .text {
    width: 50%;
}

#iceberg-bottom img {
    width: 50%;
    position: absolute;
    top: -5em;
    right: 0;
}

.previews {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1em;
    align-items: start;
}

.preview {
    flex: 0 0 33.333%;
    box-sizing: border-box;
    padding: 1em;
    display: flex;
    flex-direction: column-reverse;
}

.preview .text {
    margin-top: 2em;
}

.preview .image {
    height: 0;
    padding-bottom: 60%;
    background: #000;
    overflow: hidden;
    position: relative;
}

.preview .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.preview .logo {
    max-height: 2em;
    max-width: 6em;
}

@media screen and (max-width: 55em) {
    .previews {
        margin: 0 -1em;
    }

    .preview {
        flex: 1 0 20em;
        padding: 1em;
    }
}

.floating-image {
    float: right;
    display: block;
    margin-top: -5em;
    overflow: hidden;
    position: relative;
    width: 35em;
    margin-left: 2em;
    margin-bottom: 2em;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.15), 0 0.5em 1em rgba(0, 0, 0, 0.1);
}

.floating-image img {
    display: block;
}

#casestudy h2 {
    font-size: 2em;
}

.video-row {
    display: flex;
    margin: 2em -0.5em;
    justify-content: space-between;
}

.video-row .video {
    flex: 1;
    margin: 0 0.5em;
}

.cs-results {
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0;
}

.cs-results .cs-result {
    color: #ff7f30;
    background: -webkit-linear-gradient(bottom right, #ee4d00, #ff7f30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex: 0 1 auto;
    margin-bottom: 1.5em;
    margin-right: 6em;
}

.cs-results .cs-result .figure {
    font-size: 4em;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.cs-results .cs-result .pre-description {
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 0.8em;
    margin: 0;
    line-height: 1.25;
}

.cs-results .cs-result .description {
    margin: 0;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.25;
}

@media screen and (min-width: 60em) {
    #case-studies .alt1 p {
        font-size: 1.25em;
    }
}

#article main .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 33.333vh;
}

@media screen and (max-width: 50em) {
    #article main .container {
        min-height: 0;
    }
}

#article main .bg-image {
    mix-blend-mode: overlay;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}

#article article h2 {
    margin: 1.5em 0;
}

#article .side-quote {
    font-size: 3em;
    font-weight: 800;
    max-width: 6em;
    line-height: 1;
    float: left;
    margin: 0.5em;
    color: #ff7f30;
    background: -webkit-linear-gradient(bottom right, #ee4d00, #ff7f30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 55em) {
    #article .side-quote {
        font-size: 4em;
        margin: 1em;
    }
}

#article .side-quote:nth-child(odd) {
    float: right;
}

section article {
    max-width: 56em;
}

blockquote {
    margin: 0;
    padding: 0.5em 0.5em 0.5em 2em;
    border-left: 0.25em solid rgb(0, 165, 181);
    background: #edf4f5;
}

.tags {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tags li {
    display: inline;
    margin-right: 0.5em;
}

.tags li a {
    text-decoration: none;
    border-radius: 1em;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    display: inline-block;
    padding: 0.2em 0.6em;
}

.tags li a:hover {
    background: #fff;
    color: #000;
}

.float-right {
    float: right;
    margin-left: 2em;
    margin-bottom: 2em;
}

.float-left {
    float: left;
    margin-right: 2em;
    margin-bottom: 2em;
}

.headlinecontainer {
    width: 100%;
    display: flex;
    background-color: #0d2e6c;
    font-family: Verdana, raleway, sans-serif;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    margin-right: auto;
    margin-left: auto;
}

.headlinecontainer:not(:first-child) {
    margin-top: 4em;
}

.wpheadline {
    color: #ffffff;
    font-size: 1.2em;
    margin: 1em 0em !important;
}

.mainparagraph {
    color: #0d2e6c;
    font-weight: bold;
}

.side-number {
    font-size: 1.6em;
    font-weight: 800;
    max-width: 6em;
    line-height: 1;
    float: left;
    margin: 0.5em;
    color: #ff7f30;
    background: -webkit-linear-gradient(bottom right, #ee4d00, #ff7f30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.listimportant {
    font-weight: bold;
    font-family: Verdana, raleway, sans-serif;
}

.text-large {
    text-align: center;
    font-family: Verdana, raleway, sans-serif;
    font-size: 1.4em;
    font-weight: 800;
    line-height: 1;
    color: #ff7f30;
}

.text-small {
    text-align: center;
    font-family: Verdana, raleway, sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    line-height: normal;
    margin: 0.5em;
    color: #26A4B4;
}

@media only screen and (max-width: 600px) {
    .wpheadline {
        font-size: 1.2em !important;
    }

    .headlinecontainer img {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .headlinecontainer {
        font-size: 0.9em;
    }

    #products {
        max-width: 75%;
    }

    figure {
        font-size: 12px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 800px) {
    .side-quote-brands {
        max-width: 18em !important;
        font-size: 1.5em !important;
        float: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
        text-align: center;
    }
}

.large-container {
    background-color: #FDE7D9;
    color: #1A3768;
    border-radius: 10px;
    font-weight: 800;
    padding: 10px;
    font-family: Verdana, raleway, sans-serif;
}

.large-container-blue {
    background-color: #DCF3F5;
    font-weight: 800;
    color: #1A3768;
    border-radius: 10px;
    padding: 10px;
    font-family: Verdana, raleway, sans-serif;
}

li span {
    font-weight: normal;
}

.text-small-container {
    background: #edf4f5;
}

.blue {
    color: #26A4B4;
}

.mainparagraph-lite {
    color: #0d2e6c;
    font-weight: normal;
    font-family: Verdana, raleway, sans-serif;
}

.headlinecontainer-small {
    width: 100%;
    display: flex;
    background-color: #0d2e6c;
    font-family: Verdana, raleway, sans-serif;
    /*justify-content: center;*/
    align-items: center;
    font-size: 0.9em;
    margin-right: auto;
    margin-left: auto;
}

.wpheadline-indent {
    color: #ffffff;
    font-size: 1em;
    margin: 1em 0em !important;
    font-family: Verdana, raleway, sans-serif;
    padding-left: 5em;
}

ul li {
    font-family: Verdana, raleway, sans-serif;
}

.orange {
    color: #F47E3A;
}

.orangebg {
    background-color: #F47E3A;
}

.lightblue {
    background-color: #26A4B4;
}

.noborder {
    border: 0px !important;
    position: relative;
}

p span {
    font-weight: normal;
}

.thought-exercise {
    margin-bottom: 1.2em;
    padding: 0.5em 0.5em 0.5em 2em;
    border-left: 0.25em solid rgb(0, 165, 181);
    background: #edf4f5;
    font-family: Verdana, raleway, sans-serif;
}

.thought-exercise p {
    text-align: justify;
}

.thought-exercise img {
    position: absolute;
    bottom: 0px;
    float: left;
}

.lightbluebg {
    background-color: #E8F7F9;
}

.thought-exercise img {
    object-fit: contain;
}

.centertext {
    text-align: center;
}

.nocenter {
    text-align: left;
}

.paddingrl {
    padding-right: 20px;
    padding-left: 20px;
}

.margintopno {
    margin-top: 0px !important;
}

.bluetext {
    color: #0d2e6c;
}

.list-item {
    display: flex;
    align-items: center;
    margin: 2em 3em 0em 3em;
}

.list-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.list-item img {
    width: 40%;
    max-width: 20em;
    margin: 0 2em;
    flex-shrink: 0;
}

.list-item .text {
    margin: 0 1em;
}

.list-item h3 {
    font-size: 1.5em;
}

.list-item-inline {
    display: flex;
    align-items: center;
    margin: 2em 3em 0em 3em;
}

.list-item-inline img {
    width: 40%;
    max-width: 12em;
    margin: 0 2em;
    flex-shrink: 0;
}

.list-item-inline .text {
    margin: 0 1em;
}

.list-item-inline h3 {
    font-size: 1.5em;
}

.side-quote-brands {
    float: right;
    font-weight: 800;
    max-width: 6em;
    line-height: 1;
    color: #ff7f30;
    font-size: 3em;
    margin: 1em;
}

.headlinecontainer-flex {
    font-family: Verdana, raleway, sans-serif;
    color: #ffffff;
}

.truth {
    width: 20%;
    background-color: #F47E3A;
    float: left;
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.headlinefloat {
    width: 80%;
    background-color: #0d2e6c;
    float: left;
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.unbranded-margin {
    margin-left: 7em;
    margin-right: 7em;
}

@media only screen and (max-width: 800px) {
    .unbranded-margin {
        margin-left: 1em;
        margin-right: 1em;
    }

    h2.truth,
    h2.headlinefloat {
        font-size: 0.8em;
    }

    .large-container {
        margin-left: 2em !important;
        margin-right: 2em !important;
    }

    p {
        font-size: 0.7em;
    }

    li {
        font-size: 0.7em;
    }

    .spyglasspic {
        display: none;
    }

    .spyglasstext {
        padding-right: 0em !important;
    }
}

.headlinecontainersmall {
    width: 60%;
    display: flex;
    font-family: Verdana, raleway, sans-serif;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    margin-right: auto;
    margin-left: auto;
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .headlinecontainersmall {
        font-size: 0.5em;
    }
}

.headlinesmall {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

p.oddstext {
    margin-right: 0px;
    margin-left: 0px;
}

.list-item-odds img {
    width: 40%;
    max-width: 14em;
    margin: 0 2em;
    flex-shrink: 0;
}

.list-item-odds {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.large-steps {
    margin: 1em 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.large-steps li {
    flex: 0 1 auto;
    margin: 1em 0;
    display: flex;
    align-items: top;
}

.large-steps .step {
    flex: 0 0 auto;
    display: block;
    border-radius: 50%;
    margin-right: 1em;
    width: 1.1em;
    height: 1.1em;
    vertical-align: top;
    padding: 10px;
    background: transparent;
    border: 3px solid #fff;
    color: #fff;
    text-align: center;
    font: 32px Arial, sans-serif;
    margin-bottom: 0.5em;
}

@media screen and (min-width: 50em) {
    .large-steps {
        flex-direction: row;
    }

    .large-steps li {
        flex: 0 1 20em;
    }

    .large-steps .description {
        margin-right: 1em;
    }
}

.contact-methods {
    list-style: none;
    margin: 1em 0 -1em;
    padding: 0;
    font-size: 1.25em;
}

.contact-methods li {
    display: flex;
    align-items: flex-start;
    margin: 1em 0;
}

.contact-methods li img.ico {
    width: 1.5em;
    height: auto;
    margin-right: 1em;
}

.contact-info {
    display: flex;
    background: #fff;
    min-height: 15em;
    margin: 0;
    max-width: 55em;
    flex-direction: column;
}

.contact-info .company {
    margin-right: 4em;
}

.contact-info .company img {
    max-width: 10em;
}

.contact-info .map {
    width: 100%;
    display: block;
}

.contact-info .map iframe {
    display: block;
}

@media screen and (max-width: 60em) {
    .contact-methods {
        font-size: 1em;
    }

    .contact-info .company {
        padding: 3em;
    }

    .contact-info .company img {
        max-width: 8em;
    }

    .contact-info .map {
        flex: 1;
        width: 100%;
    }
}

@media screen and (max-width: 45em) {
    .contact-info {
        flex-direction: column;
    }
}

section#map {
    padding: 0;
    height: 24em;
}

section#map .map {
    height: 24em;
}

section#map .map iframe {
    height: 24em;
}

#contact .container {
    position: relative;
}

#apply .container {
    position: relative;
    min-height: 14em;
}

#apply .container #contact-form {
    margin-top: -25em;
}

@media screen and (max-width: 60em) {
    #apply .container #contact-form {
        margin-top: -6em;
    }
}

.success {
    display: flex;
    align-items: center;
    max-width: 26em;
}

.success img {
    max-width: 4em;
    margin-right: 2em;
}

.standalone-success {
    flex-direction: column;
    margin: 0 auto;
    font-size: 1.25em;
}

.standalone-success img {
    mix-blend-mode: hard-light;
    border-radius: 50%;
    border: 3px solid #fff;
}

#contact-form {
    color: #002;
    position: absolute;
    top: 0;
    right: 0;
    width: 35em;
    max-width: 43vw;
    background: #fff;
    min-height: 15em;
    margin-top: -6em;
    margin-bottom: 3em;
    border-radius: 0.5em;
    padding: 2.5em;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.2), 0 0.5em 1em rgba(0, 0, 0, 0.2);
}

#contact-form form {
    width: 100%;
    display: block;
}

#contact-form form .alert {
    display: none;
    padding: 0 1em;
    border: 2px solid #c10;
    margin-top: 1em;
    color: #c10;
}

#contact-form form .alert.show {
    display: block;
}

#contact-form .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5em;
}

#contact-form .row>* {
    flex: 1;
}

#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=num],
#contact-form textarea,
#contact-form button,
#contact-form .file_attachment,
#contact-form #leadsource {
    background: #edf4f5;
    border: 0;
    padding: 1em 1.5em;
    margin: 0.5em;
    border-radius: 0.25em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 13em;
}

#contact-form input[type=text]::placeholder,
#contact-form input[type=email]::placeholder,
#contact-form input[type=tel]::placeholder,
#contact-form input[type=num]::placeholder,
#contact-form textarea::placeholder,
#contact-form button::placeholder,
#contact-form .file_attachment::placeholder,
#contact-form #leadsource::placeholder {
    color: #aec0c2;
}

#contact-form input.error,
#contact-form textarea.error {
    border: 2px solid #c10;
}

#contact-form textarea {
    min-height: 8em;
}

#contact-form button {
    background: #ff7f30;
    color: #fff;
    margin: 1.5em 0 0;
}

.file_attachment .note {
    margin: 0;
    font-size: 0.8em;
    opacity: 0.5;
}

@media screen and (max-width: 60em) {
    #contact-form {
        position: static;
        width: 100%;
        box-sizing: border-box;
        max-width: none;
    }
}

select#leadsource {
    color: #aec0c2;
}

.works {
    margin: -0.25em;
}

.works h2 {
    margin-bottom: 0;
    font-size: 1em;
}

.works p {
    margin: 0.5em 0;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.01em;
}

.works .preview {
    transition: opacity 350ms;
    overflow: hidden;
    flex: 0 0 33.333%;
    position: relative;
    padding: 0.25em;
}

@media screen and (max-width: 55em) {
    .works .preview {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 30em) {
    .works .preview {
        flex: 0 0 100%;
    }
}

.works .preview .image {
    padding-bottom: 100%;
    filter: grayscale(0);
    transition: filter 350ms, opacity 350ms;
}

.works .preview .image img {
    max-height: 100%;
    max-width: none;
}

.works .preview .text {
    pointer-events: none;
    box-sizing: border-box;
    padding: 1em 1.5em;
    position: absolute;
    bottom: 0.25em;
    left: 0.25em;
    z-index: 4;
    color: #fff;
    background: rgba(0, 23, 50, 0.5);
    text-shadow: 0 1px 1px rgb(0, 0, 0);
    transition: background 400ms;
}

.works .preview .text p {
    margin: 0;
}

.works .preview .text a {
    color: inherit;
}

.works .preview:hover .text {
    background: rgba(0, 46, 105, 0.9);
}

.works .preview:hover .image {
    filter: grayscale(0);
    opacity: 1;
}

.works:hover {
    opacity: 0.25em;
}

.works:hover .image {
    filter: grayscale(1);
    opacity: 0.4;
}

.works:hover .text {
    background: rgba(0, 10, 20, 0.15);
}

@media screen and (min-width: 60em) {
    #works .alt1 p {
        font-size: 1.25em;
    }
}

@keyframes scroller {
    from {
        background-position: 50% 0%;
    }

    to {
        background-position: 50% 100%;
    }
}

.stick {
    overflow: hidden;
}

.over {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 99;
}

.over .phone {
    width: 60em;
    max-width: 62vh;
    height: 0;
    background: black;
    padding-bottom: 151.3%;
    position: relative;
    background: transparent url("/img/blank-phone.png") center center no-repeat;
    background-size: 100%;
}

.over .phone .canvas {
    position: absolute;
    top: 2.764%;
    left: 18.587%;
    width: 63.567%;
    height: 90.97%;
    background: transparent;
    background-size: 100%;
    background-position: top center;
    content: "";
    z-index: -1;
    overflow: auto;
    animation-name: scroller;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-delay: 5s;
}

.over .phone .canvas img {
    display: block;
    width: 100%;
}

.over .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.over .x {
    position: absolute;
    top: 1em;
    right: 1em;
    text-indent: -999em;
    width: 3em;
    height: 3em;
    background: transparent url("/img/x.png") center center no-repeat;
    background-size: contain;
}

.over .video {
    width: 95vw;
    max-width: 70em;
    box-shadow: 0 0.25em 0.5em rgba(0, 25, 50, 0.15), 0 0.5em 1em rgba(0, 25, 50, 0.15);
}

.over .audio {
    background: #fff;
    padding: 2em;
    box-shadow: 0 0.25em 0.5em rgba(0, 25, 50, 0.15), 0 0.5em 1em rgba(0, 25, 50, 0.15);
}

.over .content {
    position: absolute;
    z-index: 150;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.over .content>img {
    box-shadow: 0 0.25em 0.5em rgba(0, 25, 50, 0.15), 0 0.5em 1em rgba(0, 25, 50, 0.15);
}

#retaillp .row-pagehead h1 {
    font-size: 4vw;
}

@media screen and (max-width: 60em) {
    #retaillp .row-pagehead h1 {
        font-size: 3em;
    }
}

@media screen and (min-width: 100em) {
    #retaillp .row-pagehead h1 {
        font-size: 4em;
    }
}

#retaillp .row-pagehead h1 span {
    display: block;
    font-weight: 500;
    color: #ff7f30;
    font-style: italic;
}

#retaillp .row-pagehead h2 {
    line-height: 1.5;
}

#retaillp .row-pagehead .image {
    flex: 1 0 43%;
    margin-left: 2em;
}

#retaillp .row {
    display: flex;
    justify-content: center;
}

#retaillp .row-95percent {
    padding: 2em;
    text-align: center;
    border: 0.25em solid #ff7f30;
    border-radius: 1em;
    margin: 2em auto;
}

#retaillp .row-95percent h3 {
    color: #ff7f30;
    font-size: 1.5em;
    margin: 0;
}

#retaillp .row-95percent p {
    margin: 1em 0 0;
}

#retaillp .row-95percent .content {
    flex: 0 1 45em;
}

#retaillp .row-beatodds {
    text-align: center;
}

#retaillp .row-beatodds h2 {
    font-size: 2em;
    font-weight: 400;
    font-style: italic;
}

#retaillp .row-beatodds h2 strong {
    color: #ff7f30;
}

#retaillp .row-beatodds p {
    max-width: 38em;
    margin: 1em auto;
}

#retaillp .math-list .stage {
    margin: 4em auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 45em;
}

#retaillp .math-list .stage .image {
    text-align: right;
    flex: 1;
    margin-right: 4em;
}

#retaillp .math-list .stage .image img {
    max-width: 20em;
    max-height: 20em;
    display: block;
}

#retaillp .math-list .stage p {
    font-size: 1.5em;
}

#retaillp .contact-info .company {
    max-width: 25em;
}

#timeline .container {
    max-width: 50em;
}

#timeline h1 {
    font-weight: 700;
}

#timeline h1 span {
    display: block;
    font-weight: 400;
    color: #00a5b5;
}

.timeline-steps {
    margin: 4em 0;
}

.timeline-steps .step {
    background: #fff;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    margin: 0 0 1em;
    padding: 1em 1.5em;
    max-width: 35em;
}

.timeline-steps .step:nth-child(even) {
    margin: 0 0 1em auto;
}

@media screen and (min-width: 45em) {
    .timeline-steps .step {
        padding: 2em 2.5em;
    }
}

.timeline-steps .step .headline h4 {
    margin: 0;
    font-size: 1.333em;
}

.timeline-steps .step .body {
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
}

.timeline-steps .step .body h5 {
    font-size: 1.125em;
    margin-bottom: 0;
    color: #002E6D;
}

.timeline-steps .step .body p {
    margin: 1em 0;
}

#company-intro .row {
    align-items: center;
}

#company-intro .row .image {
    flex: 0 0 50%;
    margin-right: 4em;
}


.rtbs {
    background-color: #FE7F31;

}



/*subtitles under the big numbers */
.stat-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #012F6D;
    margin: -10px 0 10px 0;
    line-height: 1;
    letter-spacing: 0px;
}

@media (max-width: 768px) {
    .stat-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .stat-subtitle {
        font-size: 1.2rem;
    }
}




.rtbs img {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.rtbbutton {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.thertbbutton {
    margin: 0px 10px 10px 10px;
    font-family: Verdana, raleway, sans-serif;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    font-size: 22px;
    color: white;
    border-radius: 3px;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-color: #002e6d;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation
}

.thertbbutton:hover {
    background-color: #1A1944;
    color: #fff;
    text-decoration: none;
}


/* Heading section */
.tagcontainer-heading {
    background-color: #ffffff;
    text-align: center;
    padding: 3em 0em 2em 0em;
    width: 100%;
}

.tagcontainer-heading h2 {
    color: #012F6D;
    font-family: Raleway, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Wrapper for existing content to maintain layout */
.tagcontainer-content {
    display: flex;
    flex-flow: row;
    background-color: #ffffff;
    padding-bottom: 1.5em;
}



/* Responsive Design */
@media screen and (max-width: 1000px) {
    .tagcontainer-content {
        flex-flow: column;
    }

    .tagcontainer-heading h2 {
        font-size: 2.2em;
    }

    .tagcontainer-heading {
        padding: 2em 1em 1.5em 1em;
    }
}

@media screen and (max-width: 768px) {
    .tagcontainer-heading h2 {
        font-size: 1.8em;
    }

    .tagcontainer-heading {
        padding: 1.5em 1em 1em 1em;
    }
}

@media screen and (max-width: 480px) {
    .tagcontainer-heading h2 {
        font-size: 1.4em;
        line-height: 1.2;
    }

    .tagcontainer-heading {
        padding: 1.5em 0.5em 1em 0.5em;
    }
}


.supporting-services-container {
    width: 70em;
    max-width: 94vw;
    margin: 40px auto;
    padding: 0 20px;
}

.supporting-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.supporting-service-card {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supporting-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.supporting-service-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
    text-transform: uppercase;
}

.supporting-service-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555;
}

.supporting-service-bullets {
    list-style: none;
}

.supporting-service-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
}

.supporting-service-bullets li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.supporting-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.supporting-section-title {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.supporting-section-subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
    text-align: center;
    margin: 0px auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .supporting-services-container {
        width: 70em;
        max-width: 94vw;
        padding: 0 15px;
    }

    .supporting-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .supporting-service-card {
        padding: 25px 20px;
    }

    .supporting-section-title {
        font-size: 1.8em;
    }

    .supporting-service-title {
        font-size: 1.2em;
        text-transform: uppercase;
    }

    .supporting-section-subtitle {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .supporting-services-container {
        width: 100%;
        padding: 0 10px;
    }

    .supporting-service-card {
        padding: 20px 15px;
    }

    .supporting-section-title {
        font-size: 1.6em;
    }
}


/*# sourceMappingURL=main.css.map */