/* 
Center for Pharmaceutical Engineering and Sciences (PharmEgr)
styles.css
Google Fonts Roboto:300,400,400i,700
Developed by VCU School of Pharmacy - https://pharmacy.vcu.edu/
Center for Pharmaceutical Engineering and Sciences 
*/


/* Global */

* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "Roboto", "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
    font-weight: 300;
}

h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: #222;
}

a,
button {
    -webkit-transition: all 0.1s linear;
    /* Safari */
    transition: all 0.1s linear;
}

:focus,
a:focus,
button:focus,
#menu a:focus,
input:focus {
    outline: 3px auto #0000FF !important;
    outline: 3px auto -webkit-focus-ring-color !important;
    outline-offset: -2px !important;
}

#skip-links {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    list-style: outside none;
}

a.skip-links-item {
    font-size: 14px;
    text-decoration: underline;
    position: absolute;
    left: 15px;
    top: -100px;
    z-index: 10000;
    height: auto;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: transparent;
    color: #ffba00 !important;
    outline: none;
    transition: top .2s, background-color .2s;
}

a.skip-links-item:active,
a.skip-links-item:focus {
    top: 0;
    background-color: #272727;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Hide T4 content */

.plugin-general-content {
    display: none;
}


/* Containers */

.page-main {
    position: relative;
    background-color: #011525;
}

.page-wrap {
    margin: 0 auto;
    max-width: 1800px;
    background-color: #fff;
    position: relative;
}

.container {
    width: 100%;
    padding: 0 2.5%;
    margin: 0 auto;
}

@media screen and (min-width: 1200px) {

    .container {
        max-width: 1100px;
    }

}

@media screen and (min-width: 1400px) {

    .container {
        max-width: 1200px;
    }

}


/* Header */

header {
    width: 100%;
    position: relative;
}

.page-header {
    background-color: #011525;
}

.header-wrap {
    display: none;
    width: 100%;
    padding: 0;
}

.header-search {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    border: 1px solid #000;
    color: #000;
    text-transform: uppercase;
    padding: 0.4rem 0.5rem;
    border-radius: 5px;
    margin: 0.4rem 0.4rem 0.5rem 0.4rem;
    background-color: #fff;
}

.header-search-input,
.header-search-button {
    display: inline-block;
}

.header-search-input {
    width: 4rem;
    border: transparent;
    color: #595959;
}

.header-search-input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #595959;
    opacity: 1;
    /* Firefox */
}

.header-search-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #595959;
}

.header-search-input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #595959;
}

.header-search-button {
    padding: 0;
    -webkit-appearance: none;
    background: transparent;
    border: none;
}


/* Nav 1 */

#header-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#header-nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
}

#header-nav ul li a:hover {
    color: #fff;
    background-color: #000;
}

.header-nav-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-image: none;
    background-color: transparent;
    border: 2px solid #000;
    text-transform: uppercase;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
}

.header-nav-toggle span {
    margin-left: 0.5rem;
    display: inline-block;
    padding: 0.5rem;
    font-size: 1rem;
}


/* Nav 2 */

#header-nav-panel {
    display: none;
    background: #011525;
    color: #fff;
    z-index: 3;
}

#header-nav-panel.toggled {
    display: block;
    z-index: 3;
}

#header-nav-panel ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#header-nav-panel ul li {
    padding-left: 1rem;
}

#header-nav-panel ul li:first-child {
    padding-left: 0;
}

#header-nav-panel ul li span,
#header-nav-panel ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #00335d;
    text-align: left;
    text-transform: uppercase;
}

#header-nav-panel ul li .header-nav-dropdown {
    display: none;
}

#header-nav-panel ul li.open .header-nav-dropdown {
    display: block;
}

#header-nav-panel ul li span.header-nav-subpage:after {
    content: '▸';
    margin-left: 0.5rem;
    display: inline-block;
}

#header-nav-panel ul li.open span.header-nav-subpage:after {
    transform: rotate(90deg);
}

#header-nav-panel ul li a:hover,
#header-nav-panel ul li a:focus,
#header-nav-panel ul li a:active {
    color: #fff;
    background-color: #00325a;
}

#header-nav-panel ul li a.header-nav-sub {
    padding-left: 2rem;
}

#header-nav-panel ul li.header-nav-custom-headline {
    padding: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* Nav 3 */

