﻿/* Page styles */

.content-wrapper {
    padding: 0;
}

.footer-section-wrap {
    margin-top: 0;
}

section {
    padding: 3rem 30px;
}

.col-color-block {
    margin: 0px auto;
    max-width: 1280px;
    width: 100%;
    overflow: hidden;
    /* had to add overflow to fix an issue with top or bottom elements with margin */
    /* If using bootstrap for margins, this is not an issue */
}

/* Foreground colors */

.bu-yellow, a.bu-yellow.link:hover {
    color: #D6A800;
}

.bu-purple, a.bu-purple.link:hover {
    color: #4F3674;
}

/* Background colors */

.bg-cream {
    background-color: #EDDFB4;
}

.bg-grey {
    background-color: #EEECEF;
}

.bg-purple {
    background-color: #4F3674;
}

.bg-purple-light {
    background-color: #4E3573;
}

.bg-purple-dark {
    background-color: #2f1a45;
}

/* Headers */

h1 {
    font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
    line-height: 50px;
    font-size: 3em;
    color: #D6A800;
    font-weight: 700;
    margin: 0;
}

    h1 span {
        color: #FFFFFF;
    }

h2 {
    font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 30px;
    color: #4F3674;
}

h3 {
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #000;
}

h4 {
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #4F3674;
}

.section-heading {
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-size: 16px;
    color: #D6a800;
    letter-spacing: .125rem;
}

/* Content Styles */

a.link {
    text-decoration: underline;
}

a.link:hover {
    text-decoration: none;
}

a.bu-yellow.link {
    font-weight: 600;
}

a.bu-yellow.link:hover {
    color: #D6A800;
}

a.bu-purple.link:hover {
    color: #4F3674;
}

/* ADA Purposes */

a.bu-yellow.link, a.bu-purple.link {
    font-weight: bold;
}

p {
    font-family: 'Roboto', 'Arial', 'Verdana', sans-serif;
}

ul.bulleted {
    margin: 0px 0px 20px 30px;
    list-style-type: disc;
    line-height: 1.5em;
}

ul.numbered {
    margin: 0px 0px 20px 30px;
    list-style-type: decimal;
    line-height: 1.5em;
}

/* QUOTES + TESTIMONIAL STYLES */

.quotes {
    font-size: 50px;
}

.blockquote {
    line-height: 1.8em;
}

/* BUTTON STYLES */

.btn-primary {
    padding: 5px 20px;
    background-color: #4F3674;
    color: #FFF;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    transition: all .25s ease-in-out;
    border-color: #4F3674;
    border-radius: 0;
}

    .btn-primary:hover {
        background-color: #D6A800;
        border-color: #D6A800;
        color: #333;
    }

.btn-secondary {
    padding: 10px 25px;
    background-color: #D6A800;
    color: #333;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: all .25s ease-in-out;
    border: none;
    border-radius: 0;
}

    .btn-secondary:hover {
        background-color: #eee5bc;
        color: #333;
    }

.btn-light {
    padding: 5px 20px;
    background-color: #FFF;
    color: #333;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    transition: all .25s ease-in-out;
    border-color: #FFF;
    border-radius: 0;
}

    .btn-light:hover {
        background-color: #D6A800;
        border-color: #D6A800;
        color: #333;
    }
/* SHOW ME MORE GRADIENT BUTTON AREA */

.show-me-more-gradient-button {
    margin: -5px 0px 50px 0px;
    padding: 0px 150px 30px 150px;
    width: 100%;
    z-index: 99;
    position: relative;
    text-align: center;
    font-family: 'Roboto', Arial, Verdana, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #4F3674;
    text-transform: uppercase;
    background: url(/images/show-me-less-arrow.png) no-repeat bottom center, -moz-linear-gradient(top, rgba(255,255,255,0) 40%, rgba(255,255,255,1) 100%);
    background: url(/images/show-me-less-arrow.png) no-repeat bottom center, -webkit-linear-gradient(top, rgba(255,255,255,0) 40%,rgba(255,255,255,1) 100%);
    background: url(/images/show-me-less-arrow.png) no-repeat bottom center, linear-gradient(to bottom, rgba(255,255,255,0) 40%,rgba(255,255,255,1) 100%);
}

    .show-me-more-gradient-button:focus {
        outline: none;
    }

    .show-me-more-gradient-button::before {
        content: " Show Me Less ";
    }

    .show-me-more-gradient-button.collapsed::before {
        content: " Show Me More ";
    }

    .show-me-more-gradient-button.collapsed {
        margin: -255px 0px 50px 0px;
        padding: 150px 150px 30px 150px;
        background: url(/images/show-me-more-arrow.png) no-repeat bottom center, -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        background: url(/images/show-me-more-arrow.png) no-repeat bottom center, -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        background: url(/images/show-me-more-arrow.png) no-repeat bottom center, linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
        transition: all 0.25s;
    }

    /* RESPONSIVE VIDEO CONTAINER (YOUTUBE / VIMEO EMBEDS) */

.video-container {
    margin: 40px 0px;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }