  /* Testimonials */
.testimonials h1 {
    font-size: 26px;
}

/* Horizontal Rule */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* This Major */
.thisMajor {
    background-color: #3B3365;
    padding: 1em;
    text-align: center;
    box-shadow: 0;
    transition: box-shadow .25s;
    display: grid;
    place-content: center;
}

.thisMajor:hover {
    box-shadow: 0 0 3px #515151;
}

.thisMajor h2 a {
    line-height: 150%;
    color: white;
    transition: ease .25s;
}

.thisMajor h2 a:hover {
    color: #ccc;
}

/* Mentor Module */
.mentorModule {
    background-color: #e5a025;
    padding: 3em;
    margin: 2em 0 0 0;
    text-align: center;
    box-shadow: 0;
    transition: box-shadow .25s;
    display: grid;
    place-content: center;
}

.mentorModule:hover {
    box-shadow: 0 0 3px #515151;
}

.mentorModule h2 a {
    line-height: 150%;
    color: white;
    transition: ease .25s;
}

.mentorModule h2 a:hover {
    color: #ccc;
}

/* Nav Tabs */
.nav.nav-tabs > li.active > a {
    background-color: rgba(119,120,123,.1);
}