.header-nav-panel-toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-image: none;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    margin: 0.4rem 0.4rem 0.5rem 0.4rem;
}

.header-nav-panel-toggle span {
    display: inline-block;
    padding: 0.5rem;
    color: #000;
}

section img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {

    .header-wrap {
        padding: 0 2.5%;
    }

    #header-nav ul {
        display: flex;
        list-style-type: none;
    }

    #header-nav ul li {
        flex: 1;
        text-align: center;
    }

    #header-nav ul li a {
        padding: 1em;
        border-bottom: none;
    }

    .header-wrap h1 {
        font-size: 2rem;
    }

    .header-nav-panel-toggle {
        margin: 1rem 1rem 0;
        z-index: 3;
        background-color: #fff3;
    }

    .header-nav-panel-toggle span {
        color: #000;
    }

    .header-search {
        margin: 1rem 1rem 0;
    }

    #header-nav-panel ul li a,
    #header-nav-panel ul li span {
        padding: 0.5rem;
        border-bottom: none;
    }

    #header-nav-panel ul li a:hover,
    #header-nav-panel ul li a:focus,
    #header-nav-panel ul li a:active {
        background-color: #ffffff1a;
    }

    #header-nav-panel {
        display: none;
        position: absolute;
        top: 4rem;
        left: 1rem;
        padding: 1rem;
        z-index: 2;
        border: 1px solid #fff;
        border-radius: 5px;
        background: #002645cc;
    }

    #header-nav-panel.toggled {
        display: block;
    }

}


@media screen and (min-width: 1400px) {

    #header-nav-panel {
        z-index: 3;
    }

}


/* Section - Intro */

.section-intro {
    overflow: hidden;
    position: relative;
}

.section-intro-header {
    width: 100%;
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 1rem 2.5% 0 2.5%;
    text-align: center;
    font-weight: 300;
    z-index: 2;
    line-height: 1.1;
    background-image: url('/media/pharm-pharmegr/img/pattern-cubes-03.png');
    background-repeat: repeat;
}

.section-intro-header a {
    text-decoration: none;
}

.section-intro-header span {
    font-weight: 700;
}

.intro-wrap {
    padding: 0.8rem 2rem 3.2rem 2rem;
    background-color: #0a0a0ab0;
    color: #fff;
    width: 100%;
    position: absolute;
}

.intro-header-wrap {
    text-align: center;
}

.intro-header {
    font-size: 3rem;
    margin: 0 0 1rem 0;
}

.intro-header,
.people-header,
.center-header {
    color: #17635C;
}

.intro-subheader {
    margin: 0;
    font-size: 1.5rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.5;
}

.section-bars {
    display: none;
    transform: rotate(9deg);
    height: 200%;
    position: absolute;
    top: -5rem;
    left: -10rem;
}

