#agave_dashboard {
 
    $accent_font: work-sans, sans-serif;
    
    color: #000000;
    font-size: 18px;
    line-height: 21px;
    
    
    section {
        
        p {
            color: #000000;
        }

        a:visited, a:link {
            color: #00B9E7;
        }
        
    }
    
    .hero {
        
        background-size: cover;
        background-position: center;
        padding: 127px 0 93px 0;
        
        h1 {
            color: #ffffff;
        }

    } //.hero
    
    .intro {
        padding: 50px 0 21px 0;

        p {
            font-size: 20px;
            font-weight: 400;
            line-height: 32px;
            margin-bottom: 22px;
        }
        
    } //.intro
    
    .stats {
        
        border-top: 3px solid #EAEAEA;
        padding: 52px 0;
        
        h3 {
            color: #004071;
            font-size: 30px;
            line-height: 34px;
            margin-bottom: 10px;
            text-transform: capitalize;
        }
        
        h4, .h4 {
            color: #0A363F;
            font-size: 21px;
            font-weight: 800;
            line-height: 26px;
            margin-bottom: 16px;
            text-transform: capitalize;
        }
        
        .stats-tiles {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 15px;
            
            @include breakpoint(large) {
                grid-template-columns: repeat(3, 1fr);
                
                .span-col-2{
                    grid-column: span 2 / auto;
                }
            
                .span-row-3{
                    grid-row: span 3 / auto;
                }
            }
            
        }
        
        .stats-card {
            min-height: 200px;
            padding: 30px;
            position: relative;
            
            .h2 {
                font-size: 36px;
                line-height: 38px;
                font-weight: 800;
                margin: 0;
            }
            
            .h3 {
                font-size: 18px;
                line-height: 24px;
                letter-spacing: 0;
                margin-bottom: 12px;
                margin-right: 30px;
            }
            
            &.span-row-3 {
                .h3 {
                    margin-right: 0;
                    text-align: center;
                }
            }
            
            p {
                font-size: 17px;
            }
            
            em {
                font-weight: 300;
            }
            
            &:before {
                border-style: solid;
                border-width: 0 98px 98px 0;
                content: '';
                height: 0;
                position: absolute;
                right: 0;
                top: 0;
                width: 0;
            }

            &.blue {
                background-color: #E6F9FF;
                
                &:before {
                    border-color: transparent #36B0DC transparent transparent;
                }
                
                .h2 {
                    color: #36B0DC;
                    
                    span {
                        text-transform: none;
                    }
                }
            }

            &.green {
                background-color: #E5FFFC;
                
                &:before {
                    border-color: transparent #00B38C transparent transparent;
                }
                
                .h2 {
                    color: #00B38C;
                }
            }

            &.grey {
                background-color: #EAEAEA;
                
                &:before {
                    border-color: transparent #808080 transparent transparent;
                }
            }

            &.dark-blue {
                background-color: #DEF2F5;
                
                &:before {
                    border-color: transparent #064D5C transparent transparent;
                }
            }
            
            .icon {
                position: absolute;
                right: 8px;
                top: 8px;
            }
            
            .phases {
                display: grid;
                list-style: none;
                grid-gap: 25px;
                margin: 25px 0 0 0;
                
                @include breakpoint(medium) {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                li {
                    align-items: center;
                    display: grid;
                    grid-auto-flow: column;
                    grid-gap: 25px;
                    justify-content: flex-start;
                }
                
            }
            
            .cert-card {
                background-color: #FFFFFF;
                margin-top: 30px;
                padding: 30px;
                text-align: center;
                
                p {
                    margin-bottom: 0;
                }
                
                .h2 {
                    color: #36B0DC;
                }
            }
        }
        
    } //.stats
    
    .training-progress {
        
        padding: 0 0 32px 0;
        
        .intro {
            padding: 20px 0 0 0;
        }
        
        .phases {
            list-style: none;
            margin: 0;

            li {
                margin-bottom: 60px;
                
                @include breakpoint(medium) {
                    align-items: center;
                    display: grid;
                    grid-gap: 25px;
                    justify-content: flex-start;
                    grid-template-columns: 80px 1fr auto;
                }
                
                @include breakpoint(large) {
                    .progress-wrapper {
                        margin-right: 7%;
                    }
                }
                
                .progress-visual {
                    display: grid;
                    grid-auto-flow: column;
                    grid-gap: 14px;
                    margin: 7px 0;
                    border-radius: 13px;
                    overflow: hidden;
                    
                    .segment {
                        background-color: #EAEAEA;
                        height: 25px;
                        position: relative;
                        transform: skew(-45deg);
                        
                        &:first-child:before,
                        &:last-child:before {
                            background-color: #EAEAEA;
                            content: '';
                            height: 100%;
                            position: absolute;
                            top: 0;
                            transform: skew(45deg);
                            width: 20px;
                        }
                        
                        &:first-child:before {
                            left: 0;
                        }
                        
                        &:last-child:before {
                            right: 0;
                        }
                        
                        &.selected {
                            background-color: #00B9E7;
                            
                            &:before {
                                background-color: #00B9E7;
                            }
                        }
                    }
                }
                
                .progress-label {
                    align-items: center;
                    display: grid;
                    grid-auto-flow: column;
                    justify-content: space-between;
                    
                    p {
                        font-size: 16px;
                        margin: 0;
                        
                        strong {
                            color: #004071;
                            font-size: 21px;
                        }
                    }
                    
                }
                
                .cta {
                    margin: 20px 0;
                    
                    @include breakpoint(medium) {
                        margin: 0;
                    }
                    
                }
            }
            
        }
        
    } //.training-progress
    

    
} // #agave_dashboard