//
// ABOUT PAGE
// --------------------------
#agave_about {
    
    .hero-section{
        background-size: cover;
        background-repeat: no-repeat;
        padding: 75px 0px;
        h1{
            color: #fff;
            font-weight: bold;
        }
    }
    .overview-section, 
    .paths-section{
        padding: 60px;
        background-color: #fff;
        h3{
            margin-bottom: 30px;
        }
        p{
            font-size: 20px;
            margin-bottom: 20px;
            line-height: 32px;
        }
    }

    .paths-section {
        .paths-container {
            margin-top: 2rem;
            display: flex;
            .path-item {
                flex-grow: 1;
               
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                div {
                    border-left: 1px solid #C4C4C6;
                    border-right: 1px solid #C4C4C6;
                    img {
                        height: 85px;
                        width: auto;
                    }
                    p {
                        color: #004D5C;
                        font-size: 30px;
                        font-family: $hdr-font;
                        margin: 1.5rem 0 0 0;
                    }
                }
                &:first-child {
                    div {
                        border-left: 0;
                    }
                }
                &:last-child {
                    div {
                        border-right: 0;
                    }
                }
            }
        }
    }
    
    .benefits-block {
        border-top: 10px solid $agave-accent-teal;
        border-bottom: 10px solid $agave-accent-teal;
        background-size: cover;
        background-color: $agave-accent-teal;
        margin-bottom: 4rem;
        ul {
            margin: 3rem;
            li {
                color: $agave-white;
                font-size: 18px;
                font-family: $hdr-font;
                margin: 1rem 0;
            }
        }
    }

    .grey-bg {
        background:$bg-gray;
    }

    .graduation-steps-section {
        padding: 70px 0;

        h3 {
            text-align: center;
            text-transform: uppercase;
            margin-bottom: 60px;
        }

        .grad-panel {
            background-color: #fff;
            padding: 30px 20px;
            margin-bottom: 40px;

            &.accent-yellow {
                border-top: 10px solid $agave-accent-yellow;
                border-bottom: 10px solid $agave-accent-yellow;
            }
            &.accent-purple {
                border-top: 10px solid $agave-accent-purple;
                border-bottom: 10px solid $agave-accent-purple;
            }
            &.accent-teal {
                border-top: 10px solid $agave-accent-teal;
                border-bottom: 10px solid $agave-accent-teal;
            }

            .title-row {
                border-bottom: 3px solid #ddd;

                span {
                    display: block;
                    line-height: 34px;
                }

                .title {
                    text-transform: uppercase;
                    font-size: 30px;
                    font-weight: 700;
                }

                .sub-title {
                    margin-bottom: 16px;
                    font-size: 30px;

                }
            } // .title-row

            .benefits-row,
            .requirements-row {
                padding: 20px 0;
                font-size: 18px;
                line-height: 25px;

                .title {
                    display: block;
                    font-weight: 700;
                    margin-bottom: 16px;
                }

                ul {

                    li {
                        margin-bottom: 12px;
                    }
                }
            }

            .benefits-row {
                padding: 20px 0;
                border-bottom: 3px solid #ccc;
            }

            .requirements-row {
                padding: 20px 0;
            }
        } // .grad-panel

        .btn-row {
            margin-top: 30px;
            margin-bottom: 30px;
        }

    } // .graduation-steps-section

    // Import styles for the entire section
    @import "../components/agave-steps-rollout";

    // overrides
    .steps-section {
        .steps {
            background-color: $bg-gray;

            h3,
            p {
                color: $agave-dark;
            }

            .icon-wrapper {
                i {
                    color: $agave-green;
                }
            }
        } // .steps

        .steps.collapsed {
            .icon-wrapper {
                i {
                    color: $agave-green;
                }
            }
        }

        .steps.expanded {
            h3 {
                color: $agave-light-blue;
                margin-bottom: 15px;
            }

            p {
                margin-bottom: 20px;
            }

            .icon-wrapper {
                i {
                    color: $agave-dark;
                }
            }
        } // .steps.expanded

    } // .steps-section

    .resources {
        background: transparent linear-gradient(180deg, #004D5C 0%, #00282F 100%) 0% 0% no-repeat padding-box;
        padding: 50px 0;
        color: white;

        .resources-copy {
            padding: 0 80px;
            font-size: 20px;
            margin: 20px 0;
        }

        .resources-list {
            font-size: 20px;
            font-weight: 700;

            li {
                div {
                    display: flex;
                    justify-content: space-between;
                    margin: 10px 0;
                    align-items: baseline;

                    p {
                        width: 70%;
                    }

                    div {
                         width: 20%;
                         a {
                             color: $agave-light-blue;
                             border-bottom: 3px solid $agave-light-blue;
                         }
                    }
                }
            }
        }
        .btn-row {
            margin: 50px auto;
        }
    }
}