.section-intro-image-wrap {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.section-intro-image-wrap .section-bars {
    left: -3rem;
}

.section-bar-one,
.section-bar-two,
.section-bar-three,
.section-bar-four {
    width: 1rem;
    height: 100%;
}

.section-bar-one {
    width: 2rem;
    background-color: #dd4e00;
}

.section-bar-two {
    background-color: #2ec3b5;
}

.section-bar-three {
    background-color: #ff9f1d;
}

.section-bar-four {
    background-color: #011525;
}


@media screen and (max-width: 767px) {

    .section-intro {
        background-image: none !important;
    }

}

@media screen and (min-width: 768px) {

    .section-intro {
        position: relative;
        background-size: 100%;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .section-intro-image-wrap .section-bars {
        display: none;
    }

    .section-bar-one,
    .section-bar-two,
    .section-bar-three,
    .section-bar-four {
        width: 2rem;
    }

    .section-bar-one {
        width: 4rem;
    }

    .section-intro-header {
        top: 1rem;
        font-size: 1.2rem;
        padding: 0 2.5%;
    }

    .intro-wrap {
        padding: 0.8rem 5rem 3.2rem 5rem;
        z-index: 1;
    }

}

@media screen and (min-width: 1030px) {

    .section-intro-header {
        font-size: 2rem;
    }

    .section-intro-header span {
        font-size: 2rem;
    }

    .section-bars {
        left: -11rem;
    }

}

@media screen and (min-width: 1400px) {

    .section-bars {
        left: -13rem;
    }

}

@media screen and (min-width: 2000px) {

    .section-bar-one,
    .section-bar-two,
    .section-bar-three,
    .section-bar-four {
        width: 3rem;
    }

    .section-bar-one {
        width: 5rem;
    }

    .section-bars {
        left: -15rem;
    }

}


/* Owl Carousel */

.item {
    padding: 0;
    /*min-height: 45vh;
    background-size: cover;
    background-position: center center;*/
    display: flex;
    align-items: flex-end;
}

.owl-theme .owl-nav {
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 !important;
    z-index: 5;
}

.owl-prev,
.owl-next {
    color: #fff !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.owl-prev {
    text-align: left;
}

.owl-next {
    text-align: right;
}

.owl-nav button span {
    font-size: 3rem;
    padding: 0.5rem 1.2rem;
    display: block;
    line-height: 1;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #818181 !important;
    background-color: #ffffff1a !important;
}

.owl-theme .owl-dots {
    margin-top: -3rem;
    position: absolute;
    left: 0;
    right: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px !important;
    height: 15px !important;
}

@media screen and (min-width: 1600px) {

    .item {
        /*background-position: center 25%;*/
    }

}


/* Section - Feature panels */

.feature-panels {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-panels li {
    text-align: center;
    padding: 1rem;
    display: block;
}

.feature-panels li a {
    text-align: center;
    color: #000;
}

.feature-panels .fas {
    font-size: 1.5rem;
}

.feature-panel-header {
    display: block;
    font-weight: 700;
    font-size: 1.3rem;
}

.feature-panels p {
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}

@media screen and (min-width: 768px) {

    .feature-panels {
        display: flex;
        flex-direction: row;
        position: relative;
        padding-top: 1em;
    }

    .feature-panels li {
        display: list-item;
        flex-basis: 25%;
        flex-grow: 0;
    }

}


/* Section - Diagonal */

.diag-front,
.diag-back {
    position: relative;
    padding: 2rem 5%;
}

.diag-header {
    display: block;
    font-weight: 300;
    font-size: 2.5rem;
    color: #2ec3b5;
    width: 100%;
}

.diag-vision {
    background-color: #011525;
    color: #fff;
}

.diag-vision em {
    font-weight: 700;
}

.diag-vision p,
.diag-goals p {
    font-size: 1.4rem;
    font-weight: 300;
}

.diag-vision p a {
    color: #fff;
}

.diag-quote p {
    font-size: 1.25rem;
}

.diag-goals {
    background-color: #efefef;
}

.diag-goals-header {
    color: #17635C;
}

ul.goal-grid {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.goal-grid li {
    width: 50%;
    list-style: none;
    padding: 1.5rem 1rem 1.25rem 1rem;
    font-size: 1.2em;
    color: #000;
}

.goal-grid li:nth-child(1) {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.goal-grid li:nth-child(2) {
    border-bottom: 1px solid #ccc;
}

.goal-grid li:nth-child(3) {
    border-right: 1px solid #ccc;
}

.diag-quote {
    background-color: #ff9f1d;
}

.diag-quote-text {
    font-weight: 300;
    margin-top: 0;
}

.diag-quote-attribution {
    font-weight: 700;
}

.diag-photo {
    width: 100%;
    padding: 0;
}

.diag-photo img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {

    .section-diag {
        display: flex;
        margin-bottom: 5rem;
        margin-top: -2rem;
    }

    .section-diag-last {
        margin-bottom: -2rem;
        padding-bottom: 2rem;
        margin-top: 1.5rem;
    }

    .diag-front {
        z-index: 2;
        width: 50%;
        padding: 3rem 0 3rem 5%;
    }

    /* https://stackoverflow.com/questions/35604642/creating-an-angled-css3-divider-100-auto-height# */

    .diag-front:after {
        position: absolute;
        top: 0;
        right: -22%;
        width: 100%;
        height: 100%;
        -webkit-transform: skewX(-8deg) rotate(180deg);
        -ms-transform: skewX(-8deg) rotate(180deg);
        transform: skewX(-8deg) rotate(180deg);
        content: "";
        background-color: #000;
        z-index: -1;
    }

    .diag-back {
        z-index: 1;
        width: 50%;
        top: 2rem;
    }

    .diag-back:after {
        position: absolute;
        top: 0;
        left: -12%;
        width: 25%;
        height: 100%;
        -webkit-transform: skewX(-8deg) rotate(180deg);
        -ms-transform: skewX(-8deg) rotate(180deg);
        transform: skewX(-8deg) rotate(180deg);
        content: "";
        background-color: #fff;
        z-index: 1;
    }

    .diag-back.diag-photo:after {
        height: 105%;
    }

    .diag-quote:after {
        background-color: #ff9f1d;
    }

    .diag-vision {
        width: 46%;
    }

    .diag-vision:after {
        background-color: #011525;
        right: -18%;
    }

    .diag-goals {
        width: 54%;
        padding: 1rem 2rem 2rem 9rem;
    }

    .diag-goals-header {
        padding-left: 1rem;
    }

    .diag-goals:after {
        left: 0;
        width: 20%;
        background-color: #efefef;
        z-index: -1;
    }

    .goal-grid li {
        font-size: 1.1em;
    }

    .diag-quote p {
        font-size: 0.8rem;
    }

}

@media screen and (min-width: 1085px) {

    .diag-vision:after {
        right: -11%;
    }

    .diag-goals {
        padding: 1rem 2rem 2rem 7rem;
    }

    .diag-quote p {
        font-size: 1.15rem;
    }

}

@media screen and (min-width: 1200px) {

    .diag-front:after {
        -webkit-transform: skewX(-15deg) rotate(180deg);
        -ms-transform: skewX(-15deg) rotate(180deg);
        transform: skewX(-15deg) rotate(180deg);
    }

    .diag-back:after {
        -webkit-transform: skewX(-15deg) rotate(180deg);
        -ms-transform: skewX(-15deg) rotate(180deg);
        transform: skewX(-15deg) rotate(180deg);
    }

    .diag-vision:after {
        /*right: -11%;*/
    }

    .diag-quote p {
        font-size: 1.5rem;
    }

    .diag-quote p.diag-quote-attribution {
        font-size: 1.3rem;
    }

}

@media screen and (min-width: 1400px) {

    .diag-quote p {
        font-size: 2rem;
    }

    .diag-quote p.diag-quote-attribution {
        font-size: 1.5rem;
    }

}

@media screen and (min-width: 1600px) {

    .diag-vision:after {
        right: -6%;
    }

    .diag-quote p {
        font-size: 2.4rem;
    }

    .diag-quote p.diag-quote-attribution {
        font-size: 1.8rem;
    }

}

@media screen and (min-width: 2000px) {

    .diag-quote p {
        font-size: 2.6rem;
    }

    .diag-quote p.diag-quote-attribution {
        font-size: 1.9rem;
    }

}


/* Section - Center, People */

.section-center,
.section-education {
    padding: 4rem 0;
    background-image: url('/media/pharm-pharmegr/img/pattern-cubes-03.png');
    background-repeat: repeat;
}

.section-people {
    padding: 2rem 0;
}

.people-grid {
    margin-bottom: 2rem;
}

.center-header,
.people-header {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 1rem 0;
}

.center-subheader {
    text-align: center;
}

.center-header-text,
.people-header-text {
    margin-bottom: 2rem;
    text-align: center;
}

.people-header-text a {
    color: #222;
}

.people-group-headline {
    display: block;
    width: 100%;
    clear: both;
    font-weight: 700;
    text-transform: uppercase;
    /* padding: 1rem 0; */
    padding: 1rem 0 0 0;
    color: #0359A0;
}

.people-item {
    padding-bottom: 1rem;
}

.people-item.people-director-last {
    padding-bottom: 1.85rem;
}

.people-item img {
    object-fit: contain;
}

.people-name {
    display: block;
    line-height: 1;
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 700;
}

.people-name a,
.people-title {
    display: block;
    width: 100%;
}

.people-name a {
    color: #000;
    padding: 0.25rem 0;
    text-decoration: none;
}

.people-name a:hover {
    text-decoration: underline;
}

.people-title a {
    color: #000;
    text-decoration: none;
}

@media screen and (min-width: 400px) {

    .section-center {
        padding: 6rem 0;
    }

    .people-grid {
        overflow: hidden;
    }

    .people-item {
        width: 100%;
        float: left;
    }

}

@media screen and (min-width: 768px) {

    .center-header,
    .people-header {
        font-size: 3rem;
    }

    .center-header-text,
    .people-header-text {
        font-size: 1.3rem;
    }

    .section-people .people-header-text {
        margin-bottom: 2rem;
    }

    .section-people .center-subheader {
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
        display: inline-block;
    }

    .people-grid {
        display: flex;
    }

    .people-faculty {
        width: 70%;
    }

    .people-news {
        width: 30%;
    }

    .people-half {
        width: 50%;
        float: left;
        text-align: center;
    }

    .people-name {
        font-size: 0.9rem;
    }

    .people-title {
        font-size: 0.8rem;
    }

}

@media screen and (min-width: 1100px) {

    .section-people .container {
        max-width: 1000px;
    }

}

@media screen and (min-width: 1400px) {

    .section-people .container {
        max-width: 1200px;
    }

}

@media screen and (min-width: 1600px) {

    .section-people .container {
        max-width: 1400px;
    }

}

@media screen and (min-width: 2000px) {

    .section-people .container {
        max-width: 1600px;
    }

}


/* Section - Education */

.education-wrap {
    padding: 1.5rem;
}

.education-column {
    padding: 1rem;
    background-color: #fff;
    margin: 0.5rem;
    border: 1px solid #d6d6d6;
}

.education-content a {
    color: #000;
    font-weight: 700;
}

.education-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    display: block;
    text-transform: uppercase;
    color: #0359A0;
    display: block;
    margin-bottom: 2rem;
}

.education-unit {
    font-weight: 700;
}

@media screen and (min-width: 768px) {

    .education-wrap {
        display: flex;
    }

    .education-column {
        flex-basis: 25%;
    }

}


/* Page nav and section PhD */

.section-phd-nav-wrap {
    /* background: #011525; */
    background-color: #002645;
    z-index: 999;
}

.page-nav {
    position: relative;
    width: 95%;
    margin: 0 2.5% 1rem 2.5%;
    color: #fff;
    z-index: 1;
}

.page-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.page-nav ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #00335d;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {

    .section-phd {
        /* padding-top: 2rem; */
        background-color: #e0e0e0;
    }

    .section-phd-nav-wrap {
        width: 100%;
        /* background-color: #002645cc; */
        /* background-color: #002645; */
    }

    .section-phd-nav-wrap.page-nav-fixed {
        position: fixed;
        /* top: 2rem; */
        top: 0;
        left: 0;
        right: 0;
    }

    .section-phd-wrap {
        padding: 2rem 2.5%;
    }

    .page-nav {
        /* width: 16rem; */
        margin: 0 auto;
        background-color: transparent;
        width: 100%;
        max-width: 1200px;
        min-height: 70px;
    }

    .page-nav.page-nav-fixed {
        /*top: 29.375rem;*/
    }

    .page-nav ul {
        /* background: #002645cc; */
        /* padding: 1rem 0; */
        display: flex;
        flex-flow: row;
        /* justify-content: space-around; */
        justify-content: center;
    }

    .page-nav ul li {
        /* flex-grow: 1; */
    }

    .page-nav ul li a {
        /* padding: 1.5rem 0; */
        padding: 1.5rem 1.25rem;
        border-bottom: none;
    }

    .page-nav ul li a:hover,
    .page-nav ul li a:focus,
    .page-nav ul li a:active {
        background-color: #ffffff1a;
    }

}


/* PhD content */

/* Adds space for sticky menu anchors */
a.phd-anchor {
    display: block;
    position: relative;
    top: -200px;
    visibility: hidden;
}

.subpage-image-wrap {
    position: relative;
}

.subpage-image-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00000080;
    padding: 0.9rem 1rem 0.8rem 1rem;
    text-align: center;
}

.subpage-image-header-title,
.subpage-image-header-subtitle {
    display: block;
    color: #fff;
}

.subpage-image-header-title {
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 768px) {

    .subpage-image-header-title {
        font-size: 1.8rem;
    }

    .subpage-image-header-subtitle {
        font-size: 1.5rem;
    }

}

.page-block {
    border: 3px solid #17635C;
    background-color: #fff;
    border: none;
    padding: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.page-block-half {
    margin-bottom: 2rem;
    /*padding: 2rem;*/
    background-color: #fff;
}

.page-block-half>div {
    background-color: #fff;
}

@media (min-width: 768px) {

    .page-block-half {
        display: flex;
        background-color: transparent;
    }

    .page-block-half>div {
        flex-basis: 50%;
        padding: 2rem;
        /*margin: 1rem;*/
    }

}

@media (min-width: 768px) and (max-width: 1100px) {

    .page-block-half .center-header {
        font-size: 2rem;
    }

}

.page-block-half>div:first-child {
    text-align: center;
    margin-right: 2rem;
}

@media (min-width: 768px) {

    .flex-50 {
        display: grid;
        grid-template-columns: 50% 50%;
    }

}

.phd-intro {
    text-align: center;
}

.phd-intro-info {
    margin-top: 4rem;
}

@media (min-width: 768px) {

    .phd-intro-info {
        display: grid;
        grid-template-columns: 60% 40%;
    }

}

.phd-stat-wrap {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-gap: 1rem;
    margin: 5rem 0 4rem 0;
}

.phd-stat {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7f7f7;
}

.phd-stat .fas {
    font-size: 1.5rem;
}

.phd-stat-header {
    font-weight: 700;
    font-size: 1.3rem;
}

.phd-stat-link {
    text-align: center;
    color: #000;
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}

.phd-intro-mission {
    font-size: 2rem;
    text-align: center;
    font-style: italic;
    padding: 2rem 1rem;
    background-color: #e7f3f2;
    margin: 2rem 0;
}

/* PhD quote carousel */

.phd-quotes {
    overflow: hidden;
    margin-top: 2rem;
}

.phd-quotes .owl-item {
    padding: 2rem;
    background-color: #fff;
}

.phd-quotes .owl-item::before,
.phd-quotes .owl-item::after {
    position: absolute;
    font-size: 7rem;
    line-height: 1;
}

.phd-quotes .owl-item::before {
    content: "\201C";
    top: 0;
    left: 0;
}

.phd-quotes .owl-item::after {
    content: "\201D";
    bottom: 1rem;
    right: 0;
}

/* .phd-quotes-attribution {
    padding-top: 2rem;
} */

.phd-quotes .owl-prev,
.phd-quotes .owl-next {
    color: #000 !important;
}

/* PhD quote panel */

.phd-quote-panel {
    font-size: 1.5rem;
    text-align: center;
    font-style: italic;
    padding: 2rem 2rem;
    background-color: #e7f3f2;
    margin: 2rem 0;
    position: relative;
}

.phd-quote-wrap {
    position: relative;
    padding: 2rem;
}

.phd-quote-wrap::before,
.phd-quote-wrap::after {
    position: absolute;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 7rem;
    line-height: 1;
    color: #17635C;

}

.phd-quote-wrap::before {
    content: "\201C";
    top: 0;
    left: 0;
}

.phd-quote-wrap::after {
    content: "\201D";
    bottom: 1rem;
    right: 0;
}


/* PhD panels */

.phd-feature-panel {
    text-align: center;
}

.panel-diversity,
.panel-disability {
    /* border: 1px solid #ececec; */
    background-color: #E1F0EFCC;
    padding: 1rem;
    text-align: center;
    /* border: 1px solid #E1F0EFCC; */
    border: 2px solid #17635C;
}

.panel-diversity {
    margin: 1rem 0.5rem 1rem 0.5rem;
}

.panel-disability {
    margin: 1rem 0.5rem 0 0.5rem;
}

.phd-feature-panel .cta-btn {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

@media (min-width: 768px) {

    .panel-diversity {
        margin: 2rem 0 1rem 0;
    }

    .panel-disability {
        margin: 1rem 0;
    }

}

/* PhD buttons */

.phd-apply {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {

    .phd-apply {
        padding: 3rem 2rem 5rem 2rem;
    }

}

.phd-apply p {
    font-style: italic;
}

.phd-apply .covid-bold {
    font-weight: bold;
    font-size: 125%;
}

.cta-btn-wrap {
    text-align: center;
}

.cta-btn {
    display: inline-block;
    background-color: #17635C;
    padding: 1.5rem 5rem;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin: 1rem 0;
    border-radius: 4px;
    font-size: 1.6rem;
    font-style: normal;
    letter-spacing: 0.4rem;
}

.cta-btn:hover,
.cta-btn:active,
.cta-btn:focus {
    background-color: #000;
}

.cta-btn.disabled:hover,
.cta-btn.disabled:active,
.cta-btn.disabled:focus,
.cta-btn:disabled:hover,
.cta-btn:disabled:active,
.cta-btn:disabled:focus {
    background-color: #17635C;
}

.cta-btn.disabled,
.cta-btn:disabled {
    opacity: 0.2;
}

@media (min-width: 768px) {

    .phd-apply {
        padding: 3rem 2rem 5rem 2rem;
    }

}


/* Programs */

.program-content a {
    color: #000;
    font-weight: 700;
}

.program-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    display: block;
    text-transform: uppercase;
    color: #0359A0;
    display: block;
    margin-bottom: 2rem;
}

.program {
    padding: 2rem 0;
}

@media (min-width: 768px) {

    .program-wrap {
        display: grid;
        grid-template-columns: 48% 48%;
        grid-gap: 4%;
    }

    .program {
        background-color: #fff;
        padding: 2rem;
    }

}


/* Details wrap panels */

.details-wrap {
    margin-bottom: 1rem;
}

.details-wrap:last-child {
    margin-bottom: 3rem;
}

.details-header {
    font-size: 1em;
    font-weight: 700;
    padding: 0.5em;
    border: 1px solid #17635C;
    background-color: #17635C;
    color: #fff;
}

.details-content {
    padding: 0.5em 1.5em 0.5em 1.5em;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.details-location strong,
.details-time strong,
.details-cost strong {
    display: inline-block;
    min-width: 80px;
}

@media (min-width: 768px) {

    .details-header {
        font-size: 1.2em;
    }

}


/* Back to top */

.back-to-top {
    display: none;
    position: fixed;
    left: 1em;
    bottom: 1em;
    background-color: #011525;
    text-align: center;
    height: 60px;
    width: 60px;
    border-radius: 60px;
}

.back-to-top span {
    color: #fff;
    font-size: 3em;
    line-height: 54px;
}


/* Section - Footer */

.section-footer {
    background-color: #011525;
    color: #fff;
    padding: 2em 0;
}

.section-footer a {
    color: #fdb715;
    font-weight: 700;
}

.footer-logos,
.footer-text {
    width: 100%;
}

.footer-logos {
    text-align: center;
}

.footer-logos img {
    display: block;
    max-width: 80%;
    margin: 0 auto 3em auto;
}

@media screen and (min-width: 768px) {

    .section-footer .container {
        display: flex;
        flex-flow: row;
    }

    .footer-logos {
        width: 30%;
    }

    .footer-logos {
        text-align: left;
    }

    .footer-logos img {
        max-width: 100%;
        margin: 0 auto 1.3em auto;
    }

    .footer-text {
        width: 70%;
        padding-left: 5%;
    }

    .footer-text p {
        margin-top: 0;
    }

    .footer-inclusion-links {
        font-size: 0.8rem;
    }

}


/* Staff listing from main SOP site */

.admin-dean-container {
    display: flex;
    background-color: #fbfbfb;
    border-top: solid 1px #ffba00;
    border-bottom: solid 1px #ffba00;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: left;
    width: 100%;
}

.admin-dean-pic img {
    max-width: 171px;
    height: auto;
    border-radius: 8px;
}

.admin-dean-flex:nth-child(1) {
    margin-left: 17px;
}

.admin-dean-flex:nth-child(2) {
    margin-left: 40px;
}

.admin-dean-flex:nth-child(3) {
    max-width: 600px;
    margin-top: 35px;
    margin-left: 40px;
}

@media (max-width:991px) {
    .admin-dean-flex:nth-child(3) {
        display: none;
    }

    .admin-dean-pic img {
        width: 100%;
        height: auto;
    }
}


/* Staff listing grid */

.staff-member-listing-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {

    .staff-member-listing-container {
        margin-bottom: 4rem;
    }

}

.staff-member-listing {
    margin-bottom: 1.5rem;
    flex-basis: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {

    .staff-member-listing {
        flex-basis: 33.33%;
    }

}

@media screen and (min-width: 768px) {

    .staff-member-listing {
        flex-basis: 33.33%;
    }

}

.staff-member-image {
    margin-bottom: 1rem;
}

.staff-member-image img {
    margin: 0 auto;
    max-width: 50%;
}

@media screen and (min-width: 768px) {

    .staff-member-image img {
        max-width: 60%;
    }

}

.staff-member-info {
    padding: 0 0.5rem;
    text-align: center;
}

.staff-member-info p:first-of-type {
    margin-top: 0.25rem;
}

.staff-info-name {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}

@media screen and (min-width: 768px) {

    .staff-info-name {
        font-size: 1.4rem;
    }

}
